:root {
  --bg-cream: #f6f4ef;
  --bg-cream-alt: #eee6de;
  --bg-warm: #edf0f3;
  --bg-card: #ffffff;
  --bg-dark: #161f28;

  --text-primary: #18222b;
  --text-secondary: #5f6b76;
  --text-tertiary: #8e9aa5;

  --line: #dce2e8;
  --line-soft: #e7edf2;

  --brand-300: #e2a2ad;
  --brand-400: #cd6274;
  --brand-500: #c1272d;
  --brand-600: #a61f2c;
  --brand-700: #7f1a25;
  --brand-500-rgb: 193, 39, 45;
  --accent-400: #f0bfaf;
  --accent-500: #df9580;
  --accent-600: #c6725b;
  --accent-rgb: 223, 149, 128;
  --ink: #1a2734;

  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 28px;

  --shadow-sm: 0 3px 12px rgba(33, 20, 10, 0.05);
  --shadow-md: 0 12px 35px rgba(33, 20, 10, 0.08);
  --shadow-lg: 0 20px 55px rgba(33, 20, 10, 0.14);

  --shell: min(1200px, calc(100% - 3rem));
  --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text-primary);
  background: var(--bg-cream);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 80;
  transition: width 0.1s linear;
  background: linear-gradient(90deg, var(--brand-500) 0%, var(--brand-400) 52%, var(--brand-300) 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 245, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.24rem;
  letter-spacing: 0;
  font-weight: 700;
}

.logo span {
  color: var(--brand-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  transition: all 0.22s ease;
}

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

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.3rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
  background: var(--brand-500);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(120deg, var(--brand-600), var(--brand-500));
  box-shadow: 0 10px 28px rgba(var(--brand-500-rgb), 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(28, 25, 23, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  width: min(92vw, 380px);
  height: 100%;
  margin-left: auto;
  background: var(--bg-cream);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  transform: translateX(102%);
  transition: transform 0.28s ease;
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0%);
}

.drawer-close {
  align-self: flex-end;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-primary);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  font-size: 1.05rem;
  cursor: pointer;
}

.drawer-link {
  text-decoration: none;
  color: var(--text-primary);
  padding: 0.74rem 0.55rem;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 600;
}

.drawer-cta {
  margin-top: 1rem;
  text-align: center;
}

.hero {
  position: relative;
  overflow: clip;
  isolation: isolate;
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 34px;
}

.hero.hero-compact {
  min-height: auto;
  padding-bottom: 84px;
}

.hero.hero-compact .dot-grid {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at var(--mx, 78%) var(--my, 18%), rgba(var(--brand-500-rgb), 0.19), transparent 26%);
  transition: background 0.18s ease;
}

.dot-grid {
  display: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.36;
  z-index: -2;
}

.blob-1 {
  width: 420px;
  height: 420px;
  top: -130px;
  right: -70px;
  background: radial-gradient(circle, rgba(var(--brand-500-rgb), 0.48) 0%, rgba(var(--brand-500-rgb), 0.07) 72%);
  animation: floatBlobA 14s ease-in-out infinite;
}

.blob-2 {
  width: 340px;
  height: 340px;
  left: -110px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(var(--brand-500-rgb), 0.31) 0%, rgba(var(--brand-500-rgb), 0.06) 70%);
  animation: floatBlobB 15.5s ease-in-out infinite;
}

@keyframes floatBlobA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-16px, 18px) scale(1.05);
  }
}

@keyframes floatBlobB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(22px, -16px) scale(1.09);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(var(--brand-500-rgb), 0.24);
  color: var(--brand-700);
  background: rgba(var(--brand-500-rgb), 0.07);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 0 1.2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-500);
  box-shadow: 0 0 0 rgba(var(--brand-500-rgb), 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--brand-500-rgb), 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(var(--brand-500-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--brand-500-rgb), 0);
  }
}

.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero-word {
  opacity: 0;
  transform: translateY(18px);
  display: inline-block;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-word.in {
  opacity: 1;
  transform: translateY(0);
}

.accent-word {
  color: var(--brand-600);
}

.hero-copy {
  margin-top: 1.1rem;
  margin-bottom: 0;
  color: var(--text-secondary);
  max-width: 62ch;
}

.hero-typing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  color: var(--text-secondary);
}

