/* ==========================================================================
   RanchUp! — shared design system
   ========================================================================== */

:root{
  --bg:#04060c;
  --bg2:#0a1224;
  --bg3:#0d1626;
  --neon:#38bdf8;
  --neon2:#22d3ee;
  --accent:#c084fc;
  --accent2:#f472b6;
  --gold:#fbbf24;
  --text:#eaf2ff;
  --muted:#8ea0c2;
  --muted-dim:#5c6c8a;
  --line:rgba(255,255,255,.08);
  --glass:rgba(255,255,255,.03);
  --radius:20px;
  --maxw:1120px;
  --maxw-narrow:820px;
  --header-h:104px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg); color:var(--text);
  font-family:'Inter',sans-serif; line-height:1.65; overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
html:has(body.home), body.home{height:100%; overflow:hidden;}
h1,h2,h3,.font-display{font-family:'Orbitron',sans-serif;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{list-style:none;}
button{font:inherit;}
::selection{background:rgba(56,189,248,.32); color:#fff;}
::-webkit-scrollbar{width:11px; height:11px;}
::-webkit-scrollbar-track{background:var(--bg);}
::-webkit-scrollbar-thumb{background:linear-gradient(var(--neon),var(--accent)); border-radius:8px; border:2px solid var(--bg);}

.wrap{max-width:var(--maxw); margin:0 auto; padding-left:24px; padding-right:24px;}
.wrap-narrow{max-width:var(--maxw-narrow); margin:0 auto; padding-left:24px; padding-right:24px;}

body::before{
  content:"";
  position:fixed; inset:0;
  background:
    radial-gradient(circle at 12% 8%, rgba(192,132,252,.16), transparent 42%),
    radial-gradient(circle at 88% 26%, rgba(56,189,248,.16), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(34,211,238,.08), transparent 50%),
    linear-gradient(var(--bg2),var(--bg) 60%);
  z-index:-2;
}
body::after{
  content:"";
  position:fixed; inset:0; pointer-events:none; z-index:-1;
  opacity:.35;
  background-image:radial-gradient(rgba(255,255,255,.5) .6px, transparent .6px);
  background-size:3px 3px;
  mix-blend-mode:overlay;
}

/* floating gradient blobs used behind hero content */
.blob-field{position:absolute; inset:0; overflow:hidden; z-index:-1; pointer-events:none;}
.blob{position:absolute; border-radius:50%; filter:blur(60px); opacity:.55; will-change:transform;}
.blob.b1{width:340px; height:340px; left:6%; top:-40px; background:radial-gradient(circle,var(--neon),transparent 70%); animation:driftA 16s ease-in-out infinite;}
.blob.b2{width:300px; height:300px; right:8%; top:10%; background:radial-gradient(circle,var(--accent),transparent 70%); animation:driftB 20s ease-in-out infinite;}
.blob.b3{width:260px; height:260px; left:38%; bottom:-80px; background:radial-gradient(circle,var(--accent2),transparent 70%); animation:driftC 18s ease-in-out infinite;}
@keyframes driftA{0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(40px,30px) scale(1.15);}}
@keyframes driftB{0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-35px,25px) scale(.9);}}
@keyframes driftC{0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(20px,-30px) scale(1.1);}}
@media (prefers-reduced-motion: reduce){
  .blob{animation:none;}
}

/* ---------------------------- reveal-on-scroll --------------------------- */
.reveal{opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal-stagger > *{opacity:0; transform:translateY(22px); transition:opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);}
.reveal-stagger.in > *{opacity:1; transform:translateY(0);}
.reveal-stagger.in > *:nth-child(1){transition-delay:.03s;}
.reveal-stagger.in > *:nth-child(2){transition-delay:.1s;}
.reveal-stagger.in > *:nth-child(3){transition-delay:.17s;}
.reveal-stagger.in > *:nth-child(4){transition-delay:.24s;}
.reveal-stagger.in > *:nth-child(5){transition-delay:.31s;}
.reveal-stagger.in > *:nth-child(6){transition-delay:.38s;}
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > *{opacity:1 !important; transform:none !important; transition:none !important;}
  html{scroll-behavior:auto;}
}
/* Mevcut @media (max-width:820px) bloğundaki ilgili tanımları bunlarla değiştirin */

