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

:root {
  --black: #0d0d0d;
  --white: #f5f2ed;
  --yellow: #f0b800;
  --yellow-dark: #c99800;
  --gray: #1a1a1a;
  --gray-mid: #2a2a2a;
  --gray-light: #888;
  --text-muted: #999;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,184,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-bird { width: 44px; height: 44px; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.08;
}

.logo-text span { color: var(--yellow); }

nav a.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--yellow);
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  transition: background 0.15s, transform 0.1s;
}

nav a.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.5rem 7rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,13,13,0.97) 38%, rgba(13,13,13,0.25) 100%),
    linear-gradient(to top, rgba(13,13,13,0.92) 0%, transparent 55%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(240,184,0,0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

.hero h1 em { font-style: normal; color: var(--yellow); }

.hero-sub {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: rgba(245,242,237,0.68);
  max-width: 480px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.6s 0.35s forwards;
}

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

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.45s forwards;
}

.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--yellow);
  padding: 0.95rem 2.2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
}

.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.hero-note { font-size: 0.88rem; color: var(--gray-light); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 0.65rem 0;
  position: relative;
  z-index: 2;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2.5rem;
  white-space: nowrap;
}

.ticker span::before { content: '★ '; }

/* ── SECTIONS ── */
.section { padding: 7rem 2.5rem; position: relative; }

.section::before {
  content: '';
  position: absolute;
  left: -15%;
  top: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,184,0,0.038) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section-inner { position: relative; z-index: 1; }

.section-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 0.97;
  text-transform: uppercase;
  max-width: 720px;
}

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

/* Problem layout */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}

.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--gray-mid);
}

.problem-card {
  padding: 2rem 2rem 1.75rem;
  background: var(--gray);
  border-bottom: 1px solid var(--gray-mid);
  position: relative;
  overflow: hidden;
}

.problem-card:last-child { border-bottom: none; }

.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,184,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-card:hover::before { opacity: 1; }

.problem-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: rgba(240,184,0,0.12);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.problem-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

.problem-image {
  position: sticky;
  top: 7rem;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
}

.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

.problem-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}

.problem-image-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(6px);
  border-radius: 3px;
  padding: 0.75rem 1rem;
}

.problem-image-caption p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.problem-image-caption span {
  font-size: 0.8rem;
  color: var(--yellow);
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 7rem 2.5rem;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle at top right, rgba(240,184,0,0.055) 0%, transparent 60%);
  pointer-events: none;
}

.how-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle at bottom left, rgba(240,184,0,0.035) 0%, transparent 60%);
  pointer-events: none;
}

.how-inner { position: relative; z-index: 1; }

.how-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 0.97;
  text-transform: uppercase;
  max-width: 700px;
}

.how-h2 span { color: var(--yellow); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--gray-mid);
}

.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gray-mid);
  position: relative;
}

.step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* ── RESULTS BAR ── */
.results-bar {
  background: var(--yellow);
  padding: 4.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.results-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.022) 20px,
    rgba(0,0,0,0.022) 21px
  );
  pointer-events: none;
}

.stat-wrap { position: relative; z-index: 1; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 6vw, 5rem);
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(0,0,0,0.52);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* ── OFFER ── */
.offer-section {
  padding: 7rem 2.5rem;
  position: relative;
}

.offer-section::before {
  content: '';
  position: absolute;
  right: -10%; top: 30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,184,0,0.042) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.offer-inner { position: relative; z-index: 1; }

.offer-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 0.97;
  text-transform: uppercase;
  max-width: 720px;
}

.offer-h2 em { font-style: normal; color: var(--yellow); }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 3.5rem;
  max-width: 920px;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
}

.offer-card {
  background: var(--gray);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.offer-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s;
}

.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,184,0,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.offer-card:hover { background: #202020; }
.offer-card:hover::before { transform: scaleY(1); }
.offer-card:hover::after { opacity: 1; }

.offer-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; position: relative; z-index: 1; }

.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.offer-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; position: relative; z-index: 1; }

/* ── FORM SECTION ── */
.form-section {
  padding: 7rem 2.5rem;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  left: 50%; top: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,184,0,0.048) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1040px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-left h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 0.93;
  text-transform: uppercase;
}

.form-left h2 em { font-style: normal; color: var(--yellow); }

.form-left p { margin-top: 1.5rem; color: var(--text-muted); font-size: 1rem; line-height: 1.75; }

.checklist { margin-top: 2rem; list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: '';
  width: 18px; height: 18px; min-width: 18px;
  background: var(--yellow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpolyline points='1,5 4.5,8.5 11,1' fill='none' stroke='%230d0d0d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

form { display: flex; flex-direction: column; gap: 0.9rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

form input,
form select,
form textarea {
  width: 100%;
  background: rgba(13,13,13,0.7);
  border: 1px solid #333;
  border-radius: 3px;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

form input::placeholder,
form textarea::placeholder { color: #555; }

form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  cursor: pointer;
}

form select option { background: #1a1a1a; }

form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240,184,0,0.08);
}

form textarea { resize: vertical; min-height: 110px; }

form button[type="submit"] {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  border: none;
  border-radius: 3px;
  padding: 1.05rem 2rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
  margin-top: 0.4rem;
}

form button[type="submit"]:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.form-disclaimer { font-size: 0.8rem; color: #555; text-align: center; margin-top: 0.25rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(13,13,13,0.5);
  border: 1px solid rgba(240,184,0,0.25);
  border-radius: 4px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.form-success p { color: var(--text-muted); font-size: 0.95rem; }

/* ── FOOTER ── */
footer {
  padding: 2.5rem;
  border-top: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p { font-size: 0.85rem; color: var(--gray-light); }

footer a { color: var(--gray-light); text-decoration: none; font-size: 0.85rem; transition: color 0.15s; }
footer a:hover { color: var(--yellow); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s, transform 0.55s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .problem-layout { grid-template-columns: 1fr; gap: 3rem; }
  .problem-image { display: none; }
}

@media (max-width: 860px) {
  .form-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--gray-mid); }
  .step:last-child { border-bottom: none; }
  .results-bar { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; padding: 3.5rem 1.5rem; }
}

@media (max-width: 640px) {
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 0.9rem 1.25rem; }
  .logo-bird { width: 36px; height: 36px; }
  .logo-text { font-size: 1.15rem; }
  .hero { padding: 0 1.25rem 4.5rem; }
  .section, .offer-section, .form-section { padding: 4.5rem 1.25rem; }
  .how-section { padding: 4.5rem 1.25rem; }
  .results-bar { padding: 3rem 1.25rem; }
  footer {
    padding: 2rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  footer div { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 500px) {
  .field-row { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .results-bar { grid-template-columns: 1fr 1fr; gap: 2rem 0.5rem; }
}
