:root {
  --bg: #070709;
  --card: #0F0F14;
  --card-hover: #16161F;
  --card-2: #0B0B0E;
  --border: rgba(255, 255, 255, 0.08);
  --border-lt: rgba(255, 255, 255, 0.16);
  --accent: #FF4D00;
  --accent-glow: rgba(255, 77, 0, 0.35);
  --accent-dim: #CC3D00;
  --white: #F8F9FA;
  --gray-lt: #B0B5C1;
  --gray: #6C727F;
  --radius: 8px;
  --radius-lg: 16px;
  --maxw: 1200px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1;
  font-weight: 400;
}

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

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

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

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 8px var(--accent);
}

.o {
  color: var(--accent);
  background: linear-gradient(135deg, #FF7733, #FF4D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section {
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  padding: 15px 28px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6619, #FF4D00);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.35);
}

.btn-primary:hover {
  background: #FFF;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border-color: var(--border-lt);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(255, 77, 0, 0.08);
  color: #FFF;
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.15);
}

.btn-lg {
  font-size: 15.5px;
  padding: 18px 38px;
  border-radius: 10px;
}

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13.5px;
  color: var(--gray-lt);
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn-nav:hover {
  background: #FFF;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: 0.2s;
}

.nav-panel {
  display: none;
}

/* 1 HERO */
#hero {
  padding: 110px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/bg-hero.png') center right / cover no-repeat;
  opacity: 0.35;
  filter: contrast(1.1);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 30%, rgba(255, 77, 0, 0.15), transparent 50%),
              linear-gradient(180deg, rgba(7, 7, 9, 0.7) 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-lt);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-tag i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 77, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}

.hero h1 {
  font-size: clamp(42px, 5.2vw, 76px);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 0.96;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-lt);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-sub b {
  color: var(--white);
  font-weight: 500;
}

.hero-trust {
  font-size: 13.5px;
  color: var(--gray);
  margin-top: 22px;
  font-style: italic;
}

.hero-trust span {
  color: var(--white);
  font-style: normal;
}

/* HERO MEDIA FRAME */
.hero-media {
  position: relative;
}

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-lt);
  background: var(--card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 77, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.hero-card-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 0, 0.4);
}

.hero-card-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CRED MARQUEE */
#cred {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card-2);
  overflow: hidden;
  padding: 4px 0;
}

.cred-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 34s linear infinite;
  width: max-content;
}

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

@media (prefers-reduced-motion: reduce) {
  .cred-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 13.5px;
  color: var(--gray-lt);
  flex-shrink: 0;
}

.cred-item b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.03em;
}

.cred-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* SECTION SHELL */
.sec {
  padding: 108px 0;
}

.sec-head {
  max-width: 780px;
  margin-bottom: 56px;
}

.sec-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sec-head p {
  font-size: 17px;
  color: var(--gray-lt);
  font-weight: 300;
}

/* 2 TEASER LADDER */
#ladder {
  border-top: 1px solid var(--border);
  background: var(--card-2);
}

.ladder-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
}

.rung {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.rung::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: transparent;
  transition: background 0.2s;
}

.rung:hover {
  border-color: var(--border-lt);
  background: var(--card-hover);
  transform: translateX(6px);
}

.rung:hover::before {
  background: var(--accent);
}

.rung .rk {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}

.rung .rb {
  flex: 1;
}