:root{
  --header-h:80px;
}

.brand img{
  width:58px;
  height:58px;
}

@media (max-width:820px){
  /* Mobilde header yüksekliğini orijinal CSS içindeki mevcut 820px bloğuna girmeden 
     direkt değişken üzerinden dengeliyoruz */
  :root{
    --header-h:80px;
  }

  .brand img{
    width:58px;
    height:58px;
  }

  .nav-links .link{
    padding:10px 12px;
    font-size:.86rem;
  }

  .dropdown-menu a{
    padding:8px 10px;
  }

  .dropdown-menu a img{
    width:28px;
    height:28px;
  }
}
/* --------------------------------- header --------------------------------- */
header{
  position:sticky; top:0; z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(4,6,12,.62);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s, background .3s;
}
/* Mobil Ekranlar İçin Header & Menü Boyutlandırma */
@media (max-width: 820px) {
  :root {
    /* Header yüksekliği */
    --header-h: 76px;
  }

  /* Logo */
  .brand img {
    width: 52px;
    height: 52px;
  }

  .nav {
    padding: 0 20px;
  }

  /* Kontroller */
  #langToggle {
    padding: 6px 11px;
    font-size: 0.78rem;
  }

  .lang-switch .lt-sep {
    height: 18px;
  }

  .hamburger {
    width: 36px;
    height: 36px;
  }

  .hamburger span {
    width: 15px;
  }

  /* Açılır Menü ve Linkler */
  .nav-links {
    top: calc(100% + 4px);
    left: 12px;
    right: 12px;
  }

  .nav-links.open {
    padding: 8px;
    max-height: 75vh;
  }

  .nav-links .link {
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  /* Dropdown Elemanları */
  .dropdown-menu a {
    padding: 8px 10px;
  }

  .dropdown-menu a img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .dropdown-menu .dd-title {
    padding: 5px 8px;
    font-size: 0.65rem;
  }

  .dropdown-menu .dd-meta > span:first-child {
    font-size: 0.82rem;
  }

  .dropdown-menu .dd-sub {
    font-size: 0.7rem;
  }
}
header.scrolled{background:rgba(4,6,12,.86); box-shadow:0 10px 30px rgba(0,0,0,.35), 0 1px 0 rgba(56,189,248,.15);}
.nav{display:flex; align-items:center; justify-content:space-between; padding:0px 24px; height:var(--header-h);}
.nav-left{display:flex; align-items:center; gap:32px;}
.brand{display:flex; align-items:center; gap:11px;}
.brand img{width:84px; height:84px; transition:transform .3s;}
.brand:hover img{transform:scale(1.08) rotate(-4deg);}

.nav-right{display:flex; align-items:center; gap:14px;}
.nav-links{display:flex; align-items:center; gap:6px;}
.nav .link{
  position:relative; color:var(--muted); font-size:.88rem; font-weight:600; padding:8px 12px; border-radius:8px;
  background:transparent; border:0; font-family:'Inter',sans-serif; cursor:pointer;
  transition:color .2s, background .2s;
}
.nav .link:hover{color:var(--text); background:rgba(255,255,255,.05);}
.nav .link.active{color:var(--neon2);}
.nav .link.active::after{content:""; position:absolute; left:12px; right:12px; bottom:2px; height:2px; border-radius:2px; background:linear-gradient(90deg,var(--neon),var(--accent)); box-shadow:0 0 8px rgba(56,189,248,.7);}

