/* Audiee marketing site — the app's own design system, verbatim:
   warm cream canvas, ink, terracotta, serif display over system sans.
   Dark mode mirrors the desktop app, via prefers-color-scheme. Layout
   follows the house style: centered serif hero with an italic accent,
   and numbered blocks, each with a recorded product demo. */

:root {
  --canvas: #EDEAE3;
  --surface: #FCFBF9;
  --card: #FFFFFF;
  --ink: #1C1A17;
  --muted: #8A857C;
  --faint: #B6B1A7;
  --line: #E7E3DB;
  --accent: #C5483B;
  --pill: #1C1A17;
  --pill-contrast: #FFFFFF;
  --sticky-butter: #FAECA8;
  --sticky-peach: #F8CDB5;
  /* The app's five sticky tints, as R G B triplets (light + dark below) so
     highlights, chips, and tint bands can ride opacity modifiers. */
  --sticky-0: 250 236 168; --sticky-0-ink: 74 62 24;   /* butter */
  --sticky-1: 248 205 181; --sticky-1-ink: 92 48 34;   /* peach  */
  --sticky-2: 203 227 187; --sticky-2-ink: 45 71 39;   /* sage   */
  --sticky-3: 191 218 236; --sticky-3-ink: 36 62 82;   /* sky    */
  --sticky-4: 226 205 236; --sticky-4-ink: 76 48 88;   /* lilac  */
  --shadow: 0 1px 2px rgb(28 26 23 / .08), 0 8px 24px rgb(28 26 23 / .08);
  --shadow-lg: 0 2px 6px rgb(28 26 23 / .10), 0 18px 50px rgb(28 26 23 / .14);
}
@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #181613;
    --surface: #211E1A;
    --card: #29251F;
    --ink: #EDE8DF;
    --muted: #A49C8D;
    --faint: #756E61;
    --line: #3A352D;
    --accent: #E07A5C;
    --pill: #EDE8DF;
    --pill-contrast: #181613;
    --sticky-butter: #4A4120;
    --sticky-peach: #523327;
    --sticky-0: 74 65 32;  --sticky-0-ink: 240 228 185;
    --sticky-1: 82 51 39;  --sticky-1-ink: 245 219 205;
    --sticky-2: 47 66 42;  --sticky-2-ink: 216 233 207;
    --sticky-3: 38 59 75;  --sticky-3-ink: 209 227 238;
    --sticky-4: 71 50 81;  --sticky-4-ink: 232 217 238;
    --shadow: 0 1px 2px rgb(0 0 0 / .3), 0 8px 24px rgb(0 0 0 / .3);
    --shadow-lg: 0 2px 6px rgb(0 0 0 / .4), 0 18px 50px rgb(0 0 0 / .45);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand-name, .price, .win-title {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.2vw, 56px); line-height: 1.1; margin: 18px 0 20px; font-weight: 500; }
h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.14; margin: 10px 0 16px; font-weight: 500; }
h3 { font-size: 19px; margin: 0 0 6px; font-weight: 600; }
h1 em, h2 em { font-style: italic; }
mark.hl em, mark.hl b { color: inherit; }
mark.hl {
  background: rgb(var(--sticky-0));
  color: rgb(var(--sticky-0-ink));
  padding: 0 .16em;
  border-radius: .16em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
mark.hl.peach { background: rgb(var(--sticky-1)); color: rgb(var(--sticky-1-ink)); }
mark.hl.sage { background: rgb(var(--sticky-2)); color: rgb(var(--sticky-2-ink)); }
mark.hl.sky { background: rgb(var(--sticky-3)); color: rgb(var(--sticky-3-ink)); }
mark.hl.lilac { background: rgb(var(--sticky-4)); color: rgb(var(--sticky-4-ink)); }

/* Section tags: the app's taxonomy chips replace mono numbering. */
.type-chip {
  display: inline-flex; align-items: center;
  border-radius: 6px; padding: 2px 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .03em;
}
.sticky-0.type-chip, .type-chip.sticky-0 { background: rgb(var(--sticky-0)); color: rgb(var(--sticky-0-ink)); }
.type-chip.sticky-1 { background: rgb(var(--sticky-1)); color: rgb(var(--sticky-1-ink)); }
.type-chip.sticky-2 { background: rgb(var(--sticky-2)); color: rgb(var(--sticky-2-ink)); }
.type-chip.sticky-3 { background: rgb(var(--sticky-3)); color: rgb(var(--sticky-3-ink)); }
.type-chip.sticky-4 { background: rgb(var(--sticky-4)); color: rgb(var(--sticky-4-ink)); }
.sec-tag { display: flex; align-items: center; gap: 8px; margin: 0 0 6px; }
.sec-tag.center { justify-content: center; }
.sec-tag-text {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
p { margin: 0 0 12px; }
a { color: inherit; text-decoration: none; }
kbd {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .8em;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 5px;
  padding: 1px 6px;
}
.center { text-align: center; }

.eyebrow {
  font-size: 14px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}
.eyebrow.ruled {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.eyebrow.ruled::before, .eyebrow.ruled::after {
  content: ""; height: 1px; width: 56px; background: var(--line);
}
.num-eyebrow {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.num-eyebrow.light { color: var(--accent); }
.sub { color: var(--muted); font-size: 18px; max-width: 36em; }

/* Pills — same shape language as the app. */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.pill:hover { transform: translateY(-1px); }
.pill-dark { background: var(--pill); color: var(--pill-contrast); }
.pill-dark:hover { opacity: .9; }
.pill-light { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
.pill-light:hover { background: var(--canvas); }
.cta { padding: 12px 24px; font-size: 15px; }

.dl-alt { margin-top: 14px; font-size: 13px; color: var(--muted); }
.dl-alt a { text-decoration: underline; text-underline-offset: 3px; }
.dl-alt a:hover { color: var(--ink); }

/* ── Nav — sticky, frosted, hairline+shadow once scrolled ────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  /* Full-bleed bar; the horizontal padding centers content to the same
     1080px column the sections use. */
  padding: 14px max(24px, calc((100% - 1032px) / 2));
  background: color-mix(in srgb, var(--canvas) 82%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgb(28 26 23 / .06);
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-name { font-size: 26px; font-weight: 700; font-style: italic; }
.mark { display: inline-flex; align-items: center; justify-content: center; }
.nav-links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 640px) { .nav-links { display: none; } }

/* ── Hero: copy left, live desktop scene right ───────────────────── */
.hero {
  display: grid;
  /* Right column is EXACTLY the demo's recorded CSS size (530px) so the
     1060-device-px video maps 1:1 on retina — fluid widths resample the
     recording a few percent and smear the text. */
  grid-template-columns: minmax(0, 1fr) 530px;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}
.hero h1 { margin: 14px 0 0; font-size: clamp(34px, 4vw, 48px); }
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 36px; }
}
.cta-col { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 0;
  text-align: left;
}
.hero-point { padding-left: 16px; border-left: 3px solid rgb(var(--sticky-0)); }
.hero-point:nth-child(2) { border-left-color: rgb(var(--sticky-4)); }
.hero-point h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.hero-point h3 em { font-style: italic; color: var(--accent); }
.hero-point p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.6; text-wrap: pretty; }
.hero-point p b { color: var(--ink); font-weight: 600; }
.cta-note { font-size: 13px; color: var(--muted); }

.agents-strip {
  grid-column: 1 / -1;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 9px; align-items: center;
}
.agents-label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--faint); font-weight: 600;
}
.agents-list {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13.5px; color: var(--muted);
}

/* ── Numbered blocks (01 / 02): copy above, big real-window demo below.
   The demo shows at its captured CSS size (900px) so proportions match
   the real app window and retina maps 1:1. ────────────────────────── */
.block {
  padding: 72px max(24px, calc((100% - 1032px) / 2)) 44px;
}
.block.tint-peach { background: rgb(var(--sticky-1) / .16); }
.block.tint-butter { background: rgb(var(--sticky-0) / .16); }
.block-copy { max-width: 620px; }
.block-copy p { color: var(--muted); font-size: 16.5px; max-width: 34em; }
.block-fine { font-size: 14px !important; color: var(--faint) !important; margin-top: 14px; }
.block-visual {
  position: relative;
  max-width: 940px;
  margin: 36px auto 0;
  padding: 18px 12px 18px 0;
}
/* Side-by-side variant (block 01): copy beside the narrow live-HUD loop,
   which shows at its captured 430 css px — real window size, retina 1:1. */
.block.split {
  display: grid;
  grid-template-columns: 1fr minmax(0, 430px);
  gap: 56px;
  align-items: center;
}
.block.split > * { min-width: 0; }
.block.split .block-visual { margin: 0; max-width: 430px; }
.hud-shot { max-width: min(430px, 100%); }
@media (max-width: 880px) {
  .block.split { grid-template-columns: 1fr; gap: 28px; }
  .block.split .block-visual { margin: 0 auto; }
}

/* Hero desktop scene: chat window behind, live meeting HUD in front,
   sticky notes peeking — the product living on a desk. */
.hero-scene { position: relative; }
/* The Home dashboard — real recording, straight-on. */
.scene-home {
  display: block; width: 530px; max-width: 100%; height: auto;
  border-radius: 14px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
/* Capability notes: tidy, taped, each drifting gently. Hover straightens
   and lifts the note toward the reader. */
.note-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px 18px;
}
.scene-sticky {
  position: relative; flex: none;
  width: 176px; padding: 14px 15px 12px;
  font-size: 13px; line-height: 1.45; font-weight: 600;
  letter-spacing: .005em;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgb(28 26 23 / .12), 0 10px 22px rgb(28 26 23 / .16);
  animation: note-float 5.6s ease-in-out infinite;
  transition: transform .25s cubic-bezier(.2,.9,.3,1.2), box-shadow .25s ease;
}
/* Washi-tape strip across each note's top edge. */
.scene-sticky::before {
  content: "";
  position: absolute; top: -9px; left: 50%;
  width: 58px; height: 17px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgb(255 255 255 / .42);
  border-left: 1px dashed rgb(255 255 255 / .55);
  border-right: 1px dashed rgb(255 255 255 / .55);
  box-shadow: 0 1px 2px rgb(28 26 23 / .08);
}
.scene-sticky:hover {
  animation-play-state: paused;
  transform: rotate(0deg) translateY(-7px) scale(1.05);
  box-shadow: 0 4px 10px rgb(28 26 23 / .14), 0 20px 38px rgb(28 26 23 / .2);
  z-index: 5;
}
@keyframes note-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}
.scene-sticky.t0 { background: rgb(var(--sticky-0)); color: rgb(var(--sticky-0-ink)); }
.scene-sticky.t1 { background: rgb(var(--sticky-1)); color: rgb(var(--sticky-1-ink)); }
.scene-sticky.t2 { background: rgb(var(--sticky-2)); color: rgb(var(--sticky-2-ink)); }
.scene-sticky.t3 { background: rgb(var(--sticky-3)); color: rgb(var(--sticky-3-ink)); }
.scene-sticky.t4 { background: rgb(var(--sticky-4)); color: rgb(var(--sticky-4-ink)); }
.note-row .scene-sticky:nth-child(odd) { transform: rotate(-1.5deg); }
.note-row .scene-sticky:nth-child(even) { transform: rotate(1.3deg); }
.note-row .scene-sticky:nth-child(2) { animation-delay: -1.2s; }
.note-row .scene-sticky:nth-child(3) { animation-delay: -2.3s; }
.note-row .scene-sticky:nth-child(4) { animation-delay: -3.4s; }
.note-row .scene-sticky:nth-child(5) { animation-delay: -4.5s; }
@media (prefers-reduced-motion: reduce) {
  .scene-sticky { animation: none; }
  .scene-sticky:hover { transform: none; }
}
@media (max-width: 920px) {
  .hero-scene { width: min(100%, 480px); margin: 0 auto; }
  .scene-sticky { width: 152px; padding: 11px 12px 10px; font-size: 12px; }
}

