:root {
  color-scheme: light;
  --navy-950: #001b38;
  --navy-900: #00264d;
  --navy-800: #063963;
  --cyan-500: #00bdc6;
  --cyan-100: #ddf6f7;
  --gold-500: #f8b20a;
  --gold-600: #d99600;
  --ivory: #f7f4ea;
  --white: #ffffff;
  --ink-muted: #bfd0de;
  --header-height: 58px;
  --shadow-button: 0 7px 0 #a66f00, 0 14px 30px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-900);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.announcement {
  min-height: 32px;
  padding: calc(8px + env(safe-area-inset-top)) 14px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-align: center;
}

.announcement__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.65;
}

.site-header {
  height: var(--header-height);
  position: relative;
  z-index: 5;
  background: var(--ivory);
  border-bottom: 1px solid rgba(0, 38, 77, 0.1);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
}

.brand img {
  width: 152px;
  height: auto;
}

.site-header__claim {
  display: none;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero {
  min-height: calc(100svh - 32px - var(--header-height));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 72%, rgba(0, 189, 198, 0.19), transparent 42%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent 88%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(248, 178, 10, 0.23);
  border-radius: 50%;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: 38%;
  left: -310px;
}

.hero::after {
  width: 320px;
  height: 320px;
  top: 16%;
  right: -260px;
}

.hero__inner {
  padding-top: 28px;
  padding-bottom: 68px;
  display: grid;
  align-items: center;
  gap: 22px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 15px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 189, 198, 0.45);
  border-radius: 999px;
  background: rgba(0, 189, 198, 0.12);
  color: #dffcff;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.075em;
}

.eyebrow__mark {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(248, 178, 10, 0.13);
  transform: rotate(45deg);
}

h1 {
  max-width: 20ch;
  margin: 0 auto;
  color: var(--white);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2.15rem, 10.4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.047em;
  text-wrap: balance;
}

h1 em {
  position: relative;
  color: var(--gold-500);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: -0.06em;
  height: 0.11em;
  border-radius: 999px;
  background: var(--cyan-500);
  transform: rotate(-1deg);
}

.hero__lead {
  max-width: 36rem;
  margin: 18px auto 0;
  color: #d8e4ed;
  font-size: 1rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero__action {
  position: relative;
  z-index: 2;
  text-align: center;
}

.primary-cta {
  width: 100%;
  min-height: 56px;
  margin: 0 auto;
  padding: 15px 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 2px solid #ffc433;
  border-radius: 14px;
  background: var(--gold-500);
  box-shadow: var(--shadow-button);
  color: var(--navy-950);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.primary-cta svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.primary-cta:hover {
  background: #ffc134;
  transform: translateY(-2px);
  box-shadow: 0 9px 0 #a66f00, 0 18px 36px rgba(0, 0, 0, 0.24);
}

.primary-cta:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #a66f00, 0 9px 20px rgba(0, 0, 0, 0.22);
}

.primary-cta:focus-visible,
.scroll-cue:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 4px;
}

.hero__assurance {
  margin: 17px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px 8px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero__visual {
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: 2px;
  position: relative;
  isolation: isolate;
  scroll-margin-top: 20px;
}

.hero__visual picture {
  position: relative;
  z-index: 1;
}

.hero__visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.38));
}

.hero__halo {
  position: absolute;
  inset: 10% 5% 4%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 189, 198, 0.32);
  filter: blur(40px);
}

.hero__caption {
  min-width: 154px;
  min-height: 52px;
  padding: 8px 12px;
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: -12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(0, 189, 198, 0.55);
  border-radius: 12px;
  background: rgba(0, 27, 56, 0.93);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
  color: #eafcff;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  backdrop-filter: blur(10px);
}

