:root {
  --bg: #ffffff;
  --bg-soft: #f7f5f1;
  --text: #17140f;
  --text-dim: #6b6355;
  --accent: #9fa189;
  --accent-dark: #cfc4c1;
  --navy: #0a2226;
  --rust: #c0552b;
  --rust-hover: #8f3a18;
  --rust-cream-hover: #a0431f;
  --rust-btn-ink: #dc6538;
  --rust-display-ink: #ee7a4a;
  --rust-border-ink: #f8a47c;
  --rust-text-ink: #e2663a;
  --tint-gcal-bg: #e3f0ea;
  --tint-gcal-text: #2f7a5c;
  --tint-gmail-bg: #faf0d7;
  --tint-gmail-text: #a6790a;
  --tint-qb-bg: #e4f1e2;
  --tint-qb-text: #3e8e4f;
  --tint-slack-bg: #ece7f6;
  --tint-slack-text: #6b4fa0;
  --tint-stripe-bg: #e6edfb;
  --tint-stripe-text: #3b5fcc;
  --tint-anthropic-bg: #f5dcc7;
  --tint-anthropic-text: var(--rust);
  --ai-violet-bg: #eae4f0;
  --ai-violet: #6d4e96;
  --ai-violet-light: #a78bfa;
  --accent-teal: #2e8a86;
  --accent-marigold: #c08430;
  --accent-blue: #3a6fb0;
  --accent-green: #4a7c59;
  --accent-violet: #6d4e96;
  --accent-rose: #b04a6b;
  --ink: #17140f;
  --ink-soft: #3a342c;
  --cream: #faf6ef;
  --cream-hover: #f0e6da;
  --cream-active: #e8dcc8;
  --border: #e7e2d9;
  --shadow: 0 1px 2px rgba(23, 20, 15, 0.04), 0 6px 16px rgba(23, 20, 15, 0.05);
  --nav-h: 80px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  padding-top: var(--nav-h);
}

[id] {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

a {
  text-decoration: none;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  height: var(--nav-h);
  padding: 20px 48px;
  border-bottom: 1px solid rgba(23, 20, 15, 0.08);
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--rust);
}

.logo .logo-accent {
  color: var(--text);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-self: end;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.open-waitlist {
  background: var(--rust);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 700;
  font-size: 0.93rem;
  transition: background-color 140ms ease-out;
}

.nav-links a.open-waitlist:hover {
  color: #ffffff;
  background: var(--rust-cream-hover);
}

.nav-links a.open-waitlist:active {
  background: var(--rust-hover);
}

.hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 70px 24px 100px;
  text-align: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8a8172;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 44px;
}

.badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
  color: var(--ink-soft);
}

h1 .highlight {
  display: block;
  font-weight: 700;
  color: var(--rust);
}

.tagline {
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  color: var(--text-dim);
  max-width: 820px;
  margin: 0 auto 48px;
  line-height: 1.7;
  white-space: normal;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  background: var(--rust);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  transition: background-color 140ms ease-out;
}

.btn-primary:hover {
  background: var(--rust-cream-hover);
}

.btn-primary:active {
  background: var(--rust-hover);
}

.trust-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.93rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-check {
  color: var(--text);
  font-weight: 700;
}

.integrations {
  padding: 90px 0;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.integrations-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust-display-ink);
  flex-shrink: 0;
}

.integrations h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 0 24px;
}

.integrations-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: none;
  white-space: nowrap;
  margin: 0 auto 48px;
  padding: 0 24px;
}

@media (max-width: 700px) {
  .integrations-sub {
    white-space: normal;
  }
}

.tool-marquee {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tool-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: tool-scroll 34s linear infinite;
}

.tool-marquee:hover .tool-marquee-track {
  animation-play-state: paused;
}

@keyframes tool-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tool-marquee-track {
    animation: none;
  }
}

.tool-name {
  font-weight: 700;
  color: var(--text-dim);
  font-size: 1.3rem;
  white-space: nowrap;
}

.tool-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  padding: 0 24px;
}

.status-pill {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  background: #fff;
}

