:root {
  --bg: #000;
  --panel: #070807;
  --panel-soft: #10120d;
  --fg: #f8f8f2;
  --muted: #b7b9ad;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #e9f852;
  --brand-soft: rgba(233, 248, 82, 0.16);
  --shadow: 0 0 28px rgba(233, 248, 82, 0.18);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(233, 248, 82, 0.06), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(233, 248, 82, 0.08), transparent 24rem),
    #000;
}

a {
  color: inherit;
}

strong {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(150px, 18vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #050505;
  background: var(--brand);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(233, 248, 82, 0.35);
}

.button-secondary {
  color: var(--fg);
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 5vw, 4rem);
}

.hero-home {
  min-height: calc(100vh - 88px);
}

.hero-compact {
  min-height: 48vh;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.46) 52%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 36%);
}

.hero-content {
  width: min(820px, 100%);
}

.hero-centered {
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.8rem, 4.8vw, 3.45rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--brand);
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 1.6rem;
  color: var(--brand);
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  font-weight: 600;
}

.hero-centered .hero-subtitle {
  margin-right: auto;
  margin-left: auto;
}

.hero-actions,
.cta-band {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.section {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}

.copy-stack {
  max-width: 780px;
}

.lead {
  color: #f0f0e8;
  font-size: 1.08rem;
}

p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.insight-panel,
.form-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(233, 248, 82, 0.05), transparent 8rem),
    var(--panel);
  box-shadow: var(--shadow);
}

.card {
  min-height: 260px;
  padding: 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 248, 82, 0.45);
  box-shadow: 0 0 34px rgba(233, 248, 82, 0.3);
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.split-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.insight-panel,
.contact-card {
  padding: 1.45rem;
}

.insight-panel h3,
.contact-card h2 {
  margin-bottom: 0.8rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  color: var(--fg);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(233, 248, 82, 0.6);
}

.cta-band {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
}

.form-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

form {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  color: var(--fg);
  font-weight: 700;
}

label em {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #0c0d0a;
  color: var(--fg);
  font: inherit;
  padding: 0.85rem 0.9rem;
  outline: 0;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
}

.contact-list div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0.2rem 0 0;
  color: var(--fg);
}

.contact-list a,
.site-footer a {
  color: var(--brand);
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section-intro,
  .section-heading,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    min-height: 0;
    padding: 0.85rem 1rem;
  }

  .brand img {
    width: 142px;
  }

  .site-nav {
    gap: 0.45rem;
  }

  .site-nav a {
    min-height: 36px;
    padding: 0.58rem 0.66rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 72vh;
    padding: 4.5rem 1.25rem;
  }

  .hero-home {
    min-height: 84vh;
  }

  .hero-compact {
    min-height: 46vh;
  }

  .hero-actions,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
