:root {
  --navy: #14324a;
  --navy-deep: #0d263a;
  --blue: #eaf4f8;
  --blue-strong: #d5eaf2;
  --cream: #fff9f2;
  --apricot: #f28a3b;
  --apricot-dark: #a84b11;
  --sage: #7f9f8e;
  --sage-pale: #e4eee8;
  --charcoal: #34424d;
  --white: #ffffff;
  --line: rgba(20, 50, 74, 0.14);
  --shadow: 0 24px 70px rgba(19, 45, 65, 0.13);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-hero {
  background: linear-gradient(135deg, var(--blue), var(--cream));
  padding: 100px clamp(24px, 6vw, 88px);
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.page-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.page-hero p:last-child {
  color: var(--charcoal);
  font-size: 1.12rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

.content-shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 90px clamp(24px, 5vw, 72px);
}

.content-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
}

.content-card h2,
.content-card h3 {
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.content-card h2 {
  font-size: 2rem;
}

.content-card p,
.article-body p,
.article-body li {
  color: #5b6871;
  line-height: 1.75;
}

.content-card .button {
  margin-top: 14px;
}

.article-body {
  margin: 0 auto;
  max-width: 780px;
}

.article-body h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin: 52px 0 16px;
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 30px 0 10px;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.article-callout {
  background: var(--blue);
  border-left: 4px solid var(--apricot);
  border-radius: 0 18px 18px 0;
  margin: 36px 0;
  padding: 24px 28px;
}

.article-callout strong {
  display: block;
  margin-bottom: 6px;
}

.selection-note {
  align-items: center;
  background: var(--sage-pale);
  border-radius: 12px;
  color: #365b48;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 750;
  margin-top: 12px;
  padding: 9px 12px;
}

.provider-links {
  display: grid;
  gap: 12px;
  margin: 22px 0 18px;
}

.provider-link {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 5px;
  padding: 18px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.provider-link:hover,
.provider-link:focus-visible {
  border-color: var(--apricot);
  transform: translateY(-2px);
}

.provider-link span {
  color: #5b6871;
  font-size: 0.9rem;
  line-height: 1.55;
}

.provider-link b {
  color: var(--apricot-dark);
  font-size: 0.82rem;
  margin-top: 4px;
}

.kit-shell {
  margin: 0 auto;
  max-width: 980px;
  padding: 70px clamp(22px, 5vw, 64px) 100px;
}

.kit-intro,
.kit-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  margin-bottom: 22px;
  padding: clamp(26px, 5vw, 48px);
}

.kit-intro h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 12px 0 20px;
}

.kit-intro p,
.kit-panel p,
.kit-panel li {
  color: #5b6871;
  line-height: 1.7;
}

.kit-panel h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.checklist {
  display: grid;
  gap: 11px;
  list-style: none;
  padding: 0;
}

.checklist li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 10px 32px;
  position: relative;
}

.checklist li::before {
  border: 2px solid var(--sage);
  border-radius: 4px;
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 17px;
}

.worksheet-lines {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.worksheet-line {
  border-bottom: 1px solid #82909a;
  color: #5b6871;
  min-height: 38px;
  padding-bottom: 6px;
}

.print-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

@media print {
  .site-header,
  footer,
  .print-actions {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .kit-shell {
    max-width: none;
    padding: 0;
  }

  .kit-intro,
  .kit-panel {
    break-inside: avoid;
    box-shadow: none;
    page-break-inside: avoid;
  }
}

.simple-cta {
  background: var(--navy);
  border-radius: 30px;
  color: var(--white);
  margin: 0 auto 90px;
  max-width: 1120px;
  padding: 70px clamp(24px, 6vw, 72px);
  text-align: center;
}

.simple-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.simple-cta p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 650px;
}

.thank-you-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin: 100px auto;
  max-width: 720px;
  padding: 64px clamp(28px, 6vw, 70px);
  text-align: center;
}

.thank-you-card .starter-icon {
  background: var(--blue);
}

.thank-you-card h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 18px;
}

.thank-you-card p {
  color: #5b6871;
  line-height: 1.7;
}