.status-pill-live {
  background: var(--tint-anthropic-bg);
  color: var(--tint-anthropic-text);
  border-color: var(--tint-anthropic-bg);
}

.status-pill-gcal {
  background: var(--tint-gcal-bg);
  color: var(--tint-gcal-text);
  border-color: var(--tint-gcal-bg);
}

.status-pill-stripe {
  background: var(--tint-stripe-bg);
  color: var(--tint-stripe-text);
  border-color: var(--tint-stripe-bg);
}

.status-pill-slack {
  background: var(--tint-slack-bg);
  color: var(--tint-slack-text);
  border-color: var(--tint-slack-bg);
}

.features {
  background: var(--bg);
  padding: 80px 24px;
  text-align: center;
}

.features-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin: 0 0 20px;
}

.features-header p {
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.features .features-header p,
.ai-section .features-header p {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 700px) {

  .features .features-header p,
  .ai-section .features-header p {
    white-space: normal;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 56px;
  row-gap: 48px;
  max-width: 1165px;
  margin: 0 auto;
  text-align: left;
}

.grid-card {
  padding: 0;
}

.grid-icon {
  margin-bottom: 14px;
}

.grid-icon svg {
  width: 30px;
  height: 30px;
  color: var(--text);
  stroke: currentColor;
}

.grid-icon .ac {
  fill: currentColor;
  stroke: none;
}

.grid-icon .acs {
  stroke: currentColor;
}

.features-grid .grid-card:nth-child(1) .grid-icon svg {
  color: var(--accent-teal);
}

.features-grid .grid-card:nth-child(2) .grid-icon svg {
  color: var(--accent-marigold);
}

.features-grid .grid-card:nth-child(3) .grid-icon svg {
  color: var(--accent-blue);
}

.features-grid .grid-card:nth-child(4) .grid-icon svg {
  color: var(--accent-green);
}

.features-grid .grid-card:nth-child(5) .grid-icon svg {
  color: var(--accent-violet);
}

.features-grid .grid-card:nth-child(6) .grid-icon svg {
  color: var(--accent-rose);
}

.features-grid .grid-card:nth-child(1) .step-rule::after {
  background: var(--accent-teal);
}

.features-grid .grid-card:nth-child(2) .step-rule::after {
  background: var(--accent-marigold);
}

.features-grid .grid-card:nth-child(3) .step-rule::after {
  background: var(--accent-blue);
}

.features-grid .grid-card:nth-child(4) .step-rule::after {
  background: var(--accent-green);
}

.features-grid .grid-card:nth-child(5) .step-rule::after {
  background: var(--accent-violet);
}

.features-grid .grid-card:nth-child(6) .step-rule::after {
  background: var(--accent-rose);
}

.step-rule {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--border);
  margin-bottom: 14px;
  overflow: hidden;
}

.step-rule::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--rust-display-ink);
  transition: width 0.5s ease;
}

.grid-card:hover .step-rule::after {
  width: 100%;
}

.step-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #a8a196;
  white-space: nowrap;
  margin-bottom: 16px;
}

.step-num {
  margin-right: 8px;
}

.grid-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.grid-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.stats {
  background: #16333a;
  padding: 100px 24px;
}

.comparison {
  background: #16333a;
  padding: 100px 24px;
  text-align: left;
}

.comparison-inner {
  max-width: 960px;
  margin: 0 auto;
}

.comparison-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.comparison-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust-display-ink);
  flex-shrink: 0;
}

.comparison h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0 0 40px;
}

.comparison-table {
  text-align: left;
}

