/* ── Public Pages ── */
/* Uses CSS variables defined in tailwind.css (light theme).      */
/* Only loaded on public-facing pages via the public layout.       */

:root {
  --warm-stone: #5C4F3D;
  --soft-sage: #7A8B6F;
  --soft-sage-hover: #6B7D61;
  --parchment: #FAF6F0;
  --amber-glow: #D4A054;
  --dusty-rose: #C4907A;
  --deep-oak: #3B3228;
  --linen: #F5F0E8;
  --warm-gray: #9B9284;
  --charcoal: #2D2A26;
  --cream-white: #FFFDF9;
  --success: #6B8F5E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--parchment);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes gentlePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Navigation ── */
nav {
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; */
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(59, 50, 40, 0.06);
  padding: 0.9rem 2rem;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--warm-stone);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo .accent { color: var(--soft-sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-stone);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--soft-sage) !important;
  color: var(--cream-white) !important;
  padding: 0.55rem 1.35rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--soft-sage-hover) !important;
  box-shadow: 0 4px 12px rgba(122, 139, 111, 0.25);
}

/* ── Hero ── */
.hero {
  padding: 10rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 139, 111, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: gentlePulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 84, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: gentlePulse 10s ease-in-out infinite 2s;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  /* text side */
}

.hero-image {
  position: relative;
  animation: fadeIn 1s ease both 0.5s;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(59, 50, 40, 0.12), 0 2px 8px rgba(59, 50, 40, 0.06);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 2px solid rgba(122, 139, 111, 0.15);
  border-radius: 18px;
  z-index: -1;
}

/* ── Hero Split Variant ── */
.hero-split {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-split-left .hero-eyebrow {
  animation: fadeIn 0.6s ease both;
}

.hero-split h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.12;
  color: var(--warm-stone);
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s ease both 0.1s;
}

.hero-split h1 .highlight {
  color: var(--soft-sage);
}

.hero-split .hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--warm-gray);
  max-width: 540px;
  margin-top: 1.25rem;
  animation: fadeUp 0.8s ease both 0.2s;
}

.hero-split .hero-actions {
  animation: fadeUp 0.8s ease both 0.3s;
}

.hero-split-right {
  animation: fadeUp 0.8s ease both 0.35s;
}

.hero-value-props {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--cream-white);
  border: 1.5px solid rgba(122, 139, 111, 0.15);
  border-radius: 16px;
  padding: 2rem 2rem;
  box-shadow: 0 4px 24px rgba(59, 50, 40, 0.06);
}

.hero-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.hero-value-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--soft-sage);
  margin-top: 0.15rem;
}

.hero-value-item strong {
  color: var(--warm-stone);
}

.hero-image-caption {
  position: absolute;
  bottom: -14px;
  left: 24px;
  background: var(--cream-white);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  box-shadow: 0 4px 16px rgba(59, 50, 40, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warm-stone);
  animation: fadeUp 0.6s ease both 0.9s;
}

.hero-image-caption .caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: gentlePulse 2s ease-in-out infinite;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--linen);
  color: var(--warm-stone);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeIn 0.6s ease both;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--soft-sage);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.1;
  color: var(--warm-stone);
  max-width: 700px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s ease both 0.1s;
}

.hero h1 .highlight {
  color: var(--soft-sage);
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--warm-gray);
  max-width: 520px;
  margin-top: 1.5rem;
  animation: fadeUp 0.8s ease both 0.25s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s ease both 0.4s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-primary {
  background: var(--soft-sage);
  color: var(--cream-white);
}

.btn-primary:hover {
  background: var(--soft-sage-hover);
  box-shadow: 0 6px 20px rgba(122, 139, 111, 0.3);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--warm-stone);
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-ghost:hover { color: var(--soft-sage); }

.btn-ghost svg {
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
}

.btn-ghost:hover svg { transform: translateX(3px); }

/* ── Demo Preview ── */
.demo-section {
  padding: 0 2rem 6rem;
  position: relative;
  z-index: 1;
}

.demo-window {
  max-width: 960px;
  margin: 0 auto;
  background: var(--cream-white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(59, 50, 40, 0.08), 0 1px 3px rgba(59, 50, 40, 0.04);
  overflow: hidden;
  border: 1px solid rgba(155, 146, 132, 0.1);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--linen);
  border-bottom: 1px solid rgba(155, 146, 132, 0.1);
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(155, 146, 132, 0.25);
}

