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

:root {
  --bg: #0b0b0d;
  --bg-alt: #131316;
  --card: #17171b;
  --text: #f5f4f0;
  --muted: #9c988e;
  --accent: #c8262c;
  --accent-2: #7a1116;
  --on-accent: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --serif: "Fraunces", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

em { font-style: italic; color: var(--accent); font-family: var(--serif); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-primary:hover { transform: translateY(-2px); opacity: 0.92; }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* Nav */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(11, 11, 13, 0.75);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-color: var(--border);
}

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

.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

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

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

@media (max-width: 720px) {
  .nav-links { display: none; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lang-switch:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 32px 90px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle at 30% 30%, rgba(200, 38, 44, 0.4), transparent 65%),
              radial-gradient(circle at 70% 70%, rgba(122, 17, 22, 0.35), transparent 60%);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  will-change: transform;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .line { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Load-in animation (hero) */
.reveal-load {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--d, 0) * 0.1s);
}

.reveal-load.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll reveal (rest of page) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
}

.marquee-track span:nth-child(odd) { color: var(--text); }

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

/* Stats */
.stats { padding: 64px 32px; border-bottom: 1px solid var(--border); }

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* Section shared */
.section { padding: 80px 32px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 64px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.service-card {
  background: var(--card);
  padding: 40px 32px;
  transition: background 0.25s ease;
}

.service-card:hover { background: var(--bg-alt); }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 38, 44, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

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

/* Approach (niches -> one solution) */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.approach-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.approach-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.approach-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.approach-card strong,
.approach-solution strong {
  font-weight: 800;
  color: #fff;
}

.approach-connector {
  position: relative;
  height: 80px;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.approach-connector svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.approach-arrow {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: -20px;
}

.approach-solution {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.approach-solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
}

.approach-solution h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.approach-solution p {
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 0.95rem;
}

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

/* Results (performance visuals) */
.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.results-text .section-title { margin-bottom: 20px; }

.results-text p {
  color: var(--muted);
  line-height: 1.7;
}

.results-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: -1;
}

.stat-card-mini,
.chart-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.earnings-shot {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.earnings-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.stat-card-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.stat-card-mini-label { font-size: 0.82rem; color: var(--muted); }

.stat-card-mini-trend {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(200, 38, 44, 0.14);
  padding: 3px 10px;
  border-radius: 999px;
}

.stat-card-mini-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stat-card-mini-number {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sparkline { width: 90px; height: 32px; color: var(--accent); flex-shrink: 0; }

.stat-card-mini-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.stat-card-mini-item-value { font-weight: 700; font-size: 0.92rem; }
.stat-card-mini-item-label { font-size: 0.74rem; color: var(--muted); margin-top: 2px; }

.chart-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}

.chart-card-label { font-size: 0.82rem; color: var(--muted); }
.chart-card-number { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; flex-shrink: 0; }

.chart-svg { width: 100%; height: auto; display: block; margin-bottom: 20px; }

.chart-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text);
}

.chart-legend-item span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.chart-legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.chart-legend-dot.muted { background: var(--muted); opacity: 0.6; }

.results-caption {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
  font-style: italic;
}

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

@media (max-width: 480px) {
  .stat-card-mini-row { flex-wrap: wrap; row-gap: 12px; }
}

/* Account safety */
.safety-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.safety-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.safety-text .section-title { margin-bottom: 24px; }

.safety-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.safety-text strong { color: var(--text); }

.safety-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.safety-icon-wrap {
  position: relative;
  width: 72px;
  margin: 0 auto 20px;
}

.safety-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-icon svg { width: 26px; height: 26px; }

.safety-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
}

.safety-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 8px;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Funnel */
.funnel-section { background: var(--bg-alt); border-top: 1px solid var(--border); }

.funnel-inner { text-align: center; }

.funnel-inner .section-title { margin: 0 auto 16px; }

.funnel-intro {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 56px;
}

.funnel-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.funnel-progress {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  margin-bottom: 36px;
  overflow: hidden;
}

.funnel-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.funnel-step {
  display: none;
}

.funnel-step.active {
  display: block;
  animation: stepIn 0.4s ease;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.funnel-step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.step-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  margin-bottom: 16px;
  padding: 0;
}

.step-back:hover { color: var(--text); }

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 18px;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.option-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.option-card.selected {
  border-color: var(--accent);
  background: rgba(200, 38, 44, 0.14);
  color: var(--accent);
}

.funnel-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.funnel-form input,
.funnel-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.92rem;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease;
}

.funnel-form input:focus,
.funnel-form textarea:focus { border-color: var(--accent); }

.funnel-success {
  text-align: center;
  padding: 20px 0;
}

.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.funnel-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.funnel-success p { color: var(--muted); }

/* Footer */
footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}
