/* ========================================================================
   FreightClause — Marketing Site Styles
   Brand: deep AU-coastal teal + warm amber (severity only)
   Fonts: Satoshi (display) + Inter (body)
   ======================================================================== */

:root {
  /* Brand */
  --teal-900: hsl(190 75% 18%);
  --teal-800: hsl(190 72% 25%);
  --teal-700: hsl(190 70% 30%);
  --teal-600: hsl(190 65% 35%);    /* PRIMARY */
  --teal-500: hsl(190 60% 42%);
  --teal-400: hsl(190 55% 55%);
  --teal-100: hsl(190 50% 92%);
  --teal-50:  hsl(190 50% 97%);

  --amber:     hsl(35 88% 55%);    /* severity-high/critical ONLY */
  --amber-bg:  hsl(35 90% 96%);
  --amber-fg:  hsl(28 70% 32%);

  --critical-bg: hsl(0 75% 96%);
  --critical-fg: hsl(0 65% 42%);

  /* Neutrals — cool slate */
  --ink-900: hsl(210 28% 11%);
  --ink-800: hsl(210 22% 18%);
  --ink-700: hsl(212 18% 28%);
  --ink-600: hsl(214 14% 40%);
  --ink-500: hsl(215 13% 52%);
  --ink-400: hsl(215 14% 65%);
  --ink-300: hsl(215 18% 80%);
  --ink-200: hsl(214 22% 90%);
  --ink-100: hsl(214 28% 95%);
  --ink-50:  hsl(210 30% 98%);
  --white: #ffffff;

  /* Spacing */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow:    0 4px 12px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.10), 0 4px 8px rgba(15, 23, 42, 0.05);

  /* Container */
  --container-max: 1200px;

  --border: 1px solid var(--ink-200);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ====== TYPE ====== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  padding: 6px 12px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--teal-600);
  border-radius: 999px;
  display: inline-block;
}
.eyebrow--on-dark {
  color: hsl(190 60% 80%);
  background: hsl(190 45% 18% / 0.6);
  border-color: hsl(190 40% 30%);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
h1 { font-size: clamp(34px, 5.2vw, 60px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; }
h3 { font-size: 19px; line-height: 1.3; }

p { margin: 0; }

.amber-text { color: var(--amber-fg); font-weight: 600; }

/* ====== NAV ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--ink-100);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.nav__name { color: var(--ink-900); }
.nav__logo { color: var(--teal-700); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  transition: color 0.18s;
}
.nav__links a:hover { color: var(--teal-700); }

.nav__cta { display: flex; align-items: center; gap: 10px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__inner { gap: 12px; }
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r);
  padding: 10px 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  line-height: 1.2;
}
.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08) inset, var(--shadow-sm);
}
.btn--primary:hover { background: var(--teal-700); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--secondary {
  background: var(--white);
  color: var(--ink-900);
  border-color: var(--ink-300);
}
.btn--secondary:hover { border-color: var(--ink-700); background: var(--ink-50); }
.btn--ghost {
  background: transparent;
  color: var(--ink-800);
}
.btn--ghost:hover { color: var(--teal-700); }
.btn--amber {
  background: var(--amber);
  color: hsl(28 60% 18%);
  font-weight: 700;
}
.btn--amber:hover { background: hsl(35 88% 50%); transform: translateY(-1px); }
.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: var(--r-md); }
.btn--block { display: flex; width: 100%; }

/* ====== HERO ====== */
.hero {
  position: relative;
  padding: 64px 0 32px;
  background:
    radial-gradient(800px 400px at 85% 0%, hsl(190 70% 92%) 0%, transparent 60%),
    radial-gradient(700px 360px at 0% 30%, hsl(195 60% 96%) 0%, transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.hero__copy { max-width: 580px; }
.hero__h1 { margin-bottom: 20px; }
.hero__sub {
  font-size: 18px;
  color: var(--ink-600);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-600);
  font-size: 13px;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__trust svg { color: var(--teal-600); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 24px; }
}

/* ====== HERO PREVIEW ====== */
.preview {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-200);
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.18), 0 8px 20px rgba(15,23,42,0.06);
  overflow: hidden;
  transform: rotate(-0.4deg);
}
.preview__chrome {
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-200);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.preview__dots { display: flex; gap: 6px; }
.preview__dots span {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--ink-200);
}
.preview__url {
  font-size: 11.5px;
  color: var(--ink-500);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: -0.01em;
}
.preview__body {
  display: grid;
  grid-template-columns: 165px 1fr 220px;
  min-height: 320px;
}
.preview__left {
  background: var(--ink-50);
  border-right: 1px solid var(--ink-200);
  padding: 14px 12px;
  font-size: 12px;
}
.preview__count {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  margin-bottom: 10px;
  font-weight: 600;
}
.clause {
  padding: 7px 10px;
  color: var(--ink-700);
  border-radius: 6px;
  margin-bottom: 2px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clause.active {
  background: var(--teal-100);
  color: var(--teal-800);
  font-weight: 600;
}
.dot-critical {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 999px;
  display: inline-block;
}
.preview__center {
  padding: 18px 20px;
  border-right: 1px solid var(--ink-200);
}
.preview__doc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-900);
  margin-bottom: 10px;
}
.preview__doc-line {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
  color: var(--ink-700);
  padding-left: 10px;
  border-left: 3px solid transparent;
}
.preview__doc-line.crit {
  border-left-color: var(--amber);
  background: var(--amber-bg);
  padding: 8px 10px;
  border-radius: 4px;
}
.preview__doc-line.muted { color: var(--ink-500); }
.redline-del {
  text-decoration: line-through;
  color: hsl(0 65% 45%);
  background: hsl(0 80% 96%);
  padding: 0 2px;
  border-radius: 2px;
}
.redline-ins {
  color: hsl(160 50% 30%);
  background: hsl(160 50% 94%);
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 500;
}
.preview__right {
  padding: 18px 16px;
  background: var(--ink-50);
}
.pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.pill--critical {
  background: var(--amber);
  color: hsl(28 60% 16%);
}
.preview__issue-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.preview__issue-body {
  font-size: 12.5px;
  color: var(--ink-600);
  line-height: 1.5;
  margin-bottom: 14px;
}
.preview__btn {
  background: var(--ink-900);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 700px) {
  .preview__body { grid-template-columns: 1fr; }
  .preview__left, .preview__right { display: none; }
}