.rung .rb h3 {
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.rung .rb p {
  color: var(--gray-lt);
  font-weight: 300;
}

.rung .rp {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.rung.r1 {
  padding: 42px 40px;
  border-color: rgba(255, 77, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.14), transparent 60%), var(--card);
  box-shadow: 0 0 30px rgba(255, 77, 0, 0.08);
}
.rung.r1::before { background: var(--accent); }
.rung.r1 .rk { font-size: 38px; }
.rung.r1 h3 { font-size: 38px; color: var(--white); }
.rung.r1 .rb p { font-size: 16px; }
.rung.r1 .rp { font-size: 30px; color: var(--accent); border-color: rgba(255, 77, 0, 0.3); }

.rung.r2 .rk { font-size: 32px; }
.rung.r2 h3 { font-size: 32px; }
.rung.r2 .rb p { font-size: 15px; }
.rung.r2 .rp { font-size: 26px; }

.rung.r3 .rk { font-size: 28px; }
.rung.r3 h3 { font-size: 28px; }
.rung.r3 .rb p { font-size: 14.5px; }
.rung.r3 .rp { font-size: 24px; }

.rung.r4 .rk { font-size: 24px; }
.rung.r4 h3 { font-size: 25px; }
.rung.r4 .rb p { font-size: 14px; }
.rung.r4 .rp { font-size: 22px; }

.rung.r5 { padding: 22px 32px; opacity: 0.85; }
.rung.r5 .rk { font-size: 20px; }
.rung.r5 h3 { font-size: 22px; }
.rung.r5 .rb p { font-size: 13.5px; color: var(--gray); }
.rung.r5 .rp { font-size: 16px; color: var(--gray); font-family: 'Poppins', sans-serif; font-weight: 500; }

/* 3 PROBLEM - 2x2 GRID LAYOUT */
#problem {
  background: radial-gradient(circle at 80% 20%, rgba(255, 77, 0, 0.08), transparent 50%),
              url('assets/bg-problem.png') center / cover no-repeat, var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-list {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 38px;
}

.pain {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pain::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s;
}

.pain:hover {
  border-color: rgba(255, 77, 0, 0.3);
  background: rgba(255, 77, 0, 0.03);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pain:hover::before {
  background: var(--accent);
}

.pain .pn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 0, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 77, 0, 0.25);
}

.pain p {
  font-size: 16px;
  color: var(--gray-lt);
  font-weight: 300;
  line-height: 1.6;
}

.pain p b {
  color: var(--white);
  font-weight: 500;
}

.pain-close {
  max-width: 100%;
  font-size: 18px;
  color: var(--white);
  font-weight: 300;
  line-height: 1.6;
  padding: 26px 32px;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.12), transparent);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-top: 1px solid rgba(255, 77, 0, 0.15);
  border-right: 1px solid rgba(255, 77, 0, 0.15);
  border-bottom: 1px solid rgba(255, 77, 0, 0.15);
}

.pain-close b {
  color: var(--accent);
  font-weight: 500;
}

/* 4 VSL */
#vsl {
  text-align: center;
}

.vsl-head {
  max-width: 680px;
  margin: 0 auto 38px;
}

.vsl-head h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vsl-head p {
  color: var(--gray-lt);
  font-weight: 300;
  font-size: 16.5px;
}

.vsl-frame {
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 16/9;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 77, 0, 0.15);
}

.vsl-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 0, 0.18), transparent 70%), #0A0A0E;
  cursor: pointer;
}

.vsl-play {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s, background 0.22s, box-shadow 0.22s;
  box-shadow: 0 0 30px var(--accent-glow);
}

.vsl-placeholder:hover .vsl-play {
  transform: scale(1.12);
  background: #FFF;
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.4);
}

.vsl-play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.vsl-placeholder span {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-lt);
  font-weight: 500;
}

.vsl-cta {
  margin-top: 40px;
}

