/* ── RESET & ROOT ────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #070707;
  --bg2:    #0f0f0f;
  --fg:     #f2f2f2;
  --muted:  #9a9a9a;
  --gold:   #d4a84b;
  --gold2:  #f0c96d;
  --line:   #1e1e1e;
  --card:   #111111;
  --ff-ui:  'Inter', system-ui, -apple-system, Arial, sans-serif;
  --ff-dis: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--ff-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ── LAYOUT ──────────────────────────── */
.wrap { width: min(1100px, 90vw); margin-inline: auto; }

/* ── NAV ─────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,7,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1100px, 90vw);
  margin-inline: auto;
  padding: 14px 0;
}
.nav-brand {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  padding: 8px 14px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold); color: #1a1100 !important; }

/* ── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: radial-gradient(ellipse 900px 600px at 70% 0%, #2a1c08 0%, #070707 55%);
}
.hero-inner {
  width: min(1100px, 90vw);
  margin-inline: auto;
  max-width: 780px;
}
.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--ff-dis);
  font-size: clamp(38px, 8vw, 84px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--fg); font-weight: 600; }

/* ── BUTTONS ─────────────────────────── */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-gold {
  background-color: var(--gold);
  color: #1a1100;
  border: 1px solid var(--gold);
}
.btn-gold:hover { background-color: var(--gold2); border-color: var(--gold2); }
.btn-outline {
  background-color: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--muted); }

/* ── SECTIONS ────────────────────────── */
.section { padding: 96px 0; }
.section-dark { background-color: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-header { margin-bottom: 48px; }
.label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-dis);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  max-width: 640px;
  margin-top: 16px;
  line-height: 1.65;
}

/* ── CARDS ───────────────────────────── */
.cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.card {
  background-color: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.card:hover { border-color: #333; }
.card-featured { border-color: rgba(212,168,75,0.3); }
.card-featured:hover { border-color: var(--gold); }
.card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,75,0.1);
  border: 1px solid rgba(212,168,75,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.card-badge-dim { color: var(--muted); background: rgba(255,255,255,0.04); border-color: var(--line); }
.card-title {
  font-family: var(--ff-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.card-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* ── AI FRAMES ───────────────────────── */
.frames-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-bottom: 32px;
}
.frames-grid img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
  transition: opacity 0.2s, transform 0.2s;
}
.frames-grid img:hover { opacity: 0.85; transform: scale(1.02); }
.frames-cta { text-align: center; }

/* ── SPLIT ───────────────────────────── */
.section-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-visual { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pill-card {
  width: 100%;
  max-width: 300px;
  background-color: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pill-icon { font-size: 24px; }
.pill-card strong { font-size: 16px; font-weight: 700; color: var(--fg); }
.pill-card span { font-size: 13px; color: var(--muted); }
.pill-divider { font-size: 22px; color: var(--line); font-weight: 700; }

/* ── PRESS ───────────────────────────── */
.press-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.press-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s;
}
.press-item:hover { opacity: 0.75; }
.press-source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 72px;
}
.press-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  flex: 1;
}
.press-arrow { font-size: 16px; color: var(--muted); }

/* ── FOOTER ──────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-copy {
  font-size: 12px;
  color: #555;
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .section-split { grid-template-columns: 1fr; gap: 40px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .frames-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .btn { font-size: 13px; padding: 12px 16px; }
}
