  /* ---- Self-hosted fonts (Story 11) ----------------------------------
     No third-party font requests: Fraunces / Hanken Grotesk / IBM Plex
     Mono are served from /static/fonts (latin subsets — the pages are
     English). Weights/styles match what the design uses. */
  @font-face {
    font-family: "Fraunces";
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url("/static/fonts/fraunces-normal-300-900.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: "Fraunces";
    font-style: italic;
    font-weight: 300 900;
    font-display: swap;
    src: url("/static/fonts/fraunces-italic-300-900.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: "Hanken Grotesk";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("/static/fonts/hanken-grotesk-normal-400-700.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/static/fonts/ibm-plex-mono-normal-400.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/static/fonts/ibm-plex-mono-normal-500.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/static/fonts/ibm-plex-mono-normal-600.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  /* ============================================================
     MeetingTime — landing page
     Aesthetic: warm editorial "paper & ink", signal-vermilion
     accent (the ring), deep-pine contrast. Concierge for your calendar.
     ============================================================ */

  :root {
    --paper:      #f4efe4;   /* warm cream */
    --paper-2:    #efe8d9;   /* slightly deeper card ground */
    --ink:        #181510;   /* near-black, warm */
    --ink-soft:   #464034;   /* body text */
    --muted:      #8b8272;   /* labels, meta */
    --line:       #d8cfbc;   /* hairlines on paper */
    --signal:     #e0521d;   /* vermilion — the "ring" */
    --signal-2:   #f0803f;   /* lighter signal for gradients */
    --pine:       #123329;   /* deep pine contrast section */
    --pine-2:     #0d2620;
    --pine-line:  #2c4c40;
    --answer:     #3f8f5f;   /* "answer" green, used sparingly */

    --maxw: 1180px;
    --gutter: clamp(20px, 5vw, 64px);
    --radius: 18px;

    --f-display: "Fraunces", Georgia, serif;
    --f-body: "Hanken Grotesk", -apple-system, sans-serif;
    --f-mono: "IBM Plex Mono", ui-monospace, monospace;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }

  /* Film-grain overlay for warmth/texture */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  a { color: inherit; text-decoration: none; }
  img, svg { display: block; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

  .eyebrow {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--signal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 26px; height: 1px;
    background: var(--signal);
    display: inline-block;
  }

  /* ---------- Nav ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  header.scrolled { border-color: var(--line); }
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 21px;
    letter-spacing: -0.01em;
  }
  .brand .glyph {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    position: relative;
  }
  .brand .glyph .ring {
    position: absolute; inset: 0;
    border: 1.5px solid var(--signal);
    border-radius: 50%;
  }
  .brand .glyph .ring:nth-child(2) { inset: 5px; opacity: 0.55; }
  .brand .glyph .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--signal);
  }
  .nav-links { display: flex; align-items: center; gap: 34px; }
  .nav-links a.navlink {
    font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
    transition: color 0.2s;
  }
  .nav-links a.navlink:hover { color: var(--ink); }
  @media (max-width: 720px) { .nav-links a.navlink { display: none; } }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 11px;
    font-family: var(--f-body);
    font-weight: 600; font-size: 15px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .btn-google {
    background: #fff;
    color: #1f1f1f;
    border-color: var(--line);
    box-shadow: 0 1px 0 rgba(0,0,0,0.03);
  }
  .btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -12px rgba(24,21,16,0.4);
  }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border-color: var(--ink);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
  .btn-signal {
    background: var(--signal); color: #fff;
    box-shadow: 0 12px 34px -14px var(--signal);
  }
  .btn-signal:hover { transform: translateY(-2px); background: #c9491a; }
  .btn-sm { padding: 9px 17px; font-size: 14px; }

  /* ---------- Hero ---------- */
  .hero { padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 104px); position: relative; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

  .hero h1 {
    font-family: var(--f-display);
    font-weight: 340;
    font-size: clamp(44px, 6.6vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin: 26px 0 0;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 420;
    color: var(--signal);
  }
  .hero .lede {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--ink-soft);
    max-width: 30ch;
    margin: 26px 0 34px;
  }
  .hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .hero-note {
    font-family: var(--f-mono);
    font-size: 12px; color: var(--muted);
    margin-top: 20px;
    letter-spacing: 0.02em;
  }

  /* staggered reveal */
  .reveal { opacity: 0; transform: translateY(18px); animation: rise 0.9s var(--ease) forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
  .d1 { animation-delay: 0.05s; } .d2 { animation-delay: 0.16s; }
  .d3 { animation-delay: 0.27s; } .d4 { animation-delay: 0.38s; }
  .d5 { animation-delay: 0.5s; }

  /* ---------- Call card (the memorable moment) ---------- */
  .callstage { position: relative; }
  .callstage::before {
    /* warm gradient-mesh glow behind the card */
    content: "";
    position: absolute; inset: -12% -6% -18% -6%;
    background:
      radial-gradient(60% 55% at 72% 22%, color-mix(in srgb, var(--signal) 26%, transparent), transparent 70%),
      radial-gradient(50% 50% at 20% 82%, color-mix(in srgb, var(--pine) 20%, transparent), transparent 72%);
    filter: blur(18px);
    z-index: 0;
  }
  .callcard {
    position: relative; z-index: 1;
    background: linear-gradient(180deg, #fffdf8, var(--paper-2));
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 40px 80px -40px rgba(24,21,16,0.45), 0 2px 0 #fff inset;
    transform: rotate(-1.4deg);
    transition: transform 0.5s var(--ease);
  }
  .callcard:hover { transform: rotate(0deg) translateY(-4px); }

  .incoming {
    display: flex; align-items: center; gap: 15px;
    padding: 6px 4px 16px;
    border-bottom: 1px dashed var(--line);
  }
  .avatar {
    width: 54px; height: 54px; border-radius: 16px;
    background: radial-gradient(circle at 35% 30%, var(--signal-2), var(--signal));
    display: grid; place-items: center; flex-shrink: 0;
    position: relative;
  }
  /* pulsing ring */
  .avatar .pulse {
    position: absolute; inset: 0; border-radius: 16px;
    border: 2px solid var(--signal);
    animation: pulse 1.8s ease-out infinite;
  }
  @keyframes pulse {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.45); }
  }
  .incoming .who .status {
    font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--signal);
  }
  .incoming .who .name { font-family: var(--f-display); font-size: 21px; font-weight: 500; margin-top: 2px; }
  .incoming .clock {
    margin-left: auto; text-align: right;
    font-family: var(--f-mono); font-weight: 500;
  }
  .incoming .clock .time { font-size: 22px; letter-spacing: -0.01em; }
  .incoming .clock .label { font-size: 10px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }

  .board { padding-top: 15px; }
  .board-head {
    display: flex; justify-content: space-between;
    font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 6px;
  }
  .board-row {
    display: grid; grid-template-columns: 58px 1fr auto;
    align-items: center; gap: 12px;
    padding: 11px 6px;
    border-top: 1px solid var(--line);
  }
  .board-row .t { font-family: var(--f-mono); font-weight: 600; font-size: 15px; }
  .board-row .m { font-size: 14.5px; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .board-row .c {
    font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
    padding: 4px 9px; border-radius: 999px;
    background: color-mix(in srgb, var(--signal) 12%, transparent);
    color: var(--signal); white-space: nowrap;
  }
  .board-row.done .c { background: color-mix(in srgb, var(--answer) 14%, transparent); color: var(--answer); }

  .answerbar {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px; padding: 12px 14px;
    background: var(--pine); color: var(--paper);
    border-radius: 14px;
    font-size: 13.5px;
  }
  .answerbar .dot9 {
    font-family: var(--f-mono); font-weight: 600;
    background: color-mix(in srgb, #fff 16%, transparent);
    border-radius: 8px; padding: 3px 8px; font-size: 12px;
  }

  /* ---------- Marquee trust strip ---------- */
  .strip {
    border-block: 1px solid var(--line);
    background: var(--paper-2);
    overflow: hidden;
    padding: 16px 0;
  }
  .marquee { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: scroll 28s linear infinite; }
  .marquee span {
    font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted);
    display: inline-flex; align-items: center; gap: 48px;
  }
  .marquee span::after { content: "◦"; color: var(--signal); }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* ---------- Section scaffolding ---------- */
  section.band { padding: clamp(64px, 10vw, 132px) 0; }
  .sec-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 64px); }
  .sec-head h2 {
    font-family: var(--f-display); font-weight: 340;
    font-size: clamp(32px, 4.6vw, 56px); line-height: 1.02;
    letter-spacing: -0.02em; margin-top: 18px;
  }
  .sec-head h2 em { font-style: italic; color: var(--signal); }
  .sec-head p { color: var(--ink-soft); font-size: 18px; margin-top: 18px; max-width: 46ch; }

  /* ---------- How it works ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
  @media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
  .step { position: relative; padding-top: 26px; border-top: 2px solid var(--ink); }
  .step .num {
    font-family: var(--f-mono); font-size: 13px; font-weight: 600;
    color: var(--signal); letter-spacing: 0.1em;
  }
  .step h3 { font-family: var(--f-display); font-weight: 460; font-size: 25px; margin: 14px 0 10px; letter-spacing: -0.01em; }
  .step p { color: var(--ink-soft); font-size: 16px; }
  .step .icon { margin-top: 22px; color: var(--ink); opacity: 0.9; }

  /* ---------- Pine "why" band ---------- */
  .pineband {
    background:
      radial-gradient(80% 120% at 100% 0%, var(--pine-2), var(--pine));
    color: var(--paper);
    position: relative; overflow: hidden;
  }
  .pineband::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(50% 60% at 15% 90%, color-mix(in srgb, var(--signal) 22%, transparent), transparent 60%);
  }
  .pineband .wrap { position: relative; z-index: 1; }
  .whygrid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
  @media (max-width: 860px) { .whygrid { grid-template-columns: 1fr; } }
  .pineband h2 { font-family: var(--f-display); font-weight: 340; font-size: clamp(32px, 5vw, 60px); line-height: 1.02; letter-spacing: -0.02em; }
  .pineband h2 em { font-style: italic; color: var(--signal-2); }
  .pineband .whytext p { color: color-mix(in srgb, var(--paper) 82%, transparent); font-size: 18px; margin-top: 22px; max-width: 42ch; }
  .bigstat { text-align: right; }
  .bigstat .n {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(90px, 16vw, 180px); line-height: 0.85;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #fff, var(--signal-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .bigstat .cap { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 66%, transparent); margin-top: 14px; }

  /* ---------- Pricing ---------- */
  .pricewrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
  @media (max-width: 860px) { .pricewrap { grid-template-columns: 1fr; } }
  .pricecard {
    background: var(--ink); color: var(--paper);
    border-radius: var(--radius);
    padding: clamp(28px, 4vw, 44px);
    position: relative; overflow: hidden;
    box-shadow: 0 40px 80px -44px rgba(24,21,16,0.6);
  }
  .pricecard::before {
    content: ""; position: absolute; top: -40%; right: -20%;
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--signal) 40%, transparent), transparent 70%);
  }
  .pricecard .tier { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--signal-2); position: relative; }
  .pricecard .amount { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 6px; position: relative; }
  .pricecard .amount .cur { font-family: var(--f-display); font-size: 34px; opacity: 0.8; }
  .pricecard .amount .val { font-family: var(--f-display); font-weight: 350; font-size: clamp(64px, 9vw, 92px); line-height: 1; letter-spacing: -0.03em; }
  .pricecard .amount .per { font-family: var(--f-mono); font-size: 14px; color: color-mix(in srgb, var(--paper) 70%, transparent); }
  .pricecard .nofree { font-size: 14px; color: color-mix(in srgb, var(--paper) 68%, transparent); position: relative; margin-bottom: 26px; }
  .pricecard .cta-row { position: relative; margin-top: 8px; }
  .pricecard .btn-google { width: 100%; }

  .feats { list-style: none; display: grid; gap: 15px; }
  .feats li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; color: var(--ink-soft); }
  .feats li b { color: var(--ink); font-weight: 600; }
  .feats .tick {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: color-mix(in srgb, var(--signal) 14%, transparent);
    color: var(--signal); display: grid; place-items: center; margin-top: 2px;
    font-size: 12px; font-weight: 700;
  }

  /* ---------- Compliance / trust ---------- */
  .trustgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
  @media (max-width: 820px) { .trustgrid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .trustgrid { grid-template-columns: 1fr; } }
  .trustcell { background: var(--paper); padding: 26px 24px; }
  .trustcell .ic { color: var(--signal); margin-bottom: 14px; }
  .trustcell h4 { font-family: var(--f-display); font-weight: 500; font-size: 18px; margin-bottom: 7px; }
  .trustcell p { font-size: 14.5px; color: var(--ink-soft); }

  /* ---------- Final CTA ---------- */
  .finalcta { text-align: center; padding: clamp(72px, 11vw, 150px) 0; }
  .finalcta h2 { font-family: var(--f-display); font-weight: 330; font-size: clamp(40px, 8vw, 96px); line-height: 0.98; letter-spacing: -0.03em; }
  .finalcta h2 em { font-style: italic; color: var(--signal); }
  .finalcta .lede { color: var(--ink-soft); font-size: 19px; margin: 24px auto 36px; max-width: 40ch; }
  .finalcta .btn { margin-inline: auto; }

  /* ---------- Footer ---------- */
  footer { border-top: 1px solid var(--line); padding: 54px 0 40px; }
  .foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
  .foot-links { display: flex; gap: 30px; flex-wrap: wrap; }
  .foot-links a { font-size: 14.5px; color: var(--ink-soft); transition: color 0.2s; }
  .foot-links a:hover { color: var(--signal); }
  .foot-bottom {
    margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-family: var(--f-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.03em;
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
    .callcard { transform: none; }
  }