/* ====== TRUST STRIP ====== */
.trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 20px 0;
  border-top: 1px solid var(--ink-100);
  font-size: 13px;
  color: var(--ink-500);
}
.trust-strip__label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  margin-right: 6px;
}
.trust-strip__item { color: var(--ink-700); font-weight: 500; }
.trust-strip__sep { color: var(--ink-300); }

/* ====== SECTION ====== */
.section { padding: 96px 0; }
.section__head { max-width: 680px; margin: 0 auto var(--space-12); text-align: center; }
.section__head--left { text-align: left; margin-left: 0; }
.section__title { margin-bottom: 12px; }
.section__lede { color: var(--ink-600); font-size: 17px; }

@media (max-width: 700px) {
  .section { padding: 64px 0; }
}

/* ====== FEATURES ====== */
.section--features { background: var(--ink-50); border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-400);
}
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature__title { margin-bottom: 10px; }
.feature__body { color: var(--ink-600); font-size: 15px; line-height: 1.6; }

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

/* ====== STEPS ====== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
}
.step__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.step__title { margin-bottom: 8px; }
.step__body { color: var(--ink-600); font-size: 14.5px; line-height: 1.55; }

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

/* ====== VERTICAL ====== */
.section--vertical { background: var(--ink-50); border-top: 1px solid var(--ink-100); }
.vertical {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.vertical__body {
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.65;
  margin: 18px 0 28px;
  max-width: 540px;
}
.vertical__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--ink-200);
  padding-top: 24px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: 12.5px;
  color: var(--ink-500);
  margin-top: 6px;
  line-height: 1.4;
}
.vertical__playbooks { display: grid; gap: 16px; }
.playbook-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.playbook-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.playbook-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
}
.playbook-card__count {
  font-size: 11px;
  color: var(--ink-500);
  font-weight: 500;
}
.playbook-card__rule {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink-700);
}
.rule-pill {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.rule-pill--critical { background: var(--critical-bg); color: var(--critical-fg); }
.rule-pill--high { background: var(--amber-bg); color: var(--amber-fg); }
.rule-pill--medium { background: hsl(45 80% 95%); color: hsl(38 60% 30%); }

@media (max-width: 900px) {
  .vertical { grid-template-columns: 1fr; gap: 40px; }
}

/* ====== DEMO CTA ====== */
.section--demo { padding: 64px 0; }
.demo {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  color: var(--white);
  padding: 48px 56px;
  border-radius: var(--r-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.demo__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  margin-bottom: 8px;
}
.demo__body {
  color: hsl(190 50% 88%);
  font-size: 16px;
  max-width: 520px;
}
.demo .btn--primary {
  background: var(--white);
  color: var(--teal-800);
}
.demo .btn--primary:hover { background: hsl(190 60% 95%); }

/* ====== PRICING ====== */
#pricing { scroll-margin-top: 96px; }

/* Toggle - defensively styled so it renders as a centred pill group even if
   inheritance interferes. Sits above the cards with its own stacking context. */
.pricing-toggle-wrap {
  position: relative;
  z-index: 5;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  margin: 0 auto var(--space-10);
  width: 100%;
}
.pricing-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px !important;
  background: var(--white);
  border: 1px solid var(--ink-200);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 0 0 4px rgba(15, 23, 42, 0.02);
}
.pricing-toggle__btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px !important;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-600);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.pricing-toggle__btn:hover { color: var(--ink-900); }
.pricing-toggle__btn.is-active {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 4px 10px -2px hsl(190 65% 35% / 0.35);
}
.pricing-toggle__btn.is-active:hover { color: var(--white); }
.pricing-toggle__save {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--teal-50);
  color: var(--teal-700);
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease;
}
.pricing-toggle__btn.is-active .pricing-toggle__save {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.plan__sub {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 4px;
  min-height: 18px;
}
.pricing--enterprise { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-4);
  gap: 20px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 32px 26px;
  transition: border-color 0.18s, transform 0.18s;
}
.plan:hover { border-color: var(--teal-400); }
.plan--popular {
  border: 2px solid var(--teal-600);
  box-shadow: 0 14px 32px -10px hsl(190 65% 35% / 0.25);
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-600);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.plan__currency {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-500);
  align-self: flex-start;
  margin-top: 8px;
  letter-spacing: 0;
}
.plan__amt {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan__amt--text { font-size: 30px; letter-spacing: -0.01em; }

/* Enterprise banner - full-width horizontal card matching the 3-card grid above */
.plan-enterprise {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  margin-top: var(--space-6);
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  transition: border-color 0.18s;
}
.plan-enterprise:hover { border-color: var(--teal-400); }
.plan-enterprise__copy {
  flex: 1 1 auto;
  min-width: 0;
}
.plan-enterprise__copy .plan__name {
  margin-bottom: 6px;
}
.plan-enterprise__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1.1;
  margin-bottom: 8px;
}
.plan-enterprise__desc {
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}
.plan-enterprise__cta {
  flex: 0 0 auto;
}
.plan-enterprise__cta .btn {
  white-space: nowrap;
  min-width: 180px;
}
@media (max-width: 720px) {
  .plan-enterprise {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .plan-enterprise__cta { width: 100%; }
  .plan-enterprise__cta .btn { width: 100%; }
}
.plan__per {
  font-size: 13.5px;
  color: var(--ink-500);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 2px;
}
.plan__desc {
  font-size: 13.5px;
  color: var(--ink-500);
  margin-bottom: 24px;
  min-height: 38px;
}
.plan__feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.plan__feats li {
  font-size: 14px;
  color: var(--ink-700);
  padding: 7px 0 7px 24px;
  position: relative;
}
.plan__feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 14px;
  background: var(--teal-50);
  border-radius: 999px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8l3 3 7-7' stroke='%23187a91' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.plan-cta { margin-top: auto; }

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

/* ====== UCT SWEEP ====== */
.section--sweep { padding: 96px 0; }
.sweep__inner {
  background:
    radial-gradient(600px 400px at 90% 10%, hsl(35 80% 30% / 0.35) 0%, transparent 60%),
    linear-gradient(135deg, var(--ink-900), hsl(210 28% 9%));
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  color: var(--white);
}
.sweep__title {
  color: var(--white);
  margin-bottom: 16px;
}
.sweep__body {
  color: hsl(214 18% 75%);
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.sweep__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.sweep__list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14.5px;
  color: hsl(214 16% 85%);
}
.sweep__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8l3 3 7-7' stroke='%23f5a525' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.sweep__price-card {
  background: hsl(210 24% 14% / 0.7);
  border: 1px solid hsl(210 18% 22%);
  border-radius: var(--r-md);
  padding: 32px;
  text-align: center;
}
.sweep__price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(35 60% 70%);
  font-weight: 700;
  margin-bottom: 12px;
}
.sweep__price {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.sweep__price span {
  font-size: 24px;
  vertical-align: super;
  font-weight: 600;
  color: hsl(214 18% 65%);
  margin-right: 4px;
}
.sweep__price-note { font-size: 12.5px; color: hsl(214 16% 60%); }
.sweep__divider {
  border-top: 1px solid hsl(210 18% 22%);
  margin: 24px 0;
}
.sweep__includes-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(214 18% 60%);
  font-weight: 600;
  margin-bottom: 8px;
}
.sweep__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.sweep__includes li {
  padding: 5px 0 5px 20px;
  font-size: 13.5px;
  color: hsl(214 16% 82%);
  position: relative;
}
.sweep__includes li::before {
  content: '·';
  color: var(--amber);
  position: absolute;
  left: 6px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .sweep__inner { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .sweep__price { font-size: 44px; }
}

/* ====== QUOTES ====== */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.quote {
  background: var(--ink-50);
  border-left: 3px solid var(--teal-600);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 32px;
  margin: 0;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-800);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 18px;
}
.quote figcaption {
  font-size: 13.5px;
  color: var(--ink-500);
  font-weight: 500;
}

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

