/* ========================================================================
   GUANDANELLI IMPORTS — CAMISETA DE TIME POR R$50
   Landing page. Dark premium + esportivo agressivo.
   ======================================================================== */

:root {
  --bg: #08090b;
  --bg-2: #0e1014;
  --surface: #14161c;
  --surface-2: #1a1d24;
  --line: #23262e;
  --line-bright: #2e333d;
  --text: #f4f5f7;
  --muted: #8a8f9a;
  --muted-2: #5e636e;
  --blue: #2a6496;
  --blue-bright: #3d8ed1;
  --blue-glow: rgba(61, 142, 209, 0.45);
  --red: #d63a44;
  --bone: #e9e3d4;

  --font-display: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  --font-condensed: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --container: 1280px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Subtle noise overlay across page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ========================================================================
   TYPOGRAPHY UTILITIES
   ======================================================================== */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.condensed {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.eyebrow.bone { color: var(--bone); }
.eyebrow.muted { color: var(--muted); }

.section-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--blue-bright);
  letter-spacing: 0.08em;
}

.section-label {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-label .num {
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 16px;
}

/* ========================================================================
   NAV
   ======================================================================== */

.nav {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--blue);
  font-family: var(--font-display);
  font-size: 24px;
  color: white;
  letter-spacing: -.02em;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-tag {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-top: 3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-right .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-right .live::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ========================================================================
   HERO
   ======================================================================== */

.hero {
  position: relative;
  padding: 80px 0 110px;
  overflow: hidden;
  isolation: isolate;
}

/* gigantic stencil 50 watermark */
.hero-watermark {
  position: absolute;
  right: -80px;
  top: 40px;
  font-family: var(--font-display);
  font-size: clamp(420px, 60vw, 880px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(61, 142, 209, 0.13);
  z-index: -1;
  user-select: none;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 7px 14px 7px 7px;
  border: 1px solid var(--line-bright);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-tag .badge {
  background: var(--blue);
  color: white;
  padding: 3px 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 8.2vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--blue-bright);
}

.hero h1 .strike {
  position: relative;
  display: inline-block;
  color: var(--muted-2);
  font-size: 0.55em;
  font-weight: 400;
  margin-right: 0.18em;
  vertical-align: 0.42em;
}

.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: 50%;
  height: 4px;
  background: var(--red);
  transform: rotate(-7deg);
  transform-origin: center;
}

.hero-sub {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 40px;
}

.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Pulsing primary CTA */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 32px;
  background: var(--blue);
  color: white;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: background 0.18s ease, transform 0.18s ease;
}

.cta:hover { background: var(--blue-bright); transform: translateY(-1px); }
.cta:active { transform: translateY(0); }

.cta .arrow {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}
.cta .arrow svg { width: 100%; height: 100%; }

.cta.pulse::before {
  content: "";
  position: absolute;
  inset: -1px;
  clip-path: inherit;
  background: var(--blue-bright);
  z-index: -1;
  animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(1.06); opacity: 0; }
  100% { transform: scale(1.06); opacity: 0; }
}

.cta-small {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-proof-stars {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text);
}