.demo-dot:first-child { background: rgba(194, 93, 74, 0.4); }
.demo-dot:nth-child(2) { background: rgba(212, 160, 84, 0.4); }
.demo-dot:nth-child(3) { background: rgba(107, 143, 94, 0.4); }

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.demo-input-side {
  padding: 2rem;
  border-right: 1px solid rgba(155, 146, 132, 0.1);
}

.demo-output-side {
  padding: 2rem;
  background: var(--parchment);
}

.demo-section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--warm-stone);
  margin-bottom: 1.25rem;
}

.demo-field {
  margin-bottom: 1rem;
}

.demo-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--warm-gray);
  margin-bottom: 0.3rem;
  display: block;
}

.demo-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(155, 146, 132, 0.2);
  background: var(--linen);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.demo-textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(155, 146, 132, 0.2);
  background: var(--linen);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  resize: none;
  height: 56px;
}

.demo-generate-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.65rem;
  background: var(--soft-sage);
  color: var(--cream-white);
  border: none;
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.demo-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(155, 146, 132, 0.12);
  overflow-x: auto;
}

.demo-tab {
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--warm-gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}

.demo-tab.active {
  color: var(--soft-sage);
  border-bottom-color: var(--soft-sage);
}

.demo-output-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.85;
}

.demo-output-text p { margin-bottom: 0.75rem; }

.demo-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.4rem 0.85rem;
  background: var(--linen);
  border: 1px solid rgba(155, 146, 132, 0.15);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--warm-stone);
  cursor: pointer;
  transition: all 0.2s ease;
}

.demo-copy-btn:hover {
  background: var(--cream-white);
  border-color: var(--soft-sage);
  color: var(--soft-sage);
}

/* ── Pain Section ── */
.pain-section {
  padding: 6rem 2rem;
  background: var(--cream-white);
  border-top: 1px solid rgba(155, 146, 132, 0.08);
  border-bottom: 1px solid rgba(155, 146, 132, 0.08);
}

.pain-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pain-left h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--warm-stone);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.pain-left p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.pain-list {
  list-style: none;
  margin-top: 2rem;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.55;
}

.pain-list .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(122, 139, 111, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.pain-list .icon svg {
  width: 14px;
  height: 14px;
  color: var(--soft-sage);
}

.pain-right {
  position: relative;
}

.output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.output-card {
  background: var(--parchment);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1.5px solid rgba(155, 146, 132, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.output-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 50, 40, 0.08);
  border-color: rgba(122, 139, 111, 0.2);
}

.output-card.highlighted {
  background: var(--cream-white);
  border-color: var(--soft-sage);
  box-shadow: 0 4px 16px rgba(122, 139, 111, 0.12);
}

.output-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(122, 139, 111, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.output-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--soft-sage);
}

.output-card.highlighted .output-card-icon {
  background: rgba(122, 139, 111, 0.18);
}

.output-card-label {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--warm-stone);
  margin-bottom: 0.3rem;
}

.output-card-desc {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.45;
}

/* ── How It Works ── */
.how-section {
  padding: 7rem 2rem;
}

.how-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.how-inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--warm-stone);
  margin-bottom: 0.75rem;
}

.how-inner > p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
}

.step-card {
  position: relative;
  padding: 2rem;
  background: var(--cream-white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(59, 50, 40, 0.05);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 50, 40, 0.08);
}

.step-number {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--soft-sage);
  opacity: 0.2;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  line-height: 1;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: rgba(122, 139, 111, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  color: var(--soft-sage);
}

.step-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--warm-stone);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ── Link Page Spotlight ── */
.link-page-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--warm-linen) 0%, #F3EDE4 100%);
}

.link-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}

.link-page-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.link-page-content > p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.link-page-perks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.link-page-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--warm-stone);
  line-height: 1.5;
}

.link-page-perks svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--sage);
}

.link-page-perks strong {
  color: var(--charcoal);
}

.link-page-url-example {
  font-size: 0.88rem;
  color: var(--warm-gray);
  background: rgba(155, 146, 132, 0.08);
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
}

.link-page-url-example strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.84rem;
  color: var(--sage);
}

.link-page-phone-frame {
  background: #fff;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  max-width: 340px;
  margin: 0 auto;
}

.link-page-screenshot {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.link-page-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 6rem 2rem;
  color: var(--warm-gray);
  font-size: 0.85rem;
  text-align: center;
}

.link-page-placeholder svg {
  opacity: 0.3;
}

@media (max-width: 768px) {
  .link-page-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .link-page-content h2 {
    font-size: 1.6rem;
  }

  .link-page-preview {
    order: -1;
  }

  .link-page-phone-frame {
    max-width: 280px;
  }
}