/* ====== FAQ ====== */
.section--faq { background: var(--ink-50); border-top: 1px solid var(--ink-100); }
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  flex-shrink: 0;
  color: var(--ink-500);
  transition: transform 0.2s;
}
.faq__item[open] .faq__chev { transform: rotate(180deg); color: var(--teal-700); }
.faq__body {
  padding: 0 22px 22px;
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .faq { grid-template-columns: 1fr; gap: 32px; }
}

/* ====== WAITLIST ====== */
.section--waitlist { padding: 96px 0; }
.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.waitlist__title { margin-bottom: 14px; }
.waitlist__body {
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}
.waitlist__form {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 600;
}
.field input,
.field select {
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--ink-300);
  border-radius: var(--r);
  color: var(--ink-900);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px hsl(190 65% 35% / 0.15);
}
.waitlist__legal {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 4px;
  line-height: 1.5;
}
.waitlist__success {
  background: var(--white);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
}
.waitlist__success-icon {
  width: 56px; height: 56px;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.waitlist__success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.waitlist__success p { color: var(--ink-600); font-size: 15px; }

@media (max-width: 880px) {
  .waitlist { grid-template-columns: 1fr; gap: 32px; }
}

/* ====== FOOTER ====== */
.footer {
  padding: 40px 0;
  background: var(--ink-900);
  color: hsl(214 16% 72%);
  font-size: 13.5px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer__brand svg { color: hsl(190 55% 60%); }
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a:hover { color: var(--white); }
.footer__legal { color: hsl(214 14% 55%); }

@media (max-width: 700px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   DRAFTING SECTION (between features & how-it-works)
   ============================================= */
.section--draft {
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-50) 100%);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.draft {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .draft { grid-template-columns: 1fr; gap: 32px; }
}
.draft__body {
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.draft__body strong { color: var(--teal-700); }
.draft__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.draft__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.5;
}
.draft__bullets li svg {
  color: var(--teal-600);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Brief preview card */
.draft__preview { position: relative; }
.brief {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 24px 60px -32px hsla(210, 28%, 11%, 0.18),
              0 6px 16px -8px hsla(210, 28%, 11%, 0.08);
}
.brief__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.brief__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-500);
}
.brief__template {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 3px 8px;
  border-radius: 999px;
}
.brief__body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-700);
}
.brief__body p { margin: 0 0 10px; }
.brief__body p:last-child { margin-bottom: 0; }
.brief__hl {
  background: hsl(35 90% 92%);
  color: hsl(28 70% 28%);
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 3px;
}
.brief__progress {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-200);
  display: grid;
  gap: 8px;
}
.brief__progress-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--ink-600);
}
.brief__progress-row.done { color: var(--ink-800); }
.brief__progress-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-600);
  flex-shrink: 0;
}
.brief__output {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}
.brief__output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-800);
}
.brief__badge {
  background: hsl(155 70% 95%);
  color: hsl(155 70% 28%);
  border: 1px solid hsl(155 60% 80%);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Template strip */
.templates-strip {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-200);
}
.templates-strip__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 16px;
}
.templates-strip__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .templates-strip__items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .templates-strip__items { grid-template-columns: 1fr; }
}
.tpl {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 14px 16px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.tpl:hover {
  border-color: var(--teal-400);
  box-shadow: 0 6px 18px -10px hsla(190, 60%, 30%, 0.18);
  transform: translateY(-1px);
}
.tpl > svg { color: var(--teal-600); margin-top: 1px; flex-shrink: 0; }
.tpl__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-900);
  margin-bottom: 2px;
}
.tpl__meta {
  font-size: 11.5px;
  color: var(--ink-500);
  line-height: 1.4;
}