/* games dropdown */
.nav-item{position:relative;}
.dropdown-toggle{display:inline-flex; align-items:center; gap:6px; transition:color .2s, background .2s;}
.dropdown-toggle .chev{width:11px; height:11px; transition:transform .25s;}
.nav-item.open .dropdown-toggle{color:var(--text); background:rgba(255,255,255,.07);}
.nav-item.open .dropdown-toggle .chev{transform:rotate(180deg);}
.dropdown-menu{
  position:absolute; top:100%; left:0; margin-top:10px; min-width:240px;
  background:rgba(6,9,18,.98); backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:8px;
  box-shadow:0 20px 40px rgba(0,0,0,.5); z-index:50;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:opacity .2s, transform .2s, visibility .2s;
}
.nav-item.open .dropdown-menu{opacity:1; visibility:visible; transform:translateY(0);}
.dropdown-menu::before{
  content:""; position:absolute; top:-6px; left:22px; width:12px; height:12px;
  background:rgb(15,19,31); border-left:1px solid rgba(255,255,255,.1); border-top:1px solid rgba(255,255,255,.1);
  transform:rotate(45deg); border-radius:3px 0 0 0;
}
.dropdown-menu .dd-title{
  font-size:.68rem; font-weight:700; letter-spacing:1.1px; text-transform:uppercase;
  color:var(--muted-dim); padding:8px 11px 8px; margin-bottom:2px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.dropdown-menu a{
  display:flex; align-items:center; gap:11px; padding:10px 11px; border-radius:10px;
  color:var(--muted); transition:background .2s, color .2s;
}
.dropdown-menu a:hover{background:rgba(255,255,255,.06); color:var(--text);}
.dropdown-menu a.active{color:var(--neon2); background:rgba(56,189,248,.08);}
.dropdown-menu a img{width:32px; height:32px; border-radius:9px; flex-shrink:0;}
.dropdown-menu .dd-meta{display:flex; flex-direction:column; gap:2px; min-width:0;}
.dropdown-menu .dd-meta > span:first-child{font-size:.86rem; font-weight:600; color:inherit;}
.dropdown-menu .dd-sub{font-size:.72rem; color:var(--muted-dim); font-weight:500;}

.lang-switch{display:inline-flex; align-items:center; gap:11px;}
.lang-switch .lt-sep{width:1.5px; height:22px; background:rgba(255,255,255,.4); display:inline-block; flex-shrink:0; border-radius:1px;}
#langToggle{
  background:transparent; color:var(--text); border:1px solid rgba(255,255,255,.2);
  border-radius:8px; padding:7px 13px; font-size:.8rem; font-weight:600;
  cursor:pointer; font-family:'Inter',sans-serif; letter-spacing:.5px;
  transition:border-color .2s, color .2s, box-shadow .2s;
}
#langToggle:hover{border-color:var(--neon); color:var(--neon2); box-shadow:0 0 14px rgba(56,189,248,.2);}

.hamburger{
  display:none; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  width:38px; height:38px; background:transparent;
  border:1px solid rgba(255,255,255,.2); border-radius:8px; cursor:pointer;
}
.hamburger span{width:16px; height:2px; background:var(--text); border-radius:2px; transition:transform .25s, opacity .25s;}
.hamburger.active span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}

@media (max-width:820px){
  .hamburger{order:1;}
  .lang-switch{order:2;}
  .nav-links{
    display:flex; position:absolute; top:100%; left:16px; right:16px;
    flex-direction:column; align-items:stretch; gap:2px;
    background:rgba(6,9,18,.98); backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1); border-radius:16px;
    padding:0 10px; margin-top:10px;
    box-shadow:0 20px 40px rgba(0,0,0,.5);
    max-height:0; opacity:0; overflow:hidden; visibility:hidden; pointer-events:none;
    transform:translateY(-8px);
    transition:max-height .38s cubic-bezier(.2,.7,.2,1), opacity .28s ease, padding .38s cubic-bezier(.2,.7,.2,1), transform .32s cubic-bezier(.2,.7,.2,1), visibility 0s .38s;
  }
  .nav-links.open{
    max-height:70vh; opacity:1; padding:10px; visibility:visible; pointer-events:auto;
    transform:translateY(0);
    transition:max-height .38s cubic-bezier(.2,.7,.2,1), opacity .32s ease, padding .38s cubic-bezier(.2,.7,.2,1), transform .32s cubic-bezier(.2,.7,.2,1), visibility 0s;
  }
  .nav-links .link{width:100%; text-align:left; padding:12px 14px; border-radius:10px;}
  .nav-links .link:hover{background:rgba(255,255,255,.06);}
  .nav-links .link.active::after{display:none;}
  .nav-links .link.active{background:rgba(56,189,248,.1);}
  .dropdown-toggle{justify-content:space-between;}
  .nav-item.open .dropdown-toggle{background:rgba(255,255,255,.05);}
  .dropdown-menu{
    position:static; opacity:1; visibility:visible; transform:none;
    min-width:0; margin:0; padding:0 4px;
    background:rgba(255,255,255,.02); border:0; box-shadow:none;
    max-height:0; overflow:hidden;
    transition:max-height .3s cubic-bezier(.2,.7,.2,1), margin .3s cubic-bezier(.2,.7,.2,1), padding .3s cubic-bezier(.2,.7,.2,1);
  }
  .dropdown-menu::before{display:none;}
  .dropdown-menu .dd-title{padding:6px 9px 8px;}
  .nav-item.open .dropdown-menu{
    max-height:200px; margin:2px 0 4px; padding:4px;
    border:1px solid rgba(255,255,255,.06);
  }
  .hamburger{display:flex;}
}
@media (max-width:820px) and (prefers-reduced-motion: reduce){
  .nav-links, .nav-links.open, .dropdown-menu, .nav-item.open .dropdown-menu{transition:none;}
}

