
:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #f59e0b;
  --accent-2: #f97316;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 36%),
    radial-gradient(circle at 85% 20%, color-mix(in srgb, var(--accent-2) 20%, transparent), transparent 34%),
    linear-gradient(160deg, #08101d 0%, #0b1220 55%, #101827 100%);
  line-height: 1.6;
}

a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { padding: 26px 0; }
.brand { font-size: 1.05rem; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }

.hero {
  padding: 84px 0 50px;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: .92rem;
  backdrop-filter: blur(10px);
}
.badge::before {
  content: "";
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}
h1 {
  margin: 24px auto 14px;
  max-width: 920px;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: .95;
  letter-spacing: -.07em;
}
.hero-subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 14px 36px color-mix(in srgb, var(--accent) 30%, transparent);
}
.button-secondary {
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text);
}
.section { padding: 48px 0; }
.panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--surface-border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.04em;
  line-height: 1.08;
}
p { color: var(--muted); }
.lead { font-size: 1.14rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.card {
  padding: 24px;
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}
.card h3 { margin: 0 0 8px; font-size: 1.14rem; }
.card p { margin: 0; font-size: .98rem; }
.contact {
  text-align: center;
}
.contact p { max-width: 700px; margin-left: auto; margin-right: auto; }
.email {
  display: inline-block;
  margin-top: 8px;
  color: white;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  text-decoration: none;
}
.site-footer {
  padding: 46px 0 34px;
  color: #94a3b8;
  text-align: center;
  font-size: .92rem;
}
.small { font-size: .88rem; color: #94a3b8; }

@media (max-width: 720px) {
  .hero { padding-top: 54px; }
  .grid { grid-template-columns: 1fr; }
  .container { width: min(100% - 26px, 1120px); }
  .panel { border-radius: 20px; }
}
