:root {
  --bg: #1c140f;
  --bg-alt: #261b14;
  --ink: #f6ece0;
  --ink-dim: #c3b2a0;
  --gold: #e08a3c;
  --gold-bright: #f2a85c;
  --red: #e0584a;
  --green: #4cba80;
  --line: rgba(255,255,255,0.09);
  --radius: 16px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: url('assets/pattern.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 1100px 1100px;
  background-attachment: fixed;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }
.center { text-align: center; }

.eyebrow {
  display: block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1304;
  box-shadow: 0 8px 24px rgba(217,164,65,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217,164,65,0.45); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; text-align: center; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28,20,15,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.brand { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--ink); text-decoration: none; }
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--ink-dim); text-decoration: none; font-weight: 500; font-size: 15px; transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }

.hero { position: relative; padding: 120px 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(224,138,60,0.18), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(242,168,92,0.20), transparent 50%),
    url('assets/pattern.svg');
  background-size: auto, auto, 900px 900px;
  background-position: 0 0, 0 0, right -150px top -100px;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero h1 { font-size: clamp(32px, 5vw, 54px); margin-bottom: 24px; }
.highlight { color: var(--gold-bright); }
.hero-sub { font-size: 19px; color: var(--ink-dim); max-width: 680px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 760px;
}
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 28px; color: var(--gold-bright); }
.hero-stats span { color: var(--ink-dim); font-size: 14px; }
.footnote { color: var(--ink-dim); font-size: 12px; margin-top: 20px; opacity: 0.7; }

.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: clamp(26px, 3.6vw, 38px); max-width: 760px; margin: 0 auto 18px; }
.section-sub { color: var(--ink-dim); font-size: 17px; max-width: 640px; margin: 0 auto 56px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.card-num { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--gold); margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 12px; }
.card p { color: var(--ink-dim); font-size: 15px; }

.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.step { display: flex; gap: 20px; padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,0.03); border: 1px solid var(--line); }
.step-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1304;
  font-family: var(--font-head);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--ink-dim); font-size: 15px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.panel { border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); background: var(--bg-alt); }
.panel h3 { font-size: 19px; margin-bottom: 18px; }
.panel-highlight {
  border-color: rgba(217,164,65,0.4);
  background: linear-gradient(180deg, rgba(217,164,65,0.08), rgba(217,164,65,0.02));
}
.list-bad li, .list-good li {
  list-style: none;
  padding-left: 26px;
  position: relative;
  margin-bottom: 14px;
  color: var(--ink-dim);
  font-size: 15px;
}
.list-bad li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.list-good li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.case-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.case-video {
  position: relative;
  height: 220px;
  background:
    radial-gradient(circle at 50% 42%, rgba(242,168,92,0.22), transparent 60%),
    #2c2018;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.case-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.case-video:hover .play-btn { transform: scale(1.06); }
.play-btn svg { margin-left: 3px; }
.play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}
.case-content { padding: 28px; }
.case-tag {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
.case-content h3 { font-size: 19px; margin-bottom: 12px; }
.case-desc {
  color: var(--ink-dim);
  font-size: 15px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.case-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gold-bright);
}
.case-stats span { color: var(--ink-dim); font-size: 13px; }

.section-dark {
  background: linear-gradient(135deg, #f2a85c, #e08a3c 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark .eyebrow { color: #3a2410; }
.section-dark h2 { color: #2b1a0a; }
.section-dark .section-sub { color: rgba(43,26,10,0.85); }
.stakes h2 { max-width: 800px; margin: 0 auto 18px; }
.stakes .section-sub { max-width: 700px; }

.offer-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
}
.lead-form { margin-top: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.lead-form input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
}
.lead-form input::placeholder { color: var(--ink-dim); }
.lead-form input:focus { outline: none; border-color: var(--gold); }
.form-note { text-align: center; color: var(--ink-dim); font-size: 14px; margin-top: 18px; }
.form-note strong { color: var(--gold-bright); }

.footer { border-top: 1px solid var(--line); padding: 56px 0 28px; background: var(--bg-alt); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.footer-inner p { color: var(--ink-dim); font-size: 14px; margin-top: 8px; max-width: 320px; }
.footer-contact { text-align: right; }
.footer-contact a { color: var(--ink-dim); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; color: var(--ink-dim); font-size: 13px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .grid-3, .grid-2, .steps, .case-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .offer-box { padding: 32px 24px; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
}