:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --panel: #171717;
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --accent: #ffd000;
  --danger: #ff3b3b;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0 env(safe-area-inset-right) 0 env(safe-area-inset-left);
  font-family: "Inter", Arial, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.45;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: linear-gradient(135deg, #ffffff 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: -1;
}

.container {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.section {
  padding: 2.25rem 0;
}

h1,
h2 {
  margin: 0 0 1rem;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(1.6rem, 4.8vw, 2.6rem);
}

p {
  margin: 0 0 1rem;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero {
  min-height: 0;
  padding: 1.25rem 0 2rem;
}

.hero-inner {
  display: grid;
  align-items: center;
  gap: 1.25rem;
}

.hero-content {
  text-align: center;
}

.bolt-line {
  width: 86px;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 1rem;
}

.subtitle {
  color: #e8e8e8;
  font-size: clamp(1rem, 2.7vw, 1.4rem);
  font-weight: 700;
}

.hook {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: min(72vw, 320px);
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid #262626;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0.95rem 1.35rem;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  min-height: 48px;
  line-height: 1.2;
}

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
  box-shadow: 0 10px 30px rgba(255, 208, 0, 0.28);
}

.btn-secondary {
  background: #fff;
  color: #080808;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.03);
}

.product-visual {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery img {
  display: block;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
}

.gallery-wide {
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: #0c0c0c;
  max-height: min(48vh, 260px);
}

.gallery-tall {
  width: min(88vw, 300px);
  max-height: min(72vh, 440px);
  margin: 0 auto;
  object-fit: contain;
  background: #0e0e0e;
}

.caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.benefits-list,
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li,
.specs-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #222;
  font-weight: 600;
}

.icon {
  color: var(--accent);
  margin-right: 0.5rem;
}

.specs-card,
.urgency-box {
  background: var(--panel);
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.reviews h2 {
  margin-bottom: 1.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.review-card {
  background: var(--panel);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
}

.review-text {
  margin: 0 0 0.65rem;
  color: #ececec;
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.5;
}

.review-author {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.videos {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 208, 0, 0.03) 50%, transparent 100%);
}

.videos h2 {
  text-align: center;
  margin-bottom: 1.15rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  justify-items: center;
}

.video-card {
  width: 100%;
  max-width: min(340px, 88vw);
  background: var(--panel);
  border: 1px solid #2f2f2f;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.video-embed {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 680px);
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  background: #080808;
}

.video-caption {
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  border-top: 1px solid #2a2a2a;
}

.thank-you {
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.thank-you-inner .bolt-line {
  margin: 0 auto 1rem;
}

.thank-you h1 {
  margin-bottom: 0.75rem;
}

.thank-you-lead {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.addon-weights h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.addon-lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  line-height: 1.45;
}

.addon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.addon-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid #333;
  background: var(--panel);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.addon-link:hover {
  border-color: var(--accent);
  background: rgba(255, 208, 0, 0.06);
  transform: translateY(-2px);
}

.addon-name {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.addon-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}

.checkout-card {
  text-align: left;
  border: 1px solid #3a2f00;
  box-shadow: 0 15px 45px rgba(255, 208, 0, 0.12);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
}

.checkout-title {
  text-align: center;
  margin-bottom: 0.35rem;
}

.frete-gratis-banner {
  display: block;
  text-align: center;
  margin: 0 0 0.65rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--accent);
  background: linear-gradient(
    135deg,
    rgba(255, 208, 0, 0.22) 0%,
    rgba(255, 149, 0, 0.12) 100%
  );
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  box-shadow: 0 0 28px rgba(255, 208, 0, 0.15);
}

.frete-gratis-banner strong {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.checkout-lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.35rem;
  line-height: 1.5;
}

.checkout-lead-muted {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6a6a6a;
  letter-spacing: 0.02em;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: start;
}

.payment-fieldset {
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 1rem 0.85rem;
  margin: 0;
  background: #111;
}

.fieldset-legend {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.04em;
  padding: 0 0.5rem;
  color: var(--text);
  font-size: 1rem;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid #333;
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.payment-option:last-child {
  margin-bottom: 0;
}

.payment-option:has(input:checked) {
  border-color: #ff9500;
  background: linear-gradient(
    155deg,
    rgba(255, 149, 0, 0.28) 0%,
    rgba(255, 208, 0, 0.18) 38%,
    rgba(26, 18, 6, 0.95) 100%
  );
  box-shadow:
    0 0 0 2px rgba(255, 160, 0, 0.55),
    0 10px 36px rgba(255, 120, 0, 0.18);
  opacity: 1;
  transform: scale(1.01);
}

.payment-option:has(input:not(:checked)) {
  border-color: #2c2c2c;
  background: #101010;
  opacity: 0.58;
}

.payment-option input {
  margin-top: 0.35rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.payment-option-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.payment-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}

.payment-detail {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.05rem;
}

.payment-hint {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.payment-tagline {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.payment-option:has(input:checked) .payment-tagline {
  color: #d4b84a;
}

.payment-tagline--free {
  color: #9ee89e !important;
}

.payment-option:has(input:checked) .payment-tagline--free {
  color: #b8ffb8 !important;
}

.summary-frete-gratis {
  color: #9ee89e;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0d0d0d;
  background: var(--accent);
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

.payment-detail--hero {
  font-size: clamp(1.45rem, 5vw, 1.95rem);
  color: var(--accent);
  text-shadow: 0 0 24px rgba(255, 208, 0, 0.15);
}

.payment-detail--soft {
  color: #9a8f5c;
  font-size: 0.95rem;
  font-weight: 800;
}

.payment-option:has(input:checked) .payment-detail--soft {
  color: var(--accent);
}

.frete-box {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #2c2c2c;
  background: #111;
}

.frete-label {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.frete-help {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.frete-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.frete-row input {
  flex: 1 1 140px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background: #1a1a1a;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}

.frete-row input::placeholder {
  color: #666;
}

.frete-row input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.btn-frete {
  flex: 0 0 auto;
  background: #252525;
  color: var(--text);
  border: 1px solid #444;
  box-shadow: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-frete:hover {
  background: #333;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.frete-msg {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  min-height: 1.35em;
}

.frete-msg.is-ok {
  color: #9ee89e;
}

.frete-msg.is-err {
  color: #ff8a8a;
}

.coupon-box {
  margin-bottom: 0.65rem;
}

.coupon-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.45rem;
  margin: 0;
  border: 1px solid #333;
  border-radius: 6px;
  background: #161616;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1.2;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.coupon-toggle:hover {
  color: var(--text);
  border-color: #555;
  background: #1c1c1c;
}

.coupon-toggle[aria-expanded="true"] {
  color: var(--accent);
  border-color: #4a4a4a;
}

.coupon-panel {
  margin-top: 0.55rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #2c2c2c;
  background: #111;
}

.coupon-panel[hidden] {
  display: none !important;
}

.coupon-label {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.coupon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: stretch;
}

.coupon-row input {
  flex: 1 1 120px;
  min-width: 0;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #3a3a3a;
  background: #1a1a1a;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  text-transform: uppercase;
}

.coupon-row input::placeholder {
  color: #666;
  text-transform: none;
}

.coupon-row input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.btn-coupon {
  flex: 0 0 auto;
  background: #252525;
  color: var(--text);
  border: 1px solid #444;
  box-shadow: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-coupon:hover {
  background: #333;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-coupon-remove {
  margin-top: 0.55rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}

.btn-coupon-remove:hover {
  color: #ff8a8a;
}

.coupon-msg {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  min-height: 1.3em;
}

.coupon-msg.is-ok {
  color: #9ee89e;
}

.coupon-msg.is-err {
  color: #ff8a8a;
}

.summary-discount[hidden] {
  display: none !important;
}

.summary-discount span:first-child {
  color: #c8e6c9;
  font-weight: 700;
  font-size: 0.88rem;
}

.summary-discount-value {
  color: #9ee89e !important;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  border: 1px solid #2c2c2c;
  border-radius: var(--radius);
  padding: 1.1rem;
  background: #0f0f0f;
}

.cart-summary-title {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.05em;
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 0.5rem;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cart-qty {
  color: var(--muted);
  font-weight: 800;
}

.summary-rows {
  border-top: 1px solid #2a2a2a;
  padding-top: 0.75rem;
}

.summary-previsao-block {
  padding: 0.55rem 0 0.65rem;
  margin: 0.15rem 0 0.35rem;
  border-bottom: 1px solid #252525;
}

.summary-previsao-block[hidden] {
  display: none !important;
}

.summary-previsao-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.summary-previsao-value {
  display: block;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #d6d6d6;
}

.summary-previsao-value strong {
  color: #eaeaea;
  font-weight: 800;
}

.summary-card-block[hidden] {
  display: none !important;
}

.summary-paymode-row span:last-child {
  color: #ffcc33;
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.summary-parcelas-below[hidden] {
  display: none !important;
}

.summary-parcelas-below {
  text-align: right;
  padding: 0.65rem 0 0.35rem;
  margin-top: 0.15rem;
  border-top: 1px solid #2a2a2a;
}

.summary-parcelas-below__lead {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8b8b8;
  line-height: 1.35;
}

.summary-parcelas-below__price {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  letter-spacing: 0.04em;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.2);
  line-height: 1.1;
}

#summary-subtotal-row[hidden] {
  display: none !important;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.95rem;
}

.summary-row span:last-child {
  font-weight: 800;
}

.summary-total {
  border-top: 1px solid #3a3a3a;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  font-size: 1.05rem;
}

.summary-total span:last-child {
  color: var(--accent);
  font-size: 1.2rem;
}

.summary-rows--focus-parcelas .summary-total {
  padding-top: 0.55rem;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  border-top-color: #2c2c2c;
}

.summary-rows--focus-parcelas .summary-total span:first-child {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.summary-rows--focus-parcelas .summary-total span:last-child {
  color: #7a7a7a;
  font-size: 0.92rem;
  font-weight: 700;
}

.summary-rows--focus-parcelas .summary-parcelas-below__price {
  font-size: clamp(1.75rem, 6vw, 2.35rem);
  text-shadow: 0 0 32px rgba(255, 208, 0, 0.32);
}

.summary-note {
  margin: 0.65rem 0 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.summary-note.is-hidden {
  display: none;
}

.btn-checkout {
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
}

.btn-checkout--blocked {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-checkout--blocked:hover {
  transform: none;
  filter: none;
}

.urgency-box {
  text-align: center;
  border-color: #552121;
  background: linear-gradient(180deg, #1c1313, #171717);
}

.urgency-box p:first-child {
  font-weight: 800;
  color: #ffcdcd;
}

.urgency-box p:last-child {
  color: #ff7a7a;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.final-cta {
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
}

.final-cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 599px) {
  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-content .btn {
    margin-top: 0.25rem;
  }
}

@media (min-width: 600px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 1.75rem 0 2.5rem;
    gap: 1.6rem;
  }

  .hero-image {
    width: min(380px, 42vw);
  }

  .gallery-wide {
    max-height: 300px;
  }

  .gallery-tall {
    width: min(340px, 42vw);
    max-height: 500px;
  }

  .review-text {
    font-size: 1.02rem;
  }
}

@media (min-width: 700px) {
  .section {
    padding: 4rem 0;
  }

  .gallery-wide {
    max-height: 340px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .videos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.75rem;
    align-items: start;
    justify-items: center;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-card {
    max-width: 260px;
  }

  .addon-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
    gap: 0.85rem;
  }

  .addon-link {
    min-height: 100%;
  }
}

@media (min-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (min-width: 980px) {
  .hero {
    min-height: 100vh;
    max-height: min(100vh, 900px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    width: 100%;
    align-items: center;
    min-height: min(78vh, 720px);
  }

  .hero-content {
    text-align: left;
    justify-self: center;
    width: min(100%, 26.5rem);
    padding-inline-end: clamp(0, 2vw, 1rem);
  }

  .bolt-line {
    margin-left: 0;
  }

  .hook {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image-wrap {
    justify-content: center;
  }

  .hero-image {
    width: min(440px, 38vw);
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-wide {
    max-height: 380px;
  }

  .gallery-tall {
    width: min(400px, 26vw);
    max-height: 560px;
  }

  .btn {
    width: auto;
    display: inline-block;
  }

  .final-cta {
    padding-bottom: 4rem;
  }
}