/* --------------------------------- buttons -------------------------------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:12px; border:0; cursor:pointer;
  background:linear-gradient(135deg,var(--neon),var(--accent));
  color:#04060c; font-weight:700; font-size:14px;
  box-shadow:0 0 24px rgba(56,189,248,.4);
  transition:transform .2s, box-shadow .2s;
}
.btn:hover{transform:translateY(-2px); box-shadow:0 0 32px rgba(56,189,248,.65);}
.btn:active{transform:translateY(0);}
.btn svg{width:16px; height:16px; flex-shrink:0;}
.gp-icon{font-size:16px; flex-shrink:0;}
.btn-ghost{background:transparent; border:1px solid rgba(255,255,255,.18); box-shadow:none; color:var(--text);}
.btn-ghost:hover{border-color:var(--neon); box-shadow:0 0 16px rgba(56,189,248,.25);}
.btn-lg{padding:16px 32px; font-size:15px; border-radius:14px;}
.btn-sm{padding:9px 16px; font-size:12.5px; border-radius:10px;}
.btn-row{display:flex; gap:14px; flex-wrap:wrap;}

/* ------------------------------- full-screen hero -------------------------- */
.hero-full{
  position:relative; overflow:hidden;
  min-height:calc(100svh - var(--header-h));
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:48px 24px;
}
.hero-full .bg{
  position:absolute; inset:-4%; z-index:-2;
  background-image:url("screens/feature.png");
  background-size:cover; background-position:center 40%; background-repeat:no-repeat;
  animation:kenburns 22s ease-in-out infinite alternate;
}
.hero-full .overlay{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(ellipse 65% 60% at 50% 44%, rgba(4,6,12,.85) 0%, rgba(4,6,12,.65) 48%, rgba(4,6,12,.42) 78%),
    linear-gradient(180deg, rgba(4,6,12,.82) 0%, rgba(4,6,12,.4) 26%, rgba(4,6,12,.5) 68%, rgba(4,6,12,.96) 100%);
}
@keyframes kenburns{0%{transform:scale(1) translate(0,0);} 100%{transform:scale(1.06) translate(-1.5%,-1%);}}
@media (prefers-reduced-motion: reduce){.hero-full .bg{animation:none;}}
.hero-full .content{position:relative; z-index:1; max-width:1100px; width:100%;}
.hero-grid{display:grid; grid-template-columns:auto 1fr; gap:60px; align-items:center; text-align:left;}
.hero-full .emblem{
  width:92px; height:92px; border-radius:14px; margin:0 auto 22px;
}
.hero-full .emblem.emblem-lg{
  width:clamp(300px,38vw,460px); height:clamp(300px,38vw,460px); margin:0; display:block;
}
.hero-full .eyebrow{
  display:inline-flex; align-items:center; gap:8px; color:var(--neon2);
  font-size:.76rem; font-weight:700; letter-spacing:1.6px; text-transform:uppercase;
  border:1px solid rgba(56,189,248,.3); background:rgba(4,6,12,.45); backdrop-filter:blur(6px);
  padding:7px 16px; border-radius:999px; margin-bottom:26px;
}
.hero-full .eyebrow .dot{width:6px; height:6px; border-radius:50%; background:#7CFFB2; box-shadow:0 0 8px #7CFFB2;}
.hero-full .kicker{
  display:block; color:var(--neon2); font-size:.8rem; font-weight:700;
  letter-spacing:1.8px; text-transform:uppercase; margin-bottom:14px;
  text-shadow:0 2px 12px rgba(0,0,0,.6);
}
.hero-full .tag{color:var(--text); font-size:1.2rem; max-width:520px; margin:0 0 14px; text-shadow:0 2px 12px rgba(0,0,0,.6);}
.hero-full .tag-sub{color:var(--muted); font-size:.98rem; max-width:480px; margin:0 0 32px; text-shadow:0 2px 10px rgba(0,0,0,.6);}
.hero-full .hero-values{
  display:flex; align-items:center; justify-content:flex-start; flex-wrap:wrap; gap:10px;
  margin-top:36px; color:var(--muted); font-size:.82rem; font-weight:600; letter-spacing:.3px;
  text-shadow:0 2px 10px rgba(0,0,0,.6);
}
.hero-full .hero-values .sep{color:var(--neon2); opacity:.6;}
.hero-full .btn-row{justify-content:flex-start !important;}
@media (max-width:860px){
  .hero-grid{grid-template-columns:1fr; text-align:center; gap:14px;}
  .hero-full .emblem.emblem-lg{margin:0 auto;}
  .hero-full .tag, .hero-full .tag-sub{margin-left:auto; margin-right:auto;}
  .hero-full .hero-values{justify-content:center;}
  .hero-full .btn-row{justify-content:center !important;}
}

/* hero load-in animation (logo stays static, everything else animates in) */
@keyframes fadeUp{from{opacity:0; transform:translateY(20px);} to{opacity:1; transform:translateY(0);}}
.hero-full .kicker,
.hero-full .tag,
.hero-full .tag-sub,
.hero-full .btn-row,
.hero-full .hero-values{
  opacity:0; animation:fadeUp .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-full .kicker{animation-delay:.15s;}
.hero-full .tag{animation-delay:.28s;}
.hero-full .tag-sub{animation-delay:.4s;}
.hero-full .btn-row{animation-delay:.52s;}
.hero-full .hero-values{animation-delay:.64s;}
@media (prefers-reduced-motion: reduce){
  .hero-full .kicker, .hero-full .tag, .hero-full .tag-sub, .hero-full .btn-row, .hero-full .hero-values{
    animation:none; opacity:1;
  }
}

.page-hero{padding:64px 0 56px; text-align:center; position:relative; overflow:hidden;}
.page-hero canvas.fx{position:absolute; inset:0; width:100%; height:100%; z-index:-1; opacity:.5;}
.page-hero .eyebrow{display:inline-flex; align-items:center; gap:8px; color:var(--neon2); font-size:.76rem; font-weight:700; letter-spacing:1.6px; text-transform:uppercase; border:1px solid rgba(56,189,248,.3); background:rgba(56,189,248,.07); padding:7px 16px; border-radius:999px; margin-bottom:20px;}
.page-hero h1{font-size:clamp(2rem,5vw,3rem); margin-bottom:14px;}
.page-hero p{color:var(--muted); font-size:1.05rem; max-width:620px; margin:0 auto;}
.page-hero .eyebrow, .page-hero h1, .page-hero p{opacity:0; animation:fadeUp .7s cubic-bezier(.2,.7,.2,1) forwards;}
.page-hero .eyebrow{animation-delay:.1s;}
.page-hero h1{animation-delay:.22s;}
.page-hero p{animation-delay:.34s;}
@media (prefers-reduced-motion: reduce){
  .page-hero .eyebrow, .page-hero h1, .page-hero p{animation:none; opacity:1;}
}


/* --------------------------------- sections -------------------------------- */
section{padding:100px 0;}
section[id]{scroll-margin-top:90px;}
main section + section{position:relative;}
main section + section::before{
  content:"";
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:min(560px, 80%); height:3px; border-radius:3px;
  background:linear-gradient(90deg, transparent, var(--neon), var(--accent), var(--neon), transparent);
  box-shadow:0 0 14px rgba(56,189,248,.55);
}
.section-title{font-size:clamp(1.5rem,3.4vw,2.1rem); text-align:center; margin-bottom:10px;}
.section-sub{color:var(--muted); text-align:center; max-width:600px; margin:0 auto 48px;}

@media (max-width:640px){
  section{padding:68px 0;}
}

/* ----------------------------------- about --------------------------------- */
.about-copy p{color:var(--muted); max-width:760px; margin:0 auto 16px; text-align:center;}
.about-copy p:last-child{margin-bottom:0;}

.timeline{max-width:720px; margin:56px auto 0; display:grid; gap:0;}
.timeline .step{display:grid; grid-template-columns:26px 1fr; gap:20px; position:relative; padding-bottom:40px;}
.timeline .step:last-child{padding-bottom:0;}
.timeline .dotcol{display:flex; flex-direction:column; align-items:center;}
.timeline .node{width:14px; height:14px; border-radius:50%; background:var(--neon2); box-shadow:0 0 12px rgba(34,211,238,.7); flex-shrink:0;}
.timeline .bar{flex:1; width:2px; background:linear-gradient(var(--neon),transparent); margin-top:4px;}
.timeline .step:last-child .bar{display:none;}
.timeline h3{font-size:1rem; margin-bottom:6px; color:var(--text);}
.timeline .when{color:var(--neon2); font-size:.74rem; font-weight:700; letter-spacing:.6px; text-transform:uppercase; margin-bottom:6px; display:block;}
.timeline p{color:var(--muted); font-size:.92rem;}

/* ------------------------------- games / app card --------------------------- */
.app-card{
  position:relative; overflow:hidden;
  display:grid; grid-template-columns:240px 1fr; gap:44px; align-items:center;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px; padding:40px;
  max-width:900px; margin:0 auto;
  transition:border-color .25s, box-shadow .25s;
}
.app-card:hover{border-color:rgba(56,189,248,.4); box-shadow:0 0 44px rgba(56,189,248,.15);}
.app-phone{
  position:relative; width:200px; aspect-ratio:9/19.5; margin:0 auto;
  border-radius:32px; padding:9px;
  background:linear-gradient(160deg,#1a1f2b,#05070c);
  box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 20px 45px rgba(0,0,0,.55), 0 0 40px rgba(56,189,248,.25);
}
.app-phone::before{
  content:""; position:absolute; top:9px; left:50%; transform:translateX(-50%);
  width:38%; height:14px; background:#05070c; border-radius:0 0 12px 12px; z-index:2;
}
.app-phone .screen{width:100%; height:100%; border-radius:22px; overflow:hidden; background:#000;}
.app-phone video, .app-phone img{width:100%; height:100%; object-fit:cover; display:block;}
.app-card .info{min-width:0;}
.app-card .title-row{display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:12px;}
.app-card .title-row img{width:48px; height:48px; border-radius:13px; box-shadow:0 0 14px rgba(56,189,248,.35);}
.app-card h3{font-size:1.5rem;}
.chip{
  font-size:.68rem; font-weight:600; letter-spacing:.4px;
  padding:3px 9px; border-radius:999px; border:1px solid rgba(255,255,255,.15); color:var(--muted);
}
.chip.live{
  color:#7CFFB2; border-color:rgba(124,255,178,.35); background:rgba(124,255,178,.08);
  display:inline-flex; align-items:center; gap:5px;
}
.chip.live::before{content:""; width:6px; height:6px; border-radius:50%; background:#7CFFB2; box-shadow:0 0 8px #7CFFB2;}
.app-card p{color:var(--muted); font-size:.95rem; margin-bottom:12px;}
.app-card ul{color:var(--muted); font-size:.88rem; margin:14px 0 22px; display:grid; gap:8px;}
.app-card ul li{display:flex; align-items:flex-start; gap:8px;}
.app-card ul li svg{width:15px; height:15px; color:var(--neon2); flex-shrink:0; margin-top:3px;}
.app-card .actions{display:flex; gap:12px; flex-wrap:wrap;}
.app-card .btn{padding:11px 22px; font-size:13px;}

@media (max-width:640px){
  .app-card{grid-template-columns:1fr; text-align:center; padding:30px 24px;}
  .app-card .title-row{justify-content:center;}
  .app-card .actions{justify-content:center;}
  .app-card ul li{justify-content:center;}
}

/* gallery + lightbox */
.gallery-title{
  text-align:center; font-size:1.05rem; color:var(--muted); font-weight:600;
  letter-spacing:.4px; max-width:900px; margin:64px auto 0;
}
.gallery{display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:16px; max-width:900px; margin:20px auto 0;}
.gallery figure{
  position:relative; border-radius:16px; overflow:hidden; cursor:zoom-in;
  border:1px solid rgba(255,255,255,.08); background:#000;
  aspect-ratio:9/16;
}
.gallery figure img{width:100%; height:100%; object-fit:cover; transition:transform .4s;}
.gallery figure:hover img{transform:scale(1.08);}
.gallery figure::after{
  content:"\2922"; position:absolute; top:10px; right:10px; width:28px; height:28px;
  border-radius:50%; background:rgba(4,6,12,.6); color:var(--text);
  display:flex; align-items:center; justify-content:center; font-size:13px;
  border:1px solid rgba(255,255,255,.15); opacity:0; transition:opacity .25s;
}
.gallery figure:hover::after{opacity:1;}

.lightbox{
  position:fixed; inset:0; z-index:1000; display:none;
  align-items:center; justify-content:center; padding:32px;
  background:rgba(2,4,10,.9); backdrop-filter:blur(6px);
}
.lightbox.open{display:flex;}
.lightbox img{max-width:min(900px,92vw); max-height:86vh; border-radius:14px; box-shadow:0 0 60px rgba(56,189,248,.25);}
.lightbox .lb-close{
  position:absolute; top:22px; right:26px; width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.18); color:var(--text);
  display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:20px;
}
.lightbox .lb-close:hover{border-color:var(--neon); color:var(--neon2);}

/* coming soon card */
/* --------------------------------- values ---------------------------------- */
.values{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px; max-width:940px; margin:0 auto;
}
.values .card{
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07);
  border-radius:16px; padding:26px; text-align:center;
  transition:border-color .25s, transform .25s, box-shadow .25s;
}
.values .card:hover{border-color:rgba(56,189,248,.3); transform:translateY(-4px); box-shadow:0 14px 30px rgba(0,0,0,.3);}
.values .ficon{
  width:46px; height:46px; border-radius:13px; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(56,189,248,.16), rgba(192,132,252,.12));
  border:1px solid rgba(255,255,255,.08);
  color:var(--neon2);
}
.values .ficon svg{width:22px; height:22px;}
.values h3{font-size:.98rem; margin-bottom:8px; color:var(--neon2);}
.values p{color:var(--muted); font-size:.87rem;}

/* --------------------------------- contact ---------------------------------- */
.contact{text-align:center; max-width:680px; margin:0 auto;}
.contact h2{margin-bottom:12px;}
.contact > p{color:var(--muted); margin-bottom:32px;}
.contact-methods{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}
.contact-method{
  display:flex; align-items:center; gap:14px; text-align:left;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:16px 22px; min-width:240px;
  transition:border-color .25s, box-shadow .25s, transform .25s;
}
.contact-method:hover{border-color:rgba(56,189,248,.4); box-shadow:0 0 24px rgba(56,189,248,.15); transform:translateY(-2px);}
.contact-method .cm-icon{
  width:42px; height:42px; flex-shrink:0; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(56,189,248,.18), rgba(192,132,252,.14));
  border:1px solid rgba(255,255,255,.08);
  color:var(--neon2);
}
.contact-method .cm-icon svg{width:19px; height:19px;}
.contact-method .cm-icon .gp-icon{font-size:20px;}
.contact-method:hover .cm-icon{
  background:linear-gradient(135deg, rgba(56,189,248,.32), rgba(192,132,252,.26));
  color:var(--text);
}
.contact-method .cm-text{display:flex; flex-direction:column; gap:2px;}
.contact-method .cm-label{font-size:.72rem; color:var(--muted); text-transform:uppercase; letter-spacing:.5px;}
.contact-method .cm-value{font-size:.92rem; font-weight:600; color:var(--text);}

.faq{max-width:720px; margin:56px auto 0; display:grid; gap:12px;}
.faq details{
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08);
  border-radius:14px; padding:18px 22px; transition:border-color .2s;
}
.faq details[open]{border-color:rgba(56,189,248,.35);}
.faq summary{cursor:pointer; font-weight:600; font-size:.96rem; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:"+"; font-size:1.3rem; color:var(--neon2); transition:transform .25s; flex-shrink:0;}
.faq details[open] summary::after{transform:rotate(45deg);}
.faq .a{color:var(--muted); font-size:.9rem; margin-top:12px; line-height:1.6;}