.hero__caption-number {
  color: var(--gold-500);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.scroll-cue {
  display: none;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section--ivory {
  background: var(--ivory);
  color: var(--navy-900);
}

.section--ice {
  background: #eaf4f5;
  color: var(--navy-900);
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--navy-800);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.105em;
}

.section-kicker--light {
  color: #8de7eb;
}

.section h2 {
  margin: 0;
  color: inherit;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(1.9rem, 8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section h2 em {
  color: var(--cyan-500);
  font-style: normal;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: #587086;
  font-size: 1rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.problem-grid {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.problem-card {
  min-height: 188px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--cyan-500);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 38, 77, 0.08);
}

.problem-card__number {
  position: absolute;
  top: 13px;
  right: 17px;
  color: rgba(0, 38, 77, 0.08);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 3.7rem;
  font-weight: 800;
  line-height: 1;
}

.problem-card h3 {
  margin: 52px 0 8px;
  color: var(--navy-900);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.problem-card p {
  margin: 0;
  color: #587086;
  font-size: 1rem;
  line-height: 1.55;
}

.problem-card::before,
.problem-card::after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 20px;
  left: 20px;
  border-color: var(--cyan-500);
  border-style: solid;
}

.problem-card::before {
  border-width: 3px 0 0 3px;
  border-radius: 4px 0 0;
}

.problem-card::after {
  top: 35px;
  left: 35px;
  width: 9px;
  height: 3px;
  border: 0;
  background: var(--gold-500);
}

.method {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 189, 198, 0.2), transparent 32%),
    var(--navy-900);
  color: var(--white);
}

.method .section-heading > p:last-child {
  color: #c8d9e6;
}

.method__inner {
  display: grid;
  gap: 38px;
}

.method-steps {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.method-steps li {
  min-height: 88px;
  padding: 12px 0 17px;
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
}

.method-steps li:not(:last-child)::after {
  content: "";
  width: 2px;
  position: absolute;
  top: 58px;
  bottom: 0;
  left: 24px;
  background: linear-gradient(var(--cyan-500), rgba(0, 189, 198, 0.2));
}

.method-steps li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cyan-500);
  border-radius: 14px;
  background: var(--navy-950);
  color: var(--gold-500);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.method-steps strong,
.method-steps small {
  display: block;
}

.method-steps strong {
  margin-top: 2px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.12rem;
}

.method-steps small {
  margin-top: 5px;
  color: #bfd0de;
  font-size: 1rem;
  line-height: 1.45;
}

.showcase {
  overflow: hidden;
}

.showcase__viewport {
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
  padding: 14px 0 22px;
}

.showcase__track {
  width: max-content;
  display: flex;
  animation: showcase-scroll 48s linear infinite;
  will-change: transform;
}

.showcase__viewport:hover .showcase__track,
.showcase__viewport:focus-within .showcase__track {
  animation-play-state: paused;
}

.showcase__set {
  padding-right: 18px;
  display: flex;
  gap: 18px;
}

.showcase__set figure {
  width: min(72vw, 300px);
  margin: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 38, 77, 0.13);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 38, 77, 0.14);
}

.showcase__set figure:nth-child(even) {
  transform: translateY(12px);
}

.showcase__set img {
  width: 100%;
  height: auto;
}

@keyframes showcase-scroll {
  to { transform: translateX(-50%); }
}

.showcase__action {
  margin-top: 26px;
  text-align: center;
}

.showcase__action p {
  margin: 18px 0 0;
  color: #587086;
  font-size: 0.78rem;
  font-weight: 600;
}

.guide-grid {
  margin-top: 38px;
  display: grid;
  gap: 18px;
}

.guide-card {
  --volume-color: var(--gold-500);
  min-width: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  border: 1px solid #d5e5e7;
  border-left: 5px solid var(--volume-color);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 9px 22px rgba(0, 38, 77, 0.08);
}