/* =============================================
   HOW IT WORKS — parallel flows
   ============================================= */
.flows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .flows { grid-template-columns: 1fr; gap: 28px; }
}
.flow {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
}
.flow__head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-100);
}
.flow__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 4px;
}
.flow__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.015em;
  margin: 0;
}
.steps--compact {
  grid-template-columns: 1fr !important;
  gap: 14px;
}
.steps--compact .step {
  padding: 14px 0;
  border-top: 1px solid var(--ink-100);
}
.steps--compact .step:first-child { border-top: 0; padding-top: 0; }
.steps--compact .step__num {
  font-size: 12px;
  background: var(--teal-50);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
  width: auto;
  height: auto;
}
.steps--compact .step__title { font-size: 15px; margin-bottom: 4px; }
.steps--compact .step__body { font-size: 13.5px; }

/* ============================================================
   POLISH PASS — sticky nav blur, hero 3-frame anim, trust strip
   SVG wordmarks, screenshot gallery, footer redesign
   ============================================================ */

/* --- Sticky nav: backdrop-blur on scroll --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow 200ms ease, background 200ms ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 var(--ink-100), 0 4px 16px -8px rgba(0, 0, 0, 0.06);
}
.nav__links a {
  position: relative;
  transition: color 160ms ease;
}
.nav__links a.is-active {
  color: var(--teal-700);
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--teal-600);
  border-radius: 1px;
}

/* ============================================================
   HERO 3-FRAME ANIMATION (Draft → Review → Export)
   ============================================================ */