/* ----------------------------------- CTA banner ------------------------------ */
.cta-banner{
  max-width:var(--maxw); margin:0 auto; padding:56px 48px; border-radius:28px;
  background:linear-gradient(135deg, rgba(56,189,248,.12), rgba(192,132,252,.1));
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
  text-align:left;
}
.cta-banner h2{font-size:clamp(1.3rem,3vw,1.7rem); margin-bottom:8px;}
.cta-banner p{color:var(--muted); font-size:.95rem; max-width:440px;}
@media (max-width:700px){.cta-banner{text-align:center; justify-content:center; padding:40px 28px;}}

/* ------------------------------------ footer ---------------------------------- */
footer{border-top:1px solid rgba(255,255,255,.06); padding:56px 24px 32px; color:var(--muted); font-size:.85rem;}
.foot-grid{max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom:36px;}
.foot-brand{display:flex; align-items:center; gap:10px; margin-bottom:14px;}
.foot-brand img{width:34px; height:34px; border-radius:9px;}
.foot-brand span{font-family:'Orbitron',sans-serif; font-weight:800; color:var(--text); font-size:.95rem;}
.foot-grid p{max-width:280px; line-height:1.6;}
.foot-col h4{color:var(--text); font-size:.8rem; text-transform:uppercase; letter-spacing:.6px; margin-bottom:14px;}
.foot-col ul{display:grid; gap:9px;}
.foot-col a:hover{color:var(--neon2);}
.foot-bottom{
  max-width:var(--maxw); margin:0 auto; padding-top:24px; border-top:1px solid rgba(255,255,255,.06);
  display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;
}
@media (max-width:820px){
  .foot-grid{grid-template-columns:1fr 1fr; }
}
@media (max-width:520px){
  .foot-grid{grid-template-columns:1fr;}
  .foot-bottom{flex-direction:column; text-align:center;}
}

