:root {
  --primary: #006d77;
  --primary-dark: #00525a;
  --primary-light: #d6f1f2;
  --red: #b50000;
  --ink: #111827;
  --navy: #11182f;
  --muted: #6b7280;
  --soft: #fffaf3;
  --panel: #ffffff;
  --line: #e5e7eb;
  --warm-line: #eadfce;
  --green: #00a889;
  --amber: #f39a22;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid rgba(234, 223, 206, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 109, 119, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(0, 109, 119, 0.18);
}

.button.secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 109, 119, 0.24);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #fff4e7;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.91) 31%, rgba(255, 250, 243, 0.35) 55%, rgba(255, 250, 243, 0) 100%),
    linear-gradient(0deg, rgba(255, 250, 243, 0.88) 0%, rgba(255, 250, 243, 0) 28%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.phone-shot {
  position: absolute;
  z-index: 2;
  width: clamp(170px, 14vw, 230px);
  min-width: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
  background: #fff;
}

.shot-primary {
  right: max(32px, calc((100vw - var(--max)) / 2 - 90px));
  top: 92px;
  transform: rotate(4deg);
}

.shot-secondary {
  right: max(190px, calc((100vw - var(--max)) / 2 + 82px));
  top: 330px;
  transform: rotate(-5deg);
  opacity: 0.92;
}

.shot-tertiary {
  right: max(-24px, calc((100vw - var(--max)) / 2 - 124px));
  top: 390px;
  transform: rotate(5deg);
  opacity: 0.78;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(520px, calc(100% - 40px));
  min-height: 570px;
  margin: 0 auto;
  padding-top: 110px;
  transform: translateX(min(-320px, -22vw));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 580px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin: 22px 0 0;
  color: #374151;
  font-size: 22px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.kit-assurances span,
.section-heading p,
.company-band p,
.product-copy p,
.routine-copy p,
.pricing-band p,
.feature-card p,
.faq-list p,
.price-panel p {
  color: var(--muted);
}

.company-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 32px auto 0;
  padding: 54px 0 30px;
}

.company-band p {
  max-width: 760px;
  font-size: 18px;
}

.company-band a {
  color: var(--primary-dark);
  font-weight: 800;
}

.memory-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  width: min(var(--max), calc(100% - 40px));
  margin: 54px auto 0;
  padding: 40px 0 22px;
}

.memory-band h2 {
  font-size: 38px;
}

.memory-copy p {
  max-width: 360px;
  color: var(--muted);
}

.memory-copy a {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 900;
}

.memory-list {
  display: flex;
  align-items: end;
  gap: 18px;
  min-width: 0;
  padding: 18px 2px 24px;
  overflow-x: auto;
}

.memory-card {
  flex: 0 0 190px;
  margin: 0;
  padding: 10px 10px 15px;
  border: 1px solid #eee1ce;
  background: #fffdf8;
  box-shadow: 0 18px 32px rgba(65, 44, 21, 0.14);
}

.memory-card img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
}

.memory-card figcaption {
  min-height: 44px;
  padding-top: 9px;
  color: #2c2117;
  font-family: "Bradley Hand", "Comic Sans MS", cursive;
  font-size: 16px;
  line-height: 1.15;
  text-align: center;
}

.tilt-left {
  transform: rotate(-3deg);
}

.tilt-right {
  transform: rotate(2.5deg);
}

.band,
.product-band,
.routine-band,
.faq-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 700px;
}

h2 {
  margin: 0;
  max-width: 780px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

p {
  font-size: 17px;
}

.feature-card,
.hardware-card,
.price-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-band,
.routine-band,
.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  align-items: center;
  gap: 54px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #374151;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 4px;
  background: var(--green);
}

.screen-stack,
.routine-media {
  position: relative;
  min-height: 520px;
}