.hero-anim {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  background: var(--white);
  box-shadow:
    0 1px 0 var(--ink-100),
    0 2px 4px rgba(0,0,0,.04),
    0 24px 60px -20px rgba(14, 124, 140, 0.18),
    0 50px 100px -40px rgba(0,0,0,.18);
  overflow: hidden;
  border: 1px solid var(--ink-100);
}
.hero-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 480ms cubic-bezier(.4,0,.2,1), transform 600ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.hero-frame.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Frame 1: Draft */
.draft-body {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.draft-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-700);
}
.draft-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.draft-brief {
  padding: 14px 16px;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-800);
  min-height: 70px;
  background: var(--ink-50);
}
.hero-frame--draft.is-active .typed {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  animation: type 1.8s steps(40, end) 0.4s forwards;
  white-space: normal;
}
@keyframes type { to { max-width: 100%; } }
.caret {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  background: var(--teal-600);
  margin-left: 2px;
  vertical-align: -2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.draft-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  font-size: 11.5px;
  font-weight: 500;
}
.chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-600);
}
.draft-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--teal-600);
  color: white;
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}
.draft-gen {
  margin-top: auto;
  opacity: 0;
}
.hero-frame--draft.is-active .draft-gen {
  animation: fadeUp 0.4s ease 2.2s forwards;
}
.draft-gen__bar {
  height: 4px;
  background: var(--ink-100);
  border-radius: 2px;
  overflow: hidden;
}
.draft-gen__fill {
  height: 100%;
  width: 0;
  background: var(--teal-600);
  border-radius: 2px;
}
.hero-frame--draft.is-active .draft-gen__fill {
  animation: fillBar 0.7s ease 2.3s forwards;
}
@keyframes fillBar { to { width: 100%; } }
.draft-gen__step {
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 8px;
  font-feature-settings: "tnum";
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Frame 3: Export */
.export-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, var(--ink-50), #fff);
  position: relative;
}
.export-doc {
  width: min(360px, 75%);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0 12px 32px -12px rgba(0,0,0,.18), 0 1px 0 var(--ink-100);
  font-size: 12.5px;
  transform: translateY(6px) scale(0.98);
  opacity: 0;
}
.hero-frame--export.is-active .export-doc {
  animation: docDrop 0.5s cubic-bezier(.4,0,.2,1) 0.1s forwards;
}
@keyframes docDrop { to { transform: translateY(0) scale(1); opacity: 1; } }
.export-doc__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.export-doc__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.export-doc__sub {
  font-size: 11px;
  color: var(--ink-500);
}
.export-doc__rule {
  height: 2px;
  background: var(--teal-600);
  margin: 10px 0 14px;
  border-radius: 1px;
}
.export-doc__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 12px;
}
.export-doc__row.last { border-bottom: 0; }
.export-doc__row b { font-weight: 700; font-variant-numeric: tabular-nums; }
.export-doc__row b.crit { color: hsl(0 70% 45%); }
.export-doc__row b.hi   { color: hsl(28 75% 42%); }
.export-doc__row b.med  { color: hsl(38 80% 38%); }
.export-doc__row b.low  { color: var(--ink-700); }
.export-doc__foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--ink-100);
  font-size: 10px;
  color: var(--ink-500);
  text-align: center;
}
.export-pill {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--ink-900);
  color: white;
  font-size: 11.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.3);
  opacity: 0;
}
.hero-frame--export.is-active .export-pill {
  animation: fadeUp 0.4s ease 0.7s forwards;
}

