:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #16202e;
  --panel: #263247;
  --accent: #38bdf8;
  --accent2: #fbbf24;
  --text: #f8fafc;
  --muted: #dbeafe;
  --surface: #ffffff;
  --ink: #111827;
  --subtle: #475467;
  --line: #d8e0ec;
  --soft: #f5f7fb;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.theme-event { --bg: #152235; --panel: #263856; --accent: #38bdf8; --accent2: #fbbf24; }
.theme-service { --bg: #14251f; --panel: #253f35; --accent: #34d399; --accent2: #f97316; }
.theme-finance { --bg: #122720; --panel: #213f34; --accent: #22c55e; --accent2: #60a5fa; }
.theme-sports { --bg: #1f1d22; --panel: #34313a; --accent: #facc15; --accent2: #22c55e; }
.theme-personal { --bg: #241b16; --panel: #3a2c24; --accent: #f59e0b; --accent2: #14b8a6; }
.theme-cannabis { --bg: #13251c; --panel: #284232; --accent: #86efac; --accent2: #f97316; }
.theme-nil { --bg: #162032; --panel: #2b3952; --accent: #67e8f9; --accent2: #facc15; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 236, 0.86);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  max-width: 52vw;
  color: #101828;
  font-weight: 780;
  text-decoration: none;
  overflow-wrap: anywhere;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a {
  color: #344054;
  font-size: 0.95rem;
  font-weight: 680;
  text-decoration: none;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: #101828;
  color: #fff;
  padding: 10px 14px;
}

.hero {
  min-height: calc(86vh - 72px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: var(--bg);
  color: var(--text);
}

.compact-hero {
  min-height: 420px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 12, 23, 0.86), rgba(5, 12, 23, 0.58) 52%, rgba(5, 12, 23, 0.22)),
    linear-gradient(180deg, rgba(5, 12, 23, 0.12), rgba(5, 12, 23, 0.58));
}

.hero-copy {
  max-width: 820px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  background: var(--panel);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.64;
  filter: saturate(1.05) contrast(1.02);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 4.25rem;
}

h2 {
  font-size: 2.75rem;
}

.lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(248, 250, 252, 0.86);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.secondary-button,
button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
}

.button,
button {
  background: var(--accent);
  color: #07111f;
}

.button:hover,
button:hover {
  filter: brightness(0.96);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: #fff;
}

.info-card,
.directory-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.info-card span,
.directory-item span {
  display: block;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.info-card p {
  margin: 10px 0 0;
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 247, 251, 0.95)),
    var(--soft);
}

.split p {
  max-width: 780px;
  color: var(--subtle);
  font-size: 1.08rem;
}

.risk-note {
  border-left: 4px solid var(--accent2);
  padding-left: 16px;
}

.proof-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  font-weight: 650;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #fff;
}

.form-intro p {
  max-width: 430px;
  color: var(--subtle);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font: inherit;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.trap {
  position: absolute;
  left: -9999px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.lead-form button {
  width: max-content;
  min-width: 180px;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--subtle);
  font-weight: 650;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #111827;
  color: #d1d5db;
  font-size: 0.92rem;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 72px);
}

.directory-item {
  display: grid;
  gap: 8px;
  color: #111827;
  text-decoration: none;
}

.directory-item strong {
  font-size: 1.1rem;
}

.directory-item em {
  color: #667085;
  font-style: normal;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 12, 23, 0.82), rgba(5, 12, 23, 0.68)),
      linear-gradient(90deg, rgba(5, 12, 23, 0.62), rgba(5, 12, 23, 0.32));
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .split,
  .form-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    max-width: 100%;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .detail-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  nav {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .button,
  .secondary-button,
  .lead-form button {
    width: 100%;
    text-align: center;
  }
}
