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

:root {
  --bg:       #141414;
  --surface:  #1d1d1d;
  --text:     #f0ede8;
  --dim:      #7a7a74;
  --muted:    #b8b5af;
  --accent:   #d97706;
  --border:   #252525;
  --pad:      clamp(24px, 5vw, 80px);
  --max:      1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── HEADER / NAV ──────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

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

.logo-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

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

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link.active { color: var(--text); }

/* ── BUTTONS ──────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 13px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--bg);
  transition: opacity 0.15s;
  cursor: pointer;
}

.btn:hover { opacity: 0.85; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--dim);
  opacity: 1;
}

/* ── HERO ─────────────────────────────────────── */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) 64px;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.hero-text { flex: 1; }

.hero-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(54px, 7.5vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-photo-wrap {
  width: 380px;
  flex-shrink: 0;
}

.hero-photo {
  width: 100%;
  height: auto;
}

/* ── TICKER ──────────────────────────────────── */

.ticker-outer {
  overflow: hidden;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 15px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-outer:hover .ticker-track { animation-play-state: paused; }

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

.ticker-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.ticker-dot {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

/* ── SECTION WRAPPER ─────────────────────────── */

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.step {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--border);
}

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

.step:not(:first-child) { padding-left: 40px; }

.step-n {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--border);
  margin-bottom: 20px;
}

.step p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── ABOUT STRIP ─────────────────────────────── */

.about-strip {
  border-top: 1px solid var(--border);
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 620px;
}

/* ── FOOTER ──────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px var(--pad);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--dim);
  line-height: 1.8;
}

/* ── CONTACT PAGE ────────────────────────────── */

.contact-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad);
}

.page-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  border-top: 1px solid var(--border);
  padding-top: 56px;
  margin-bottom: 80px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}

.contact-value {
  font-size: 18px;
  color: var(--text);
  line-height: 1.5;
}

.contact-value a:hover { color: var(--muted); }

.contact-email-big {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 52px);
  letter-spacing: -0.02em;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  word-break: break-all;
}

/* ── PRIVACY PAGE ────────────────────────────── */

.privacy-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px var(--pad) 120px;
}

.privacy-wrap h1 {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.privacy-updated {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 56px;
}

.privacy-wrap h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 40px 0 12px;
}

.privacy-wrap p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.privacy-wrap a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.15s;
}

.privacy-wrap a:hover { border-color: var(--text); }

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .hero-photo-wrap {
    width: 100%;
    max-width: 360px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
  }

  .step:last-child { border-bottom: none; }
  .step:not(:first-child) { padding-left: 0; }

  .about-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .nav-links { gap: 20px; }
  .nav-link { font-size: 11px; letter-spacing: 0.08em; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
