:root {
  color-scheme: light;
  --ink: #11222e;
  --ink-soft: #42515d;
  --sand: #f8f1e7;
  --sand-strong: #edd9ba;
  --paper: rgba(255, 250, 244, 0.88);
  --paper-strong: #fffaf3;
  --line: rgba(17, 34, 46, 0.12);
  --navy: #102b3b;
  --navy-deep: #091c27;
  --teal: #0d7e78;
  --orange: #ef6c2f;
  --orange-deep: #c74f16;
  --success: #237352;
  --danger: #b53b24;
  --shadow-lg: 0 32px 90px rgba(9, 28, 39, 0.12);
  --shadow-md: 0 18px 46px rgba(9, 28, 39, 0.1);
  font-family: 'Avenir Next', 'Gill Sans', 'Trebuchet MS', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(239, 108, 47, 0.18), transparent 26%),
    radial-gradient(circle at 100% 8%, rgba(13, 126, 120, 0.18), transparent 24%),
    linear-gradient(180deg, #fff8f1 0%, #f4ede3 48%, #fcf8f2 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 248, 241, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand strong,
.hero h1,
.section-heading h2,
.page-hero h1,
.cta-band h2 {
  font-family: 'Avenir Next Condensed', 'Franklin Gothic Medium', 'Arial Narrow', sans-serif;
  letter-spacing: 0.03em;
}

.brand strong {
  font-size: 1.55rem;
}

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

.nav-toggle {
  display: none;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.nav a {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: 160ms ease;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(13, 126, 120, 0.12);
  color: var(--navy);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--orange), #ff9462);
  color: #fff9f3;
  box-shadow: 0 12px 32px rgba(239, 108, 47, 0.24);
}

.button:hover {
  background: linear-gradient(135deg, var(--orange-deep), var(--orange));
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(13, 126, 120, 0.08);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8f1e7;
  background: rgba(255, 255, 255, 0.06);
}

.eyebrow,
.badge,
.step-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.eyebrow,
.badge {
  padding: 0.38rem 0.75rem;
  background: rgba(239, 108, 47, 0.12);
  color: var(--orange-deep);
  font-size: 0.78rem;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.split-grid,
.step-grid,
.feature-grid,
.audience-grid,
.pricing-grid,
.footer-audience-grid,
.footer-links-grid,
.faq-grid,
.form-grid,
.mini-grid,
.proof-strip {
  display: grid;
  gap: 1.15rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.hero p,
.page-hero p,
.section-heading p,
.card p,
.audience-card p,
.audience-card span,
.pricing-card p:not(.price),
.quote-card p,
.faq-item p,
.footer-brand p {
  color: var(--ink-soft);
}

.hero p,
.page-hero p {
  max-width: 64ch;
  font-size: 1.08rem;
}

.hero-actions,
.button-row,
.pill-row,
.footer-mini-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-visual,
.hero-panel,
.card,
.quote-card,
.pricing-card,
.faq-item,
.form-shell,
.footer-audience-card,
.proof-card,
.cta-band,
.comparison-wrap {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 108, 47, 0.22), transparent 34%),
    linear-gradient(150deg, rgba(16, 43, 59, 0.98), rgba(13, 126, 120, 0.9));
  color: #fff8f1;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: auto -10% -28% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(4px);
}

.hero-stack,
.mini-list,
.pricing-list,
.faq-list,
.bullet-list,
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
}

.hero-stack {
  position: relative;
  z-index: 1;
}