.comparison-row {
  display: grid;
  grid-template-columns: 320px 30px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-old {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.comparison-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.comparison-new {
  color: var(--rust-display-ink);
  font-size: 26px;
  font-weight: 700;
}

@media (max-width: 560px) {
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .comparison-arrow {
    display: none;
  }

  .comparison-old {
    white-space: normal;
  }
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 56px;
  text-align: center;
}

.stat {
  padding: 0 20px;
  border-left: 1px solid rgba(248, 164, 124, 0.3);
}

.stat:first-child {
  border-left: none;
}

.stat-number {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 12px;
}

.stat:last-child .stat-number {
  color: var(--rust-display-ink);
}

.stat-label {
  color: #8fb0ac;
  font-size: 0.97rem;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .stat:nth-child(3) {
    border-left: none;
  }
}

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

  .stat {
    border-left: none;
  }
}

.ai-section {
  position: relative;
  background-color: var(--ink);
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.ai-section h2 {
  color: #ffffff;
}

.ai-highlight {
  color: var(--ai-violet-light);
}

.ai-section .features-header p {
  color: rgba(255, 255, 255, 0.65);
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.3);
  position: relative;
  z-index: 1;
  color: var(--ai-violet-light);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.ai-badge svg {
  width: 15px;
  height: 15px;
  color: var(--ai-violet-light);
}

.ai-section h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.ai-section .ai-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  line-height: 1.55;
}

.ai-step-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ai-violet-light);
  white-space: nowrap;
  margin-bottom: 10px;
}

.ai-step-circle {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ai-violet);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  box-shadow: 0 0 8px 1px rgba(109, 78, 150, 0.22);
  transition: box-shadow 0.3s ease;
}

.ai-step-circle .ai-bars {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.ai-step-circle .ai-bars i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #ffffff;
  animation: ai-bar-pulse 1.1s ease-in-out infinite;
}

.ai-step-circle .ai-bars i:nth-child(1) {
  animation-delay: 0s;
}

.ai-step-circle .ai-bars i:nth-child(2) {
  animation-delay: 0.15s;
}

.ai-step-circle .ai-bars i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes ai-bar-pulse {

  0%,
  100% {
    height: 5px;
  }

  50% {
    height: 14px;
  }
}

.ai-step-circle.active .ai-step-num {
  display: none;
}

.ai-step-circle.active .ai-bars {
  display: flex;
}

.ai-step-circle.active {
  animation: ai-circle-glow 1.4s ease-in-out infinite;
}

@keyframes ai-circle-glow {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.32), 0 0 8px 1px rgba(109, 78, 150, 0.18);
  }

  50% {
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.6), 0 0 28px 9px rgba(109, 78, 150, 0.36);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-step-circle .ai-bars i {
    animation: none;
    height: 9px;
  }

  .ai-step-circle.active {
    animation: none;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.6), 0 0 28px 9px rgba(109, 78, 150, 0.36);
  }
}

.ai-typing {
  margin-top: 12px;
  min-height: 20px;
  font-size: 0.83rem;
  font-style: italic;
  color: var(--ai-violet-light);
}

.ai-typing-cursor {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: var(--ai-violet-light);
  margin-left: 2px;
  vertical-align: middle;
  opacity: 0;
}

.ai-typing-cursor.blink {
  animation: ai-cursor-blink 0.9s steps(1) infinite;
}

@keyframes ai-cursor-blink {

  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

.ai-timeline {
  position: relative;
  max-width: 1180px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}

.ai-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(167, 139, 250, 0.25);
  z-index: 0;
}

