.hero {
  max-width: var(--max);
  min-height: 0;
  margin: auto;
  padding: clamp(34px, 4vw, 52px) var(--pad) clamp(58px, 7vw, 82px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 48% 52% 62% 38% / 42% 38% 62% 58%;
  filter: blur(.2px);
  pointer-events: none;
}

.hero::before {
  width: min(42vw, 560px);
  aspect-ratio: 1;
  left: -18%;
  top: 7%;
  background: radial-gradient(circle at 62% 42%, rgba(49,105,133,.14), rgba(49,105,133,.035) 58%, transparent 59%);
  animation: drift-left 13s ease-in-out infinite alternate;
}

.hero::after {
  width: min(35vw, 470px);
  aspect-ratio: 1;
  right: -10%;
  top: -8%;
  background: radial-gradient(circle at 35% 55%, rgba(139,38,53,.11), rgba(139,38,53,.025) 60%, transparent 61%);
  animation: drift-right 15s ease-in-out infinite alternate;
}

.hero-copy {
  max-width: 900px;
  text-align: center;
}

.hero-copy::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, var(--wine), var(--blue));
}

.hero-copy .eyebrow { justify-content: center; }
.hero h1 {
  max-width: none;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.06;
  margin: 18px 0 17px;
}
.hero .intro { max-width: 720px; margin: 0 auto; }

.offer-card {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1.15fr .8fr .95fr;
  grid-template-areas: "benefits price action";
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(27,49,63,.13);
  animation: rise-in .8s .15s both ease-out;
}

.offer-price { grid-area: price; text-align: center; padding: 0 24px; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.offer-card > ul { grid-area: benefits; }
.offer-action { grid-area: action; }

.offer-card ul {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}

.offer-card .button { margin: 0; }
.offer-action { display: flex; flex-direction: column; gap: 10px; text-align: center; }
.offer-action small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.offer-label { margin-bottom: 8px; }
.old-price, .current-price { padding: 7px 0; justify-content: center; gap: 12px; }
.old-price { flex-direction: column; gap: 0; align-items: center; }
.old-price s { font-size: 20px; }
.current-price { flex-direction: column; gap: 4px; align-items: center; }
.current-price strong { font-size: 56px; }
.tax-note { margin: 9px 0 0; }

@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drift-left { to { transform: translate(7%, -3%) rotate(7deg); } }
@keyframes drift-right { to { transform: translate(-6%, 7%) rotate(-9deg); } }

@media (max-width: 900px) {
  .offer-card { max-width: 650px; grid-template-columns: 1fr 1fr; grid-template-areas: "benefits price" "action action"; }
  .offer-price { border-right: 0; }
  .offer-card ul { grid-template-columns: 1fr; }
  .hero { padding-top: 38px; }
}

@media (max-width: 620px) {
  .hero { gap: 28px; padding-top: 42px; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .offer-card { display: block; padding: 27px 22px; }
  .offer-price { border: 0; border-bottom: 1px solid var(--line); padding: 0 0 20px; }
  .offer-card ul { margin: 20px 0; }
  .offer-action { margin-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .offer-card { animation: none; }
}

body.reveal-ready .trust-strip,
body.reveal-ready .section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

body.reveal-ready .trust-strip.is-visible,
body.reveal-ready .section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-list article,
.fit-card,
.process li {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

@media (hover: hover) {
  .feature-list article:hover,
  .fit-card:hover,
  .process li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(27,49,63,.08);
    background: rgba(255,255,255,.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.reveal-ready .trust-strip,
  body.reveal-ready .section { opacity: 1; transform: none; transition: none; }
  .feature-list article, .fit-card, .process li { transition: none; }
}