/* 5 OFFERS STRUCTURED WITH PRODUCT PREVIEWS */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.offer {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer:hover {
  border-color: var(--border-lt);
  transform: translateY(-4px);
  background: var(--card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.offer-thumb {
  width: 100%;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--border-lt);
  background: var(--card-2);
}

.offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer:hover .offer-thumb img {
  transform: scale(1.04);
}

.offer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.offer h3 {
  font-size: 30px;
  text-transform: uppercase;
}

.offer .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  white-space: nowrap;
}

.offer .price small {
  font-size: 14px;
  color: var(--gray-lt);
  font-family: 'Poppins', sans-serif;
}

.offer p {
  font-size: 14.5px;
  color: var(--gray-lt);
  font-weight: 300;
  margin-bottom: 26px;
  flex: 1;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.offer-btns {
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.offer-btns .btn {
  flex: 1;
  padding: 14px 18px;
  font-size: 13.5px;
}

.offer.best {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(255, 77, 0, 0.16), transparent 60%), var(--card);
  box-shadow: 0 0 40px rgba(255, 77, 0, 0.12);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(255, 77, 0, 0.4);
}

.offer.quiet {
  background: var(--card-2);
}

.offer.quiet h3 {
  color: var(--gray-lt);
}

.offer.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 32px;
  align-items: center;
}

.offer.wide .offer-thumb {
  height: 100%;
  min-height: 200px;
  margin-bottom: 0;
}

.offer.wide-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 6 WHO */
#who {
  background: var(--card-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.who-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.who-photo {
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
  position: relative;
}

.who-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 20px rgba(255, 77, 0, 0.2);
  pointer-events: none;
}

.who-photo img {
  width: 100%;
  filter: grayscale(0.15) contrast(1.08);
  transition: filter 0.3s;
}

.who-photo:hover img {
  filter: grayscale(0) contrast(1);
}

.who-body h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.who-body p {
  font-size: 16px;
  color: var(--gray-lt);
  font-weight: 300;
  margin-bottom: 18px;
  line-height: 1.65;
}

.who-body p b {
  color: var(--white);
  font-weight: 500;
}

/* 7 FINAL CTA */
#final {
  padding: 128px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#final .fbg {
  position: absolute;
  inset: 0;
  background: url('assets/bg-cta.png') center / cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}

#final::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 0, 0.18), var(--bg) 80%);
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.final-inner h2 {
  font-size: clamp(44px, 7vw, 92px);
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 0.95;
}

.final-inner p {
  font-size: 18px;
  color: var(--gray-lt);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 36px;
}

.final-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 18px;
  font-style: italic;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 44px;
  background: #040406;
}

.ft-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ft-tag {
  max-width: 340px;
}

.ft-tag .nav-logo {
  font-size: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.ft-tag p {
  font-size: 13.5px;
  color: var(--gray);
  font-weight: 300;
}

.ft-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.ft-links a {
  font-size: 13.5px;
  color: var(--gray-lt);
  transition: color 0.2s;
}

.ft-links a:hover {
  color: var(--accent);
}

.ft-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-social a {
  font-size: 12.5px;
  color: var(--gray);
  transition: color 0.2s;
}

.ft-social a:hover {
  color: var(--white);
}

.ft-copy {
  font-size: 12.5px;
  color: var(--gray);
}

/* MOBILE STICKY & RESPONSIVE BREAKPOINTS */
.mob-sticky { display: none; }

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-media {
    max-width: 540px;
    margin: 0 auto;
  }

  .offer.wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .who-grid { grid-template-columns: 1fr; gap: 36px; }
  .who-photo { max-width: 360px; }
  .offers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pain-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links, nav .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  
  .nav-panel {
    display: block;
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 28px 26px;
    transform: translateY(-120%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 55;
  }
  
  .nav-panel.open { transform: none; }
  .nav-panel a { display: block; font-size: 16px; color: var(--white); padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-panel .btn-nav { display: block; text-align: center; margin-top: 16px; padding: 14px; background: var(--accent); color: #000; border-radius: var(--radius); font-weight: 700; }
  
  .sec { padding: 76px 0; }
  #hero { padding: 76px 0 64px; }
  
  .hero-bg::after { background: linear-gradient(180deg, rgba(7, 7, 9, 0.6), var(--bg) 80%); }
  .rung { flex-wrap: wrap; gap: 12px 18px; padding: 26px 24px !important; }
  .rung .rp { width: 100%; text-align: center; }
  .offer-btns { flex-direction: column; }
  
  .mob-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(7, 7, 9, 0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  }
  .mob-sticky a {
    display: block;
    text-align: center;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 14.5px;
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--accent-glow);
  }
  
  body { padding-bottom: 78px; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}