/* ── Channels ── */
.channels-section {
  padding: 6rem 2rem 7rem;
  background: var(--deep-oak);
  position: relative;
  overflow: hidden;
}

.channels-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 139, 111, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.channels-inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--parchment);
  margin-bottom: 0.75rem;
}

.channels-inner > p {
  font-size: 1.1rem;
  color: rgba(250, 246, 240, 0.5);
  margin-bottom: 3.5rem;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.channel-card {
  background: rgba(250, 246, 240, 0.04);
  border: 1px solid rgba(250, 246, 240, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.channel-card:hover {
  background: rgba(250, 246, 240, 0.07);
  border-color: rgba(122, 139, 111, 0.3);
  transform: translateY(-2px);
}

.channel-icon {
  width: 40px;
  height: 40px;
  background: rgba(122, 139, 111, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.channel-icon svg {
  width: 20px;
  height: 20px;
  color: var(--soft-sage);
}

.channel-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--parchment);
  margin-bottom: 0.4rem;
}

.channel-card p {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.45);
  line-height: 1.55;
}

/* ── Features Highlight ── */
.features-section {
  padding: 7rem 2rem;
  background: var(--cream-white);
  border-top: 1px solid rgba(155, 146, 132, 0.08);
  border-bottom: 1px solid rgba(155, 146, 132, 0.08);
}

.features-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.features-inner > h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--warm-stone);
  margin-bottom: 0.75rem;
}

.features-inner > p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.feature-highlight-card {
  position: relative;
  background: var(--parchment);
  border-radius: 14px;
  padding: 2rem;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}

.feature-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 50, 40, 0.08);
}

.feature-highlight-card.featured {
  border-color: rgba(122, 139, 111, 0.25);
  background: var(--cream-white);
}

.feature-highlight-icon {
  width: 44px;
  height: 44px;
  background: rgba(122, 139, 111, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-highlight-icon svg {
  width: 22px;
  height: 22px;
  color: var(--soft-sage);
}

.feature-highlight-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-sage);
  background: rgba(122, 139, 111, 0.1);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.feature-highlight-badge.accent {
  color: var(--amber-glow);
  background: rgba(212, 160, 84, 0.12);
}

.feature-highlight-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--warm-stone);
  margin-bottom: 0.6rem;
}

.feature-highlight-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ── Testimonial / Quote ── */
.quote-section {
  padding: 6rem 2rem;
  text-align: center;
}

.quote-inner {
  max-width: 680px;
  margin: 0 auto;
}

.quote-marks {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--soft-sage);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -1rem;
}

.quote-text {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--warm-stone);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-attr {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.quote-attr strong {
  color: var(--warm-stone);
  font-weight: 600;
}

/* ── Pricing ── */
.pricing-section {
  padding: 6rem 2rem 7rem;
  background: var(--cream-white);
  border-top: 1px solid rgba(155, 146, 132, 0.08);
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pricing-inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--warm-stone);
  margin-bottom: 0.75rem;
}

.pricing-inner > p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 3.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.price-card {
  background: var(--parchment);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}

.price-card:hover {
  box-shadow: 0 8px 30px rgba(59, 50, 40, 0.08);
}

.price-card.featured {
  border-color: var(--soft-sage);
  background: var(--cream-white);
}

.price-card .plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-sage);
  background: rgba(122, 139, 111, 0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.price-card .price {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--warm-stone);
  line-height: 1;
}

.price-card .price span {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--warm-gray);
}

.price-card .price-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin: 0.75rem 0 1.5rem;
  line-height: 1.5;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.4rem 0;
}

.feature-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--soft-sage);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: var(--soft-sage);
  border: 1.5px solid var(--soft-sage);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.btn-outline:hover {
  background: rgba(122, 139, 111, 0.06);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.billing-toggle span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.2s ease;
}

.billing-toggle span.active { color: var(--warm-stone); }

