:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);

  --surface-0: #f4eee8;
  --surface-1: rgba(255, 250, 245, 0.82);
  --surface-2: #fffaf5;
  --surface-3: #ffffff;
  --surface-4: #f0e5db;
  --surface-dark: #1f1619;
  --surface-darker: #120d0e;

  --ink-1: #1e1518;
  --ink-2: #5c4a4f;
  --ink-3: #8e7b81;
  --ink-inverse: #fff9f4;

  --line: rgba(30, 21, 24, 0.12);
  --line-strong: rgba(30, 21, 24, 0.18);
  --line-inverse: rgba(255, 249, 244, 0.16);

  --brand: #8b1538;
  --brand-strong: #6f0f2c;
  --brand-soft: rgba(139, 21, 56, 0.1);
  --brand-glow: rgba(139, 21, 56, 0.18);
  --accent: #d66a4a;
  --accent-soft: rgba(214, 106, 74, 0.14);
  --success: #16825d;

  --shadow-soft: 0 10px 30px rgba(51, 31, 32, 0.06);
  --shadow-card: 0 24px 60px rgba(43, 22, 25, 0.08);
  --shadow-hero: 0 40px 100px rgba(56, 31, 34, 0.12);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink-1);
  background:
    radial-gradient(circle at top left, rgba(214, 106, 74, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(139, 21, 56, 0.1), transparent 30%),
    linear-gradient(180deg, #fff9f4 0%, var(--surface-0) 48%, #f8f1ea 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 21, 24, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 21, 24, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0 0;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 250, 245, 0.4);
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 12px 30px rgba(42, 25, 28, 0.04);
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 250, 245, 0.92);
  border-color: rgba(30, 21, 24, 0.08);
  box-shadow: 0 18px 40px rgba(42, 25, 28, 0.08);
  transform: translateY(4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.12), rgba(214, 106, 74, 0.18));
  border: 1px solid rgba(139, 21, 56, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.brand-mark img {
  width: 34px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-copy span {
  font-size: 0.73rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-link,
.mobile-link,
.footer-column a,
.footer-top-link {
  position: relative;
  text-decoration: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink-1);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.header-actions,
.hero-actions-row,
.cta-actions,
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--ink-inverse);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 16px 30px rgba(139, 21, 56, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 40px rgba(139, 21, 56, 0.24);
}

.btn-secondary {
  color: var(--ink-1);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(30, 21, 24, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(139, 21, 56, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.btn-light {
  color: var(--brand);
  background: rgba(255, 249, 244, 0.96);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #ffffff;
}

.btn-large {
  min-height: 56px;
  padding: 0 24px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(30, 21, 24, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-1);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero-section {
  padding: 44px 0 34px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 21, 56, 0.12), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 36px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-chip,
.pricing-label,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-chip,
.pricing-label {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 21, 56, 0.12);
}

.section-chip--dark {
  color: rgba(255, 249, 244, 0.76);
  background: rgba(255, 249, 244, 0.08);
  border: 1px solid rgba(255, 249, 244, 0.12);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 0 0 6px rgba(139, 21, 56, 0.08);
  animation: pulse-dot 2.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.82);
    opacity: 0.6;
  }
}

.hero-title,
.section-heading h2,
.pricing-copy h2,
.cta-copy h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.hero-title {
  max-width: 10.5ch;
  font-size: clamp(3.3rem, 7vw, 6.25rem);
  line-height: 0.96;
}

.hero-title span {
  display: block;
  color: var(--brand);
}

.hero-text {
  max-width: 38rem;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.hero-actions-row {
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-proof,
.pricing-points,
.cta-meta {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof li,
.cta-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(30, 21, 24, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.control-deck {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(30, 21, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(250, 241, 233, 0.92) 100%);
  box-shadow: var(--shadow-hero);
  overflow: hidden;
}

.control-deck::before,
.control-deck::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.control-deck::before {
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 21, 56, 0.18), transparent 68%);
}

.control-deck::after {
  bottom: -140px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(214, 106, 74, 0.18), transparent 68%);
}

.deck-top,
.pricing-card-top,
.footer-brand-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.deck-top {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.deck-title {
  display: grid;
  gap: 4px;
}

.deck-kicker {
  color: var(--ink-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-title strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.deck-live,
.pipeline-status,
.pricing-badge {
  color: var(--success);
  background: rgba(22, 130, 93, 0.1);
  border: 1px solid rgba(22, 130, 93, 0.16);
}

.deck-live,
.pricing-badge {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.metric-card,
.pipeline-row,
.feature-card,
.pricing-card,
.footer-shell {
  backdrop-filter: blur(10px);
}

.metric-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(30, 21, 24, 0.08);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.metric-label {
  color: var(--ink-3);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.deck-story {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(30, 21, 24, 0.08);
}

.deck-copy p {
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 0.96rem;
}

.module-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-cluster span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(139, 21, 56, 0.08);
  border: 1px solid rgba(139, 21, 56, 0.12);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
}

.pipeline-track {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.pipeline-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(30, 21, 24, 0.08);
}

.pipeline-step,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  font-weight: 700;
}

.pipeline-step {
  width: 34px;
  height: 34px;
  color: var(--brand);
  background: rgba(139, 21, 56, 0.08);
  border: 1px solid rgba(139, 21, 56, 0.14);
  font-size: 0.8rem;
}

.pipeline-copy {
  display: grid;
  gap: 2px;
}

.pipeline-copy strong {
  font-size: 0.94rem;
}

.pipeline-copy small {
  color: var(--ink-3);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pipeline-status {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.pricing-copy h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.section-heading p,
.pricing-copy p,
.cta-copy p,
.footer-brand p {
  margin: 16px 0 0;
  color: var(--ink-2);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  grid-column: span 4;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 248px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 21, 24, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(139, 21, 56, 0.16);
  box-shadow: 0 24px 44px rgba(56, 31, 34, 0.12);
}

.feature-card--wide {
  grid-column: span 6;
}

.feature-card--accent {
  background:
    linear-gradient(180deg, rgba(139, 21, 56, 0.08) 0%, rgba(255, 255, 255, 0.78) 100%);
}

.feature-card--tint {
  background:
    linear-gradient(180deg, rgba(214, 106, 74, 0.08) 0%, rgba(255, 255, 255, 0.78) 100%);
}

.feature-badge {
  width: fit-content;
  color: var(--ink-3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-icon {
  width: 54px;
  height: 54px;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), rgba(214, 106, 74, 0.12));
  border: 1px solid rgba(139, 21, 56, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.pricing-section {
  padding-top: 86px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.pricing-copy {
  position: sticky;
  top: 120px;
}

.pricing-points {
  display: grid;
  gap: 12px;
}

.pricing-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(30, 21, 24, 0.08);
  color: var(--ink-2);
  font-weight: 600;
}

.pricing-points li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 0 0 5px rgba(139, 21, 56, 0.08);
}

.pricing-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(30, 21, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 240, 231, 0.96) 100%);
  box-shadow: var(--shadow-card);
}

.price-value {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.price-value span {
  font-size: 1.6rem;
  color: var(--ink-3);
}

.price-note {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 0.94rem;
}

.price-features {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(30, 21, 24, 0.08);
  font-size: 0.95rem;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(22, 130, 93, 0.1);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(214, 106, 74, 0.2), transparent 28%),
    linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-darker) 100%);
  border: 1px solid var(--line-inverse);
  box-shadow: 0 36px 80px rgba(18, 13, 14, 0.28);
  overflow: hidden;
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-copy h2,
.cta-copy p {
  color: var(--ink-inverse);
}

.cta-copy p {
  max-width: 40rem;
  color: rgba(255, 249, 244, 0.72);
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-meta span {
  color: rgba(255, 249, 244, 0.8);
  background: rgba(255, 249, 244, 0.06);
  border: 1px solid rgba(255, 249, 244, 0.1);
}

.site-footer {
  padding: 0 0 48px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 21, 24, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand-top {
  justify-content: flex-start;
}

.footer-brand-top img {
  width: 34px;
  height: auto;
}

.footer-brand-top span {
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a,
.footer-top-link {
  color: var(--ink-2);
  font-weight: 600;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-top-link:hover,
.footer-top-link:focus-visible {
  color: var(--brand);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 21, 24, 0.08);
  color: var(--ink-3);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .pricing-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 26px;
  }

  .pricing-copy {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 12px;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    max-width: 1180px;
    width: min(1180px, calc(100% - 32px));
    margin: 10px auto 0;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu-inner {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(30, 21, 24, 0.08);
    background: rgba(255, 250, 245, 0.96);
    box-shadow: 0 22px 50px rgba(42, 25, 28, 0.08);
  }

  .mobile-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink-1);
    font-weight: 700;
  }

  .mobile-actions {
    margin-top: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-actions .btn {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .feature-card,
  .feature-card--wide {
    grid-column: span 3;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(1180px, calc(100% - 24px));
  }

  .section {
    padding: 72px 0;
  }

  .hero-section {
    padding-top: 28px;
  }

  .control-deck,
  .pricing-card,
  .cta-panel,
  .footer-shell {
    padding: 22px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--wide {
    grid-column: auto;
    min-height: unset;
  }

  .pipeline-row {
    grid-template-columns: auto 1fr;
  }

  .pipeline-status {
    grid-column: 2;
    width: fit-content;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof li,
  .cta-meta span {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }
}

@media (max-width: 540px) {
  .header-shell {
    padding: 14px;
  }

  .brand-copy span {
    display: none;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }

  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions-row .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .section-heading h2,
  .pricing-copy h2,
  .cta-copy h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .price-value {
    font-size: 3.6rem;
  }

  .footer-shell {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