.field-hidden {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-status {
  color: rgba(255, 255, 255, 0.68);
  display: none;
  font-size: 0.84rem;
  margin-top: 12px;
}

.kit-form.is-submitting + .form-status {
  display: block;
}

.legal-note {
  color: #73808a;
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 24px auto 0;
  max-width: 760px;
  text-align: center;
}

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

button,
input {
  font: inherit;
}

img {
  display: block;
  height: auto;
  width: 100%;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  align-items: center;
  background: rgba(255, 249, 242, 0.9);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 32px;
  grid-template-columns: auto 1fr auto;
  height: 88px;
  left: 0;
  padding: 0 clamp(24px, 4vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  height: 42px;
  margin-right: 10px;
  width: 42px;
}

.brand-mark svg {
  height: 100%;
  width: 100%;
}

.logo-roof {
  fill: var(--navy);
  stroke: var(--navy);
}

.logo-sofa {
  fill: var(--apricot);
  stroke: var(--apricot);
}

.logo-person {
  fill: var(--cream);
  stroke: var(--cream);
}

.brand-dot {
  color: var(--apricot);
}

.desktop-nav {
  display: flex;
  gap: clamp(28px, 4vw, 60px);
  justify-content: center;
}

.desktop-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  background: var(--apricot);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
  width: 24px;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu {
  display: none;
}

.button {
  align-items: center;
  background: var(--apricot);
  border: 1px solid var(--apricot);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(242, 138, 59, 0.2);
  color: var(--navy-deep);
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
  justify-content: center;
  min-height: 56px;
  padding: 15px 25px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--apricot-dark);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(168, 75, 17, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 48px;
  padding: 12px 20px;
}

.button-outline {
  background: transparent;
  border-color: var(--navy);
  box-shadow: none;
  color: var(--navy);
}

.button-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.button svg,
.text-link svg,
.step-card a svg,
.tool-card a svg,
.guide-link svg {
  height: 20px;
  transition: transform 180ms ease;
  width: 20px;
}

.button:hover svg,
.text-link:hover svg,
.step-card a:hover svg,
.tool-card a:hover svg,
.guide-card:hover .guide-link svg {
  transform: translateX(4px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 4px;
}

.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #f8fcfd 44%, var(--cream) 44%);
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  min-height: calc(100svh - 88px);
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  border: 1px solid rgba(94, 147, 170, 0.16);
  border-radius: 50%;
  content: "";
  height: 780px;
  left: -430px;
  pointer-events: none;
  position: absolute;
  top: 410px;
  width: 1060px;
}

.hero::after {
  height: 720px;
  left: -360px;
  opacity: 0.55;
  top: 465px;
  width: 1000px;
}

.hero-copy {
  align-self: center;
  animation: copy-in 650ms cubic-bezier(.22, 1, .36, 1) both;
  padding: 72px clamp(36px, 5vw, 78px) 86px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #416475;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(20, 50, 74, 0.05);
  border-radius: 999px;
  display: inline-flex;
  letter-spacing: 0;
  padding: 10px 16px;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 5.35rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin-bottom: 25px;
  max-width: 720px;
}

.hero-lede {
  color: var(--charcoal);
  font-size: clamp(1.03rem, 1.3vw, 1.22rem);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.trust-row li {
  align-items: center;
  color: var(--charcoal);
  display: flex;
  font-size: 0.88rem;
  gap: 8px;
}

.trust-row svg {
  background: rgba(127, 159, 142, 0.15);
  border-radius: 50%;
  color: #557a68;
  height: 28px;
  padding: 6px;
  width: 28px;
}

.trust-row .logo-roof {
  fill: #557a68;
  stroke: #557a68;
}

.trust-row .logo-sofa {
  fill: var(--apricot);
  stroke: var(--apricot);
}

.hero-visual {
  animation: image-in 850ms cubic-bezier(.22, 1, .36, 1) both;
  min-height: calc(100svh - 88px);
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  background: linear-gradient(90deg, rgba(255, 249, 242, 0.25), transparent 18%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.floating-card {
  align-items: center;
  animation: card-in 700ms 650ms cubic-bezier(.22, 1, .36, 1) both;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  bottom: 150px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  max-width: 430px;
  padding: 18px 20px;
  position: absolute;
  right: 5%;
  width: min(82%, 430px);
  z-index: 2;
}

.floating-card-two {
  animation-delay: 780ms;
  bottom: 52px;
}

.floating-card > svg {
  height: 18px;
  width: 18px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.floating-card small {
  color: #596670;
  font-size: 0.82rem;
}

.floating-icon {
  align-items: center;
  background: var(--sage-pale);
  border-radius: 50%;
  color: #557a68;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.floating-icon svg {
  height: 28px;
  width: 28px;
}

.floating-icon.document {
  border-radius: 14px;
}

.proof-bar {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  padding: 30px max(6vw, calc((100% - 1180px) / 2));
}

.proof-bar > div {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 2px 24px;
}

.proof-bar > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-bar strong {
  color: #ffc38d;
  font-size: 1.1rem;
}

.proof-bar span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 120px clamp(24px, 5vw, 72px);
}

.section-heading {
  margin: 0 auto 58px;
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.reassurance-copy h2,
.starter-content h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.25rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin-bottom: 22px;
}

.section-heading > p:last-child,
.split-heading > p,
.large-copy,
.starter-content > p {
  color: #5b6871;
  font-size: 1.08rem;
  line-height: 1.7;
}

.steps-section {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 440px;
  overflow: hidden;
  padding: 34px;
  position: relative;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.featured-step {
  background: var(--navy);
  color: var(--white);
  transform: translateY(18px);
}

.featured-step:hover {
  transform: translateY(12px);
}

.step-number {
  color: #8b9ba5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.featured-step .step-number {
  color: rgba(255, 255, 255, 0.55);
}

.step-icon,
.tool-icon {
  align-items: center;
  background: var(--sage-pale);
  border-radius: 18px;
  color: #537662;
  display: flex;
  height: 64px;
  justify-content: center;
  margin: 48px 0 26px;
  width: 64px;
}

.step-icon svg,
.tool-icon svg {
  height: 32px;
  width: 32px;
}

.featured-step .step-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #b9d0c2;
}

.room-icon span {
  border: 2px solid currentColor;
  border-radius: 3px 3px 0 0;
  height: 25px;
  position: relative;
  width: 34px;
}

.room-icon span::before {
  background: currentColor;
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 10px;
  left: 5px;
  position: absolute;
  width: 22px;
}

.step-card h3,
.tool-card h3,
.guide-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.step-card p,
.tool-card p,
.guide-card p {
  color: #63717a;
  font-size: 0.94rem;
  line-height: 1.7;
}

.featured-step p {
  color: rgba(255, 255, 255, 0.7);
}

.step-card a,
.tool-card a,
.text-link,
.guide-link {
  align-items: center;
  color: var(--apricot-dark);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 750;
  gap: 8px;
  margin-top: 14px;
}

.featured-step a {
  color: #ffc38d;
}

.reassurance-section {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.reassurance-photo {
  border-radius: 30px;
  box-shadow: var(--shadow);
  min-height: 670px;
  overflow: hidden;
  position: relative;
}

.reassurance-photo > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
}

.photo-note {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  bottom: 24px;
  box-shadow: 0 16px 36px rgba(20, 50, 74, 0.16);
  display: flex;
  gap: 12px;
  left: 24px;
  padding: 16px 18px;
  position: absolute;
  right: 24px;
}

.photo-note > svg {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
}

.photo-note span,
.photo-note strong {
  display: block;
}

.photo-note span {
  color: #65717a;
  font-size: 0.85rem;
}

.photo-note strong {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.reassurance-copy .eyebrow {
  margin-bottom: 20px;
}

.reassurance-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 34px 0;
  padding: 0;
}

.reassurance-list li {
  align-items: flex-start;
  color: #5a6871;
  display: flex;
  gap: 14px;
  line-height: 1.55;
}

.reassurance-list li > svg {
  background: var(--sage-pale);
  border-radius: 50%;
  color: #537662;
  flex: 0 0 30px;
  height: 30px;
  padding: 7px;
  width: 30px;
}

.reassurance-list strong {
  color: var(--navy);
}

.tools-section {
  background: var(--blue);
  border-radius: 40px;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.35fr 0.65fr;
  max-width: none;
  text-align: left;
}

.split-heading h2 {
  margin-bottom: 0;
  max-width: 700px;
}

.split-heading > p {
  margin-bottom: 0;
}

.tools-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.tool-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  min-height: 360px;
  padding: 28px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.tool-card:hover {
  box-shadow: 0 20px 50px rgba(20, 50, 74, 0.12);
  transform: translateY(-5px);
}

.tool-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}

.tool-icon {
  height: 54px;
  margin: 0;
  width: 54px;
}

.tool-icon svg {
  height: 27px;
  width: 27px;
}

.tool-label {
  color: #70808a;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.affiliate-note {
  color: #71818a;
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 26px auto 0;
  max-width: 760px;
  text-align: center;
}

.guides-grid {
  border-top: 1px solid var(--line);
}

.guide-card {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 40px;
  grid-template-columns: 70px 1fr;
  padding: 32px 10px;
  position: relative;
  transition: background 180ms ease, padding 180ms ease;
}

.guide-card::after {
  background: var(--blue);
  border-radius: 18px;
  content: "";
  inset: 8px 0;
  opacity: 0;
  position: absolute;
  transition: opacity 180ms ease;
  z-index: -1;
}

.guide-card:hover {
  padding-left: 24px;
  padding-right: 24px;
}

.guide-card:hover::after {
  opacity: 1;
}

.guide-number {
  color: var(--apricot-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.guide-card h3 {
  font-size: 1.42rem;
  margin-bottom: 6px;
}

.guide-card p {
  margin-bottom: 0;
  max-width: 720px;
}

.guide-link {
  margin-top: 12px;
}

.starter-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 120px 24px;
  position: relative;
}

.starter-orbit {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  height: 620px;
  left: -160px;
  position: absolute;
  top: 110px;
  width: 620px;
}

.orbit-two {
  height: 760px;
  left: auto;
  right: -210px;
  top: -260px;
  width: 760px;
}

.starter-content {
  margin: 0 auto;
  max-width: 820px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.starter-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  display: inline-flex;
  height: 72px;
  margin-bottom: 30px;
  padding: 12px;
  width: 72px;
}

.starter-content .eyebrow {
  color: #afd0c0;
}

.starter-content > p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0 auto 34px;
  max-width: 680px;
}

.kit-form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1.15fr auto;
  margin: 0 auto 16px;
  max-width: 850px;
}

.kit-form label span {
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.kit-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  color: var(--white);
  height: 56px;
  padding: 0 18px;
  width: 100%;
}

.kit-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.starter-content small {
  color: rgba(255, 255, 255, 0.72);
}

.starter-content small a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.effective-date {
  color: #5d7180 !important;
  font-size: 0.82rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px !important;
  text-transform: uppercase;
}

footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 72px clamp(24px, 5vw, 72px) 28px;
}

.footer-main {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.7fr 0.65fr 0.65fr;
  margin: 0 auto 70px;
  max-width: 1300px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-main > div:first-child p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  max-width: 420px;
}

.footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-main strong {
  margin-bottom: 4px;
}

.footer-main a:not(.brand) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-main a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  display: flex;
  font-size: 0.76rem;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1300px;
  padding-top: 24px;
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-in {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav,
  .site-header > .button {
    display: none;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
    position: relative;
  }

  .mobile-menu summary {
    border: 1px solid var(--navy);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 750;
    list-style: none;
    padding: 10px 14px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-width: 230px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: 54px;
  }

  .mobile-menu nav a {
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 650;
    padding: 12px;
  }

  .mobile-menu nav a:hover {
    background: var(--blue);
  }

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

  .hero-copy {
    padding-bottom: 62px;
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 680px;
  }

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

@media (max-width: 820px) {
  .proof-bar {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .proof-bar > div + div {
    border-left: 0;
  }

  .steps-grid,
  .reassurance-section,
  .split-heading,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .featured-step {
    transform: none;
  }

  .featured-step:hover {
    transform: translateY(-6px);
  }

  .step-card {
    min-height: 0;
  }

  .reassurance-photo {
    min-height: 560px;
  }

  .split-heading {
    gap: 20px;
  }

  .footer-main {
    gap: 36px;
  }

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

@media (max-width: 600px) {
  .site-header {
    height: 74px;
  }

  .brand {
    font-size: 1.12rem;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 48px 22px 50px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual > img {
    object-position: 55% center;
  }

  .floating-card {
    bottom: 108px;
    left: 16px;
    max-width: none;
    padding: 14px;
    right: 16px;
    width: auto;
  }

  .floating-card-two {
    bottom: 20px;
  }

  .floating-icon {
    height: 42px;
    width: 42px;
  }

  .section {
    padding: 88px 20px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .reassurance-copy h2,
  .starter-content h2 {
    font-size: 2.5rem;
  }

  .steps-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .step-icon {
    margin-top: 34px;
  }

  .tools-section {
    border-radius: 0;
  }

  .reassurance-photo {
    min-height: 470px;
  }

  .guide-card {
    gap: 16px;
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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