:root {
    --bg: #FFFFFF;
    --bg-2: #F6F5F4;         /* Notion warm gray */
    --bg-3: #F6F5F4;
    --card: #FFFFFF;
    --card-border: #E9E7E4;
    --hairline: #E9E7E4;
    --text: #191918;
    --muted: #64625D;        /* warm gray */
    --amber: #B45309;        /* brand accent for in-copy links & agent identity */
    --amber-fill: #F5A524;   /* logo, badges */
    --amber-soft: #FBF3DB;   /* callout / agent bubble surface */
    --amber-line: #F0E3C0;
    --blue: #2383E2;         /* Notion blue — primary actions */
    --blue-dark: #0B6EC8;
    --blue-soft: #EDF5FD;
    --blue-line: #C8E0F6;
    --green: #178A50;
    --green-soft: #EAF3EE;
    --green-line: #CDE5D8;
    --gray-btn: #F1F1EF;     /* Notion secondary button */
    --gray-btn-hover: #E8E6E3;
    --ink-btn: #191918;
    --radius: 16px;
    --radius-btn: 10px;
    --shadow-sm: 0 1px 2px rgba(15,15,15,0.04);
    --shadow-lg: 0 16px 40px rgba(15,15,15,0.10);
    --font-head: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Hanken Grotesk', sans-serif;
    --font-logo: 'Bricolage Grotesque', sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  ::selection { background: rgba(245,165,36,0.35); }
  h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.01em; font-weight: 600; color: var(--text); }
  a { color: inherit; }
  .wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

  /* ---------- Nav ---------- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.88);
    border-bottom: 1px solid var(--hairline);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .logo { display: inline-flex; align-items: baseline; font-family: var(--font-logo); font-weight: 700; font-size: 22px; letter-spacing: -0.03em; text-decoration: none; color: var(--text); }
  .logo-dot { color: var(--amber); }
  .logo-mark {
    width: 29px; height: 29px; border-radius: 8px; flex: none;
    background: linear-gradient(135deg, var(--amber-fill), #ff8a2a);
    display: grid; place-items: center;
  }
  .logo-mark svg { display: block; }
  .nav-links { display: flex; gap: 26px; align-items: center; }
  .nav-links a { text-decoration: none; color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .15s; }
  .nav-links a:hover { color: var(--text); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--ink-btn); color: #FFFFFF;
    font-weight: 600; font-size: 15px; font-family: var(--font-body);
    padding: 11px 20px; border-radius: var(--radius-btn); text-decoration: none;
    border: none; cursor: pointer;
    transition: background .15s, transform .12s;
  }
  .btn:hover { background: #2E333B; }
  .btn:active { transform: scale(0.985); }
  .btn.small { padding: 8px 15px; font-size: 14px; }
  .nav-links .btn, .nav-links a.btn { color: #FFFFFF; }
  .btn.ghost {
    background: var(--gray-btn); color: var(--text);
    border: none;
  }
  .btn.ghost:hover { background: var(--gray-btn-hover); }

  /* ---------- Hero (centered, Notion-style) ---------- */
  header {
    position: relative;
    padding: 140px 0 84px;
    background: var(--bg);
  }
  .hero-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 56px; }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--muted);
    background: var(--gray-btn); border: none;
    padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
  }
  .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
  h1 { font-size: clamp(36px, 5.4vw, 66px); font-weight: 700; margin-bottom: 22px; letter-spacing: -0.018em; max-width: 880px; margin-left: auto; margin-right: auto; }
  h1 .accent { color: var(--amber); }
  .hero-sub { font-size: 19px; color: var(--muted); max-width: 620px; margin: 0 auto 32px; }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; justify-content: center; }
  .hero-note { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; justify-content: center; }

  /* ---------- Phone mockup ---------- */
  .phone-wrap { position: relative; display: flex; justify-content: center; }
  .phone-glow { display: none; }
  .phone {
    position: relative; width: 340px; max-width: 100%;
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 28px; padding: 18px 16px 20px;
    box-shadow: var(--shadow-lg);
  }
  .phone-top { display: flex; align-items: center; justify-content: space-between; padding: 2px 6px 14px; border-bottom: 1px solid var(--hairline); margin-bottom: 14px; }
  .caller-id { display: flex; align-items: center; gap: 10px; }
  .caller-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-fill), #ff8a2a);
    display: grid; place-items: center; font-weight: 700; font-family: var(--font-logo); color: #191918; font-size: 15px;
  }
  .caller-name { font-size: 13.5px; font-weight: 600; }
  .caller-status { font-size: 11.5px; color: var(--green); }
  .call-timer { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
  .chat { display: flex; flex-direction: column; gap: 10px; min-height: 320px; }
  .msg { max-width: 86%; padding: 10px 13px; border-radius: 14px; font-size: 13px; line-height: 1.45; opacity: 0; transform: translateY(8px); animation: msgIn .5s forwards; text-align: left; }
  .msg.caller { align-self: flex-end; background: var(--gray-btn); color: var(--text); border-bottom-right-radius: 5px; }
  .msg.agent { align-self: flex-start; background: var(--amber-soft); color: var(--text); border-bottom-left-radius: 5px; }
  .msg .who { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
  .msg.agent .who { color: var(--amber); }
  .msg:nth-child(1) { animation-delay: .4s; }
  .msg:nth-child(2) { animation-delay: 1.3s; }
  .msg:nth-child(3) { animation-delay: 2.3s; }
  .msg:nth-child(4) { animation-delay: 3.3s; }
  .msg:nth-child(5) { animation-delay: 4.4s; }
  @keyframes msgIn { to { opacity: 1; transform: translateY(0); } }
  .phone-foot { display: flex; justify-content: center; gap: 18px; padding-top: 16px; }
  .pf-btn { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--gray-btn); font-size: 16px; }
  .pf-btn.end { background: #FBE3E2; }

  /* ---------- Stats strip ---------- */
  .stats { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--bg); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 38px 20px; text-align: center; border-left: 1px solid var(--hairline); }
  .stat:first-child { border-left: none; }
  .stat .num { font-family: var(--font-head); font-size: 40px; font-weight: 700; letter-spacing: -0.025em; color: var(--text); }
  .stat .lbl { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

  /* ---------- Sections ---------- */
  section { padding: 100px 0; position: relative; }
  section.alt { background: var(--bg-2); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .kicker { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
  h2 { font-size: clamp(29px, 3.5vw, 42px); font-weight: 600; margin-bottom: 16px; max-width: 760px; letter-spacing: -0.014em; }
  .section-sub { color: var(--muted); font-size: 17.5px; max-width: 640px; margin-bottom: 48px; }

  .cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .card {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: var(--radius); padding: 28px;
    transition: background .15s, border-color .15s;
  }
  .card:hover { border-color: #DBD8D3; }
  section.alt .card, .transcript-section .card { background: #FFFFFF; }
  section:not(.alt) .cards-3 .card, section:not(.alt) .roadmap .card { background: var(--bg-2); border-color: transparent; }
  section:not(.alt) .cards-3 .card:hover, section:not(.alt) .roadmap .card:hover { background: #F1F0EE; }
  .card .icon {
    width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center;
    background: #FFFFFF; border: 1px solid var(--card-border);
    margin-bottom: 18px; font-size: 20px;
  }
  section.alt .card .icon, .transcript-section .card .icon { background: var(--bg-2); border-color: transparent; }
  .card h3 { font-size: 18.5px; margin-bottom: 9px; font-weight: 600; }
  .card p { font-size: 14.5px; color: var(--muted); }

  /* ---------- Steps ---------- */
  .steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
  .step { position: relative; background: var(--bg-2); border: none; border-radius: var(--radius); padding: 26px 20px; }
  .step .n {
    font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--text);
    background: #FFFFFF; border: 1px solid var(--card-border);
    width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; margin-bottom: 14px;
  }
  .step h3 { font-size: 16px; margin-bottom: 8px; font-weight: 600; }
  .step p { font-size: 13.5px; color: var(--muted); }

  /* ---------- Transcript ---------- */
  .transcript-section { background: var(--bg-2); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .transcript-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
  .transcript {
    background: #FFFFFF; border: 1px solid var(--card-border); border-radius: var(--radius);
    padding: 28px; font-size: 14.5px;
  }
  .t-line { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid #F1F0EE; }
  .t-line:last-child { border-bottom: none; }
  .t-who { flex: none; width: 62px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding-top: 3px; }
  .t-who.mark { color: var(--amber); }
  .t-who.caller { color: var(--muted); }
  .t-text { color: #3F3E3B; }
  .t-text em { color: var(--green); font-style: normal; font-weight: 600; }
  .checklist { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
  .checklist li { display: flex; gap: 12px; font-size: 15.5px; color: var(--muted); }
  .checklist li strong { color: var(--text); font-weight: 600; }
  .check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft); border: 1px solid var(--green-line); color: var(--green); display: grid; place-items: center; font-size: 12px; margin-top: 2px; }

  /* ---------- Platform / bento ---------- */
  .bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
  .bento .card.span3 { grid-column: span 3; }
  .bento .card.span2 { grid-column: span 2; }
  .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--green); background: var(--green-soft); border: none; border-radius: 6px; padding: 4px 9px; margin-bottom: 14px; }
  .tag.soon { color: var(--muted); background: var(--gray-btn); border: none; }

  /* ---------- Quote ---------- */
  .quote-block { text-align: center; max-width: 780px; margin: 0 auto; }
  .quote-block blockquote { font-family: var(--font-head); font-size: clamp(22px, 3vw, 30px); font-weight: 600; line-height: 1.4; letter-spacing: -0.015em; }
  .quote-block blockquote .accent { color: var(--amber); }
  .quote-attr { margin-top: 22px; color: var(--muted); font-size: 14.5px; }

  /* ---------- Roadmap ---------- */
  .roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

  /* ---------- FAQ ---------- */
  .faq { max-width: 760px; }
  details {
    background: var(--bg-2); border: none;
    border-radius: 12px; margin-bottom: 10px; overflow: hidden;
  }
  summary {
    cursor: pointer; padding: 19px 24px; font-weight: 600; font-size: 16px;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  summary:hover { background: #F1F0EE; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; font-family: var(--font-head); font-size: 21px; color: var(--muted); transition: transform .2s; flex: none; }
  details[open] summary::after { transform: rotate(45deg); }
  details .a { padding: 0 24px 22px; color: var(--muted); font-size: 15px; max-width: 660px; }

  /* ---------- CTA ---------- */
  .cta-box {
    text-align: center; padding: 76px 40px; border-radius: 20px;
    background: var(--bg-2);
    border: 1px solid var(--hairline);
    color: var(--text);
  }
  .cta-box .kicker { color: var(--amber); }
  .cta-box h2 { margin: 0 auto 16px; }
  .cta-box p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; }
  .cta-box a { color: var(--amber); }
  .cta-box .btn { background: var(--ink-btn); color: #FFFFFF; }
  .cta-box .btn:hover { background: #2E333B; }

  footer { border-top: 1px solid var(--hairline); padding: 44px 0 40px; background: var(--bg); }
  .foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
  .foot-inner p, .foot-inner a { color: var(--muted); font-size: 13.5px; text-decoration: none; }
  .foot-inner a:hover { color: var(--text); }

  /* ---------- Meet Mark scenario player ---------- */
  .scenario-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0 30px; }
  .s-tab {
    padding: 9px 17px; border-radius: 999px; cursor: pointer;
    border: none; background: #FFFFFF;
    color: var(--muted); font-family: var(--font-body); font-size: 14px; font-weight: 500;
    transition: all .15s; box-shadow: inset 0 0 0 1px var(--card-border);
  }
  .s-tab:hover { color: var(--text); box-shadow: inset 0 0 0 1px #D5D2CC; }
  .s-tab.active { background: var(--ink-btn); color: #FFFFFF; font-weight: 600; box-shadow: none; }
  .player {
    background: #FFFFFF; border: 1px solid var(--card-border); border-radius: var(--radius);
    padding: 26px 28px; min-height: 380px;
  }
  .player-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--hairline); margin-bottom: 6px; }
  .player-head .left { display: flex; align-items: center; gap: 10px; }
  .rec-dot { width: 9px; height: 9px; border-radius: 50%; background: #EB5757; animation: pulse 1.6s infinite; }
  .player-head .lbl { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
  .replay {
    background: var(--gray-btn); border: none; color: var(--text);
    font-size: 12.5px; border-radius: 8px; padding: 6px 12px; cursor: pointer; font-family: var(--font-body); font-weight: 500;
    transition: background .15s;
  }
  .replay:hover { background: var(--gray-btn-hover); }
  .t-line.anim { opacity: 0; transform: translateY(8px); animation: msgIn .5s forwards; }
  .chip-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
  .chip {
    font-size: 13px; color: var(--muted); border: none;
    background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--card-border);
    padding: 7px 13px; border-radius: 999px;
  }
  .chip.on { color: var(--text); }
  .chip.on::before { content: "✓ "; color: var(--green); }
  .chip.soon { color: var(--muted); box-shadow: inset 0 0 0 1px #DDD9D2; }
  .chip.soon::after { content: " · soon"; opacity: .7; font-size: 11px; }

  /* ---------- Metric quote cards ---------- */
  .metric-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .metric-card { background: var(--bg-2); border: none; border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; }
  .metric-card .big { font-family: var(--font-head); font-size: 36px; font-weight: 700; letter-spacing: -0.025em; color: var(--text); line-height: 1.08; }
  .metric-card .big-lbl { font-size: 14px; color: var(--amber); font-weight: 600; margin: 8px 0 18px; }
  .metric-card q { font-size: 15px; color: #3F3E3B; quotes: "\201C" "\201D"; }
  .metric-card .attr { margin-top: auto; padding-top: 18px; font-size: 13px; color: var(--muted); }

  /* ---------- Reveal animation ---------- */
  .reveal { opacity: 0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px) {
    .transcript-grid { grid-template-columns: 1fr; gap: 44px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .cards-3, .roadmap { grid-template-columns: 1fr 1fr; }
    .metric-cards { grid-template-columns: 1fr; }
    .bento .card.span3, .bento .card.span2 { grid-column: span 6; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat { border-left: none; border-top: 1px solid var(--hairline); }
    .nav-links { display: none; }
    .nav-burger { display: block; }
  }
  @media (max-width: 620px) {
    .steps, .cards-3, .roadmap, .stats-grid { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    header { padding: 104px 0 52px; }
    .stat { padding: 24px 16px; }
    .stat .num { font-size: 30px; }
    .hero-sub { font-size: 16.5px; }
    .section-sub { font-size: 16px; }
    .pilot-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
    .cta-box { padding: 52px 24px; }
  }


  /* ---------- Mobile nav ---------- */
  .nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px 4px; }
  .nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }
  .nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 960px) {
    .nav-burger { display: block; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #FFFFFF; border-bottom: 1px solid var(--hairline); padding: 6px 24px 16px; box-shadow: 0 16px 32px rgba(15,15,15,0.08); }
    .nav-links.open a { padding: 13px 0; font-size: 16px; border-bottom: 1px solid #F1F0EE; }
    .nav-links.open a.btn.small { margin-top: 12px; border-bottom: none; justify-content: center; padding: 13px; font-size: 15px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .msg, .t-line.anim { animation: none; opacity: 1; transform: none; }
    .pill .dot, .rec-dot { animation: none; }
    .card, .btn { transition: none; }
  }

/* ---------- SEO subpages ---------- */
.page-hero { padding: 138px 0 56px; background: var(--bg); }
.page-hero h1 { font-size: clamp(33px, 4.2vw, 50px); max-width: 820px; margin-left: 0; }
.page-hero .lede { font-size: 17.5px; color: var(--muted); max-width: 680px; margin-top: 18px; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--text); }
.crumbs span { color: var(--text); }
.prose { max-width: 760px; }
.prose h2 { font-size: 28px; margin: 48px 0 14px; }
.prose h3 { font-size: 20px; margin: 32px 0 10px; font-weight: 600; }
.prose p { color: #3F3E3B; font-size: 16px; margin-bottom: 16px; }
.prose strong { color: var(--text); }
.prose a { color: var(--amber); }
.prose ul { color: #3F3E3B; margin: 0 0 16px 22px; font-size: 16px; }
.prose li { margin-bottom: 8px; }
.callout { background: var(--amber-soft); border: none; border-radius: 12px; padding: 20px 24px; margin: 26px 0; color: var(--text); font-size: 15.5px; }
.callout .t-text { color: var(--text); }
.mini-transcript { background: var(--bg-2); border: none; border-radius: var(--radius); padding: 20px 24px; margin: 26px 0; font-size: 14.5px; }
.mini-transcript .t-line { border-bottom-color: #EAE8E5; }
.page-grid { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.side { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }
.side .card { padding: 22px; background: var(--bg-2); border: none; }
.side .card h4 { font-size: 15px; margin-bottom: 12px; font-weight: 600; }
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links li { margin: 0; border-bottom: 1px solid #EAE8E5; }
.side-links li:last-child { border-bottom: none; }
.side-links a { display: block; padding: 9px 0; font-size: 14px; color: var(--muted); text-decoration: none; transition: color .15s; }
.side-links a:hover { color: var(--amber); }
.side-cta { text-align: center; }
.side-cta .btn { width: 100%; justify-content: center; margin-top: 6px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.foot-grid h4 { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: 9px; }
.foot-grid a { color: var(--muted); font-size: 14px; text-decoration: none; }
.foot-grid a:hover { color: var(--text); }
.foot-grid .blurb { color: var(--muted); font-size: 14px; max-width: 340px; margin-top: 14px; }
.foot-bottom { border-top: 1px solid var(--hairline); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-bottom p, .foot-bottom a { color: var(--muted); font-size: 13px; text-decoration: none; }
.foot-bottom a:hover { color: var(--text); }
@media (max-width: 960px) {
  .page-grid { grid-template-columns: 1fr; }
  .side { position: static; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { background: #FFFFFF; border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.price-card.popular { border-color: var(--amber-fill); box-shadow: 0 0 0 1px var(--amber-fill), var(--shadow-lg); }
.pop-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--ink-btn); color: #FFFFFF; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px; white-space: nowrap; }
.price-card .plan-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; }
.price-card .plan-for { font-size: 13.5px; color: var(--muted); margin: 6px 0 20px; min-height: 40px; }
.price-card .amount { font-family: var(--font-head); font-size: 46px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.price-card .amount small { font-size: 15px; color: var(--muted); font-weight: 500; font-family: var(--font-body); letter-spacing: 0; }
.price-card .per { font-size: 13px; color: var(--muted); margin: 8px 0 22px; }
.plan-feats { list-style: none; margin: 0 0 26px; padding: 22px 0 0; border-top: 1px solid var(--hairline); flex: 1; }
.plan-feats li { display: flex; gap: 10px; font-size: 14px; color: var(--muted); margin-bottom: 11px; }
.plan-feats li strong { color: var(--text); font-weight: 600; }
.plan-feats .check { margin-top: 1px; }
.price-card .btn { justify-content: center; }
.price-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 26px; }

/* calculator */
.calc { background: var(--bg-2); border: none; border-radius: var(--radius); padding: 36px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.calc label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.calc label strong { color: var(--text); font-size: 16px; }
.calc input[type=range] { width: 100%; accent-color: #D97706; margin: 6px 0 26px; cursor: pointer; }
.calc-out { background: #FFFFFF; border: 1px solid var(--card-border); border-radius: 14px; padding: 28px; text-align: center; }
.calc-out .co-num { font-family: var(--font-head); font-size: 40px; font-weight: 700; letter-spacing: -0.025em; color: var(--text); }
.calc-out .co-plan { font-size: 15px; margin: 6px 0 14px; color: var(--amber); font-weight: 600; }
.calc-out .co-detail { font-size: 13px; color: var(--muted); line-height: 1.7; }
.pilot-strip { display: flex; align-items: center; gap: 24px; background: var(--amber-soft); border: none; border-radius: var(--radius); padding: 26px 30px; margin: 44px 0 0; }
.pilot-strip .pct { font-family: var(--font-head); font-size: 46px; font-weight: 700; letter-spacing: -0.025em; color: var(--amber); flex: none; }
.pilot-strip p { color: var(--text); font-size: 15px; margin: 0; }
.compare-table { width: 100%; border-collapse: collapse; margin: 20px 0 10px; font-size: 14.5px; }
.compare-table th, .compare-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--hairline); }
.compare-table th { font-family: var(--font-head); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.compare-table td:first-child { color: var(--text); }
.compare-table td { color: var(--muted); }
.compare-table .hl { color: var(--amber); font-weight: 600; }
@media (max-width: 960px) {
  .price-cards { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
}

/* ---------- Pricing: Scale strip (custom tier, full width below cards) ---------- */
.scale-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--bg-2); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 28px 32px; margin-top: 22px; flex-wrap: wrap; }
.scale-strip .plan-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.scale-strip p { color: var(--muted); font-size: 15px; max-width: 720px; margin: 0; }
.scale-strip .btn { flex: none; }
@media (max-width: 620px) { .scale-strip { flex-direction: column; align-items: flex-start; } }