/* Step dots */
.hero-anim__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.hero-anim__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-300);
  transition: background 200ms ease, width 200ms ease;
}
.hero-anim__dot.is-active {
  background: var(--teal-600);
  width: 18px;
  border-radius: 3px;
}

/* ============================================================
   TRUST STRIP — SVG wordmarks
   ============================================================ */
.trust-strip {
  margin-top: 64px;
  text-align: center;
  border-top: 1px solid var(--ink-100);
  padding-top: 32px;
}
.trust-strip__label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  margin-bottom: 20px;
  font-weight: 500;
}
.trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 44px;
  opacity: 0.55;
}
.wordmark {
  height: 22px;
  width: auto;
  color: var(--ink-600);
  filter: saturate(0);
  transition: opacity 200ms ease, color 200ms ease;
}
.wordmark:hover { color: var(--ink-800); }

/* ============================================================
   SCREENSHOT GALLERY
   ============================================================ */
.section--gallery {
  background: linear-gradient(180deg, var(--ink-50), var(--white) 70%);
}
.section__head--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.gallery {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.gallery__tabs {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.gallery__tab {
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-600);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.gallery__tab:hover { color: var(--ink-900); }
.gallery__tab.is-active {
  background: var(--teal-600);
  color: white;
}
.gallery__panes {
  width: 100%;
  position: relative;
}
.gallery__pane {
  display: none;
  animation: fadeUp 0.45s cubic-bezier(.4,0,.2,1);
}
.gallery__pane.is-active {
  display: block;
}
.browser {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  box-shadow:
    0 1px 0 var(--ink-100),
    0 24px 60px -20px rgba(14, 124, 140, 0.18),
    0 60px 120px -40px rgba(0,0,0,.18);
}
.browser__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-100);
}
.browser__chrome > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-300);
}
.browser__chrome > span:nth-child(1) { background: hsl(0 65% 65%); }
.browser__chrome > span:nth-child(2) { background: hsl(40 75% 60%); }
.browser__chrome > span:nth-child(3) { background: hsl(140 50% 55%); }
.browser__url {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-500);
  font-family: var(--font-sans);
}
.browser img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery__caption {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-600);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.gallery__caption b {
  color: var(--ink-900);
  font-weight: 600;
}