@media (max-width: 900px) {
  .ai-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-timeline::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .ai-timeline {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  background: #ffffff;
  padding: 100px 24px;
  text-align: center;
}

.review-grid {
  columns: 3 280px;
  column-gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.review-card {
  break-inside: avoid;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.review-quote {
  color: var(--text);
  font-size: 0.99rem;
  line-height: 1.6;
  margin: 0 0 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.83rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  color: var(--text);
  font-size: 0.93rem;
}

.review-role {
  color: var(--text-dim);
  font-size: 0.83rem;
}

@media (max-width: 900px) {
  .review-grid {
    columns: 2 240px;
  }
}

@media (max-width: 560px) {
  .review-grid {
    columns: 1;
  }
}

.faq {
  padding: 100px 24px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--text);
  margin: 0 0 16px;
}

.faq-header p {
  color: #6B6355;
  font-size: 1.08rem;
  margin: 0 0 48px;
}

.faq-list {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: left;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child .faq-question {
  border-top-left-radius: 17px;
}

.faq-item:last-child .faq-answer {
  border-bottom-left-radius: 17px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  padding: 24px 28px 24px 25px;
  font-family: inherit;
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, border-color 0.2s ease;
}

.faq-question:hover {
  background: var(--bg-soft);
}

.faq-item.open .faq-question {
  background: rgba(143, 58, 24, 0.08);
  border-left-color: var(--rust);
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--rust-hover);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 22px;
  height: 3px;
}

.faq-icon::after {
  width: 3px;
  height: 22px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: max-height 0.3s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq-item.open .faq-answer {
  border-left-color: var(--rust);
  background: rgba(143, 58, 24, 0.08);
}

.faq-answer p {
  margin: 0;
  padding: 10px 28px 16px 25px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--ink);
  border-radius: 18px;
  padding: 28px 32px;
  margin-top: 24px;
  text-align: left;
}

.faq-cta h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
  margin: 0;
}

.faq-cta-btn {
  background: var(--cream);
  color: var(--text);
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background-color 140ms ease-out;
}

.faq-cta-btn:hover {
  background: var(--cream-hover);
}

.faq-cta-btn:active {
  background: var(--cream-active);
}

@media (max-width: 560px) {
  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 120px 24px;
  text-align: center;
}

.cta-waves {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 120px;
  width: calc(100% + 48px);
  margin: 68px -24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.cta-waves span {
  display: inline-block;
  width: 5px;
  border-radius: 3px;
  flex-shrink: 0;
  animation: cta-pulse 2.4s ease-in-out infinite;
}

@keyframes cta-pulse {

  0%,
  100% {
    transform: scaleY(0.85);
  }

  50% {
    transform: scaleY(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-waves span {
    animation: none;
  }
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.15;
  text-wrap: balance;
}

.final-cta-inner>p {
  color: var(--text-dim);
  font-size: 1.12rem;
  margin: 0 0 40px;
  line-height: 1.6;
  white-space: nowrap;
  position: relative;
  left: -48px;
}

@media (max-width: 700px) {
  .final-cta-inner>p {
    white-space: normal;
    left: 0;
  }
}

.final-cta-btn {
  background: var(--rust);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 140ms ease-out;
}

.final-cta-btn:hover {
  background: var(--rust-cream-hover);
}

.final-cta-btn:active {
  background: var(--rust-hover);
}

.final-cta-note {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 0.87rem;
}

.modal-sub {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}

.modal-disclaimer {
  margin: 2px 0 0;
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.5;
}

.modal-disclaimer a {
  color: inherit;
  text-decoration: underline;
}

.modal-disclaimer a:hover {
  color: var(--rust);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.contact-form input {
  border-radius: 999px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.contact-submit {
  background: var(--rust);
  color: #ffffff;
  border: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 140ms ease-out;
}

.contact-submit:hover {
  background: var(--rust-cream-hover);
}

.contact-submit:active {
  background: var(--rust-hover);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.contact-status {
  display: block;
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.contact-status.is-success {
  color: var(--navy);
}

.contact-status.is-error {
  color: var(--rust);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 48px;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-size: 2rem;
  color: var(--cream);
}

.footer-logo .logo-accent {
  color: var(--cream);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.83rem;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 20, 15, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(23, 20, 15, 0.2);
}

.modal-box h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1.3rem;
}

#contactSuccessModal .modal-box {
  text-align: center;
}

.launchlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.launchlist-form input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.launchlist-form input::placeholder {
  color: var(--text-dim);
}

.launchlist-form input:focus {
  outline: none;
  border-color: var(--navy);
}

.launchlist-form button {
  background: var(--rust);
  color: #ffffff;
  border: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 140ms ease-out;
}

.launchlist-form button:hover {
  background: var(--rust-cream-hover);
}

.launchlist-form button:active {
  background: var(--rust-hover);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.46rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 720px) {
  :root {
    --nav-h: 72px;
  }

  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }
}

.legal {
  padding: 80px 24px 100px;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-updated {
  color: var(--text-dim);
  font-size: 0.87rem;
  margin: 0 0 8px;
}

.legal h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

.legal h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 12px;
}

.legal p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal li {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal a {
  color: var(--rust);
  text-decoration: underline;
}