/* simple legal-page main (privacy/terms) */
.legal-main{max-width:var(--maxw-narrow); margin:0 auto; padding:56px 24px 90px;}
.legal-main h1{font-size:clamp(1.9rem,5vw,2.5rem); margin-bottom:8px;}
.legal-main .updated{color:var(--muted); font-size:.85rem; margin-bottom:40px;}
.legal-main h2{font-size:1.18rem; color:var(--neon2); margin:36px 0 10px;}
.legal-main h3{font-size:1rem; color:var(--text); margin:20px 0 6px;}
.legal-main p, .legal-main li{color:var(--muted); font-size:.95rem;}
.legal-main a{color:var(--neon2); text-decoration:none;}
.legal-main a:hover{text-decoration:underline;}
.legal-main ul{padding-left:20px; margin-top:8px; list-style:disc;}
.legal-main li{margin-bottom:6px;}

/* -------------------------------- back to top -------------------------------- */
.to-top{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:46px; height:46px; border-radius:50%; cursor:pointer;
  background:rgba(10,14,24,.8); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.15); color:var(--text);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .25s, transform .25s, border-color .2s;
}
.to-top.show{opacity:1; visibility:visible; transform:translateY(0);}
.to-top:hover{border-color:var(--neon); color:var(--neon2); box-shadow:0 0 18px rgba(56,189,248,.25);}
.to-top svg{width:18px; height:18px;}