.hero-typing-label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.hero-typing-value {
  font-weight: 700;
  color: var(--brand-700);
}

.typing-caret {
  margin-left: 0.12rem;
  animation: blink 0.9s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 0.78rem 1.06rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand-600), var(--brand-500));
  box-shadow: 0 14px 26px rgba(var(--brand-500-rgb), 0.28);
}

.btn-secondary {
  color: var(--text-primary);
  background: #fff;
  border: 1px solid var(--line);
}

.btn:hover {
  transform: translateY(-2px);
}

.trust-strip {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-strip li {
  font-size: 0.78rem;
  color: var(--text-secondary);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.44rem 0.64rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.mock-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, #ffffff 0%, #faf7f2 100%);
  box-shadow: var(--shadow-md);
}

.browser-card {
  overflow: hidden;
}

.fake-topbar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
  background: #fcfaf8;
}

.fake-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c9c3bc;
}

.fake-topbar p {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 0.68rem;
  margin-left: 0.35rem;
  font-family: "IBM Plex Mono", monospace;
}

.fake-screen {
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.pipeline-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pipeline-title {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

.pipeline-metric {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pipeline-metric .count-up {
  font-size: 1.24rem;
  font-weight: 800;
  color: var(--brand-700);
  line-height: 1;
}

.pipeline-steps {
  display: grid;
  gap: 0.45rem;
}

.pipeline-step {
  margin: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8f5f1;
  padding: 0.5rem 0.62rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-secondary);
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.pipeline-step.is-done {
  border-color: rgba(var(--brand-500-rgb), 0.32);
  background: rgba(var(--brand-500-rgb), 0.1);
  color: var(--ink);
}

.pipeline-step.is-current,
.pipeline-step.active {
  border-color: rgba(var(--brand-500-rgb), 0.42);
  background: rgba(var(--brand-500-rgb), 0.16);
  color: var(--ink);
  transform: translateX(2px);
}

.pipeline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pipeline-proof span {
  border: 1px solid rgba(var(--brand-500-rgb), 0.24);
  border-radius: 999px;
  background: rgba(var(--brand-500-rgb), 0.08);
  color: var(--text-secondary);
  font-size: 0.72rem;
  padding: 0.26rem 0.55rem;
}

.line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--brand-500-rgb), 0.19), rgba(var(--brand-500-rgb), 0.04));
}

.l1 {
  width: 92%;
}

.l2 {
  width: 78%;
}

.l3 {
  width: 66%;
}

.l4 {
  width: 48%;
}

.chat-card {
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.bubble {
  margin: 0;
  border-radius: 14px;
  padding: 0.62rem 0.72rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.bubble-light {
  background: #f6f2ed;
  border: 1px solid var(--line);
}

.bubble-brand {
  background: rgba(var(--brand-500-rgb), 0.08);
  border: 1px solid rgba(var(--brand-500-rgb), 0.24);
}

.metric-card {
  padding: 1rem;
}

.metric-label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-tertiary);
}

.metric-value {
  margin: 0.2rem 0 0.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-700);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 44px;
}

.bars span {
  flex: 1;
  border-radius: 10px 10px 2px 2px;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-600));
}

.reveal-delay-1 {
  animation: floatY 5.5s ease-in-out infinite;
}

.reveal-delay-2 {
  animation: floatY 6.4s ease-in-out infinite reverse;
}

.reveal-delay-3 {
  animation: floatY 5.9s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.tools-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
  padding: 1rem 0;
}

.tools-band > p {
  margin: 0 0 0.75rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-shell {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.5);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  padding: 0.62rem 1.05rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 5.4rem 0;
}

.section-cta-inline {
  padding: 1.2rem 0 1.8rem;
}

.inline-cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background: linear-gradient(145deg, #ffffff 0%, #f9f1ee 100%);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1.1rem;
}

.inline-cta-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.inline-cta-card h3 {
  margin: 0.34rem 0 0.38rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.inline-cta-card p {
  margin: 0;
  color: var(--text-secondary);
}

.inline-cta-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-cream-alt) 0%, #e9e0d7 100%);
  color: var(--text-primary);
  border-top: 1px solid rgba(var(--brand-500-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--brand-500-rgb), 0.12);
}

