  :root {
    --bg: #F7F2E9; --bg-warm: #EFE6D6; --card: #FFFFFF; --surface: #F0EADD;
    --text: #1C1814; --text-muted: #837868; --text-faint: #B8AE9E; --border: #ECE3D2;
    --accent: #2563EB; --accent-dark: #1E50C0; --sage: #4F7A3F; --sage-bg: #E4EEDE;
    --sky-bg: #E0EAF7; --rose: #C0563E; --rose-bg: #F7E2DE; --amber: #B07A1F; --amber-bg: #F7EAD2;
    --radius: 22px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: -apple-system, "SF Pro Text", "Segoe UI", system-ui, sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.6; }
  a { color: var(--accent); text-decoration: none; }
  .wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  .btn { display: inline-flex; align-items: center; gap: 8px; font-family: inherit; font-weight: 600; font-size: 15px; border-radius: 12px; padding: 13px 22px; cursor: pointer; border: 1px solid transparent; transition: transform .15s, box-shadow .15s; }
  .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px color-mix(in oklab, var(--accent) 28%, transparent); }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-ghost { background: var(--card); color: var(--text); border-color: var(--border); }
  .btn-lg { font-size: 16px; padding: 15px 26px; border-radius: 14px; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, transparent); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }

  /* NAV */
  nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); background: color-mix(in oklab, var(--bg) 82%, transparent); border-bottom: 1px solid var(--border); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  .logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.4px; color: var(--text); }
  .logo-mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent) 55%, var(--amber))); display: flex; align-items: center; justify-content: center; }
  .nav-cta { display: flex; align-items: center; gap: 14px; }
  .nav-cta .back { font-size: 14px; color: var(--text-muted); font-weight: 500; }
  @media (max-width: 600px) { .nav-cta .back { display: none; } .nav-inner { padding: 0 16px; } .nav-cta { gap: 8px; } .nav-cta .btn { padding: 7px 12px !important; font-size: 13px; white-space: nowrap; } .logo { font-size: 17px; } .logo-mark { width: 30px; height: 30px; } #langSwitch { margin-left: 0 !important; } .lang-select { font-size: 12px !important; padding: 6px 22px 6px 8px !important; max-width: 82px; background-position: right 7px center !important; } }
  @media (max-width: 340px) { #langSwitch { display: none; } }

  /* HERO */
  .hero { padding: 70px 0 60px; position: relative; overflow: hidden; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
  .hero h1 { font-size: 52px; line-height: 1.05; letter-spacing: -2px; font-weight: 760; margin-bottom: 20px; text-wrap: balance; }
  @media (max-width: 900px) { .hero h1 { font-size: 40px; } }
  @media (max-width: 480px) { .hero h1 { font-size: 33px; letter-spacing: -1.4px; } }
  .hero .lead { font-size: 19px; color: var(--text-muted); max-width: 540px; margin-bottom: 28px; }
  .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-note { font-size: 13px; color: var(--text-faint); margin-top: 16px; }
  .hero-visual { display: flex; justify-content: center; }

  /* phone mockup */
  .phone { width: 280px; height: 580px; border-radius: 46px; background: #1C1814; padding: 11px; box-shadow: 0 40px 80px rgba(40,30,20,0.28), 0 8px 20px rgba(40,30,20,0.12); position: relative; flex-shrink: 0; }
  .phone::before { content: ''; position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 100px; height: 26px; background: #1C1814; border-radius: 999px; z-index: 3; }
  .screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: var(--bg); position: relative; display: flex; flex-direction: column; }
  .scr-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 16px; box-shadow: 0 2px 8px rgba(50,40,30,0.04); }

  /* SECTION */
  section { padding: 76px 0; }
  .sec-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
  h2 { font-size: 38px; letter-spacing: -1.2px; font-weight: 720; margin-bottom: 14px; text-wrap: balance; }
  @media (max-width: 900px) { h2 { font-size: 30px; } }
  .sec-head p { font-size: 18px; color: var(--text-muted); }

  /* PAIN */
  .pain { background: var(--bg-warm); }
  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 800px) { .pain-grid { grid-template-columns: 1fr; } }
  .pain-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
  .pain-card .pic { width: 48px; height: 48px; border-radius: 13px; background: var(--rose-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .pain-card h3 { font-size: 18px; font-weight: 650; margin-bottom: 8px; }
  .pain-card p { font-size: 15px; color: var(--text-muted); }
  .feat-soon { font-size: 10px; font-weight: 700; color: var(--sage); background: var(--sage-bg); padding: 1px 7px; border-radius: 999px; margin-left: 6px; vertical-align: middle; white-space: nowrap; }

  /* FEATURES (benefit) */
  .feat { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 64px; }
  .feat:last-child { margin-bottom: 0; }
  @media (max-width: 800px) { .feat { grid-template-columns: 1fr; gap: 28px; } .feat .feat-visual { order: 2; } .feat.rev .feat-text { order: 0; } }
  .feat.rev .feat-text { order: 2; }
  .feat-text h3 { font-size: 27px; letter-spacing: -0.6px; font-weight: 700; margin-bottom: 12px; }
  .feat-text p { font-size: 17px; color: var(--text-muted); }
  .feat-text .sub { font-size: 14px; color: var(--text-faint); margin-top: 10px; }
  .feat-visual { background: linear-gradient(160deg, var(--bg-warm), color-mix(in oklab, var(--accent) 7%, var(--bg-warm))); border-radius: 28px; padding: 36px; display: flex; align-items: center; justify-content: center; min-height: 320px; border: 1px solid var(--border); }
  .mini { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 18px; width: 100%; max-width: 330px; box-shadow: 0 12px 30px rgba(50,40,30,0.1); }
  .mini-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
  .mini-row:last-child { border-bottom: none; }
  .mini-ic { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .mini-row .mt { flex: 1; min-width: 0; }
  .mini-row .mt b { font-size: 14px; font-weight: 600; display: block; }
  .mini-row .mt span { font-size: 12px; color: var(--text-muted); }
  .dot-live { width: 9px; height: 9px; border-radius: 999px; flex-shrink: 0; }

  /* LAW band */
  .law { background: var(--text); color: #fff; }
  .law .wrap { max-width: 820px; text-align: center; }
  .law .eyebrow { color: #fff; background: rgba(255,255,255,0.14); }
  .law h2 { color: #fff; }
  .law p { font-size: 18px; color: rgba(255,255,255,0.72); margin: 0 auto; }
  .law .fineprint { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 20px; }

  /* PRICING (compact) */
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; align-items: start; }
  @media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; } }
  .plan { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; position: relative; }
  .plan.featured { border: 2px solid var(--accent); box-shadow: 0 20px 50px color-mix(in oklab, var(--accent) 18%, transparent); }
  .plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 999px; }
  .plan h3 { font-size: 18px; font-weight: 650; margin-bottom: 4px; }
  .plan .desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; min-height: 38px; }
  .founder { display: inline-block; font-size: 11px; font-weight: 700; color: var(--sage); background: var(--sage-bg); padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }
  .price { display: flex; align-items: baseline; gap: 4px 6px; flex-wrap: wrap; margin-bottom: 4px; }
  .price .amt { font-size: 42px; font-weight: 750; letter-spacing: -1.5px; }
  .price .amt-old { font-size: 21px; font-weight: 600; color: var(--text-faint); text-decoration: line-through; align-self: center; }
  .price .per { font-size: 14px; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
  .price-sub { font-size: 13px; color: var(--text-faint); margin: 6px 0 20px; }
  .plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; flex: 1; }
  .plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
  .plan .chk { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
  .plan .btn { width: 100%; justify-content: center; }
  .price-foot { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 30px; }
  .price-foot span { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--text-muted); }
  .price-foot svg { color: var(--sage); }

  /* FINAL CTA */
  .cta-band { background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent) 70%, #6D6FC0)); border-radius: 30px; padding: 60px 40px; text-align: center; color: #fff; }
  .cta-band h2 { color: #fff; }
  .cta-band p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 480px; margin: 0 auto 26px; }
  .cta-band .btn { background: #fff; color: var(--accent); }

  /* FOOTER */
  footer { padding: 40px 0 50px; border-top: 1px solid var(--border); margin-top: 20px; }
  .foot { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--text-muted); }
  .foot a { color: var(--text-muted); }
  .promo-bar { background: var(--accent); color: #fff; text-align: center; font-size: 14px; font-weight: 500; padding: 10px 16px; line-height: 1.4; }
  .promo-bar b { font-weight: 700; }
  .promo-bar .promo-tag { display: inline-block; background: rgba(255,255,255,0.22); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 999px; margin-right: 8px; vertical-align: middle; text-transform: uppercase; letter-spacing: 0.4px; }
   (max-width: 560px) { .promo-bar .promo-tag { display: none; } .promo-bar { font-size: 12.5px; } }
  .bfaq { max-width: 760px; margin: 0 auto; }
  .bfaq details { background: var(--card); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 12px; }
  .bfaq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-size: 16px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .bfaq summary::-webkit-details-marker { display: none; }
  .bfaq summary .chev { transition: transform .2s; color: var(--text-muted); flex-shrink: 0; }
  .bfaq details[open] summary .chev { transform: rotate(180deg); }
  .bfaq-body { padding: 0 22px 20px; font-size: 15px; color: var(--text-muted); line-height: 1.6; }
  .otherbranches { border-top: 1px solid var(--border); }
  .xbranch { display: inline-flex; align-items: center; padding: 9px 16px; border: 1px solid var(--border); border-radius: 999px; background: var(--card); font-size: 14px; font-weight: 600; color: var(--text); transition: border-color .15s, transform .15s; }
  .xbranch:hover { border-color: color-mix(in oklab, var(--accent) 40%, var(--border)); transform: translateY(-2px); text-decoration: none; }
  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  }
  a:focus-visible, button:focus-visible, summary:focus-visible, [role="button"]:focus-visible, .xbranch:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }
