/* ═══════════════════════════════════════════
   Schedio — "Editorial Highlighter" theme
   Display: Fraunces · Body: Inter
   Motif: hand-drawn highlighter marker
   ═══════════════════════════════════════════ */
:root {
  /* Brand */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1e40af;
  --blue-800: #1e3a8a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;

  /* Editorial neutrals */
  --paper: #fbfaf6;
  --paper-2: #f4f0e7;
  --ink: #15213b;
  --ink-soft: #41506b;
  --ink-faint: #8a93a6;
  --line: #e4ddcf;
  --white: #ffffff;

  /* Semantic */
  --success-icon: #16a34a;
  --error-icon: #ef4444;

  /* Type */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:
    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: 5.5rem;

  /* Layout */
  --max-width: 1200px;
  --content-max-width: 760px;
  --nav-height: 68px;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.625rem;
  --radius-xl: 0.875rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;

  /* Print-style offset shadows (the tactile signature) */
  --offset: 4px 4px 0 rgba(21, 33, 59, 0.14);
  --offset-hover: 7px 7px 0 rgba(37, 99, 235, 0.22);
  --offset-gold: 6px 6px 0 rgba(245, 158, 11, 0.28);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 220ms;
  --duration-slow: 320ms;
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════
   Reset
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-sans);
  font-feature-settings: "cv11", "ss01";
  color: var(--ink-soft);
  background-color: var(--paper);
  background-image: radial-gradient(
    rgba(21, 33, 59, 0.04) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

::selection {
  background: var(--gold-300);
  color: var(--ink);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--ink);
  letter-spacing: -0.015em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ═══════════════════════════════════════════
   Highlighter marker motif
   ═══════════════════════════════════════════ */
.hl {
  position: relative;
  white-space: nowrap;
  background-image: linear-gradient(
    101deg,
    rgba(252, 211, 77, 0.45) 0%,
    rgba(251, 191, 36, 0.9) 6%,
    rgba(252, 211, 77, 0.85) 94%,
    rgba(252, 211, 77, 0.35) 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 0.62em;
  background-position: 0 0.7em;
  padding: 0 0.06em;
}

.hl--light {
  color: var(--white);
  background-image: linear-gradient(
    101deg,
    rgba(251, 191, 36, 0.55) 0%,
    rgba(245, 158, 11, 0.95) 6%,
    rgba(251, 191, 36, 0.9) 94%,
    rgba(251, 191, 36, 0.45) 100%
  );
}

/* ═══════════════════════════════════════════
   Utilities
   ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1000;
  transition: top var(--duration-fast) var(--ease-default);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ═══════════════════════════════════════════
   Buttons (print-press style)
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.6rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default),
    background var(--duration-fast) var(--ease-default);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn--primary:hover {
  background: var(--blue-700);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn--primary:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn--secondary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 3px 3px 0 rgba(21, 33, 59, 0.18);
}

.btn--secondary:hover {
  background: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(21, 33, 59, 0.22);
}

.btn--lg {
  padding: 0.85rem 1.6rem;
  font-size: 1.0625rem;
}

/* ═══════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(251, 250, 246, 0.8);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1.5px solid transparent;
  z-index: 100;
  transition:
    border-color var(--duration-normal) var(--ease-default),
    background var(--duration-normal) var(--ease-default);
}

.nav--scrolled {
  border-bottom-color: var(--ink);
  background: rgba(251, 250, 246, 0.92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav__logo-icon {
  color: var(--blue-600);
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--duration-fast) var(--ease-default);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--gold-400);
  transition: right var(--duration-normal) var(--ease-default);
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link:hover::after {
  right: 0;
}

.nav__cta {
  display: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: var(--radius-full);
  transition:
    transform var(--duration-normal) var(--ease-default),
    opacity var(--duration-normal) var(--ease-default);
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    /* The nav's backdrop-filter makes it the containing block for this fixed
       panel, so `bottom: 0` collapses it to the nav's height. Pin an explicit
       viewport-based height so the opaque background covers the whole screen. */
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-lg);
    background: var(--paper);
    border-top: 1.5px solid var(--ink);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-default);
    z-index: 99;
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__link {
    padding: var(--space-md) 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }

  .nav__link::after {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__hamburger--open .nav__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__hamburger--open .nav__hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .nav__hamburger--open .nav__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 769px) {
  .nav__cta {
    display: inline-flex;
  }
}

/* ═══════════════════════════════════════════
   Sections (shared)
   ═══════════════════════════════════════════ */
.section {
  position: relative;
  padding: var(--space-section) 0;
}

.section:nth-child(even) {
  background: var(--paper-2);
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
}

.section__header {
  text-align: center;
  max-width: var(--content-max-width);
  margin: 0 auto var(--space-3xl);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue-700);
  margin-bottom: var(--space-md);
}

.section__eyebrow::before,
.section__eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-400);
}

.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
}

.section__subtitle {
  margin-top: var(--space-md);
  font-size: 1.125rem;
  color: var(--ink-soft);
  font-family: var(--font-sans);
}

/* ═══════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(21, 33, 59, 0.05) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(21, 33, 59, 0.05) 1.5px, transparent 1.5px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 25%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(
    circle at 70% 25%,
    #000 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.16),
    transparent 68%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
  box-shadow: 3px 3px 0 var(--gold-400);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
  animation: pulse-dot 2s var(--ease-default) infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.05);
  }
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero__subtitle {
  margin-top: var(--space-lg);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.6;
}

.hero__actions {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__proof {
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  color: var(--ink-faint);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Hero demo visual — a "torn ticket" card */
.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__demo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  max-width: 400px;
}

.hero__demo-badge {
  position: absolute;
  top: -16px;
  right: -6px;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold-400);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(4deg);
}

.hero__demo-step {
  width: 100%;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1.5px solid var(--ink);
  box-shadow: var(--offset);
}

.hero__demo-step--highlight {
  transform: rotate(-1.2deg);
}

.hero__demo-text {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero__demo-text mark {
  background: linear-gradient(
    101deg,
    rgba(252, 211, 77, 0.5),
    rgba(251, 191, 36, 0.9) 95%,
    rgba(252, 211, 77, 0.4)
  );
  color: var(--ink);
  padding: 0.1em 0.15em;
  border-radius: 2px;
  font-weight: 500;
}

.hero__demo-arrow {
  color: var(--blue-600);
  animation: bounce-down 1.8s infinite;
}

@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

.hero__demo-event {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero__demo-event-icon {
  font-size: 1.6rem;
}

.hero__demo-event strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
}

.hero__demo-event span {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.hero__demo-step--event {
  transform: rotate(1deg);
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--blue-600);
}

/* ═══════════════════════════════════════════
   How It Works
   ═══════════════════════════════════════════ */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-xl);
}

.step {
  position: relative;
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background: var(--gold-300);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--blue-600);
  border: 1.5px solid var(--ink);
  color: var(--white);
  box-shadow: var(--offset);
}

.step__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.step__desc {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.step__connector {
  display: flex;
  align-items: center;
  padding-top: 4.75rem;
  color: var(--ink-faint);
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
  }

  .step__connector {
    padding-top: 0;
    transform: rotate(90deg);
  }
}

/* ═══════════════════════════════════════════
   Features
   ═══════════════════════════════════════════ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--offset);
  transition:
    box-shadow var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-default);
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--offset-hover);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  border: 1.5px solid var(--ink);
  color: var(--blue-600);
  margin-bottom: var(--space-md);
  transition:
    background var(--duration-normal) var(--ease-default),
    color var(--duration-normal) var(--ease-default);
}

.feature-card:hover .feature-card__icon {
  background: var(--gold-300);
  color: var(--ink);
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

kbd {
  display: inline-block;
  padding: 0.15em 0.45em;
  font-family: var(--font-mono);
  font-size: 0.8125em;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 rgba(21, 33, 59, 0.16);
  color: var(--ink);
}

/* ═══════════════════════════════════════════
   Use Cases
   ═══════════════════════════════════════════ */
.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.use-case-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--offset);
  transition:
    box-shadow var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-default);
}

.use-case-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--offset-gold);
}

.use-case-card__emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.6rem;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

.use-case-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.use-case-card__desc {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   Tech Highlights
   ═══════════════════════════════════════════ */
.tech__list {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tech__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-lg) var(--space-lg) var(--space-lg)
    calc(var(--space-xl) + 0.5rem);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--offset);
  overflow: hidden;
  transition:
    box-shadow var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-default);
}

.tech__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--blue-600),
    var(--blue-600) 6px,
    var(--gold-400) 6px,
    var(--gold-400) 12px
  );
  border-right: 1.5px solid var(--ink);
}

.tech__item:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--offset-hover);
}

.tech__item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  border: 1.5px solid var(--ink);
  color: var(--blue-600);
  margin-bottom: var(--space-xs);
  transition:
    background var(--duration-normal) var(--ease-default),
    color var(--duration-normal) var(--ease-default);
}

.tech__item:hover .tech__item__icon {
  background: var(--gold-300);
  color: var(--ink);
}

.tech__item strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}

.tech__item span {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq__list {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--offset);
  transition:
    box-shadow var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-default);
}

.faq__item[open] {
  box-shadow: var(--offset-hover);
}

.faq__question {
  padding: var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration-fast) var(--ease-default);
}

.faq__question:hover {
  background: var(--paper-2);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--blue-600);
  transition: transform var(--duration-normal) var(--ease-default);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq__item[open] .faq__question::after {
  transform: rotate(135deg);
}

.faq__answer {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink) !important;
  text-align: center;
  border-top: none !important;
  border-bottom: none !important;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.06) 1.5px,
      transparent 1.5px
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.06) 1.5px,
      transparent 1.5px
    );
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 78%);
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 50%;
  width: 70%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.35),
    transparent 70%
  );
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  padding: var(--space-4xl) var(--space-lg);
}

.cta__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.cta__subtitle {
  margin-top: var(--space-md);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta__actions {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.cta .btn--primary {
  background: var(--gold-400);
  color: var(--ink);
  border-color: var(--paper);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.85);
}

.cta .btn--primary:hover {
  background: var(--gold-300);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.9);
}

.cta .btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.2);
}

.cta .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════ */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.5fr 2fr;
  }
}

.footer__brand .nav__logo {
  color: var(--white);
}

.footer__brand .nav__logo-icon {
  color: var(--gold-400);
}

.footer__tagline {
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 480px) {
  .footer__columns {
    grid-template-columns: 1fr;
  }
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-md);
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  width: fit-content;
  transition: color var(--duration-fast) var(--ease-default);
}

.footer__link:hover {
  color: var(--gold-400);
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
}

.footer__bottom a {
  color: var(--gold-400);
  transition: color var(--duration-fast) var(--ease-default);
}

.footer__bottom a:hover {
  color: var(--gold-300);
}

@media (max-width: 480px) {
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   Pricing
   ═══════════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: start;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--offset);
  transition:
    box-shadow var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-default);
}

.price-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--offset-hover);
}

.price-card--featured {
  border-color: var(--blue-600);
  box-shadow: 6px 6px 0 var(--blue-600);
}

.price-card--featured:hover {
  box-shadow: 9px 9px 0 var(--blue-600);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  right: var(--space-lg);
  padding: 0.3rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--blue-600);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
  box-shadow: 2px 2px 0 var(--ink);
}

.price-card__badge--soon {
  color: var(--ink);
  background: var(--gold-400);
}

.price-card__head {
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1.5px dashed var(--line);
}

.price-card__name {
  font-size: 1.5rem;
  font-weight: 600;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: var(--space-sm);
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.price-card__period {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-faint);
}

.price-card__tagline {
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.price-card__features li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: var(--radius-full);
  background:
    url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23ffffff%27 stroke-width=%273.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M20 6 9 17l-5-5%27/%3E%3C/svg%3E")
      center / 0.7rem no-repeat,
    var(--blue-600);
  border: 1.5px solid var(--ink);
}

.price-card__features li strong {
  color: var(--ink);
  font-weight: 600;
}

.price-card__soon {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.05rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  vertical-align: middle;
}

.price-card__cta {
  margin-top: auto;
  width: 100%;
}

/* ═══════════════════════════════════════════
   Get Pro modal
   ═══════════════════════════════════════════ */
.modal {
  border: none;
  padding: 0;
  margin: auto;
  background: transparent;
  max-width: 460px;
  width: calc(100% - 2rem);
  color: inherit;
}

.modal::backdrop {
  background: rgba(21, 33, 59, 0.45);
}

.modal[open] {
  animation: modal-in var(--duration-normal) var(--ease-bounce);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__card {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-2xl);
  box-shadow: var(--offset);
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  text-align: center;
}

.modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-faint);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-default);
}

.modal__close:hover {
  color: var(--ink);
}

.modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ink);
  margin-top: var(--space-sm);
}

.modal__body {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.modal__body strong {
  color: var(--ink);
  font-weight: 600;
}

.modal__actions {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.modal__cta {
  width: 100%;
}

/* ═══════════════════════════════════════════
   Roadmap
   ═══════════════════════════════════════════ */
.roadmap__list {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.roadmap__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--offset);
  transition:
    box-shadow var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-default);
}

.roadmap__item:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--offset-hover);
}

.roadmap__tag {
  flex-shrink: 0;
  margin-top: 0.15em;
  padding: 0.25rem 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
}

.roadmap__tag--next {
  color: var(--white);
  background: var(--blue-600);
}

.roadmap__tag--soon {
  color: var(--ink);
  background: var(--paper-2);
}

.roadmap__tag--shipped {
  color: var(--white);
  background: #16a34a;
  border-color: var(--ink);
}

.roadmap__tag--planned {
  color: var(--ink-soft);
  background: transparent;
  border-style: dashed;
}

.roadmap__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}

.roadmap__item span {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.roadmap__shipped-note {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.roadmap__shipped-note strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 480px) {
  .roadmap__item {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

/* ═══════════════════════════════════════════
   Voice spotlight (Pro) — hero-style
   ═══════════════════════════════════════════ */
.voice {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.voice::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(21, 33, 59, 0.05) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(21, 33, 59, 0.05) 1.5px, transparent 1.5px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 75% 30%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(
    circle at 75% 30%,
    #000 0%,
    transparent 65%
  );
  pointer-events: none;
}

.voice::after {
  content: "";
  position: absolute;
  top: -12%;
  right: -6%;
  width: 42vw;
  height: 42vw;
  max-width: 580px;
  max-height: 580px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18),
    transparent 68%
  );
  pointer-events: none;
}

.voice__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .voice__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.voice__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
  box-shadow: 3px 3px 0 var(--gold-400);
}

.voice__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
  animation: pulse-dot 2s var(--ease-default) infinite;
}

.voice__title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.voice__subtitle {
  margin-top: var(--space-lg);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.6;
}

.voice__actions {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.voice__proof {
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  color: var(--ink-faint);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Voice demo visual — mirrors the hero "torn ticket" card */
.voice__visual {
  display: flex;
  justify-content: center;
}

.voice__demo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  max-width: 400px;
}

.voice__demo-badge {
  position: absolute;
  top: -16px;
  right: -6px;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold-400);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(4deg);
}

.voice__demo-step {
  width: 100%;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1.5px solid var(--ink);
  box-shadow: var(--offset);
}

.voice__demo-step--say {
  transform: rotate(-1.2deg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.voice__demo-mic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--blue-600);
  color: var(--white);
  border: 1.5px solid var(--ink);
}

.voice__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}

.voice__wave span {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--blue-600);
  animation: voiceWave 1.2s ease-in-out infinite;
}

.voice__wave span:nth-child(even) {
  background: var(--gold-400);
}
.voice__wave span:nth-child(1) {
  animation-delay: 0s;
}
.voice__wave span:nth-child(2) {
  animation-delay: 0.1s;
}
.voice__wave span:nth-child(3) {
  animation-delay: 0.2s;
}
.voice__wave span:nth-child(4) {
  animation-delay: 0.3s;
}
.voice__wave span:nth-child(5) {
  animation-delay: 0.4s;
}
.voice__wave span:nth-child(6) {
  animation-delay: 0.3s;
}
.voice__wave span:nth-child(7) {
  animation-delay: 0.2s;
}
.voice__wave span:nth-child(8) {
  animation-delay: 0.1s;
}
.voice__wave span:nth-child(9) {
  animation-delay: 0.2s;
}
.voice__wave span:nth-child(10) {
  animation-delay: 0.3s;
}

@keyframes voiceWave {
  0%,
  100% {
    height: 7px;
    opacity: 0.65;
  }
  50% {
    height: 24px;
    opacity: 1;
  }
}

.voice__demo-said {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.voice__demo-arrow {
  color: var(--blue-600);
  animation: bounce-down 1.8s infinite;
}

.voice__demo-step--event {
  transform: rotate(1deg);
  border-color: var(--blue-600);
  box-shadow: 4px 4px 0 var(--blue-600);
}

.voice__demo-event {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.voice__demo-event-icon {
  font-size: 1.6rem;
}

.voice__demo-event strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
}

.voice__demo-event span {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .voice__badge-dot,
  .voice__wave span,
  .voice__demo-arrow {
    animation: none;
  }
}

/* ═══════════════════════════════════════════
   Reveal on scroll
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__demo-arrow,
  .hero__badge-dot {
    animation: none;
  }
}

/* ═══════════════════════════════════════════
   Legal / Privacy page
   ═══════════════════════════════════════════ */
.legal {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.legal__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.legal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue-700);
  margin-bottom: var(--space-md);
}

.legal__title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

.legal__updated {
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--ink-faint);
  font-weight: 600;
}

.legal__body {
  margin-top: var(--space-2xl);
}

.legal__body h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
}

.legal__body p,
.legal__body li {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal__body p {
  margin-top: var(--space-md);
}

.legal__body ul {
  margin-top: var(--space-md);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.legal__body a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold-400);
  text-underline-offset: 3px;
}

.legal__callout {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--offset);
  font-family: var(--font-sans);
}

.legal__body code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  overflow-wrap: anywhere;
}


/*# sourceMappingURL=main.e323bd4c09179efcf112.css.map*/