
  :root {
    --bg: #ffffff;
    --bg-soft: #f7f8fa;
    --bg-tint: #f1f4f9;
    --ink: #0b1220;
    --ink-2: #1f2937;
    --muted: #5b6577;
    --muted-2: #8b94a4;
    --line: #e6e9ef;
    --line-2: #eef1f5;
    --brand: #2c5fe5;
    --brand-2: #1f4dcc;
    --brand-soft: #eaf0ff;
    --accent: #f97316;
    --accent-soft: #fff1e6;
    --ok: #15a36b;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 22px;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
  }
  .mono { font-family: 'Geist Mono', ui-monospace, monospace; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  /* Layout */
  .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .wrap { padding: 0 20px; } }

  /* Top nav */
  .nav {
    position: sticky; top: 0; z-index: 30;
    background: rgba(255,255,255,0.82);
    backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
  .brand-logo { width: 28px; height: 28px; object-fit: contain; flex: 0 0 auto; }
  .brand-mark {
    width: 28px; height: 28px; border-radius: 7px;
    background: linear-gradient(180deg, #2f63e8, #1f4dcc);
    display: grid; place-items: center; color: white; font-weight: 700; font-size: 13px;
    box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 4px 10px rgba(31,77,204,.25);
  }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a {
    font-size: 14px; color: var(--muted); transition: color .15s ease;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: flex; align-items: center; gap: 8px; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 38px; padding: 0 16px; border-radius: 8px; font-weight: 500; font-size: 14px;
    border: 1px solid transparent; transition: all .15s ease; white-space: nowrap;
  }
  .btn-primary { background: var(--ink); color: white; }
  .btn-primary:hover { background: #000; }
  .btn-brand { background: var(--brand); color: white; }
  .btn-brand:hover { background: var(--brand-2); }
  .btn-ghost { color: var(--ink); }
  .btn-ghost:hover { background: var(--bg-soft); }
  .btn-outline { border-color: var(--line); color: var(--ink); background: white; }
  .btn-outline:hover { border-color: #c9d0db; }
  .btn-lg { height: 46px; padding: 0 22px; font-size: 15px; border-radius: 10px; }

  /* Eyebrow chip */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 10px 4px 8px; border: 1px solid var(--line); background: white;
    border-radius: 999px; font-size: 12px; color: var(--muted);
    font-family: 'Geist Mono', monospace; letter-spacing: 0.02em;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(21,163,107,0.12); }

  /* Hero */
  .hero { padding: 56px 0 80px; position: relative; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(11,18,32,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(11,18,32,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: center; position: relative; }
  @media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
  h1.h1 {
    font-size: clamp(40px, 5.4vw, 64px);
    line-height: 1.04; letter-spacing: -0.025em;
    font-weight: 600; margin: 18px 0 18px;
    text-wrap: balance;
  }
  h1.h1 em { font-style: normal; color: var(--brand); }
  .lede { font-size: 18px; line-height: 1.55; color: var(--muted); max-width: 540px; text-wrap: pretty; }
  .hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
  .hero-meta { display: flex; align-items: center; gap: 18px; margin-top: 22px; font-size: 13px; color: var(--muted); }
  .hero-meta .sep { width: 1px; height: 14px; background: var(--line); }

  /* Hero centered variant */
  .hero-centered { text-align: center; }
  .hero-centered .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-centered .lede { margin: 0 auto; }
  .hero-centered .hero-cta { justify-content: center; }
  .hero-centered .hero-meta { justify-content: center; }
  .hero-centered .demo-wrap { margin: 0 auto; max-width: 920px; }

  /* Hero split variant — bold typography */
  .hero-split h1.h1 { font-size: clamp(48px, 7vw, 88px); font-weight: 500; }

  /* Demo (browser frame with timesheet) */
  .demo-wrap { position: relative; }
  .browser {
    background: white; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.8) inset,
      0 20px 50px -20px rgba(11,18,32,0.18),
      0 4px 12px -4px rgba(11,18,32,0.08);
  }
  .browser-chrome {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    background: #fafbfc; border-bottom: 1px solid var(--line-2);
  }
  .traffic { display: flex; gap: 6px; }
  .traffic span { width: 11px; height: 11px; border-radius: 50%; background: #e1e4ea; }
  .traffic span:nth-child(1) { background: #ff5f57; }
  .traffic span:nth-child(2) { background: #febc2e; }
  .traffic span:nth-child(3) { background: #28c840; }
  .url-bar {
    flex: 1; height: 26px; background: white; border: 1px solid var(--line-2);
    border-radius: 6px; display: flex; align-items: center; padding: 0 10px;
    font-size: 12px; color: var(--muted); font-family: 'Geist Mono', monospace;
    gap: 6px;
  }
  .url-bar svg { flex-shrink: 0; }
  .demo-body { padding: 22px; min-height: 420px; }

  /* Demo tabs (under browser chrome) */
  .demo-tabs {
    display: flex; gap: 4px; padding: 6px;
    background: #fafbfc; border-bottom: 1px solid var(--line-2);
  }
  .demo-tab {
    flex: 1; padding: 8px 10px; font-size: 11px;
    font-family: 'Geist Mono', monospace; letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px; cursor: pointer; transition: color .15s, background .15s, box-shadow .15s;
    color: var(--muted); background: transparent; border: 0;
    position: relative; overflow: hidden;
    display: flex; align-items: center; gap: 6px; justify-content: center;
  }
  .demo-tab:hover { color: var(--ink-2); }
  .demo-tab.active { color: var(--ink); background: white; box-shadow: 0 0 0 1px var(--line-2); }
  .demo-tab .tab-progress {
    position: absolute; left: 0; bottom: 0; height: 2px;
    background: var(--brand); width: 0; pointer-events: none;
  }
  .demo-tab.active .tab-progress { animation: tabp 11s linear forwards; }
  @keyframes tabp { from { width: 0 } to { width: 100% } }

  /* Project form scene */
  .pf-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin: 14px 0 20px; }
  .pf-field { display: flex; flex-direction: column; gap: 6px; }
  .pf-field.pf-name { grid-column: span 3; }
  .pf-field label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Geist Mono', monospace; }
  .pf-input {
    height: 36px; border: 1px solid var(--line); border-radius: 8px;
    padding: 0 12px; background: white;
    display: flex; align-items: center; font-size: 14px;
    color: var(--ink); transition: border-color .25s ease, background .25s ease;
    font-variant-numeric: tabular-nums;
  }
  .pf-input.empty { color: var(--muted-2); }
  .pf-input.filled { background: #f4f8ff; border-color: rgba(44, 95, 229, 0.35); }

  .pf-team-section { transition: opacity .3s ease; }
  .pf-team-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
  .pf-team-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Geist Mono', monospace; }
  .pf-team-count { font-size: 11px; color: var(--brand); font-family: 'Geist Mono', monospace; font-weight: 500; }
  .pf-team-list { display: flex; flex-direction: column; gap: 6px; }
  .pf-team-row {
    display: flex; align-items: center; gap: 12px; padding: 8px 12px;
    border: 1px solid var(--line-2); border-radius: 8px; background: white;
    opacity: 0; transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .pf-team-row.visible { opacity: 1; transform: translateY(0); }
  .pf-team-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center; flex-shrink: 0;
    background: var(--brand); color: white; font-size: 11px; font-weight: 600;
  }
  .pf-team-avatar.o { background: var(--accent); }
  .pf-team-avatar.g { background: #475569; }
  .pf-team-info { flex: 1; min-width: 0; }
  .pf-team-name { font-size: 13px; font-weight: 500; }
  .pf-team-email { font-size: 11px; color: var(--muted); margin-top: 1px; }
  .pf-team-role { font-size: 11px; color: var(--muted); font-family: 'Geist Mono', monospace; white-space: nowrap; }
  .pf-team-check { color: var(--ok); flex-shrink: 0; }
  .pf-foot-label { font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Geist Mono', monospace; }

  /* Acts scene */
  .acts-totals {
    display: flex; flex-direction: column; gap: 6px;
    margin-top: 12px; padding-top: 12px; align-items: flex-end;
    border-top: 1px dashed var(--line);
  }
  .acts-total-row { display: flex; gap: 24px; font-size: 13px; color: var(--muted); width: 240px; justify-content: space-between; }
  .acts-total-row.grand { font-size: 15px; color: var(--ink); font-weight: 600; padding-top: 4px; border-top: 1px solid var(--line-2); margin-top: 4px; }
  .acts-total-row span:last-child { font-variant-numeric: tabular-nums; font-family: 'Geist Mono', monospace; }

  /* Timesheet */
  .ts-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 16px;
  }
  .ts-title { font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
  .ts-sub { font-size: 12px; color: var(--muted); margin-top: 2px; font-family: 'Geist Mono', monospace; }
  .ts-total {
    background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 8px;
    padding: 8px 12px; min-width: 110px;
  }
  .ts-total-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
  .ts-total-value { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
  .ts-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .ts-table th {
    text-align: left; font-weight: 500; font-size: 11px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.06em; padding: 8px 10px;
    border-bottom: 1px solid var(--line-2);
  }
  .ts-table th.num, .ts-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
  .ts-row td { padding: 10px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
  .ts-row { opacity: 0; transform: translateY(6px); transition: opacity .35s ease, transform .35s ease; }
  .ts-row.visible { opacity: 1; transform: translateY(0); }
  .ts-row .proj { color: var(--muted); font-size: 12px; }
  .ts-row .hours {
    display: inline-block; min-width: 44px; text-align: right;
    font-family: 'Geist Mono', monospace; font-weight: 500;
  }
  .ts-row .bar {
    height: 4px; background: var(--brand-soft); border-radius: 999px; overflow: hidden;
    width: 90px; display: inline-block; vertical-align: middle; margin-right: 8px;
  }
  .ts-row .bar > i { display: block; height: 100%; background: var(--brand); width: 0; transition: width .6s cubic-bezier(.2,.7,.2,1); }
  .ts-row.visible .bar > i { width: var(--w, 50%); }
  .ts-row .dayname { font-weight: 500; }
  .ts-row .typebadge {
    display: inline-block; font-size: 11px; padding: 2px 6px; border-radius: 4px;
    background: var(--bg-tint); color: var(--muted); margin-left: 6px;
    font-family: 'Geist Mono', monospace;
  }
  .ts-cursor {
    display: inline-block; width: 2px; height: 14px; background: var(--brand);
    vertical-align: middle; margin-left: 2px; animation: blink 1s steps(2) infinite;
  }
  @keyframes blink { 50% { opacity: 0; } }

  /* Tags / hero meta */
  .check {
    display: inline-flex; align-items: center; gap: 6px;
  }
  .check svg { color: var(--ok); }

  /* Section spacing */
  section { padding: 80px 0; }
  @media (max-width: 720px) { section { padding: 56px 0; } }
  .section-eyebrow {
    font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--brand);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
  }
  h2.h2 {
    font-size: clamp(32px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -0.022em;
    font-weight: 600; margin: 0 0 16px; text-wrap: balance;
  }
  .section-lede { font-size: 17px; color: var(--muted); max-width: 640px; line-height: 1.55; }
  .section-head { margin-bottom: 48px; }

  /* Logos band */
  .logos {
    padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
  }
  .logos-head { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; text-align: center; margin-bottom: 22px; }
  .logos-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; align-items: center;
  }
  @media (max-width: 760px) { .logos-grid { grid-template-columns: repeat(3, 1fr); } }
  .logo-cell {
    height: 44px; display: grid; place-items: center;
    color: var(--muted-2); font-weight: 600; letter-spacing: -0.01em;
    font-size: 15px;
    opacity: 0.85;
  }
  .logo-cell .logo-mark {
    display: inline-flex; align-items: center; gap: 8px;
  }
  .logo-cell svg { color: var(--muted-2); }
  .logos-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px 0; }
  .logo-card { height: 64px; display: flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 10px; background: #fff; border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
  .logo-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
  .logo-card img { max-height: 40px; max-width: 160px; object-fit: contain; display: block; }

  /* Modules grid */
  .modules-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  }
  @media (max-width: 900px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .modules-grid { grid-template-columns: 1fr; } }
  .module {
    background: white; padding: 28px; min-height: 220px;
    display: flex; flex-direction: column; gap: 12px;
    transition: background .2s ease;
  }
  .module:hover { background: #fcfdff; }
  .module-icon {
    width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center;
    background: var(--brand-soft); color: var(--brand);
  }
  .module.is-orange .module-icon { background: var(--accent-soft); color: var(--accent); }
  .module-title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
  .module-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
  .module-tag { margin-top: auto; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }

  /* Pricing */
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
  .price {
    background: white; border: 1px solid var(--line); border-radius: 16px; padding: 28px;
    display: flex; flex-direction: column; gap: 18px; position: relative;
  }
  .price.featured { border-color: var(--ink); box-shadow: 0 18px 40px -20px rgba(11,18,32,.22); }
  .price-tag {
    position: absolute; top: -10px; right: 20px;
    background: var(--ink); color: white; font-size: 11px; padding: 4px 10px; border-radius: 999px;
    font-family: 'Geist Mono', monospace; letter-spacing: 0.04em;
  }
  .price-name { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
  .price-desc { font-size: 13px; color: var(--muted); }
  .price-amount { display: flex; align-items: baseline; gap: 4px; margin-top: -8px; }
  .price-amount .num { font-size: 44px; font-weight: 600; letter-spacing: -0.03em; }
  .price-amount .per { font-size: 13px; color: var(--muted); }
  .price ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .price li { font-size: 14px; display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); line-height: 1.5; }
  .price li svg { flex-shrink: 0; margin-top: 3px; color: var(--brand); }
  .price.featured li svg { color: var(--accent); }

  /* Testimonials */
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
  .quote {
    background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 16px; padding: 26px;
    display: flex; flex-direction: column; gap: 20px;
  }
  .quote p { margin: 0; font-size: 16px; line-height: 1.5; color: var(--ink); text-wrap: pretty; }
  .quote .who { display: flex; align-items: center; gap: 12px; }
  .quote .avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--brand); color: white; font-size: 13px; font-weight: 600;
  }
  .quote .avatar.o { background: var(--accent); }
  .quote .avatar.g { background: #475569; }
  .quote .name { font-size: 13px; font-weight: 500; }
  .quote .role { font-size: 12px; color: var(--muted); }
  .quote .stars { display: flex; gap: 2px; color: var(--accent); }

  /* FAQ */
  .faq-grid { display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: 64px; }
  @media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
  .faq-list { border-top: 1px solid var(--line); }
  details.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }
  details.faq-item summary {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    list-style: none; cursor: pointer; font-weight: 500; font-size: 16px;
    letter-spacing: -0.005em;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item .plus {
    width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
    color: var(--muted); transition: transform .25s ease, color .15s ease;
    flex-shrink: 0;
  }
  details.faq-item[open] .plus { transform: rotate(45deg); color: var(--brand); }
  details.faq-item .answer {
    margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--muted);
    max-width: 720px;
  }

  /* CTA strip */
  .cta-strip {
    background: var(--ink); color: white; border-radius: 22px;
    padding: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
    position: relative; overflow: hidden;
  }
  @media (max-width: 760px) { .cta-strip { grid-template-columns: 1fr; padding: 36px; } }
  .cta-strip::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 60% 80% at 100% 50%, black, transparent 70%);
  }
  .cta-strip h3 { font-size: 32px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; margin: 0 0 12px; position: relative; }
  .cta-strip p { color: #b6bfcf; margin: 0; position: relative; max-width: 460px; line-height: 1.55; }
  .cta-strip .actions { display: flex; flex-direction: column; gap: 10px; position: relative; }
  .cta-strip .btn-brand { background: var(--brand); }
  .cta-strip .btn-brand:hover { background: var(--brand-2); }
  .cta-strip .btn-outline { background: transparent; border-color: rgba(255,255,255,0.2); color: white; }
  .cta-strip .btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }
  .cta-strip .small { font-size: 12px; color: var(--muted-2); font-family: 'Geist Mono', monospace; }

  /* Footer */
  footer {
    border-top: 1px solid var(--line); padding: 56px 0 32px; background: var(--bg-soft);
  }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
  @media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  .foot-col h4 { font-size: 12px; font-family: 'Geist Mono', monospace; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; font-weight: 500; }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a { font-size: 14px; color: var(--ink-2); }
  .foot-col a:hover { color: var(--brand); }
  .foot-bottom {
    margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    font-size: 12px; color: var(--muted); font-family: 'Geist Mono', monospace;
  }
  .foot-blurb { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 320px; margin-top: 12px; }

  /* ── New pricing card layout ── */
  .price-card { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 18px 40px -20px rgba(11,18,32,.12); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
  @media (max-width: 760px) { .price-card { grid-template-columns: 1fr; } }
  .price-left { padding: 36px; border-right: 1px solid var(--line); }
  @media (max-width: 760px) { .price-left { border-right: none; border-bottom: 1px solid var(--line); } }
  .price-right { padding: 36px; background: var(--bg-soft); }
  .price-name { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 4px; }
  .price-desc { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
  .price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
  .price-num { display: flex; align-items: baseline; gap: 4px; }
  .price-num .eur { font-size: 20px; font-weight: 600; color: var(--muted); }
  .price-num .val { font-size: 52px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
  .price-num .per { font-size: 14px; color: var(--muted); }
  .vat-btn { padding: 5px 10px; border: 1.5px solid var(--line); border-radius: 6px; font-size: 11px; font-weight: 600; letter-spacing: .03em; color: var(--muted); background: #fff; cursor: pointer; transition: all .15s; white-space: nowrap; font-family: 'Geist Mono', monospace; }
  .vat-btn:hover, .vat-btn.on { background: var(--brand-soft); border-color: var(--brand); color: var(--brand); }
  .price-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; }
  .price-features li { font-size: 14px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
  .price-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--brand); }
  .addons-title { font-size: 16px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 4px; }
  .addons-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
  .addon-list { display: flex; flex-direction: column; gap: 8px; }
  .addon-item { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
  .addon-ico { width: 30px; height: 30px; border-radius: 7px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); flex-shrink: 0; }
  .addon-ico svg { width: 14px; height: 14px; }
  .addon-name { font-size: 13px; font-weight: 500; line-height: 1.3; }
  .addon-desc-sm { font-size: 11px; color: var(--muted); }
  .addon-cta { margin-left: auto; flex-shrink: 0; height: 26px; padding: 0 10px; font-size: 11px; font-weight: 500; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); background: #fff; cursor: pointer; transition: all .15s; font-family: inherit; }
  .addon-cta:hover { border-color: var(--brand); color: var(--brand); }

  /* ── Coming-soon modules ── */
  .module.coming { background: #fafbfc; position: relative; filter: saturate(.4); opacity: .6; }
  .coming-badge { position: absolute; top: 14px; right: 14px; background: var(--line); color: var(--muted-2); font-size: 10px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line-2); font-family: 'Geist Mono', monospace; }

  /* ── Mobile nav ── */
  .nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 38px; height: 38px; border-radius: 8px; background: var(--bg-soft); border: 1px solid var(--line); cursor: pointer; gap: 5px; transition: background .15s; }
  .nav-hamburger:hover { background: var(--bg-tint); }
  .nav-hamburger span { display: block; width: 16px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .25s; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); z-index: 29; padding: 20px 16px 24px; box-shadow: 0 8px 24px rgba(11,18,32,.08); }
  .mobile-menu.open { display: block; }
  .mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
  .mobile-menu nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); padding: 10px 12px; border-radius: 8px; display: block; transition: background .15s; }
  .mobile-menu nav a:hover { background: var(--bg-soft); }
  .mobile-menu .mobile-cta { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid var(--line); }
  @media (max-width: 720px) { .nav-links { display: none; } .btn-ghost { display: none; } .nav-hamburger { display: flex; } }

  .demo-scene[hidden] { display: none; }
  .landing-hidden { display: none !important; }
