:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #0f172a;
  --panel: #1e293b;
  --accent: #38bdf8;
  --accent2: #fbbf24;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --surface: #ffffff;
  --ink: #111827;
  --line: #dbe3ef;
  --soft: #f7f9fc;
}

.theme-event { --bg: #0f172a; --panel: #1e293b; --accent: #38bdf8; --accent2: #fbbf24; }
.theme-service { --bg: #111827; --panel: #1f2937; --accent: #34d399; --accent2: #f97316; }
.theme-finance { --bg: #10231f; --panel: #17352e; --accent: #22c55e; --accent2: #60a5fa; }
.theme-sports { --bg: #18181b; --panel: #27272a; --accent: #facc15; --accent2: #22c55e; }
.theme-personal { --bg: #1c1917; --panel: #292524; --accent: #f59e0b; --accent2: #14b8a6; }
.theme-cannabis { --bg: #12201a; --panel: #1c3329; --accent: #86efac; --accent2: #f97316; }
.theme-nil { --bg: #101828; --panel: #1d2939; --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: 18px clamp(20px, 5vw, 64px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 760;
  text-decoration: none;
  max-width: 52vw;
  overflow-wrap: anywhere;
}

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

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

.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.18)),
    linear-gradient(145deg, var(--bg), var(--panel));
  color: var(--text);
}

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

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

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

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

h1 {
  font-size: clamp(2.65rem, 4.3rem, 4.3rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3rem, 3rem);
}

.lede {
  margin: 24px 0 0;
  max-width: 760px;
  color: rgba(248,250,252,0.82);
  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: 760;
  text-decoration: none;
  cursor: pointer;
}

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

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

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 560px;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.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;
  padding: 22px;
}

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.split p {
  max-width: 780px;
  color: #475467;
  font-size: 1.08rem;
}

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

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

.proof-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  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 {
  color: #475467;
  max-width: 430px;
}

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

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

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

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: #475467;
  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;
  text-decoration: none;
  color: #111827;
}

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

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

@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;
  }

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

  .hero {
    min-height: auto;
  }

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

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

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

  h1 {
    font-size: 2.45rem;
  }

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

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