:root {
  --bg: #0b0b0f;
  --panel: #111118;
  --accent: #d4af37;
  --accent-strong: #f2c94c;
  --text: #f5f3e7;
  --muted: #c4b998;
  --border: #2a2415;
  --card: #0f0f15;
  --shadow: 0 14px 42px rgba(0,0,0,0.35);
}

html {
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  max-width: 100vw;
  font-family: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.06), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(242, 201, 76, 0.06), transparent 36%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
iframe {
  max-width: 100%;
  width: 100%;
  border: 0;
}
a { color: var(--accent); text-decoration: none; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(12, 12, 18, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.5px; }
.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  display: grid;
  place-items: center;
  color: #0b0b0f;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.nav-links { display: flex; gap: 18px; font-size: 14px; }
.pill { padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255, 215, 128, 0.05); }
main { width: 100%; max-width: 100%; margin: 0; padding: 0 0 60px; }
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}
.hero h1 { font-size: 36px; line-height: 1.2; margin: 0 0 14px; }
.hero p { margin: 0 0 18px; color: var(--muted); }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0b0b0f;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 20px; }
.stat { padding: 14px 16px; border-radius: 14px; background: var(--card); border: 1px solid var(--border); }
.stat strong { display: block; font-size: 22px; }
.section { margin-top: 40px; }
.section h2 { margin: 0 0 12px; font-size: 22px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { padding: 16px; background: var(--panel); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); }
.muted { color: var(--muted); }
.testimonial { border-left: 4px solid var(--accent); }
form { display: grid; gap: 12px; margin-top: 8px; }
input, textarea, button { font: inherit; }
input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0e0e14;
  color: var(--text);
}
textarea { min-height: 120px; resize: vertical; }
.inline { display: flex; gap: 12px; flex-wrap: wrap; }
footer {
  margin-top: 40px;
  padding: 24px 20px 40px;
  background: var(--panel);
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}
.alert {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin: 8px 0;
}
.alert-success {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--accent);
  color: var(--text);
}
.alert-error {
  background: rgba(239, 68, 68, 0.12);
  border-color: #ef4444;
  color: #fecaca;
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.brand-logo {
  height: 56px;
  max-height: 64px;
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}
.header-logo {
  height: 56px;
  max-height: 68px;
  object-fit: contain;
}

/* Ambient chrome for the new look */
.mesh-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(245, 185, 75, 0.12), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 62% 78%, rgba(214, 158, 57, 0.1), transparent 30%);
  filter: saturate(1.05);
  z-index: 0;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px;
  opacity: 0.08;
  mask-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.6), transparent 65%);
  z-index: 0;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.35;
  z-index: 0;
}

.glass-card {
  backdrop-filter: blur(18px);
  background: rgba(12, 12, 16, 0.7);
  border: 1px solid rgba(244, 184, 76, 0.16);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
}

.glow-outline {
  box-shadow: 0 0 0 1px rgba(245, 185, 75, 0.32), 0 14px 45px rgba(245, 185, 75, 0.16);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 184, 76, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
}

.pill-accent {
  background: linear-gradient(120deg, rgba(245, 185, 75, 0.2), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(244, 184, 76, 0.25);
  box-shadow: 0 10px 30px rgba(245, 185, 75, 0.18);
}
@media (max-width: 640px) {
  .nav { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero { padding: 24px; }
  .hero h1 { font-size: 30px; }
  .mesh-layer, .grid-overlay, .noise-overlay { opacity: 0.35; }
}
