:root{
    --bg:#090B10;
    --card:#11161D;
    --card-hi:#161D26;
    --primary:#3B82F6;
    --primary-dim: rgba(59,130,246,0.12);
    --text:#FFFFFF;
    --text-secondary:#B8C0CC;
    --border: rgba(255,255,255,0.08);
    --border-hi: rgba(255,255,255,0.14);
  }

  *{ margin:0; padding:0; box-sizing:border-box; }

  html{ scroll-behavior:smooth; }

  body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  img{ max-width:100%; display:block; }

  a{ color:inherit; text-decoration:none; }

  .wrap{
    max-width:1200px;
    margin:0 auto;
    padding:0 32px;
  }

  ::selection{ background:var(--primary); color:#ffffff; }

  /* focus visibility */
  a:focus-visible, button:focus-visible{
    outline:2px solid var(--primary);
    outline-offset:3px;
    border-radius:4px;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
  }

  /* ---------- reveal on scroll ---------- */
  .reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .9s cubic-bezier(.16,.8,.24,1), transform .9s cubic-bezier(.16,.8,.24,1);
  }
  .reveal.in{ opacity:1; transform:translateY(0); }
  .reveal-delay-1{ transition-delay:.1s; }
  .reveal-delay-2{ transition-delay:.22s; }
  .reveal-delay-3{ transition-delay:.34s; }

  /* ---------- header ---------- */
  header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:100;
    padding:22px 0;
    transition:background .4s ease, backdrop-filter .4s ease, border-color .4s ease, padding .4s ease;
    border-bottom:1px solid transparent;
  }
  header.scrolled{
    background:rgba(9,11,16,0.72);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border-bottom:1px solid var(--border);
    padding:14px 0;
  }
  header .inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .brand img{ height:34px; width:auto; }
  .brand span{
    font-weight:800;
    font-size:19px;
    letter-spacing:-0.02em;
  }
  nav.links{
    display:flex;
    align-items:center;
    gap:36px;
  }
  nav.links a.navlink{
    font-size:14.5px;
    font-weight:500;
    color:var(--text-secondary);
    transition:color .25s ease;
  }
  nav.links a.navlink:hover{ color:var(--text); }
  .nav-actions{
    display:flex;
    align-items:center;
    gap:22px;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-family:inherit;
    font-weight:700;
    font-size:14.5px;
    border-radius:100px;
    border:none;
    cursor:pointer;
    transition:transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--primary);
    color:#ffffff;
    padding:12px 24px;
    box-shadow:0 0 0 0 rgba(59,130,246,0);
  }
  .btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px -6px rgba(59,130,246,0.45);
  }
  .btn-primary.big{
    padding:18px 36px;
    font-size:16.5px;
  }
  .btn-ghost{
    color:var(--text);
    font-size:14.5px;
    font-weight:600;
    padding:10px 6px;
    background:transparent;
  }
  .btn-outline{
    background:transparent;
    border:1px solid var(--border-hi);
    color:var(--text);
    padding:17px 35px;
    font-size:16.5px;
  }
  .btn-outline:hover{ border-color:var(--primary); transform:translateY(-2px); }

  .menu-toggle{
    display:none;
    background:none;
    border:none;
    color:var(--text);
    cursor:pointer;
    padding:8px;
  }

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    padding:150px 0 80px;
    overflow:hidden;
  }
  .scroll-hint{
    position:absolute;
    left:50%;
    bottom:36px;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    color:var(--text-secondary);
    font-size:12px;
    font-weight:600;
    letter-spacing:0.04em;
    text-decoration:none;
    opacity:0.75;
    transition:opacity .25s ease, color .25s ease;
    z-index:3;
  }
  .scroll-hint:hover{ opacity:1; color:var(--text); }
  .scroll-hint svg{ animation:scroll-bounce 1.8s ease-in-out infinite; }
  @keyframes scroll-bounce{
    0%, 100%{ transform:translateY(0); }
    50%{ transform:translateY(6px); }
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
  }
  .eyebrow-line{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
    margin-bottom:26px;
  }
  .eyebrow-dot{
    width:7px; height:7px; border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 0 4px var(--primary-dim);
  }
  .hero h1{
    font-size:clamp(46px, 6vw, 76px);
    line-height:0.98;
    font-weight:800;
    letter-spacing:-0.03em;
  }
  .hero h1 .accent{ color:var(--primary); }
  .hero p.lead{
    margin-top:28px;
    font-size:19px;
    line-height:1.55;
    color:var(--text-secondary);
    max-width:440px;
  }
  .hero-ctas{
    margin-top:40px;
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
  }
  .hero-check-row{
    margin-top:34px;
    display:flex;
    gap:26px;
    flex-wrap:wrap;
  }
  .hero-check{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13.5px;
    color:var(--text-secondary);
    font-weight:500;
  }
  .hero-check svg{ color:var(--primary); flex-shrink:0; }

  /* phone visual */
  .hero-visual{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:600px;
  }
  .orbit-icon{
    position:absolute;
    color:var(--text-secondary);
    opacity:0.55;
    filter:drop-shadow(0 0 18px rgba(0,0,0,0.6));
    animation:float 7s ease-in-out infinite;
  }
  .orbit-icon.primary-tint{ color:var(--primary); opacity:0.7; }
  @keyframes float{
    0%,100%{ transform:translateY(0px) rotate(0deg); }
    50%{ transform:translateY(-14px) rotate(3deg); }
  }
  .glow-ring{
    position:absolute;
    width:620px; height:620px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(59,130,246,0.16) 0%, rgba(59,130,246,0.03) 45%, transparent 70%);
    filter:blur(10px);
  }
  .phone-mock{
    position:relative;
    width:340px;
    border-radius:46px;
    background:linear-gradient(160deg, #1a2029, #0b0e13);
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:
      0 40px 80px -20px rgba(0,0,0,0.7),
      0 0 0 1px rgba(255,255,255,0.03) inset,
      0 0 90px -10px rgba(59,130,246,0.18);
    padding:10px;
    animation:hover-phone 6s ease-in-out infinite;
  }
  @keyframes hover-phone{
    0%,100%{ transform:translateY(0) rotate(-1.2deg); }
    50%{ transform:translateY(-16px) rotate(0.6deg); }
  }
  .phone-mock .screen{
    width:100%;
    border-radius:36px;
    overflow:hidden;
    background:#0d1117;
    position:relative;
    display:block;
  }
  .phone-mock .screen img{
    width:100%;
    display:block;
  }

  /* ---------- section eyebrow (shared) ---------- */
  .section-eyebrow{
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:20px;
  }

  /* ---------- available today: compact card grid ---------- */
  .available-section{ padding:150px 0; }
  .available-section h2{
    text-align:center;
    font-size:clamp(28px, 3.2vw, 40px);
    font-weight:800;
    letter-spacing:-0.02em;
    margin-bottom:56px;
  }
  .card-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
  }
  .feat-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px 26px;
    transition:border-color .25s ease, transform .25s ease;
  }
  .feat-card:hover{
    border-color:rgba(59,130,246,0.35);
    transform:translateY(-4px);
  }
  .feat-card .icon-badge{
    width:44px; height:44px;
    border-radius:12px;
    background:var(--primary-dim);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    margin-bottom:18px;
  }
  .feat-card h4{
    font-size:16.5px;
    font-weight:700;
    letter-spacing:-0.01em;
    margin-bottom:10px;
  }
  .feat-card p{
    font-size:14px;
    line-height:1.6;
    color:var(--text-secondary);
  }

  /* proof strip: real screenshots supporting the card grid */
  .proof-strip{
    margin-top:64px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
  .proof-shot{
    border-radius:20px;
    overflow:hidden;
    border:1px solid var(--border);
    background:#0d1117;
    box-shadow:0 30px 60px -24px rgba(0,0,0,0.55);
  }
  .proof-shot img{ width:100%; display:block; }

  /* coming soon */
  .soon-section{
    padding:80px 0 160px;
  }
  .soon-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.05);
    border:1px solid var(--border-hi);
    padding:8px 16px;
    border-radius:100px;
    font-size:12.5px;
    font-weight:600;
    color:var(--text-secondary);
    margin-bottom:36px;
  }
  .soon-badge .dot{
    width:6px; height:6px; border-radius:50%;
    background:#F2B84B;
  }
  .soon-header{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:36px;
  }
  .soon-header h3{
    font-size:clamp(22px, 2.4vw, 28px);
    font-weight:700;
    letter-spacing:-0.02em;
  }
  .soon-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:16px;
  }
  .soon-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    padding:22px 20px;
  }
  .soon-card .soon-icon{ color:var(--text-secondary); margin-bottom:14px; }
  .soon-card h4{
    font-size:15px;
    font-weight:600;
  }

  /* cta banner (fundo com screenshot real desfocado, não foto de stock) */
  .cta-banner{
    padding:100px 0 140px;
  }
  .cta-banner-inner{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    padding:64px 56px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
    border:1px solid var(--border);
  }
  .cta-banner-bg{
    position:absolute;
    inset:0;
    width:100%; height:100%;
    object-fit:cover;
    object-position:top;
    filter:blur(18px) brightness(0.5) saturate(120%);
    transform:scale(1.15);
  }
  .cta-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(9,11,16,0.92), rgba(9,11,16,0.75));
  }
  .cta-banner-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
    width:100%;
  }
  .cta-banner-copy h3{
    font-size:clamp(28px, 3.6vw, 42px);
    font-weight:800;
    letter-spacing:-0.025em;
    line-height:1.12;
  }
  .cta-banner-copy h3 .accent{ color:var(--primary); }
  .cta-banner-action{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .cta-banner-note{
    font-size:12.5px;
    color:var(--text-secondary);
  }
  @media (max-width: 720px){
    .cta-banner-inner{ padding:44px 28px; }
    .cta-banner-content{ justify-content:center; text-align:center; }
    .cta-banner-action{ align-items:center; width:100%; }
  }

  /* footer */
  footer{
    border-top:1px solid var(--border);
    padding:64px 0 40px;
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:40px;
    padding-bottom:44px;
  }
  .footer-brand img{ height:30px; margin-bottom:14px; }
  .footer-brand p{
    color:var(--text-secondary);
    font-size:13.5px;
    max-width:260px;
    line-height:1.6;
  }
  .footer-links{
    display:flex;
    gap:64px;
    flex-wrap:wrap;
  }
  .footer-col h5{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--text-secondary);
    margin-bottom:16px;
    font-weight:600;
  }
  .footer-col a{
    display:block;
    font-size:14px;
    color:var(--text-secondary);
    margin-bottom:12px;
    transition:color .2s ease;
  }
  .footer-col a:hover{ color:var(--text); }
  .footer-bottom{
    border-top:1px solid var(--border);
    padding-top:28px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    font-size:12.5px;
    color:var(--text-secondary);
  }

  /* mobile nav */
  .mobile-panel{
    position:fixed;
    inset:0;
    background:rgba(9,11,16,0.98);
    backdrop-filter:blur(10px);
    z-index:200;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
    opacity:0;
    pointer-events:none;
    transition:opacity .3s ease;
  }
  .mobile-panel.open{ opacity:1; pointer-events:auto; }
  .mobile-panel a{ font-size:22px; font-weight:600; }
  .mobile-panel .close-x{
    position:absolute;
    top:26px; right:26px;
    background:none; border:none; color:var(--text); cursor:pointer;
  }

  /* ---------- responsive ---------- */
  @media (max-width: 980px){
    nav.links{ display:none; }
    .menu-toggle{ display:block; }
    .hero-grid{ grid-template-columns:1fr; }
    .hero{ padding:150px 0 80px; text-align:center; }
    .hero p.lead{ margin-left:auto; margin-right:auto; }
    .hero-ctas{ justify-content:center; }
    .hero-check-row{ justify-content:center; }
    .hero-visual{ margin-top:60px; min-height:520px; }
    .card-grid{ grid-template-columns:repeat(2, 1fr); }
    .proof-strip{ grid-template-columns:1fr; }
    .soon-grid{ grid-template-columns:repeat(2, 1fr); }
    .footer-top{ flex-direction:column; }
  }
  @media (max-width: 560px){
    .wrap{ padding:0 20px; }
    .available-section{ padding:100px 0; }
    .card-grid{ grid-template-columns:1fr; }
    .nav-actions .btn-ghost{ display:none; }
    .orbit-icon{ display:none; }
  }

.brand-icon{ height:30px; width:auto; border-radius:7px; }