.toggle-track {
  width: 48px;
  height: 26px;
  background: var(--linen);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  border: 1.5px solid rgba(155, 146, 132, 0.2);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.toggle-track.annual { background: rgba(122, 139, 111, 0.15); border-color: var(--soft-sage); }

.toggle-thumb {
  width: 20px;
  height: 20px;
  background: var(--cream-white);
  border-radius: 50%;
  position: absolute;
  top: 1.5px;
  left: 2px;
  box-shadow: 0 1px 4px rgba(59, 50, 40, 0.15);
  transition: all 0.25s ease;
}

.toggle-track.annual .toggle-thumb {
  left: 24px;
  background: var(--soft-sage);
}

.annual-savings {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--soft-sage);
  background: rgba(122, 139, 111, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-left: 0.35rem;
}

/* ── Promo Banner ── */
.promo-banner {
  background: var(--deep-oak);
  color: var(--parchment);
  text-align: center;
  padding: 0.7rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.promo-banner .promo-sparkle {
  color: var(--amber-glow);
}

.promo-banner code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  background: rgba(250, 246, 240, 0.1);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  color: var(--amber-glow);
  border: 1px solid rgba(212, 160, 84, 0.25);
}

.has-banner nav { top: 36px; }
.has-banner .hero { padding-top: 11rem; }
.has-banner .hero-split { padding-top: 5rem; }

/* ── Pricing: wide layout ── */
.pricing-wide {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--cream-white);
  border-radius: 16px;
  border: 1.5px solid var(--soft-sage);
  box-shadow: 0 8px 40px rgba(59, 50, 40, 0.06);
  overflow: hidden;
  position: relative;
}

.pricing-wide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 2rem;
  background: var(--deep-oak);
}

.pricing-wide-top .launch-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-glow);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pricing-wide-top .coupon-label {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.6);
}

.pricing-wide-top .coupon-label code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  background: rgba(212, 160, 84, 0.2);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  color: var(--amber-glow);
  border: 1px solid rgba(212, 160, 84, 0.3);
  margin-left: 0.25rem;
}

.pricing-wide-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pricing-left {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(155, 146, 132, 0.1);
}

.pricing-left .plan-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--warm-stone);
  margin-bottom: 0.75rem;
}

.pricing-left .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.pricing-left .price-original {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--warm-gray);
  text-decoration: line-through;
}

.pricing-left .price {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--warm-stone);
  line-height: 1;
}

.pricing-left .price span {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--warm-gray);
}

.pricing-left .price-desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.5;
}

.pricing-left .trial-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  margin: 0 0 1.5rem;
}

.pricing-left .btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

.pricing-left .billing-toggle {
  margin-bottom: 2rem;
  justify-content: flex-start;
}

.pricing-right {
  padding: 3rem;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-right .features-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--warm-stone);
  margin-bottom: 1.25rem;
}

.pricing-right .feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 2rem;
}

.pricing-right .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--charcoal);
  padding: 0.45rem 0;
}

.pricing-right .feature-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--soft-sage);
}

.team-teaser {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.team-teaser a {
  color: var(--soft-sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.team-teaser a:hover { color: var(--soft-sage-hover); }

/* ── Final CTA ── */
.final-cta {
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--warm-stone);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.final-cta .note {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 1rem;
}

/* ── Footer ── */
footer {
  background: var(--deep-oak);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--parchment);
  letter-spacing: -0.02em;
}

.footer-logo .accent { color: var(--soft-sage); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-right a {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-right a:hover { color: var(--parchment); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.25);
  text-align: center;
  margin-top: 2rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  a {
    color: rgba(250, 246, 240, 0.25);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  a:hover { color: var(--parchment); }
}

/* ── Legal / Static Pages ── */
.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.legal-page h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--deep-oak);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
  color: var(--warm-stone);
}

.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--deep-oak);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-content h3 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.legal-content p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--soft-sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--soft-sage-hover);
}

.legal-content strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero { padding: 8rem 1.5rem 4rem; }
  .hero-split { padding-top: 4rem; padding-bottom: 3rem; }
  .hero-split-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; }
  .hero-image::before { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .demo-content { grid-template-columns: 1fr; }
  .demo-input-side { border-right: none; border-bottom: 1px solid rgba(155, 146, 132, 0.1); }
  .pain-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pain-right { order: -1; }
  .output-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-wide-body { grid-template-columns: 1fr; }
  .pricing-left { border-right: none; border-bottom: 1px solid rgba(155, 146, 132, 0.1); padding: 2rem; }
  .pricing-right { padding: 2rem; }
  .pricing-right .feature-list { grid-template-columns: 1fr; }
  .pricing-wide-top { flex-direction: column; gap: 0.35rem; text-align: center; padding: 0.75rem 1.5rem; }
  .nav-links .hide-mobile { display: none; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-right { flex-direction: column; gap: 1rem; }
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── Error Pages ── */
.error-page-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page-full .error-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--sage);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.error-page-full .error-code {
  font-size: 4rem;
  font-weight: 700;
  color: #D4CFC8;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-page-full .error-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.error-page-full .error-message {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 380px;
}

.error-page-full .error-link {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: var(--sage);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease;
}

.error-page-full .error-link:hover {
  background: #6B7C60;
}