.stars { color: #f5b800; letter-spacing: 1px; font-size: 14px; }

.hero-proof-count {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-proof-count b { color: var(--text); font-weight: 800; }

/* Hero right column — pricing/jersey card */
.hero-card {
  position: relative;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, var(--blue) 50%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-card-corner {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  color: white;
  letter-spacing: 0.05em;
  z-index: 1;
}

.hero-card-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-card-num {
  font-family: var(--font-display);
  font-size: 220px;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0 0 6px;
  display: flex;
  align-items: flex-start;
}

.hero-card-num .currency {
  font-size: 56px;
  color: var(--muted);
  margin: 18px 8px 0 0;
  font-weight: 400;
}

.hero-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

.hero-card-foot .l {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

.hero-card-foot .l b { color: var(--text); }

.hero-card-foot .r {
  text-align: right;
  font-family: var(--font-condensed);
  font-weight: 800;
  color: var(--text);
}

.hero-card-foot .r .from {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-card-foot .r .price {
  font-size: 28px;
  letter-spacing: 0;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

/* ========================================================================
   MARQUEE
   ======================================================================== */

.marquee {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: white;
  text-transform: uppercase;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  display: inline-block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================================================================
   SECTIONS — common
   ======================================================================== */

section { position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.012em;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.section-head h2 .accent { color: var(--blue-bright); }

.section-head .lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 520px;
}

/* ========================================================================
   PAIN
   ======================================================================== */

.pain { padding: 120px 0 100px; background: var(--bg); border-top: 1px solid var(--line); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pain-card {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.2s ease;
}
.pain-card:last-child { border-right: 0; }
.pain-card:hover { background: var(--surface); }

.pain-card .pain-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-bright);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.pain-card:hover .pain-num {
  -webkit-text-stroke-color: var(--blue);
}

.pain-card h3 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--text);
}

.pain-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.pain-bottom {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.pain-bottom em {
  font-style: normal;
  color: var(--blue-bright);
}

/* ========================================================================
   MODULES
   ======================================================================== */

.modules {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  position: relative;
}

.modules-watermark {
  position: absolute;
  left: -60px;
  bottom: -120px;
  font-family: var(--font-display);
  font-size: 480px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.modules-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.module-row {
  display: grid;
  grid-template-columns: 100px 1fr 200px 60px;
  gap: 40px;
  align-items: center;
  padding: 32px 16px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.module-row:hover {
  background: var(--surface);
}

.module-row .m-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--blue-bright);
  letter-spacing: -0.02em;
}

.module-row .m-body h3 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--text);
}

.module-row .m-body p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 620px;
}

.module-row .m-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

.module-row .m-meta b { color: var(--text); font-weight: 800; font-size: 13px; }

.module-row .m-arrow {
  justify-self: end;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--muted-2);
  transition: transform 0.2s ease, color 0.2s ease;
}

.module-row:hover .m-arrow { color: var(--blue-bright); transform: translateX(4px); }

/* ========================================================================
   AUDIENCE
   ======================================================================== */

.audience { padding: 120px 0; border-top: 1px solid var(--line); }

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

.audience-card {
  position: relative;
  padding: 28px 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.audience-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--blue-bright);
  transition: height 0.3s ease;
}

.audience-card:hover::before { height: 100%; }

.audience-card .a-jersey {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}

.audience-card .jersey-num {
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 0.85;
  color: var(--text);
  letter-spacing: -0.03em;
}

.audience-card .jersey-tag {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-bright);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.audience-card h3 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--text);
}

.audience-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */

.testimonials {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

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

.testimonial {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.6;
  color: var(--blue);
  margin-bottom: 16px;
  user-select: none;
}

.testimonial blockquote {
  margin: 0 0 28px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
  flex: 1;
}

.testimonial blockquote em {
  font-style: normal;
  color: var(--blue-bright);
  font-weight: 600;
}

.testimonial .stars { margin-bottom: 14px; font-size: 15px; }

.testimonial .person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial .avatar {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--blue-bright);
  border: 1px solid var(--line-bright);
}

.testimonial .person-info b {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.testimonial .person-info span {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========================================================================
   GUARANTEE
   ======================================================================== */

.guarantee {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.guarantee-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.guarantee-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
}

.seal {
  position: relative;
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.seal::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--blue);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.seal-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.seal-inner .num {
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 0.85;
  color: var(--text);
  letter-spacing: -0.03em;
}

.seal-inner .label {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.guarantee-body h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.012em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.guarantee-body h3 .accent { color: var(--blue-bright); }

.guarantee-body p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
}

.guarantee-body p strong { color: var(--text); font-weight: 600; }

/* ========================================================================
   FINAL OFFER
   ======================================================================== */

.offer {
  padding: 120px 0 140px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: "OFERTA";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 28vw;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.offer-head {
  text-align: center;
  margin-bottom: 60px;
}

.offer-head .eyebrow { margin-bottom: 16px; display: block; }

.offer-head h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.012em;
  margin: 0;
  text-transform: uppercase;
}

.offer-head h2 .accent { color: var(--blue-bright); }

.offer-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: var(--blue);
}

/* corner stamp */
.offer-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: var(--red);
  color: white;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.offer-left {
  padding: 44px 40px;
  border-right: 1px solid var(--line);
}

.offer-left-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.offer-product {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.offer-pricing {
  margin-bottom: 28px;
}

.offer-old {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 22px;
  color: var(--muted);
  position: relative;
  display: inline-block;
}

.offer-old::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 3px;
  background: var(--red);
  transform: rotate(-6deg);
}

.offer-new-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 4px;
}