.hero-signal {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-signal strong,
.proof-card strong,
.stat-card strong,
.pricing-card h3,
.audience-card h3,
.card h3,
.quote-card h3,
.faq-item h3,
.footer-audience-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-signal p,
.dark-card p,
.cta-band p {
  margin-bottom: 0;
  color: rgba(248, 241, 231, 0.8);
}

.hero-highlight {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 2.7rem 0;
}

.section-heading {
  max-width: 70ch;
  margin-bottom: 1.35rem;
}

.section-heading--spaced {
  margin-top: 1.5rem;
}

.section-heading h2 {
  margin: 0.5rem 0 0.6rem;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.card,
.quote-card,
.pricing-card,
.faq-item,
.form-shell,
.comparison-wrap {
  padding: 1.45rem;
  background: var(--paper);
}

.proof-card {
  background: rgba(255, 255, 255, 0.72);
}

.proof-card span,
.stat-card span {
  color: var(--ink-soft);
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.dark-card {
  background:
    radial-gradient(circle at top left, rgba(239, 108, 47, 0.16), transparent 28%),
    linear-gradient(150deg, rgba(16, 43, 59, 0.98), rgba(9, 28, 39, 0.96));
  color: #fff8f1;
}

.dark-card h3,
.dark-card p,
.dark-card li {
  color: inherit;
}

.mini-grid,
.feature-grid,
.audience-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.audience-card,
.pricing-card,
.faq-item,
.footer-audience-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.audience-card:hover,
.pricing-card:hover,
.footer-audience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mini-list,
.pricing-list,
.faq-list,
.benefit-list {
  padding-left: 1.1rem;
}

.bullet-list {
  padding-left: 1.2rem;
}

.mini-list li,
.pricing-list li,
.faq-list li,
.benefit-list li,
.bullet-list li {
  color: var(--ink-soft);
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  position: relative;
  padding: 1.45rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.step-number {
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  background: rgba(13, 126, 120, 0.12);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
}

.step-card h3,
.card h3,
.audience-card h3,
.pricing-card h3,
.faq-item h3,
.quote-card h3 {
  margin: 0.9rem 0 0.55rem;
}

.quote-card {
  background:
    radial-gradient(circle at top right, rgba(13, 126, 120, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.74);
}

.page-hero {
  padding: 3.7rem 0 2.2rem;
}

.page-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.15rem;
  align-items: start;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.stat-card strong {
  font-size: 1.75rem;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.45rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.audience-card p {
  flex: 1;
  margin: 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background:
    radial-gradient(circle at top left, rgba(239, 108, 47, 0.14), transparent 28%),
    rgba(255, 250, 244, 0.96);
  border-color: rgba(239, 108, 47, 0.28);
}

.price {
  margin: 0.65rem 0 1rem;
  font-family: 'Avenir Next Condensed', 'Franklin Gothic Medium', 'Arial Narrow', sans-serif;
  font-size: 2.75rem;
}

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

.comparison-wrap {
  overflow-x: auto;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.comparison th,
.comparison td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(17, 34, 46, 0.08);
}

.comparison th {
  background: rgba(16, 43, 59, 0.96);
  color: #fff8f1;
}

.form-shell {
  background:
    radial-gradient(circle at top left, rgba(239, 108, 47, 0.08), transparent 28%),
    rgba(255, 250, 244, 0.96);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1 / -1;
}

.input,
.select,
.textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(17, 34, 46, 0.14);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.92rem 1rem;
  color: var(--ink);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.form-feedback {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.form-feedback.is-success {
  color: var(--success);
}

.form-feedback.is-error {
  color: var(--danger);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-band {
  padding: 1.65rem;
  background:
    radial-gradient(circle at top left, rgba(239, 108, 47, 0.18), transparent 24%),
    linear-gradient(150deg, rgba(16, 43, 59, 0.98), rgba(13, 126, 120, 0.92));
  color: #fff8f1;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-band p {
  margin-top: 0;
  max-width: 58ch;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(239, 108, 47, 0.18), transparent 24%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #f8f1e7;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.2rem;
  align-items: start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.footer-brand p,
.footer-note {
  color: rgba(248, 241, 231, 0.78);
}

.footer-links-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-group strong {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-group a {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(248, 241, 231, 0.86);
}

.footer-audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.footer-audience-card {
  display: block;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.footer-audience-card span {
  color: rgba(248, 241, 231, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.6rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-panel,
  .split-grid,
  .footer-top,
  .proof-strip,
  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .footer-audience-grid,
  .step-grid,
  .stat-grid,
  .faq-grid,
  .footer-links-grid,
  .form-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    padding-bottom: 1rem;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .header-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.6rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-heading h2,
  .cta-band h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .container {
    width: min(1180px, calc(100% - 1.2rem));
  }

  .card,
  .quote-card,
  .pricing-card,
  .faq-item,
  .form-shell,
  .proof-card,
  .step-card,
  .hero-visual,
  .cta-band {
    border-radius: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