.guide-card--cyan { --volume-color: #00bdc6; }
.guide-card--blue { --volume-color: #2e8fd0; }
.guide-card--coral { --volume-color: #e66b4e; }
.guide-card--violet { --volume-color: #6d63b8; }

.guide-card img {
  width: 108px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 38, 77, 0.17);
}

.guide-card span {
  color: var(--volume-color);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.guide-card h3 {
  margin: 5px 0 7px;
  color: var(--navy-900);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.16rem;
  line-height: 1.15;
}

.guide-card p {
  margin: 0;
  color: #587086;
  font-size: 1rem;
  line-height: 1.5;
}

.bonus-block {
  margin-top: 64px;
  padding: 30px 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy-900);
  background-size: 24px 24px;
  color: var(--white);
}

.bonus-block__heading h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 7vw, 2.55rem);
}

.bonus-grid {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.bonus-grid article {
  padding: 21px;
  border: 1px solid rgba(0, 189, 198, 0.25);
  border-radius: 16px;
  background: rgba(0, 27, 56, 0.8);
}

.bonus-card__tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 9px;
  display: block;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bonus-grid strong {
  display: block;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.05rem;
}

.bonus-grid p {
  margin: 8px 0 0;
  color: #bfd0de;
  font-size: 1rem;
  line-height: 1.5;
}

.proof__inner {
  display: grid;
  gap: 34px;
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid article {
  padding: 20px 20px 20px 24px;
  position: relative;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 38, 77, 0.07);
}

.proof-grid article::before {
  content: "";
  width: 5px;
  position: absolute;
  inset: 12px auto 12px 0;
  border-radius: 0 4px 4px 0;
  background: var(--cyan-500);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--navy-900);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1rem;
}

.proof-grid span {
  margin-top: 6px;
  color: #587086;
  font-size: 1rem;
  line-height: 1.5;
}

.delivery-steps {
  margin: 40px auto 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.delivery-steps li {
  padding: 0 0 28px;
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
}

.delivery-steps li:not(:last-child)::after {
  content: "";
  width: 2px;
  position: absolute;
  top: 54px;
  bottom: 4px;
  left: 26px;
  background: #b7d8da;
}

.delivery-steps li > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px double var(--navy-900);
  background: var(--navy-900);
  box-shadow: inset 0 0 0 4px var(--ivory);
  color: var(--white);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.delivery-steps strong {
  display: block;
  color: var(--navy-900);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.02rem;
}

.delivery-steps p {
  margin: 6px 0 0;
  color: #587086;
  font-size: 1rem;
  line-height: 1.5;
}

.offer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 30%, rgba(0, 189, 198, 0.2), transparent 34%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
  color: var(--white);
}

.offer__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.offer__inner {
  display: grid;
  gap: 30px;
}

.offer__copy > p:last-of-type {
  max-width: 40rem;
  margin: 16px 0 0;
  color: #cad9e5;
  line-height: 1.6;
}

.offer__copy img {
  width: calc(100% + 16px);
  max-width: 600px;
  height: auto;
  margin: 22px 0 -4px -8px;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.36));
}

.offer-card {
  padding: 28px 22px 24px;
  border: 2px solid var(--gold-500);
  border-radius: 22px;
  background: var(--ivory);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  color: var(--navy-900);
}

.offer-card__eyebrow {
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--cyan-100);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.offer-card h3 {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.75rem;
}

.offer-card ul {
  margin: 22px 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.offer-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  color: #314f68;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.offer-card li span {
  color: #18864b;
  font-weight: 800;
}

.offer-card__price {
  padding: 18px 0;
  border-top: 1px solid #d9e1df;
  text-align: center;
}

.offer-card__price small,
.offer-card__price strong {
  display: block;
}

.offer-card__price small {
  margin-bottom: 2px;
  color: #587086;
  font-size: 0.8rem;
  font-weight: 600;
}

.offer-card__price strong {
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2.8rem, 14vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.offer-card__price sup {
  margin-right: 3px;
  position: relative;
  top: -0.7em;
  font-size: 0.4em;
  letter-spacing: 0;
}

.offer-card__price strong span {
  font-size: 0.26em;
  letter-spacing: 0.02em;
}

.offer-card__cta {
  min-width: 0;
}

.offer-card__note {
  margin: 15px 0 0;
  color: #587086;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.faq__inner {
  display: grid;
  gap: 34px;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid #d5e5e7;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 5px 16px rgba(0, 38, 77, 0.05);
}

.faq summary {
  min-height: 58px;
  padding: 17px 54px 17px 18px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--navy-900);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

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

.faq summary span,
.faq summary span::after {
  content: "";
  width: 15px;
  height: 2px;
  position: absolute;
  right: 20px;
  background: var(--cyan-500);
  transition: transform 180ms ease;
}

.faq summary span::after {
  inset: 0;
  transform: rotate(90deg);
}

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details p {
  margin: 0;
  padding: 0 18px 20px;
  color: #587086;
  font-size: 1rem;
  line-height: 1.65;
}

.faq summary:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 3px;
  border-radius: 12px;
}

.final-cta {
  padding: 70px 0 calc(70px + env(safe-area-inset-bottom));
  background: var(--cyan-100);
  color: var(--navy-900);
  text-align: center;
}

.final-cta__inner > p {
  margin: 0;
  color: #587086;
  font-size: 0.92rem;
  font-weight: 600;
}