/* Real product demo loops. Captured at 540 css px (1080 device px at 2x)
   and displayed at exactly that width, so retina screens map the video
   pixels 1:1 — scaling is what made the text mushy. */
.app-shot {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: min(900px, 100%);
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

/* Sticky notes: color accents peeking from behind the visuals. */

/* ── Features grid ───────────────────────────────────────────────── */
.features { max-width: 1080px; margin: 0 auto; padding: 72px 24px 24px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing {
  padding: 56px max(24px, calc((100% - 1032px) / 2));
  background: rgb(var(--sticky-1) / .14);
}
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; align-items: start; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: left;
}
.tier.featured { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.tier-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  border-radius: 999px; padding: 3px 12px;
}
.price { font-size: 40px; margin: 4px 0 14px; }
.price span { font-size: 15px; color: var(--muted); font-family: -apple-system, sans-serif; }
.tier ul { list-style: none; margin: 0 0 22px; padding: 0; color: var(--muted); font-size: 14.5px; }
.tier li { padding: 5px 0 5px 22px; position: relative; }
.tier li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
.tier li b { color: var(--ink); }

/* ── Download ────────────────────────────────────────────────────── */
.download { padding: 80px 24px 100px; text-align: center; }
.dl-icon { border-radius: 18px; box-shadow: var(--shadow); margin-bottom: 18px; }
.center-sub { margin: 0 auto 26px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: 1080px; margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 26px 24px 40px;
  font-size: 13.5px; color: var(--muted);
  flex-wrap: wrap;
}
.foot-l { display: flex; align-items: center; gap: 10px; }
.foot-r { display: flex; gap: 20px; }
.foot-r a:hover { color: var(--ink); }

/* ── Scroll reveal ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-eq i, .hud-eq i, .rec-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── SEO footer + secondary pages ────────────────────────────────── */
.bigfoot { border-top: 1px solid var(--line); margin-top: 24px; }
.bigfoot-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1080px; margin: 0 auto; padding: 44px 24px 8px;
}
@media (max-width: 700px) { .bigfoot-cols { grid-template-columns: 1fr; gap: 26px; } }
.bigfoot-h {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; margin-bottom: 12px;
}
.bigfoot-col { display: flex; flex-direction: column; gap: 9px; }
.bigfoot-col a { font-size: 14px; color: var(--muted); }
.bigfoot-col a:hover { color: var(--ink); }
.bigfoot-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(88px, 16vw, 220px);
  line-height: 0.85;
  text-align: center;
  color: var(--ink);
  opacity: .07;
  user-select: none;
  padding: 44px 0 0;
  overflow: hidden;
}
.bigfoot .foot { border-top: 1px solid var(--line); margin-top: 30px; }

.page { max-width: 680px; margin: 0 auto; padding: 40px 24px 80px; }
.page h1 { font-size: clamp(34px, 5vw, 48px); margin-bottom: 18px; }
.page h2 { font-size: 21px; margin-top: 34px; }
.page p, .page li { color: var(--muted); font-size: 16px; }
.page li { margin: 8px 0; }
.page ul { padding-left: 22px; }
.page b { color: var(--ink); }
.page code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .85em; background: var(--card); border: 1px solid var(--line);
  border-radius: 5px; padding: 1px 6px;
}
.page a { color: var(--accent); }
.page-cta {
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}

.related {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--muted); line-height: 2;
}
.related .bigfoot-h { margin-bottom: 6px; }
.related a { color: var(--muted); }
.related a:hover { color: var(--ink); }
