/* ============================================================
   Venturutopia — design system
   Black / Gold / White / Silver + Ember (event accent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Striped Tiger';
  src: url('../assets/fonts/StripedTiger.otf') format('opentype');
  font-display: swap;
}

:root {
  --black: #08090a;
  --black-2: #121316;
  --black-3: #1b1c20;
  --line: rgba(255, 255, 255, 0.09);

  --white: #f6f5f2;
  --silver: #a7abb4;
  --silver-dim: #6f7480;

  --gold: #cba135;
  --gold-light: #e9cd82;
  --gold-dim: #8a6f2a;

  --ember: #d9642c;
  --ember-light: #f0895a;

  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-tiger: 'Striped Tiger', 'Sora', sans-serif;

  --container: 1180px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}
.eyebrow.ember { color: var(--ember-light); }
.eyebrow.ember::before { background: var(--ember); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

p { color: var(--silver); max-width: 62ch; }
p.lede { font-size: 1.15rem; color: #cfd2d8; }

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.gold { color: var(--gold-light); }
.ember-text { color: var(--ember-light); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #14110a;
  box-shadow: 0 8px 24px -8px rgba(203, 161, 53, 0.55);
}
.btn-gold:hover { box-shadow: 0 10px 30px -8px rgba(203, 161, 53, 0.75); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: rgba(246, 245, 242, 0.28);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-ember {
  background: linear-gradient(135deg, var(--ember-light), var(--ember));
  color: #1a0d06;
  box-shadow: 0 8px 24px -8px rgba(217, 100, 44, 0.55);
}
.btn-ember:hover { box-shadow: 0 10px 30px -8px rgba(217, 100, 44, 0.75); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--silver); border-color: var(--line); }
.btn-ghost:hover { color: var(--white); border-color: var(--silver-dim); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.01em; }
.brand img { width: 34px; height: 34px; }
.brand span.dim { color: var(--silver); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--silver);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--black-2);
    padding: 20px 24px 26px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open .nav-links a::after { display: none; }
}

/* ---------- hero ---------- */
.hero {
  padding: 110px 0 100px;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(203, 161, 53, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 0%, rgba(217, 100, 44, 0.10), transparent 55%),
    var(--black);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: 20px; }
.hero p.lede { margin-bottom: 34px; }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--black-3), var(--black-2));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-art img { width: 46%; opacity: 0.96; filter: drop-shadow(0 20px 60px rgba(203,161,53,0.25)); }
.hero-art::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 34px);
}

/* ---------- stat / pillar cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1080px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(203,161,53,0.35); transform: translateY(-2px); }

.pillar-card { padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.pillar-card .icon-badge { margin-bottom: 6px; }
.pillar-card h3 { font-size: 1.6rem; }
.pillar-card .btn { margin-top: 10px; align-self: flex-start; }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(203,161,53,0.18), rgba(203,161,53,0.04));
  border: 1px solid rgba(203,161,53,0.3);
  font-size: 1.4rem;
}
.icon-badge.ember { background: linear-gradient(135deg, rgba(217,100,44,0.2), rgba(217,100,44,0.05)); border-color: rgba(217,100,44,0.35); }

section.section { padding: 96px 0; }
section.section.tight { padding: 70px 0; }
section.alt { background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  border: 1px solid var(--line);
  color: var(--silver);
}
.pill.gold { color: var(--gold-light); border-color: rgba(203,161,53,0.4); background: rgba(203,161,53,0.08); }
.pill.ember { color: var(--ember-light); border-color: rgba(217,100,44,0.4); background: rgba(217,100,44,0.08); }
.pill.win { color: #1a0d06; background: linear-gradient(135deg, var(--gold-light), var(--gold)); border: none; }

/* ---------- feature list ---------- */
.feature-item { display: flex; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); }
.feature-item:first-child { border-top: none; }
.feature-item .num { font-family: var(--font-display); font-weight: 700; color: var(--gold-dim); font-size: 1rem; padding-top: 3px; width: 30px; flex-shrink: 0; }
.feature-item h4 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-item p { font-size: 0.95rem; }

/* ---------- timeline ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1.5px; background: linear-gradient(var(--gold), var(--line)); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -30px; top: 4px; width: 11px; height: 11px; border-radius: 50%; background: var(--black); border: 2px solid var(--gold); }
.timeline-item .tag { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; display: block; }

/* ---------- quote ---------- */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 26px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin: 10px 0;
}
.quote-block cite { display: block; margin-top: 12px; font-family: var(--font-body); font-style: normal; font-size: 0.9rem; color: var(--silver-dim); }

/* ---------- forms ---------- */
.form-card { background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--silver); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.82rem; color: var(--silver-dim); margin-top: 16px; }
.form-status { font-size: 0.88rem; margin-top: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--gold-light); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 32px; background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--silver); font-size: 0.92rem; transition: color 0.15s ease; }
.footer-grid ul li a:hover { color: var(--gold-light); }
.footer-brand p { font-size: 0.9rem; margin: 16px 0 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: var(--silver-dim); }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  transition: all 0.15s ease;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- misc ---------- */
.divider { height: 1px; background: var(--line); margin: 0; }

.avatar-mono {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--black-3), var(--black));
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.avatar-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.tiger-word {
  font-family: var(--font-tiger);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
}

.cta-banner {
  border-radius: 22px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(203,161,53,0.14), rgba(217,100,44,0.08)), var(--black-2);
  border: 1px solid rgba(203,161,53,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { margin: 0; }

.photo-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black-2);
}
.photo-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.photo-rotator img.active { opacity: 1; }
.photo-rotator-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.photo-rotator-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}
.photo-rotator-dots span.active { background: var(--gold); transform: scale(1.25); }

.coming-soon-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  padding: 3px 9px;
  margin-left: 8px;
  vertical-align: middle;
}

.mono-tag { font-family: var(--font-display); font-size: 0.78rem; color: var(--silver-dim); letter-spacing: 0.04em; }

.li-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--silver);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px 5px 10px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.li-link:hover { color: var(--gold-light); border-color: rgba(203,161,53,0.4); }

@media (max-width: 640px) {
  .cta-banner { padding: 38px 28px; flex-direction: column; align-items: flex-start; }
  section.section { padding: 64px 0; }
  .form-card { padding: 28px; }
}