.final-cta h2 {
  max-width: 22ch;
  margin: 12px auto 28px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(1.9rem, 8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.site-footer {
  padding: 34px 0;
  background: var(--navy-950);
  color: #9eb4c5;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.site-footer img {
  width: 150px;
  height: auto;
  padding: 8px;
  border-radius: 8px;
  background: var(--ivory);
}

.site-footer p {
  max-width: 650px;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
}

.site-footer span {
  font-size: 0.72rem;
  font-weight: 600;
}

.problem,
.method,
.showcase,
.contents,
.proof,
.delivery,
.offer,
.faq,
.final-cta {
  scroll-margin-top: 20px;
}

@media (min-width: 480px) {
  .primary-cta {
    width: fit-content;
    min-width: 320px;
  }
}

@media (min-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(100% - 64px, 1180px);
  }

  .announcement {
    font-size: 0.76rem;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .brand img {
    width: 184px;
  }

  .site-header__claim {
    display: block;
  }

  .hero__inner {
    min-height: calc(100vh - 104px);
    padding-top: 64px;
    padding-bottom: 88px;
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    grid-template-areas:
      "copy visual"
      "action visual";
    column-gap: 34px;
    row-gap: 24px;
  }

  .hero__copy {
    grid-area: copy;
    align-self: end;
    text-align: left;
  }

  .hero__action {
    grid-area: action;
    align-self: start;
    text-align: left;
  }

  .eyebrow,
  h1,
  .hero__lead,
  .primary-cta,
  .hero__assurance {
    margin-left: 0;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(3.4rem, 5.2vw, 5.15rem);
  }

  .hero__lead {
    max-width: 34rem;
    font-size: 1.08rem;
  }

  .hero__assurance {
    max-width: 34rem;
    justify-content: flex-start;
    font-size: 0.78rem;
  }

  .hero__visual {
    grid-area: visual;
    width: 112%;
    margin-left: -3%;
    margin-top: 0;
  }

  .hero__caption {
    right: 4%;
    bottom: -18px;
    padding: 10px 14px;
    font-size: 0.74rem;
  }

  .scroll-cue {
    padding: 8px 10px;
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-muted);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transform: translateX(-50%);
  }

  .scroll-cue svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .section {
    padding: 96px 0;
  }

  .section h2 {
    font-size: clamp(2.4rem, 4.2vw, 3.55rem);
  }

  .section-heading > p:last-child {
    font-size: 1.06rem;
  }

  .problem-grid {
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .problem-card {
    min-height: 230px;
    padding: 28px;
  }

  .problem-card h3 {
    margin-top: 76px;
  }

  .method__inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 70px;
  }

  .method-steps li {
    min-height: 90px;
  }

  .showcase__viewport {
    margin-top: 48px;
  }

  .showcase__set figure {
    width: 320px;
  }

  .showcase__set {
    gap: 22px;
    padding-right: 22px;
  }

  .guide-grid {
    margin-top: 50px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .guide-card img {
    width: 132px;
  }

  .guide-card:last-child {
    grid-column: 1 / -1;
  }

  .bonus-block {
    margin-top: 82px;
    padding: 44px;
  }

  .bonus-block__heading {
    max-width: 720px;
  }

  .bonus-grid {
    margin-top: 34px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .proof__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 72px;
  }

  .delivery-steps {
    max-width: 1140px;
    margin-top: 56px;
    grid-template-columns: repeat(5, 1fr);
  }

  .delivery-steps li {
    padding: 0 14px;
    display: block;
    text-align: center;
  }

  .delivery-steps li:not(:last-child)::after {
    width: calc(100% - 54px);
    height: 2px;
    top: 27px;
    bottom: auto;
    left: calc(50% + 27px);
    background: linear-gradient(90deg, #b7d8da, var(--gold-500));
  }

  .delivery-steps li > span {
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
  }

  .offer__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    align-items: center;
    gap: 60px;
  }

  .offer__copy img {
    width: min(105%, 660px);
    margin-left: -3%;
  }

  .offer-card {
    padding: 36px 34px 30px;
  }

  .faq__inner {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 72px;
  }

  .final-cta {
    padding: 96px 0;
  }
}

@media (min-width: 1180px) {
  .hero::before {
    left: -250px;
  }

  .hero::after {
    right: -180px;
  }

  .hero__visual {
    width: 118%;
    margin-left: -4%;
  }

  .guide-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }

  .guide-card,
  .guide-card:last-child {
    padding: 12px;
    display: block;
    grid-column: auto;
  }

  .guide-card img {
    width: 100%;
  }

  .guide-card > div {
    padding: 17px 4px 6px;
  }

  .guide-card h3 {
    min-height: 2.3em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .showcase__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .showcase__track {
    animation: none;
  }

  .showcase__set[aria-hidden="true"] {
    display: none;
  }
}