.offer-new {
  font-family: var(--font-display);
  font-size: 116px;
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: var(--text);
}

.offer-new .currency {
  font-size: 32px;
  color: var(--muted);
  vertical-align: 70px;
  margin-right: 4px;
  font-weight: 400;
}

.offer-pay {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer-pay b { color: var(--text); font-size: 13px; }

.offer-pay-row { display: flex; align-items: center; gap: 12px; }

.offer-pay-row .pay-tag {
  background: var(--blue);
  color: white;
  padding: 4px 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.offer-right {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}

.offer-right-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
}

.bonus-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.bonus-list li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.bonus-list li:last-child { border-bottom: 0; }

.bonus-list .check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.bonus-list .b-text b {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.bonus-list .b-text span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.bonus-list .b-price {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  white-space: nowrap;
  margin-top: 4px;
}

.offer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}

.offer-total .lbl {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer-total .val {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
}

.offer-total .val s { color: var(--muted-2); text-decoration-color: var(--red); margin-right: 12px; }

/* big CTA */
.offer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 32px;
  background: var(--blue);
  color: white;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: background 0.18s ease;
  position: relative;
}

.offer-cta:hover { background: var(--blue-bright); }

.offer-cta .arrow { display: inline-grid; place-items: center; width: 28px; height: 28px; }

.offer-cta-wrap { grid-column: 1 / -1; padding: 0 40px 44px; }

.offer-foot {
  grid-column: 1 / -1;
  padding: 20px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

.offer-foot .lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ========================================================================
   FOOTER
   ======================================================================== */

footer {
  padding: 50px 0 60px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-meta {
  font-size: 12px;
  color: var(--muted-2);
  max-width: 540px;
  line-height: 1.5;
  text-align: right;
}

/* ========================================================================
   STICKY BOTTOM CTA
   ======================================================================== */

.stickybar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-bright);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.stickybar.show { transform: translateY(0); }

.stickybar .sb-left {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stickybar .sb-name {
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.12em;
}

.stickybar .sb-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
}

.stickybar .sb-new {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.stickybar .cta {
  padding: 14px 22px;
  font-size: 14px;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid .pain-card:nth-child(2) { border-right: 0; }
  .pain-grid .pain-card:nth-child(1),
  .pain-grid .pain-card:nth-child(2) { border-bottom: 1px solid var(--line); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .module-row { grid-template-columns: 70px 1fr; gap: 24px; }
  .module-row .m-meta, .module-row .m-arrow { display: none; }
  .module-row .m-num { font-size: 48px; }
  .module-row .m-body h3 { font-size: 22px; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-left { border-right: 0; border-bottom: 1px solid var(--line); }
  .guarantee-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 30px; justify-items: center; text-align: center; }
  .guarantee-body p { margin: 0 auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 50px 0 70px; }
  .hero-grid { padding: 0 20px; }
  .hero-card-num { font-size: 160px; }
  .hero-card-num .currency { font-size: 40px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-grid .pain-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .pain-grid .pain-card:last-child { border-bottom: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .nav-right .live, .nav-right .pipe { display: none; }
  .marquee-track { font-size: 22px; gap: 32px; }
  .offer-left, .offer-right, .offer-cta-wrap { padding-left: 24px; padding-right: 24px; }
  .offer-foot { padding: 16px 24px; }
  .offer-new { font-size: 92px; }
  .stickybar .sb-name { display: none; }
  .stickybar { padding: 12px 16px; gap: 12px; }
  .stickybar .cta { padding: 12px 18px; font-size: 13px; }
}