:root {
  --bg: #07111f;
  --bg-2: #0d1a2e;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.12);
  --text: #ecf1f8;
  --muted: #b8c2d5;
  --accent: #c8a96b;
  --accent-2: #f0d3a0;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.25);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200,169,107,0.12), transparent 28%),
    linear-gradient(180deg, #08111f 0%, #091427 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5,11,22,0.85);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 78px;
}
.brand, .footer-brand {
  font-weight: 800; letter-spacing: 0.06em;
}
.main-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.main-nav a, .text-link { color: var(--muted); }
.main-nav a:hover, .text-link:hover, .card-link:hover, .site-footer a:hover { color: var(--accent-2); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 600;
}
.btn-solid {
  color: #10131b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
}
.btn-outline {
  border-color: var(--card-border);
  background: rgba(255,255,255,0.03);
}
.hero { padding: 72px 0 28px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start;
}
.eyebrow {
  display: inline-block; margin: 0 0 16px;
  padding: 10px 16px; border-radius: 999px;
  color: #eedcb9; border: 1px solid rgba(200,169,107,0.35);
  background: rgba(200,169,107,0.12);
  font-size: 14px;
}
.hero h1, .section h2 { line-height: 1.06; margin: 0 0 16px; }
.hero h1 { font-size: clamp(40px, 6vw, 76px); max-width: 12ch; }
.lead { max-width: 68ch; color: var(--muted); font-size: 18px; }
.hero-actions, .contact-strip, .final-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions { margin-top: 26px; }
.contact-strip {
  margin-top: 18px; color: var(--muted); font-size: 15px;
}
.hero-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  padding: 20px; border: 1px solid var(--line); border-radius: 28px;
  background: rgba(255,255,255,0.02);
}
.info-card, .content-card, .product-card, .quote-box {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 24px; padding: 24px; box-shadow: var(--shadow);
}
.card-tag, .mini-tag, .quote-kicker {
  margin: 0 0 10px; color: #efd7a9; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
}
.info-card h2, .content-card h3, .product-card h3, .quote-box h3 { margin: 0 0 10px; font-size: 30px; }
.info-card h2 { font-size: 22px; }
.info-card p:last-child, .content-card p, .product-card p, .quote-box p, .site-footer p, .bullet-stack p { color: var(--muted); }
.section { padding: 34px 0; }
.section-alt { background: rgba(255,255,255,0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 22px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); max-width: 14ch; }
.section-head p:last-child { color: var(--muted); max-width: 70ch; }
.card-grid { display: grid; gap: 18px; }
.three-up { grid-template-columns: repeat(3, 1fr); }
.four-up { grid-template-columns: repeat(4, 1fr); }
.card-link { display: inline-block; margin-top: 12px; color: var(--accent-2); font-weight: 600; }
.section-cta { margin-top: 22px; }
.split-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; align-items: start;
}
.bullet-stack { display: grid; gap: 18px; }
.bullet-stack h3 { margin: 0 0 6px; font-size: 22px; }
.quote-box ul { margin: 16px 0 22px; padding-left: 18px; color: var(--muted); }
.quote-box li { margin: 8px 0; }
.final-cta-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px; border-radius: 28px; border: 1px solid rgba(200,169,107,0.25);
  background: linear-gradient(180deg, rgba(200,169,107,0.12), rgba(255,255,255,0.03));
}
.site-footer {
  padding: 34px 0 48px; border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 20px;
}
.site-footer h3 { color: var(--text); margin-bottom: 10px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
@media (max-width: 1024px) {
  .hero-grid, .split-grid, .three-up, .four-up, .footer-grid, .final-cta-inner { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; padding: 14px 0; }
  .header-cta { width: 100%; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .hero { padding-top: 42px; }
  .hero h1 { max-width: 100%; }
  .hero-cards { grid-template-columns: 1fr; }
  .main-nav { gap: 14px; }
}