.section-dark .section-kicker {
  color: #8e5e66;
}

.section-dark h2 {
  color: var(--text-primary);
}

#qualification.section-dark {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #f3eee8 100%);
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-kicker {
  margin: 0;
  font-size: 0.79rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.section h2 {
  margin: 0.2rem 0 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.2vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.offer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--brand-500-rgb), 0.32);
}

.offer-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.offer-card h4 {
  margin: 0.95rem 0 0.4rem;
  font-size: 0.95rem;
}

.offer-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-secondary);
}

.offer-card li {
  margin-bottom: 0.4rem;
}

.offer-card li a {
  color: var(--brand-700);
  text-underline-offset: 2px;
}

.highlight {
  border-color: rgba(var(--brand-500-rgb), 0.38);
  background: linear-gradient(150deg, rgba(var(--brand-500-rgb), 0.09), #fff 36%);
}

.chip {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-700);
  border: 1px solid rgba(var(--brand-500-rgb), 0.26);
  border-radius: 999px;
  background: rgba(var(--brand-500-rgb), 0.08);
  padding: 0.28rem 0.58rem;
}

.fine-print {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin: 0.7rem 0 0;
}

.timeline-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -0.45rem;
  height: 4px;
  border-radius: 999px;
  background: rgba(var(--brand-500-rgb), 0.16);
  overflow: hidden;
}

.timeline-line span {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-300));
  transition: width 0.28s ease;
}

