  :root{
    --bg: #090c15;
    --bg-alt: #0c1120;
    --panel: #121a2c;
    --panel-2: #161f34;
    --border: #232c42;
    --border-soft: #1a2236;
    --text: #f4f5f9;
    --text-dim: #93a0ba;
    --text-faint: #5f6b85;
    --gold: #f6c94c;
    --gold-bright: #ffd966;
    --gold-dim: #a9873a;
    --pink: #e0559c;
    --teal: #4ec3c9;
    --green: #6fcf97;
    --radius: 10px;
    --radius-lg: 16px;
    --max: 1180px;
  }

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

  html{ scroll-behavior:smooth; }

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

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

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

  .mono{ font-family:'JetBrains Mono', monospace; }

  .wrap{
    max-width:var(--max);
    margin:0 auto;
    padding:0 32px;
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 26px;
    border-radius:8px;
    font-weight:700;
    font-size:15px;
    border:1px solid transparent;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--gold);
    color:#181205;
  }
  .btn-primary:hover{
    background:var(--gold-bright);
    box-shadow:0 8px 24px -6px rgba(246,201,76,.45);
    transform:translateY(-1px);
  }
  .btn-ghost{
    background:transparent;
    border-color:var(--border);
    color:var(--text);
  }
  .btn-ghost:hover{
    border-color:var(--gold-dim);
    background:rgba(246,201,76,.06);
  }
  .btn-sm{ padding:10px 18px; font-size:14px; }

  /* ---------- Nav (gold background, dark navy text) ---------- */
  header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(246,201,76,.97);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,.12);
  }
  nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:7px 0;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    font-size:19px;
    letter-spacing:-.01em;
    color:var(--bg);
  }
  .brand-mark{
    width:28px; height:28px;
    border-radius:8px;
    background:var(--bg);
    display:flex; align-items:center; justify-content:center;
    color:var(--gold);
    font-weight:900;
    font-size:12px;
    position:relative;
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap:32px;
    font-size:14px;
    font-weight:600;
    color:rgba(9,12,21,.6);
  }
  .nav-links a{ transition:color .15s ease; }
  .nav-links a:hover{ color:var(--bg); }
  .nav-cta{ display:flex; align-items:center; gap:16px; }
  .nav-cta .btn-sm{ padding:7px 16px; }

  /* nav sign-in: navy border ghost on gold */
  .nav-cta .btn-ghost{
    background:transparent;
    border-color:rgba(9,12,21,.25);
    color:var(--bg);
  }
  .nav-cta .btn-ghost:hover{
    border-color:rgba(9,12,21,.5);
    background:rgba(9,12,21,.06);
  }
  /* nav register: navy fill, gold text */
  .nav-cta .btn-primary{
    background:var(--bg);
    color:var(--gold);
    box-shadow:none;
  }
  .nav-cta .btn-primary:hover{
    background:var(--panel);
    box-shadow:0 8px 24px -6px rgba(0,0,0,.35);
    transform:translateY(-1px);
  }

  /* ---------- Hero (dark, as before) ---------- */
  .hero{
    position:relative;
    background:var(--bg);
    padding:72px 0 72px;
    overflow:hidden;
  }
  .hero-inner{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
    max-width:var(--max);
    margin:0 auto;
    padding:0 32px;
  }
  .hero-copy{
    text-align:left;
  }
  h1{
    font-size:clamp(30px, 3.8vw, 52px);
    font-weight:900;
    letter-spacing:-.02em;
    line-height:1.06;
    margin-bottom:10px;
    color:var(--text);
  }
  .hero-tagline{
    font-size:clamp(17px, 2vw, 22px);
    font-weight:700;
    color:var(--gold);
    letter-spacing:-.005em;
    margin-bottom:20px;
  }
  .hero p.lede{
    font-size:17px;
    color:var(--text-dim);
    margin-bottom:32px;
    max-width:480px;
  }
  .hero-ctas{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
    margin-bottom:14px;
  }
  .hero .btn-primary{
    background:var(--gold);
    color:#181205;
  }
  .hero .btn-primary:hover{
    background:var(--gold-bright);
    box-shadow:0 8px 24px -6px rgba(246,201,76,.45);
    transform:translateY(-1px);
  }
  .cta-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-weight:600;
    font-size:15px;
    color:var(--text-dim);
    padding:14px 4px;
    border-bottom:1px solid transparent;
    transition:color .15s ease, border-color .15s ease;
  }
  .cta-link .arrow{ transition:transform .15s ease; }
  .cta-link:hover{ color:var(--text); border-color:var(--border); }
  .cta-link:hover .arrow{ transform:translateX(3px); }
  .hero-note{
    font-size:13px;
    color:var(--text-faint);
  }
  .hero-visual{ position:relative; }
  .frame{
    border-radius:14px;
    border:1px solid var(--border);
    background:var(--panel);
    box-shadow:0 40px 90px -20px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.02);
    overflow:hidden;
  }
  .frame-bar{
    display:flex;
    align-items:center;
    gap:6px;
    padding:11px 14px;
    border-bottom:1px solid var(--border-soft);
    background:var(--bg-alt);
  }
  .frame-bar span{
    width:10px; height:10px; border-radius:50%;
    background:#2a3250;
  }
  .frame-media{
    position:relative;
    overflow:hidden;
    width:100%;
  }
  .frame-media::before{
    content:"";
    display:block;
    padding-top:34%; /* crops the preview to the top (most relevant) slice of the screenshot */
  }
  .frame-media img{
    position:absolute;
    top:0;
    left:50%;
    width:114%;
    max-width:114%;
    height:auto;
    transform:translateX(-50%);
    display:block;
  }

  /* ---------- Section shells ---------- */
  section{ padding:96px 0; }
  .section-alt{ background:var(--bg-alt); border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft); }

  .section-head{
    max-width:620px;
    margin:0 auto 64px;
    text-align:center;
  }
  .kicker{
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:12px;
  }
  .section-head h2{
    font-size:clamp(26px,3.4vw,38px);
    font-weight:800;
    letter-spacing:-.015em;
    margin-bottom:14px;
  }
  .section-head p{
    color:var(--text-dim);
    font-size:16px;
  }

  /* ---------- Feature rows ---------- */
  .feature-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
    margin-bottom:120px;
  }
  .feature-row:last-child{ margin-bottom:0; }
  .feature-row.reverse .feature-copy{ order:2; }
  .feature-row.reverse .feature-visual{ order:1; }

  .feature-num{
    font-family:'JetBrains Mono', monospace;
    font-size:13px;
    color:var(--text-faint);
    margin-bottom:14px;
    letter-spacing:.04em;
  }
  .feature-copy h3{
    font-size:26px;
    font-weight:800;
    letter-spacing:-.01em;
    margin-bottom:14px;
  }
  .feature-copy p{
    color:var(--text-dim);
    font-size:16px;
    margin-bottom:18px;
  }
  .feature-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .feature-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14.5px;
    color:var(--text-dim);
  }
  .feature-list li::before{
    content:'';
    flex:none;
    width:8px; height:8px;
    margin-top:8px;
    border-radius:50%;
    background:var(--gold);
    box-shadow:0 0 0 3px rgba(246,201,76,.14);
  }
  .feature-list li b{ color:var(--text); font-weight:600; }

  .feature-visual{
    border-radius:var(--radius-lg);
    border:1px solid var(--border);
    background:var(--panel);
    overflow:hidden;
    box-shadow:0 30px 60px -30px rgba(0,0,0,.6);
  }
  .feature-visual .frame-bar{ padding:10px 13px; }
  .feature-visual img{ width:100%; height:auto; }
  .feature-visual video{ max-width:100%; height:auto; display:block; margin:0 auto; }

  img.zoomable{ cursor:zoom-in; transition:filter .15s ease; }
  img.zoomable:hover{ filter:brightness(1.06); }

  .lightbox{
    position:fixed;
    inset:0;
    background:rgba(6,8,14,.88);
    backdrop-filter:blur(4px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    z-index:200;
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease;
  }
  .lightbox.open{ opacity:1; pointer-events:auto; }
  .lightbox img{
    max-width:100%;
    max-height:100%;
    border-radius:12px;
    box-shadow:0 40px 100px -20px rgba(0,0,0,.7);
    cursor:zoom-out;
  }
  .lightbox-close{
    position:absolute;
    top:24px; right:28px;
    width:40px; height:40px;
    border-radius:50%;
    background:var(--panel);
    border:1px solid var(--border);
    color:var(--text);
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .lightbox-close:hover{ border-color:var(--gold-dim); color:var(--gold); }

  @media (max-width:860px){
    .feature-row, .feature-row.reverse{ grid-template-columns:1fr; gap:32px; }
    .feature-row.reverse .feature-copy{ order:1; }
    .feature-row.reverse .feature-visual{ order:2; }
    .feature-row{ margin-bottom:72px; }
  }

  /* ---------- Signature: singer balance ---------- */
  .balance-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
  }
  @media (max-width:860px){ .balance-wrap{ grid-template-columns:1fr; gap:40px; } }

  .balance-card{
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:32px;
  }
  .balance-card .frame-bar{ margin:-32px -32px 24px; padding:11px 16px; }
  .balance-title{
    font-size:13px;
    color:var(--text-faint);
    margin-bottom:6px;
  }
  .balance-show{
    font-weight:800;
    font-size:18px;
    color:var(--gold);
    margin-bottom:22px;
  }
  .balance-row{ margin-bottom:20px; }
  .balance-row:last-child{ margin-bottom:0; }
  .balance-labels{
    display:flex;
    justify-content:space-between;
    font-size:13.5px;
    font-weight:700;
    margin-bottom:8px;
  }
  .balance-bar{
    height:12px;
    border-radius:999px;
    background:var(--bg-alt);
    border:1px solid var(--border-soft);
    overflow:hidden;
    display:flex;
  }
  .balance-fill{
    height:100%;
    transition:width 1.4s cubic-bezier(.16,.9,.3,1);
  }
  .fill-john{ background:linear-gradient(90deg,#4ec3c9,#3aa6ac); }
  .fill-jane{ background:linear-gradient(90deg,var(--gold),var(--gold-dim)); }

  .balance-copy .kicker{ text-align:left; margin-bottom:12px; }
  .balance-copy h2{
    font-size:clamp(26px,3.4vw,36px);
    font-weight:800;
    letter-spacing:-.015em;
    margin-bottom:16px;
  }
  .balance-copy p{ color:var(--text-dim); font-size:16px; margin-bottom:18px; }

  /* ---------- Pricing ---------- */
  .pricing-grid{
    display:flex;
    justify-content:center;
  }
  .price-card{
    width:100%;
    max-width:460px;
    background:var(--panel);
    border:1px solid var(--gold-dim);
    border-radius:var(--radius-lg);
    padding:40px;
    position:relative;
    box-shadow:0 30px 70px -30px rgba(246,201,76,.15);
  }
  .price-badge{
    position:absolute;
    top:-14px; left:40px;
    background:var(--gold);
    color:#181205;
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    padding:6px 12px;
    border-radius:999px;
  }
  .price-card h3{
    font-size:22px;
    font-weight:800;
    margin-bottom:6px;
  }
  .price-card .price-sub{
    color:var(--text-dim);
    font-size:14.5px;
    margin-bottom:26px;
  }
  .price-tag{
    display:flex;
    align-items:baseline;
    gap:8px;
    margin-bottom:6px;
  }
  .price-tag .amount{
    font-size:46px;
    font-weight:900;
    letter-spacing:-.02em;
  }
  .price-tag .period{ color:var(--text-dim); font-size:15px; }
  .price-strike{
    color:var(--text-faint);
    font-size:14px;
    margin-bottom:28px;
  }
  .price-strike s{ margin-right:6px; }
  .price-features{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:30px;
    padding-top:22px;
    border-top:1px solid var(--border-soft);
  }
  .price-features li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14.5px;
    color:var(--text-dim);
  }
  .price-features li b{ color:var(--text); }
  .check{
    flex:none;
    width:18px; height:18px;
    border-radius:5px;
    background:rgba(111,207,151,.14);
    border:1px solid rgba(111,207,151,.4);
    color:var(--green);
    font-size:12px;
    font-weight:900;
    display:flex; align-items:center; justify-content:center;
    margin-top:1px;
  }
  .price-card .btn{ width:100%; }
  .price-foot{
    text-align:center;
    font-size:12.5px;
    color:var(--text-faint);
    margin-top:14px;
  }

  /* ---------- Final CTA ---------- */
  .final-cta{
    text-align:center;
    padding:110px 0;
  }
  .final-cta h2{
    font-size:clamp(28px,4vw,42px);
    font-weight:900;
    letter-spacing:-.02em;
    margin-bottom:16px;
  }
  .final-cta p{
    color:var(--text-dim);
    font-size:17px;
    margin-bottom:32px;
  }

  /* ---------- Footer ---------- */
  footer{
    border-top:1px solid var(--border-soft);
    padding:36px 0;
  }
  .footer-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
  }
  .footer-left{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
  }
  .footer-brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    color:var(--text-dim);
    font-size:14px;
  }
  .footer-brand .brand-mark{
    width:24px; height:24px;
    border-radius:6px;
    font-size:10px;
    background:var(--gold);
    color:#181205;
  }
  .footer-brand{
    color:var(--text-dim);
  }
  footer .fine{
    font-size:13px;
    color:var(--text-faint);
  }
  .footer-link{
    background:none;
    border:none;
    padding:0;
    font:inherit;
    font-size:13px;
    color:var(--text-dim);
    cursor:pointer;
    text-decoration:underline;
    text-underline-offset:3px;
  }
  .footer-link:hover{ color:var(--gold); }

  /* ---------- Cookie consent banner ---------- */
  .cookie-banner{
    position:fixed;
    left:50%;
    bottom:24px;
    transform:translateX(-50%);
    z-index:200;
    width:50%;
    min-width:340px;
    max-width:520px;
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:0 20px 60px -20px rgba(0,0,0,.65);
    padding:24px;
  }
  .cookie-banner[hidden]{ display:none; }
  .cookie-banner-inner{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  .cookie-banner-copy h2{
    font-size:15px;
    font-weight:800;
    margin-bottom:8px;
    color:var(--text);
  }
  .cookie-banner-copy p{
    font-size:13.5px;
    color:var(--text-dim);
    line-height:1.65;
  }
  .cookie-banner-copy a{
    color:var(--gold);
    font-weight:600;
    text-decoration:none;
  }
  .cookie-banner-copy a:hover{ text-decoration:underline; }
  .cookie-banner-actions{
    display:flex;
    gap:12px;
  }
  .cookie-banner-actions .btn{ flex:1; }
  .cookie-banner-actions .btn-ghost{
    border-color:var(--text-dim);
  }
  .cookie-banner-actions .btn-ghost:hover{
    border-color:var(--gold);
  }
  @media (max-width:720px){
    .cookie-banner{ bottom:12px; width:calc(100% - 24px); min-width:0; max-width:none; padding:18px; }
  }

  /* ---------- Reveal on scroll ---------- */
  .reveal{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal.in{
    opacity:1;
    transform:translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media (max-width:960px){
    .wrap{ padding:0 24px; }
    section{ padding:72px 0; }
    .final-cta{ padding:80px 0; }
    .hero-inner{ grid-template-columns:1fr; gap:40px; padding:0 24px; }
    .hero-copy{ text-align:center; }
    .hero p.lede{ max-width:100%; }
    .hero-ctas{ justify-content:center; }
  }

  @media (max-width:760px){
    .nav-links{ display:none; }
    .brand{ font-size:17px; }
    .brand-mark{ width:30px; height:30px; font-size:12px; }
    .nav-cta{ gap:10px; }
    .nav-cta .btn{ padding:9px 14px; font-size:13px; }
    .hero{ padding:56px 0 8px; }
    .section-head{ margin-bottom:44px; }
    .balance-card{ padding:24px; }
    .balance-card .frame-bar{ margin:-24px -24px 20px; }
    .price-card{ padding:28px; }
    .price-badge{ left:28px; }
  }

  @media (max-width:600px){
    .wrap{ padding:0 18px; }
    section{ padding:56px 0; }
    .hero-inner{ padding:0 18px; }
    .nav-cta .btn-ghost{ display:none; }
    .hero-tagline{ margin-bottom:18px; }
    .hero-ctas{ flex-direction:column; align-items:stretch; }
    .hero-ctas .btn{ width:100%; }
    .hero-note{ padding:0 12px; }
    .feature-row{ margin-bottom:56px; }
    .feature-copy h3{ font-size:22px; }
    .feature-num{ margin-bottom:10px; }
    .price-tag .amount{ font-size:36px; }
    .final-cta{ padding:64px 0; }
    .final-cta .btn{ width:100%; }
    .footer-row{ justify-content:center; text-align:center; }
  }

  @media (max-width:420px){
    .wrap{ padding:0 16px; }
    .brand{ font-size:16px; }
    h1{ letter-spacing:-.015em; }
    .frame-bar span{ width:8px; height:8px; }
    .balance-card{ padding:20px; }
    .balance-card .frame-bar{ margin:-20px -20px 18px; }
    .balance-labels{ font-size:12.5px; }
    .price-card{ padding:22px; }
    .price-badge{ left:22px; font-size:11px; }
  }

  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    .balance-fill{ transition:none; }
  }
