@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --black: #050505;
  --off-black: #0c0c0c;
  --card: #111111;
  --border: rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);
  --white: #ffffff;
  --cream: #f5f0e8;
  --gold: #c9a96e;
  --gold-dim: rgba(201,169,110,0.15);
  --text: rgba(255,255,255,0.75);
  --text-dim: rgba(255,255,255,0.38);
  --blue: #3b5bdb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; z-index: 0;
}

.hero-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(59,91,219,0.06) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.kv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.06);
  padding: 6px 16px; border-radius: 20px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 40px;
}
.kv-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 52px;
  font-weight: 300;
}

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

.cta-group {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--black);
  background: var(--gold);
  padding: 14px 32px; border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #d4b07a;
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 400;
  color: var(--text);
  border: 1px solid var(--border-light);
  padding: 14px 32px; border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px; color: var(--text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
}

/* ── WHAT WE ARE ─────────────────────────── */
.statement {
  padding: 120px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.statement-inner {
  border-left: 1px solid var(--border-light);
  padding-left: 48px;
}

.s-label {
  font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold);
  margin-bottom: 24px;
}

.statement p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.4;
  color: var(--text);
  font-weight: 400;
  max-width: 760px;
}

.statement p strong {
  color: var(--white);
}

/* ── WHAT WE OFFER ────────────────────────── */
.offer {
  padding: 80px 80px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold);
  margin-bottom: 48px;
}

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

.offer-card {
  background: var(--card);
  padding: 36px 36px 32px;
  transition: background 0.2s;
}
.offer-card:hover { background: #141414; }

.offer-num {
  font-family: 'DM Serif Display', serif;
  font-size: 13px; color: var(--gold);
  margin-bottom: 16px; opacity: 0.7;
}

.offer-card h3 {
  font-size: 17px; font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.offer-card p {
  font-size: 13px; color: var(--text);
  line-height: 1.7; font-weight: 300;
}

/* ── WHO WE LOOK FOR ─────────────────────── */
.looking {
  padding: 80px 80px 120px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.looking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.looking-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.looking-left p {
  font-size: 14px; color: var(--text);
  line-height: 1.8; font-weight: 300;
}

.criteria {
  display: flex; flex-direction: column; gap: 20px;
}

.criterion {
  display: flex; gap: 16px; align-items: flex-start;
}

.criterion-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  margin-top: 7px;
}

.criterion-text { flex: 1; }
.criterion-text strong {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--white); margin-bottom: 4px;
}
.criterion-text span {
  font-size: 13px; color: var(--text);
  line-height: 1.6; font-weight: 300;
}

/* ── DOMAINS ────────────────────────────── */
.domains {
  padding: 0 80px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.domain-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px;
}

.domain-pill {
  font-size: 12px; font-weight: 400;
  border: 1px solid var(--border-light);
  padding: 8px 18px; border-radius: 20px;
  color: var(--text); background: transparent;
  transition: all 0.15s;
}
.domain-pill:hover {
  border-color: rgba(201,169,110,0.3);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── KRAFT PROOF ─────────────────────────── */
.proof {
  margin: 0 80px;
  max-width: calc(1100px - 160px);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: rgba(201,169,110,0.04);
  padding: 36px 40px;
  margin-bottom: 120px;
}

.proof-label {
  font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); margin-bottom: 14px;
}

.proof p {
  font-size: 15px; color: var(--text); line-height: 1.7;
  font-weight: 300; max-width: 680px;
}

.proof p strong { color: var(--white); font-weight: 500; }

.proof-stats {
  display: flex; gap: 48px; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.proof-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; color: var(--white);
}

.proof-stat-label {
  font-size: 11px; color: var(--text-dim);
  margin-top: 3px; font-weight: 300;
}

/* ── HOW IT WORKS ────────────────────────── */
.how {
  padding: 0 80px 120px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}

.step {
  background: var(--card);
  padding: 28px 24px;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px; color: var(--border-light);
  margin-bottom: 14px; line-height: 1;
}

.step h4 {
  font-size: 14px; font-weight: 500;
  color: var(--white); margin-bottom: 8px;
}

.step p {
  font-size: 12px; color: var(--text);
  line-height: 1.7; font-weight: 300;
}

/* ── FINAL CTA ───────────────────────────── */
.final-cta {
  min-height: 60vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 80px 32px;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}

.final-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,169,110,0.06) 0%, transparent 60%);
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.15; letter-spacing: -1px;
  color: var(--white); margin-bottom: 20px;
}

.final-cta h2 em { font-style: italic; color: var(--gold); }

.final-cta p {
  font-size: 15px; color: var(--text);
  max-width: 480px; margin: 0 auto 40px;
  line-height: 1.7; font-weight: 300;
}

.apply-note {
  font-size: 12px; color: var(--text-dim);
  margin-top: 20px; font-style: italic;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 80px;
  display: flex; align-items: center; justify-content: space-between;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 16px; color: var(--white);
}
.footer-logo span { color: var(--gold); }

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 12px; color: var(--text-dim);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-tagline {
  font-size: 11px; color: var(--text-dim);
  font-style: italic;
}

@media (max-width: 768px) {
  .statement, .offer, .looking, .domains, .how { padding-left: 24px; padding-right: 24px; }
  .proof { margin-left: 24px; margin-right: 24px; }
  .offer-grid { grid-template-columns: 1fr; }
  .looking-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .cta-group { flex-direction: column; align-items: center; }
  .proof-stats { gap: 28px; }
  .statement-inner { padding-left: 24px; }
}