.screen-stack img,
.routine-media img {
  position: absolute;
  width: min(52%, 280px);
  max-height: 520px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.screen-stack img:first-child {
  left: 4%;
  top: 12px;
  z-index: 2;
}

.screen-stack img:last-child {
  right: 4%;
  top: 92px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hardware-band {
  border-top: 1px solid var(--line);
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hardware-card {
  display: grid;
  gap: 13px;
  align-content: start;
  min-height: 420px;
  padding: 26px;
  border-top-width: 6px;
}

.hardware-image {
  width: 100%;
  height: 230px;
  margin-bottom: 4px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.hardware-card.required {
  border-top-color: var(--primary);
}

.hardware-card.tested {
  border-top-color: var(--amber);
}

.hardware-status {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--primary-dark);
  background: var(--primary-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hardware-card.tested .hardware-status {
  color: #7a4300;
  background: #fff0d9;
}

.hardware-card p {
  margin: 0;
  color: var(--muted);
}

.hardware-link {
  justify-self: start;
  margin-top: 8px;
  color: var(--primary-dark);
  font-weight: 900;
}

.hardware-link:hover {
  color: var(--primary);
}

.affiliate-disclosure {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* The kit band answers "what am I actually buying" in one pass: the service,
   the two pieces of hardware, and the result. It absorbed the old hardware
   section, so it carries #hardware and the affiliate disclosure. */
.kit-band {
  display: grid;
  justify-items: stretch;
}

.kit-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.kit-heading .eyebrow {
  color: var(--red);
}

.kit-heading h2 {
  margin: 0 0 14px;
}

/* Second half of the headline and the service promise carry the accent, so
   the eye lands on what is being sold rather than on the whole sentence. */
.kit-heading h2 span {
  color: var(--primary);
}

.kit-lede {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
}

.kit-lede span {
  color: var(--red);
  font-weight: 700;
}

/* Four equal columns whose rows line up even when the copy wraps to different
   depths, so every photo and price sits on a shared baseline. */
.kit-flow {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto 1fr auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kit-step {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 12px;
  padding: 0 24px;
}

@supports not (grid-template-rows: subgrid) {
  .kit-step {
    grid-template-rows: auto auto 1fr auto;
  }
}

.kit-step + .kit-step {
  border-left: 1px solid var(--warm-line);
}

.kit-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.kit-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 15px;
}

.kit-copy {
  margin: 0;
  color: var(--muted);
}

.kit-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
}

.kit-media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.kit-art {
  position: relative;
  width: auto;
  max-width: 100%;
  height: 190px;
  color: var(--primary);
}

/* Dotted run plus a head, drawn across the gutter into the next step. */
.kit-step + .kit-step .kit-media::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 50%;
  width: 30px;
  height: 3px;
  transform: translateY(-50%);
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.6px);
  background-size: 9px 3px;
  background-repeat: repeat-x;
}

.kit-step + .kit-step .kit-media::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2.5px solid var(--primary);
  border-right: 2.5px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
}

.kit-buy {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
}

.kit-buy h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.kit-amount {
  color: var(--primary);
  white-space: nowrap;
}

.kit-terms {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Outlined rather than filled: the kit band already carries a lot of teal, and
   a solid chip competed with the price for attention. */
.kit-badge {
  justify-self: start;
  padding: 5px 12px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kit-badge.recommended {
  border-color: var(--navy);
  color: var(--navy);
}

.kit-mark {
  color: var(--primary);
}

.kit-assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: 100%;
  margin: 40px 0 0;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  list-style: none;
}

.kit-assurances li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.kit-assurance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--primary-dark);
  background: var(--primary-light);
}

.kit-assurance-icon svg {
  width: 24px;
  height: 24px;
}

.kit-assurances strong {
  display: block;
  color: var(--navy);
}

.kit-assurances span {
  color: var(--muted);
}

.kit-band .affiliate-disclosure {
  width: 100%;
}

.feature-card {
  min-height: 220px;
  padding: 22px;
  border-top-width: 6px;
  border-top-color: var(--primary);
}

/* One accent, not four. The rest of the page is teal, cream and navy, so a
   per-card colour made this the only section that read as software. */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--primary-dark);
  background: var(--primary-light);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.routine-band {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.92fr);
}

.routine-media img:first-child {
  left: 8%;
  top: 6px;
  z-index: 2;
}

.routine-media img:last-child {
  right: 8%;
  top: 108px;
}

.closing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: stretch;
  width: min(var(--max), calc(100% - 40px));
  margin: 22px auto 0;
  overflow: hidden;
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
  background: #fffaf3;
}

.closing-media {
  min-height: 270px;
}

.closing-media img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: center;
}

.closing-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 44px 36px 44px 58px;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.32) 0%, #fffaf3 22%),
    #fffaf3;
}