/* ============================================================
   FOOTER REDESIGN
   ============================================================ */
.footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 64px 0 32px;
  margin-top: 64px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid hsl(210 28% 22%);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: var(--ink-300);
  text-decoration: none;
  font-size: 13px;
  transition: color 160ms ease;
}
.footer__col a:hover { color: var(--white); }
.footer__heading {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-400);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer__tag {
  font-size: 13px;
  color: var(--ink-400);
  line-height: 1.6;
  margin: 4px 0 0;
  max-width: 280px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__legal {
  font-size: 12px;
  color: var(--ink-500);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
}
.footer__sep { color: var(--ink-600); }
.footer__social {
  display: flex;
  gap: 6px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: hsl(210 28% 18%);
  color: var(--ink-400);
  transition: background 180ms ease, color 180ms ease;
}
.footer__social-link:hover {
  background: var(--teal-700);
  color: white;
}

@media (max-width: 880px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
}

/* ============================================================
   PRICING: lift "Most popular" card
   ============================================================ */
.plan--popular {
  position: relative;
  border: 2px solid var(--teal-600) !important;
  box-shadow: 0 24px 60px -16px rgba(14, 124, 140, 0.25), 0 1px 0 var(--ink-100) !important;
  transform: translateY(-6px);
  background: linear-gradient(180deg, var(--white), var(--teal-50) 200%) !important;
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-600);
  color: white;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px -4px rgba(14, 124, 140, 0.4);
}

@media (max-width: 880px) {
  .plan--popular { transform: none; }
}

/* ============================================================
   RESOURCES MAJORS SECTION
   ============================================================ */
.section--resources {
  background: var(--ink-50);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}

.resources-kit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto 56px;
  max-width: 880px;
}
.kit-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 1100px) {
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .resources-grid { grid-template-columns: 1fr; }
}
.resources-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 22px 20px;
}
.resources-card__eyebrow {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 700;
  margin-bottom: 8px;
}
.resources-card__title {
  font-family: var(--font-display, inherit);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--ink-900);
}
.resources-card__feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.resources-card__feats li {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-700);
  padding-left: 14px;
  position: relative;
}
.resources-card__feats li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-600);
  position: absolute;
  left: 0;
  top: 8px;
}

.resources-stance {
  max-width: 1080px;
  margin: 0 auto;
}
.stance-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .stance-pair { grid-template-columns: 1fr; }
}
.stance-pair__col {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 22px 22px;
  border-left-width: 4px;
}
.stance-pair__col--contractor { border-left-color: #475569; }
.stance-pair__col--principal { border-left-color: #1F2937; }
.stance-pair__eyebrow {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 6px;
}
.stance-pair__col--contractor .stance-pair__eyebrow { color: #475569; }
.stance-pair__col--principal .stance-pair__eyebrow { color: #1F2937; }
.stance-pair__title {
  font-family: var(--font-display, inherit);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.stance-pair__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stance-pair__list li {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-700);
  padding-left: 14px;
  position: relative;
}
.stance-pair__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 0;
  top: 8px;
  opacity: 0.5;
}
.resources-uct-note {
  background: var(--white);
  border: 1px dashed var(--teal-600);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-700);
}
.resources-uct-note strong { color: var(--teal-700); }

.tpl--resources {
  border-color: rgba(14, 124, 140, 0.25);
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-50) 220%);
}
