/* Casia marketing — one design system for every page.
   Lifted verbatim from the landing so the site cannot drift. */
  :root {
    --ink: #0A0F1E;            /* near-black navy */
    --ink-2: #131A2E;
    --navy: #0E1630;           /* hero navy */
    --fg: #1A2138;             /* body text on light */
    --muted: #5A6482;
    --faint: #8A93AC;
    --line: #E7E9F2;
    --line-2: #EEF0F7;
    --bg: #FFFFFF;
    --surface: #FFFFFF;
    --surface-2: #F6F7FB;
    --wash: #F2F3F9;
    --accent: #5647E6;         /* Casia indigo-violet — disciplined, not haze */
    --accent-2: #7C6FF2;
    --accent-ink: #4A3ED0;
    --accent-soft: #ECEAFD;
    --live: #10B981;           /* "live" status green */
    --live-soft: #E7F8F1;
    --amber: #E6A020;
    --radius: 16px;
    --radius-sm: 11px;
    --shadow-sm: 0 1px 2px rgba(10,15,30,.05), 0 4px 12px -6px rgba(10,15,30,.10);
    --shadow: 0 10px 34px -14px rgba(10,15,30,.20);
    --shadow-lg: 0 30px 70px -30px rgba(10,15,30,.45);
    --maxw: 1160px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--fg);
    font: 16px/1.65 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  }
  h1, h2, h3, .display { font-family: "Sora", "Inter", sans-serif; letter-spacing: -.02em; color: var(--ink); }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent-ink); }
  .btn { display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 24px; border-radius: 10px;
         font: 600 15px "Inter", sans-serif; cursor: pointer; border: 1px solid transparent; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; white-space: nowrap; }
  .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -8px rgba(86,71,230,.6); }
  .btn-primary:hover { background: var(--accent-ink); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); }
  .btn-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(4px); }
  .btn-light:hover { background: rgba(255,255,255,.16); }
  .btn-white { background: #fff; color: var(--ink); }
  .btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
  .btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
  .ic { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  /* ── Nav ─────────────────────────────────────────── */
  .nav { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.82); backdrop-filter: saturate(1.2) blur(12px); border-bottom: 1px solid var(--line-2); }
  .nav-in { display: flex; align-items: center; gap: 28px; height: 68px; }
  .brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Sora"; font-weight: 700; font-size: 20px; color: var(--ink); }
  .brand .mark { width: 30px; height: 30px; }
  .nav-links { display: flex; gap: 26px; margin-left: 12px; }
  .nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color .15s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
  @media (max-width: 900px){ .nav-links { display: none; } }

  /* ── Hero (dark, platform) ──────────────────────── */
  .hero { position: relative; background: radial-gradient(120% 90% at 78% -10%, #1B2450 0%, var(--navy) 42%, var(--ink) 100%); color: #E8EBF6; overflow: hidden; }
  .hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0); background-size: 34px 34px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
  .hero-glow { position: absolute; top: -20%; right: -6%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(124,111,242,.36), transparent 62%); filter: blur(10px); pointer-events: none; }
  .hero-in { position: relative; padding: 78px 0 0; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
  @media (max-width: 940px){ .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
  .hero .pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 99px; background: rgba(124,111,242,.16); border: 1px solid rgba(124,111,242,.34); color: #CFC9FB; font-size: 12.5px; font-weight: 600; margin-bottom: 22px; }
  .hero .pill .dot { width: 7px; height: 7px; border-radius: 99px; background: var(--live); box-shadow: 0 0 0 4px rgba(16,185,129,.22); }
  .hero h1 { color: #fff; font-weight: 700; font-size: clamp(38px, 5.4vw, 62px); line-height: 1.04; margin: 0 0 22px; }
  .hero h1 .grad { background: linear-gradient(96deg, #C9C2FF, #8B7FF5 60%, #7C6FF2); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero .lede { font-size: 18px; line-height: 1.66; color: #B7BEDA; max-width: 40ch; margin: 0 0 30px; }
  .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .hero-sub { margin: 22px 0 0; font-size: 13px; color: #8891B4; display: flex; gap: 18px; flex-wrap: wrap; }
  .hero-sub span { display: inline-flex; align-items: center; gap: 7px; }
  .hero-sub .ic { width: 15px; height: 15px; stroke: var(--live); }
  .hero-viz { position: relative; }
  .hero-foot { position: relative; margin-top: 64px; border-top: 1px solid rgba(255,255,255,.10); }
  .logos { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; flex-wrap: wrap; }
  .logos .lbl { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #6E77A0; font-weight: 600; }
  .logos .set { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
  .logos .set b { font-family: "Sora"; font-weight: 600; font-size: 15px; color: #A7AFD0; }

  /* ── Platform diagram (SVG) ─────────────────────── */
  .diagram { width: 100%; height: auto; }
  .diagram .edge { stroke: rgba(124,111,242,.42); stroke-width: 1.4; fill: none; }
  .diagram .edge.flow { stroke: rgba(124,111,242,.9); stroke-dasharray: 4 7; animation: dash 2.4s linear infinite; }
  @keyframes dash { to { stroke-dashoffset: -22; } }
  .diagram .node { fill: #141C38; stroke: rgba(255,255,255,.14); }
  .diagram .node-lbl { fill: #C7CDEA; font: 600 11px "Inter"; }
  .diagram .hub { fill: url(#hubg); stroke: rgba(124,111,242,.5); }
  .diagram .hub-lbl { fill: #fff; font: 700 15px "Sora"; }
  .diagram .hub-sub { fill: #B7BEDA; font: 500 10px "Inter"; letter-spacing: .1em; }
  @media (prefers-reduced-motion: reduce){ .diagram .edge.flow { animation: none; } }

  /* ── Section scaffolding ────────────────────────── */
  section { position: relative; }
  .sec { padding: 92px 0; }
  .sec-head { max-width: 720px; margin: 0 0 52px; }
  .sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .sec-head h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; margin: 12px 0 14px; font-weight: 700; }
  .sec-head p { font-size: 17.5px; line-height: 1.6; color: var(--muted); margin: 0; }
  .kicker-row { display:flex; align-items:center; gap:10px; }
  .kicker-row.center { justify-content:center; }

  /* Proof band */
  .proof { background: var(--ink); color: #fff; }
  .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  @media (max-width: 760px){ .proof-grid { grid-template-columns: repeat(2, 1fr); } }
  .proof-cell { padding: 40px 26px; border-left: 1px solid rgba(255,255,255,.09); }
  .proof-cell:first-child { border-left: 0; padding-left: 0; }
  .proof-n { font-family: "Sora"; font-weight: 700; font-size: 40px; color: #fff; letter-spacing: -.03em; }
  .proof-n .u { color: var(--accent-2); }
  .proof-l { font-size: 13.5px; color: #9AA2C4; margin-top: 6px; line-height: 1.5; }

  /* Problem */
  .problem { background: var(--surface-2); }
  .prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  @media (max-width: 900px){ .prob-grid { grid-template-columns: 1fr; gap: 32px; } }
  .prob-list { display: grid; gap: 14px; }
  .prob-item { display: flex; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
  .prob-item .x { width: 34px; height: 34px; border-radius: 9px; background: #FDECEC; color: #DC2626; display: grid; place-items: center; flex-shrink: 0; }
  .prob-item b { color: var(--ink); font-size: 15px; }
  .prob-item p { margin: 3px 0 0; font-size: 14px; color: var(--muted); line-height: 1.55; }
  .prob-punch { font-family: "Sora"; font-weight: 600; font-size: clamp(22px,2.8vw,30px); line-height: 1.28; color: var(--ink); }
  .prob-punch .hl { color: var(--accent); }

  /* Platform (dark) */
  .platform { background: radial-gradient(120% 100% at 20% 0%, #17204323 0%, transparent 60%), var(--ink); color: #E8EBF6; }
  .platform h2 { color: #fff; }
  .platform .sec-head p { color: #A7AFD0; }
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 860px){ .pillars { grid-template-columns: 1fr; } }
  .pillar { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 28px; }
  .pillar .pic { width: 46px; height: 46px; border-radius: 12px; background: rgba(124,111,242,.16); border: 1px solid rgba(124,111,242,.32); display: grid; place-items: center; color: #B9B1F8; margin-bottom: 18px; }
  .pillar h3 { color: #fff; font-size: 18px; margin: 0 0 8px; }
  .pillar p { color: #A7AFD0; font-size: 14.5px; line-height: 1.6; margin: 0; }

  /* Product constellation */
  .apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  @media (max-width: 1000px){ .apps-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px){ .apps-grid { grid-template-columns: 1fr; } }
  .app-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s; overflow: hidden; }
  .app-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #D9DCEC; }
  .app-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
  .app-card { display: block; }
  .fit-box { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
             border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
  .fit-q + .fit-q { margin-top: 26px; }
  .fit-q label { display: block; font-size: 14px; font-weight: 650; color: var(--ink); margin-bottom: 12px; }
  .fit-opts { display: flex; gap: 10px; flex-wrap: wrap; }
  .fit-opt { background: var(--wash); border: 1px solid var(--line); border-radius: 99px;
             padding: 11px 20px; font: inherit; font-size: 14px; font-weight: 500; color: var(--muted);
             cursor: pointer; transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease; }
  .fit-opt:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
  .fit-opt.on { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600;
                box-shadow: 0 8px 18px -8px rgba(86,71,230,.6); }
  .fit-opt.on::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 99px;
                        background: #fff; margin-right: 8px; vertical-align: middle; }

  /* The answer — a designed result card, not a blurb */
  .fit-out { margin-top: 28px; }
  .fit-empty { padding: 22px 0 2px; border-top: 1px dashed var(--line); color: var(--faint); font-size: 14px; }
  .fit-result { border-top: 1px solid var(--line); padding-top: 26px; animation: fitin .32s ease both; }
  @keyframes fitin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce){ .fit-result { animation: none; } }
  .fit-lead { display: flex; align-items: center; gap: 15px; }
  .fit-badge { width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center;
               background: linear-gradient(150deg, var(--accent-2), var(--accent-ink)); color: #fff;
               box-shadow: 0 12px 24px -12px rgba(86,71,230,.75); }
  .fit-badge .ic { width: 24px; height: 24px; stroke: #fff; }
  .fit-lead h4 { font-family: "Sora", "Inter", sans-serif; font-size: 26px; font-weight: 700;
                 letter-spacing: -.02em; color: var(--ink); margin: 3px 0 0; }
  .fit-why { font-size: 15.5px; line-height: 1.66; color: var(--muted); margin: 18px 0 0; max-width: 64ch; }
  .fit-next { margin-top: 20px; padding: 16px 18px; background: var(--surface-2);
              border: 1px solid var(--line-2); border-radius: 14px; }
  .fit-next-lbl { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--faint); }
  .fit-next-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 11px; }
  .fit-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 99px;
              background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--fg); }
  .fit-chip .ic { width: 15px; height: 15px; stroke: var(--accent); }
  .fit-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
  .price-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .app-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
              font-size: 13px; font-weight: 650; color: var(--accent); }
  .app-card:hover .app-more { gap: 10px; }
  .app-more .ic { transition: transform .18s ease; }
  .app-card h3 { font-size: 17px; margin: 0 0 3px; }
  .app-dom { font-size: 12.5px; font-weight: 600; color: var(--accent-ink); text-transform: uppercase; letter-spacing: .04em; }
  .app-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 10px 0 0; }

  /* Flow story */
  .flow { background: var(--surface-2); }
  .flow-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
  @media (max-width: 900px){ .flow-track { grid-template-columns: 1fr; } }
  .flow-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: relative; box-shadow: var(--shadow-sm); }
  .flow-step .n { font-family: "Sora"; font-size: 13px; font-weight: 700; color: var(--accent); }
  .flow-step .app { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--faint); margin-top: 4px; }
  .flow-step h4 { font-family: "Sora"; font-size: 15.5px; margin: 8px 0 6px; color: var(--ink); }
  .flow-step p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }
  .flow-step .arr { position: absolute; right: -11px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 99px; background: var(--accent); color: #fff; display: grid; place-items: center; z-index: 2; }
  @media (max-width: 900px){ .flow-step .arr { right: 50%; top: auto; bottom: -11px; transform: translateX(50%) rotate(90deg); } }
  .flow-note { text-align: center; margin-top: 34px; font-size: 15px; color: var(--muted); }
  .flow-note b { color: var(--ink); }

  /* Why Casia */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 860px){ .why-grid { grid-template-columns: 1fr; } }
  .why-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
  .why-card .ic-w { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; margin-bottom: 16px; }
  .why-card h3 { font-size: 17.5px; margin: 0 0 8px; }
  .why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

  /* Pricing */
  .pricing { background: var(--surface-2); }
  .price-card { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 46px; text-align: center; box-shadow: var(--shadow); }
  .price-card .tag { display:inline-block; padding:5px 13px; border-radius:99px; background:var(--live-soft); color:#0A7D57; font-size:12px; font-weight:700; letter-spacing:.04em; }
  .price-card .big { font-family: "Sora"; font-size: 52px; font-weight: 800; color: var(--ink); margin: 18px 0 4px; letter-spacing: -.03em; }
  .price-card .sub { color: var(--muted); font-size: 15.5px; line-height: 1.6; max-width: 46ch; margin: 0 auto 26px; }
  .price-feats { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
  .price-feats span { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--fg); }
  .price-feats .ic { stroke: var(--live); width: 16px; height: 16px; }

  /* CTA band */
  .cta { background: radial-gradient(120% 120% at 80% 0%, #23306A 0%, var(--navy) 45%, var(--ink) 100%); color: #fff; text-align: center; }
  .cta::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0); background-size: 34px 34px; mask-image: radial-gradient(60% 60% at 50% 40%, black, transparent); }
  .cta h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin: 0 0 16px; position: relative; }
  .cta p { color: #B7BEDA; font-size: 18px; margin: 0 auto 30px; max-width: 52ch; position: relative; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

  /* ── Motto: "Do it easy." — the brand signature, one violet voice ── */
  .grad-motto { background: linear-gradient(96deg, #C9C2FF, #8B7FF5 58%, #7C6FF2);
                -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero-motto { font-family: "Sora"; font-weight: 700; font-size: 17px; letter-spacing: .01em;
                margin: 22px 0 0; color: #9B8FF6; }
  .cta-motto { position: relative; font-family: "Sora"; font-weight: 800; letter-spacing: -.03em;
               font-size: clamp(46px, 7vw, 88px); line-height: .98; margin: 0 0 14px;
               background: linear-gradient(96deg, #DAD5FF, #9B8FF6 55%, #7C6FF2);
               -webkit-background-clip: text; background-clip: text; color: transparent; }
  .cta h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; color: #C7CDEA; margin: 0 0 14px; }
  .foot-motto { font-family: "Sora"; font-weight: 700; font-size: 19px; color: var(--accent-2);
                margin: 2px 0 12px; letter-spacing: -.01em; }

  /* Footer */
  footer { background: var(--ink); color: #9AA2C4; padding: 64px 0 34px; }
  .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.09); }
  @media (max-width: 820px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
  .foot-brand .brand { color: #fff; margin-bottom: 14px; }
  .foot-brand p { font-size: 13.5px; line-height: 1.6; max-width: 32ch; color: #8891B4; }
  .foot-col h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #6E77A0; margin: 0 0 14px; font-weight: 700; }
  .foot-col a { display: block; font-size: 14px; color: #A7AFD0; padding: 5px 0; }
  .foot-col a:hover { color: #fff; }
  .foot-bar { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; font-size: 13px; color: #6E77A0; flex-wrap: wrap; }

  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } }

/* ---- lead dialog ---- */
  .lead-dlg { border:0; border-radius:16px; padding:0; max-width:440px; width:calc(100% - 32px);
              box-shadow:0 24px 60px rgba(0,0,0,.28); }
  .lead-dlg::backdrop { background:rgba(11,10,26,.55); backdrop-filter:blur(3px); }
  .lead-dlg form { padding:26px 26px 22px; position:relative; display:flex; flex-direction:column; gap:12px; }
  .lead-dlg h3 { margin:0; font-size:21px; letter-spacing:-.02em; }
  .lead-sub { margin:0 0 4px; font-size:13.5px; line-height:1.55; opacity:.72; }
  .lead-l { display:flex; flex-direction:column; gap:5px; font-size:12.5px; font-weight:600; }
  .lead-l input, .lead-l select, .lead-l textarea {
    font:inherit; font-size:14px; font-weight:400; padding:10px 12px; border-radius:9px;
    border:1px solid rgba(11,10,26,.18); background:#fff; color:inherit; width:100%; }
  .lead-l textarea { resize:vertical; }
  .lead-row { display:flex; gap:12px; }
  .lead-row .lead-l { flex:1; min-width:0; }
  @media (max-width:460px){ .lead-row { flex-direction:column; gap:12px; } }
  .lead-x { position:absolute; top:12px; right:12px; border:0; background:none; font-size:24px;
            line-height:1; cursor:pointer; opacity:.45; }
  .lead-x:hover { opacity:.9; }
  .lead-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
  .lead-err { margin:0; font-size:12.5px; color:#C0392B; }
  .lead-fine { margin:2px 0 0; font-size:11.5px; opacity:.6; line-height:1.5; }
  .lead-done { text-align:center; padding:34px 26px; }
  .lead-done h3 { margin:0 0 8px; }
  .lead-done p { margin:0; font-size:13.5px; line-height:1.6; opacity:.75; }

/* ============================================================
   Internal pages (about, partners, careers, legal, contact…)
   Built on the landing's tokens so nothing drifts. Reuses
   .wrap .sec .sec-head .eyebrow .btn-* .reveal from above.
   ============================================================ */
.foot-legal a { color: inherit; text-decoration: none; }
.foot-legal a:hover { color: #fff; }

/* Compact page header for internal pages */
.page-hero { background:
    radial-gradient(120% 120% at 82% -10%, #23306A 0%, var(--navy) 46%, var(--ink) 100%);
  color: #fff; padding: 108px 0 64px; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 34px 34px; mask-image: radial-gradient(70% 70% at 50% 30%, black, transparent); }
.page-hero .wrap { position: relative; }
.page-hero .eyebrow { color: var(--accent-2); }
.page-hero h1 { font-family:"Sora"; font-weight:800; letter-spacing:-.02em;
  font-size: clamp(32px, 5vw, 56px); line-height: 1.06; margin: 14px 0 0; color:#fff; }
.page-hero .lede { color:#C7CDEA; font-size: clamp(17px,2.1vw,20px); line-height:1.6;
  max-width: 60ch; margin: 18px 0 0; }
.page-hero .page-cta { display:flex; gap:12px; flex-wrap:wrap; margin-top: 28px; }

/* Long-form prose (about narrative, legal) */
.prose { max-width: 74ch; margin: 0 auto; color: var(--fg); }
.prose.wide { max-width: 82ch; }
.prose h2 { font-family:"Sora"; font-weight:700; letter-spacing:-.01em;
  font-size: clamp(22px,2.8vw,30px); line-height:1.15; margin: 40px 0 14px; color: var(--ink); }
.prose h3 { font-weight:700; font-size: 18px; margin: 28px 0 10px; color: var(--ink); }
.prose p { font-size: 16.5px; line-height: 1.72; color: var(--muted); margin: 0 0 16px; }
.prose strong { color: var(--fg); font-weight:600; }
.prose a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 20px; }
.prose li { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin: 0 0 8px; }
.prose .updated { font-size: 13.5px; color: var(--faint); margin: 0 0 28px; }

/* Card grid for value/reason lists */
.info-cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; display:flex; flex-direction:column; gap: 12px; }
.info-card .pic { width: 40px; height: 40px; }
.info-card b { font-size: 15.5px; color: var(--ink); font-weight: 650; letter-spacing:-.01em; }
.info-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* A quiet band to break up a page */
.band { background: var(--surface-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }

/* Internal-page forms (contact, partner, resellers, careers) reuse the
   dialog field styling on a light card */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px; max-width: 560px; }
.form-card .lead-l { color: var(--fg); }
.form-card .lead-l input, .form-card .lead-l select, .form-card .lead-l textarea {
  border-color: var(--line); }
.form-grid { display:flex; flex-direction:column; gap: 14px; }