.timeline-step {
  border: 1px solid rgba(var(--brand-500-rgb), 0.22);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.8rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.timeline-step b {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  color: var(--brand-600);
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.timeline-step span {
  font-size: 0.95rem;
  font-weight: 600;
}

.timeline-step:hover,
.timeline-step.is-active {
  transform: translateY(-2px);
  border-color: rgba(var(--brand-500-rgb), 0.56);
  background: rgba(var(--brand-500-rgb), 0.1);
}

.process-focus {
  margin-top: 1rem;
  border: 1px solid rgba(var(--brand-500-rgb), 0.24);
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  min-height: 164px;
}

.focus-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.process-focus h3 {
  margin: 0.28rem 0 0.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.process-focus p {
  margin: 0;
  color: var(--text-secondary);
}

.section-dark .offer-card {
  background: #fff;
  color: var(--text-primary);
  border-color: var(--line);
}

.section-dark .offer-card ul,
.section-dark .offer-card .fine-print {
  color: var(--text-secondary);
}

.section-dark .offer-card li a {
  color: var(--brand-700);
}

.audit-form {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.audit-form label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.82rem;
  color: #5e4b50;
  position: relative;
  transition: color 0.2s ease;
}

.audit-form label::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.audit-field-hint {
  margin: 0;
  color: #7f6d72;
  font-size: 0.74rem;
}

.audit-form label[hidden] {
  display: none !important;
}

.audit-form input,
.audit-form select {
  width: 100%;
  border: 1px solid rgba(var(--brand-500-rgb), 0.22);
  border-radius: 12px;
  background: #fff;
  color: var(--text-primary);
  padding: 0.7rem 0.75rem;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.audit-form textarea {
  width: 100%;
  border: 1px solid rgba(var(--brand-500-rgb), 0.22);
  border-radius: 12px;
  background: #fff;
  color: var(--text-primary);
  padding: 0.7rem 0.75rem;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  resize: vertical;
  min-height: 96px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.audit-form label.audit-checkbox-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  column-gap: 0.55rem;
  row-gap: 0;
  min-height: 47px;
  border: 1px solid rgba(var(--brand-500-rgb), 0.22);
  border-radius: 12px;
  background: #fff;
  padding: 0.68rem 0.72rem;
  align-self: end;
}

.audit-form label.audit-checkbox-row::after {
  display: none;
}

.audit-form label.audit-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  accent-color: var(--brand-600);
  align-self: center;
  justify-self: start;
}

.audit-form label.audit-checkbox-row input[type="checkbox"]:focus {
  outline: none;
  box-shadow: none;
}

.audit-form label.audit-checkbox-row span {
  display: block;
  min-width: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.3;
  align-self: center;
}

.audit-form label.is-filled input,
.audit-form label.is-filled select,
.audit-form label.is-filled textarea {
  border-color: rgba(var(--brand-500-rgb), 0.42);
  background: #fffdfa;
}

.audit-form label.is-valid::after {
  content: "✓";
  opacity: 1;
  transform: translateY(0);
  background: rgba(28, 135, 84, 0.14);
  color: #1c8754;
}

.audit-form label.is-valid input,
.audit-form label.is-valid select,
.audit-form label.is-valid textarea {
  border-color: rgba(28, 135, 84, 0.62);
  box-shadow: 0 0 0 2px rgba(28, 135, 84, 0.12);
}

.audit-form label.is-invalid::after {
  content: "!";
  opacity: 1;
  transform: translateY(0);
  background: rgba(var(--brand-500-rgb), 0.16);
  color: var(--brand-600);
}

.audit-form label.is-invalid input,
.audit-form label.is-invalid select,
.audit-form label.is-invalid textarea {
  border-color: rgba(var(--brand-500-rgb), 0.72);
  box-shadow: 0 0 0 2px rgba(var(--brand-500-rgb), 0.14);
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  outline: none;
  border-color: rgba(var(--brand-500-rgb), 0.72);
  box-shadow: 0 0 0 3px rgba(var(--brand-500-rgb), 0.12);
}

.audit-form input::placeholder {
  color: #8f7e84;
}

.audit-form textarea::placeholder {
  color: #8f7e84;
}

.audit-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.audit-full-row {
  grid-column: 1 / -1;
}

.audit-result {
  margin-top: 1rem;
  border: 1px solid rgba(var(--brand-500-rgb), 0.36);
  border-radius: var(--radius-xl);
  background: rgba(var(--brand-500-rgb), 0.08);
  padding: 0.95rem;
  scroll-margin-top: 96px;
}

#audit-next-result {
  scroll-margin-top: 96px;
}

.audit-result h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.audit-result p {
  margin: 0;
  color: var(--text-secondary);
}

.audit-next {
  margin-top: 1rem;
  border: 1px solid rgba(var(--brand-500-rgb), 0.24);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem;
  scroll-margin-top: 96px;
}

.audit-next-status {
  margin: 0 0 0.75rem;
  border: 1px solid rgba(var(--brand-500-rgb), 0.28);
  border-radius: 12px;
  background: rgba(var(--brand-500-rgb), 0.07);
  padding: 0.7rem 0.75rem;
}

.audit-next-status p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.audit-next-status strong {
  color: var(--text-primary);
}

.audit-next-status-actions {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.audit-next-status-actions .btn {
  padding: 0.56rem 0.82rem;
  font-size: 0.86rem;
}

.audit-next h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
}

.audit-next > p {
  margin: 0.3rem 0 0.75rem;
  color: var(--text-secondary);
}

.audit-prefill {
  margin-bottom: 0.75rem;
  border: 1px solid rgba(var(--brand-500-rgb), 0.2);
  border-radius: 14px;
  background: #fff;
  padding: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.9rem;
}

.audit-prefill p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.audit-prefill b {
  color: var(--text-primary);
}

.faq-grid {
  display: grid;
  gap: 0.7rem;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.7rem 0.85rem;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin: 0.5rem 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-grid p a {
  color: var(--brand-700);
  text-underline-offset: 2px;
}

.site-footer {
  margin-top: 4rem;
  color: #e9dfe1;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 18%, rgba(var(--brand-500-rgb), 0.3), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.22), transparent 36%),
    linear-gradient(180deg, #2a1b20 0%, #1f1519 52%, #171014 100%);
}

.site-footer::before {
  content: none;
}

.footer-cta-band {
  position: relative;
  padding: 3.8rem 0 3.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 0.9rem;
}

.footer-cta-chip {
  margin: 0;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 245, 246, 0.96);
  color: var(--brand-700) !important;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0.38rem 0.9rem;
  text-shadow: none;
  box-shadow: none;
}

.footer-cta-inner h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff4f5;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.footer-cta-inner > p {
  margin: 0;
  color: #d8c7cb;
}

.footer-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.site-footer .btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #f6ebed;
  background: rgba(255, 255, 255, 0.04);
}

.footer-main {
  position: relative;
  padding: 2.2rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-logo {
  margin: 0;
  color: #fff4f5;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-brand > p {
  margin: 0.55rem 0 0;
  color: #dbc8cc;
  max-width: 38ch;
}

.footer-badges {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-badges span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ebdde0;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
}

.footer-col h3 {
  margin: 0 0 0.55rem;
  color: #d8b8bf;
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.38rem;
  color: #efe5e7;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #bea8ad;
}

.footer-bottom small {
  margin: 0;
}

.footer-signature a {
  color: #fff4f5;
  text-decoration: none;
  font-weight: 700;
}

.footer-signature a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-top-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #f1e4e7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.guides-cta-row {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.guides-featured-grid .guides-cta-row {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0.25rem;
}

.breadcrumb {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--brand-700);
  text-decoration: none;
}

.guide-hero {
  padding-top: 120px;
  padding-bottom: 28px;
  background: linear-gradient(170deg, #edf2f7 0%, #f6f4ef 48%, #ffffff 100%);
  border-bottom: 1px solid var(--line-soft);
}

.guide-hero h1 {
  margin: 0.6rem 0 0.7rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.guide-hero p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 72ch;
}

.guide-body {
  padding: 2.2rem 0 4.6rem;
}

.guide-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1rem;
  align-items: start;
}

.guide-article {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
}

.guide-article h2 {
  margin: 0.2rem 0 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.guide-article h3 {
  margin: 1.1rem 0 0.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.guide-article p {
  margin: 0 0 0.7rem;
  color: var(--text-secondary);
}

.guide-list {
  margin: 0 0 0.7rem;
  padding-left: 1rem;
}

.guide-list li {
  margin-bottom: 0.36rem;
  color: var(--text-secondary);
}

.guide-note {
  margin-top: 0.8rem;
  border: 1px solid rgba(var(--brand-500-rgb), 0.28);
  background: rgba(var(--brand-500-rgb), 0.06);
  border-radius: 12px;
  padding: 0.75rem;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.guide-cta {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--brand-500-rgb), 0.35);
  background: linear-gradient(150deg, rgba(var(--brand-500-rgb), 0.1), rgba(var(--brand-500-rgb), 0.03));
}

.guide-cta p {
  margin: 0 0 0.6rem;
}

.mini-nav {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0.95rem;
  position: sticky;
  top: 92px;
}

.mini-nav h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.mini-nav a {
  display: block;
  text-decoration: none;
  color: var(--brand-700);
  font-size: 0.9rem;
  padding: 0.32rem 0;
}

.related-links {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
}

.related-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.25rem 0;
}

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

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

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .browser-card {
    grid-column: 1 / -1;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .mini-nav {
    position: static;
  }

  .timeline-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 100px;
  }

  .hero::after {
    content: none;
  }

  .blob {
    display: none;
  }

  .hero-typing {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .chat-card {
    display: none;
  }

  .section-cta-inline {
    padding: 0.7rem 0 1.2rem;
  }

  .inline-cta-actions {
    flex-direction: column;
  }

  .inline-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .timeline-wrap {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    min-width: 0;
  }

  .offer-card,
  .audit-result,
  .audit-next,
  .process-focus,
  .footer-bottom {
    min-width: 0;
  }

  .timeline-step span,
  .offer-card h3,
  .footer-signature {
    overflow-wrap: anywhere;
  }

  .audit-form {
    grid-template-columns: 1fr;
  }

  .audit-form button {
    justify-self: stretch;
  }

  .audit-prefill {
    grid-template-columns: 1fr;
  }

  .footer-cta-band {
    padding: 3rem 0 2.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top-link {
    align-self: flex-end;
  }

  .guide-feature-2 {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(1200px, calc(100% - 1.25rem));
  }

  .hero h1 {
    font-size: clamp(1.7rem, 10vw, 2.5rem);
  }

  .logo {
    font-size: 1.08rem;
  }

  .trust-strip {
    gap: 0.45rem;
  }

  .trust-strip li {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