.closing-copy h2 {
  max-width: 560px;
  font-size: 38px;
}

.closing-copy p {
  max-width: 560px;
  margin: 0;
  color: #374151;
}

.closing-copy .button {
  justify-self: start;
}

.pricing-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.price-panel span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-panel strong {
  font-size: 30px;
  line-height: 1.1;
}

.price-panel .button {
  justify-self: start;
}

.line-pricing > span {
  color: var(--primary-dark);
}

/* Line picker. The totals are enumerated in the markup and selected with
   :has() rather than computed, so the panel works with scripting disabled. */
.line-picker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafb;
}

.line-picker legend {
  padding: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.line-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.line-picker label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 7px;
  color: var(--primary-dark);
  background: var(--panel);
  border: 1px solid var(--line);
  font-weight: 900;
  cursor: pointer;
}

.line-picker label:hover {
  border-color: rgba(0, 109, 119, 0.4);
}

.line-picker input:checked + label {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.line-picker input:focus-visible + label {
  outline: 3px solid rgba(0, 109, 119, 0.35);
  outline-offset: 2px;
}

/* Stack every total in one grid cell so switching lines does not reflow
   the panel or shift the button below it. */
.price-readout {
  display: grid;
}

.price-figure {
  grid-area: 1 / 1;
  visibility: hidden;
}

.price-figure strong {
  display: block;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.05;
}

.price-figure em {
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.price-figure p {
  margin: 8px 0 0;
}

.line-pricing:has(#lines-1:checked) .price-figure[data-lines="1"],
.line-pricing:has(#lines-2:checked) .price-figure[data-lines="2"],
.line-pricing:has(#lines-3:checked) .price-figure[data-lines="3"],
.line-pricing:has(#lines-4:checked) .price-figure[data-lines="4"],
.line-pricing:has(#lines-5:checked) .price-figure[data-lines="5"] {
  visibility: visible;
}

.price-note {
  margin: 0;
  font-weight: 700;
}

.price-note.quiet {
  font-size: 14px;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.legal-hero,
.legal-content {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.support-hero,
.support-grid,
.support-checklist {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-hero {
  padding: 92px 0 34px;
}

.legal-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 0 0 86px;
}

.legal-content.compact {
  padding-top: 20px;
}

.legal-content h2,
.support-grid h2 {
  margin: 24px 0 0;
  font-size: 28px;
  line-height: 1.15;
}

.legal-content p,
.support-grid p {
  margin: 0;
  color: #374151;
}

.legal-content a,
.legal-hero a,
.support-contact a {
  color: var(--primary-dark);
  font-weight: 800;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: 34px;
  align-items: end;
  padding: 88px 0 42px;
}

.support-hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

.support-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.support-contact {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(0, 109, 119, 0.22);
  border-radius: 8px;
  background: #eef7f7;
}

.support-contact span,
.support-topic {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.support-contact a {
  overflow-wrap: anywhere;
  font-size: 19px;
}

.support-contact p {
  margin: 0;
  color: #374151;
  font-size: 15px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 8px 0 30px;
}

.support-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.support-grid h2 {
  margin-top: 0;
  font-size: 30px;
}

.support-checklist {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 78px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.support-checklist h2 {
  margin: 0;
  font-size: 34px;
}

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

  .hero {
    min-height: 780px;
    background: #fff4e7;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, #fffaf3 0%, #fffaf3 45%, rgba(255, 250, 243, 0.3) 74%, rgba(255, 250, 243, 0) 100%),
      linear-gradient(90deg, rgba(255, 250, 243, 0.82) 0%, rgba(255, 250, 243, 0) 100%);
  }

  .hero-photo {
    top: 350px;
    bottom: auto;
    height: 430px;
    opacity: 1;
    object-position: 58% 24%;
  }

  .hero-content {
    width: min(680px, calc(100% - 40px));
    min-height: 420px;
    padding-top: 88px;
    transform: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy {
    max-width: 520px;
    font-size: 20px;
  }

  .phone-shot {
    width: 250px;
    min-width: 0;
  }

  .shot-primary {
    right: 7%;
    top: 458px;
  }

  .shot-secondary {
    left: 7%;
    right: auto;
    top: 508px;
  }

  .shot-tertiary {
    display: none;
  }

  .memory-band,
  .hardware-grid,
  .kit-assurances,
  .support-grid,
  .support-hero,
  .support-checklist,
  .product-band,
  .routine-band,
  .closing-band,
  .pricing-band {
    grid-template-columns: 1fr;
  }

  .product-band,
  .routine-band,
  .closing-band,
  .pricing-band {
    gap: 28px;
  }

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

  .feature-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    min-height: 0;
    padding: 18px;
  }

  .feature-icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .feature-card h3 {
    margin: 0;
    align-self: center;
  }

  .feature-card p {
    margin: 6px 0 0;
  }

  .kit-flow {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 26px;
  }

  .kit-step {
    grid-row: auto;
    grid-template-columns: 190px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
      "media title"
      "media copy"
      "media buy";
    align-content: start;
    column-gap: 24px;
    padding: 0;
  }

  .kit-title {
    grid-area: title;
  }

  .kit-copy {
    grid-area: copy;
  }

  .kit-media {
    grid-area: media;
    align-self: start;
    height: 170px;
  }

  .kit-step + .kit-step .kit-media::after {
    display: none;
  }

  .kit-buy {
    grid-area: buy;
    margin-top: 4px;
  }

  .kit-art {
    height: 150px;
  }

  .kit-media img {
    max-height: 150px;
  }

  .kit-step + .kit-step {
    border-left: 0;
    border-top: 1px solid var(--warm-line);
    padding-top: 26px;
  }

  .kit-step + .kit-step .kit-media::before {
    display: none;
  }

  .closing-copy {
    padding: 34px 28px 40px;
    background: #fffaf3;
  }

  .memory-band {
    padding: 32px;
  }

  .routine-copy {
    order: -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .brand span {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 870px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, #fffaf3 0%, #fffaf3 58%, rgba(255, 250, 243, 0.08) 73%, rgba(255, 250, 243, 0) 88%, rgba(255, 250, 243, 0.62) 100%);
  }

  .hero-photo {
    top: 560px;
    bottom: auto;
    height: 310px;
    opacity: 1;
    object-position: 58% center;
  }

  .hero-content {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
  }

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

  .phone-shot {
    display: none;
    width: 190px;
    border-radius: 24px;
  }

  .shot-primary {
    right: 4%;
    top: 470px;
  }

  .shot-secondary {
    left: 4%;
    top: 510px;
  }

  .band,
  .memory-band,
  .product-band,
  .routine-band,
  .faq-band,
  .legal-hero,
  .legal-content,
  .support-hero,
  .support-grid,
  .support-checklist {
    width: calc(100% - 28px);
  }

  .band,
  .product-band,
  .routine-band,
  .faq-band {
    padding: 64px 0;
  }

  .memory-band {
    padding: 26px 20px;
  }

  .memory-band h2 {
    font-size: 30px;
  }

  .legal-hero {
    padding: 70px 0 28px;
  }

  .legal-hero h1,
  .support-hero h1 {
    font-size: 42px;
  }

  .support-hero {
    padding: 70px 0 26px;
  }

  .support-hero p {
    font-size: 18px;
  }

  .support-grid article {
    min-height: auto;
    padding: 22px;
  }

  .support-grid h2 {
    font-size: 26px;
  }

  .support-checklist {
    margin-bottom: 58px;
    padding: 22px;
  }

  h2 {
    font-size: 34px;
  }

  .screen-stack,
  .routine-media {
    min-height: 430px;
  }

  .screen-stack img,
  .routine-media img {
    width: 58%;
    max-height: 420px;
    border-radius: 24px;
  }

  .screen-stack img:first-child,
  .routine-media img:first-child {
    left: 0;
  }

  .screen-stack img:last-child,
  .routine-media img:last-child {
    right: 0;
  }

  .feature-card {
    min-height: auto;
  }

  .closing-copy h2 {
    font-size: 30px;
  }

  .hardware-card {
    min-height: auto;
  }

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

  .kit-step {
    grid-template-columns: 116px minmax(0, 1fr);
    column-gap: 16px;
    padding: 0;
  }

  .kit-step + .kit-step {
    padding-top: 22px;
  }

  .kit-media {
    height: 126px;
  }

  .kit-art {
    height: 104px;
  }

  .kit-title {
    font-size: 17px;
    gap: 10px;
  }

  .kit-number {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .site-footer {
    width: calc(100% - 28px);
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 12px;
  }
}
