:root {
  color-scheme: dark;
  --background: hsl(240 10% 3.9%);
  --foreground: hsl(0 0% 98%);
  --card: hsl(240 10% 5.8%);
  --card-strong: hsl(240 6% 8.8%);
  --popover: hsl(240 10% 5.8%);
  --primary: hsl(0 0% 98%);
  --primary-foreground: hsl(240 10% 3.9%);
  --secondary: hsl(240 3.7% 15.9%);
  --secondary-foreground: hsl(0 0% 98%);
  --muted: hsl(240 3.7% 15.9%);
  --muted-foreground: hsl(240 5% 64.9%);
  --accent: hsl(163 94% 44%);
  --accent-foreground: hsl(165 80% 6%);
  --destructive: hsl(0 72.2% 50.6%);
  --border: hsl(240 3.7% 15.9%);
  --input: hsl(240 3.7% 15.9%);
  --ring: hsl(163 94% 44%);
  --radius: 8px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background: hsl(240 10% 3.9%);
  color: var(--foreground);
  padding: 0.78rem 0.85rem;
}

input::placeholder {
  color: hsl(240 5% 48%);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.65rem 0.9rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
}

.brand img {
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--border);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--muted-foreground);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 0.56rem 0.75rem;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.site-nav .nav-cta {
  background: var(--primary);
  color: var(--primary-foreground);
  margin-left: 0.35rem;
}

.site-nav .nav-cta:hover {
  background: hsl(0 0% 90%);
  color: var(--primary-foreground);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--foreground);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  margin: 0 auto;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.42);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.92), rgba(9, 9, 11, 0.78) 52%, rgba(9, 9, 11, 0.62)),
    linear-gradient(180deg, rgba(9, 9, 11, 0.2), var(--background));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 6.25rem 0 5.25rem;
}

.hero-content-wide {
  max-width: 920px;
}

.city-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(24, 24, 27, 0.78);
  color: var(--accent);
  padding: 0.24rem 0.62rem;
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 4.35rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 700px;
  margin: 1.25rem 0 0;
  color: var(--muted-foreground);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.68rem 1rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover {
  background: hsl(0 0% 90%);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(24, 24, 27, 0.72);
  color: var(--foreground);
}

.button-secondary:hover {
  background: var(--secondary);
}

.hero-banner {
  display: grid;
  gap: 0.28rem;
  max-width: 760px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(24, 24, 27, 0.72);
  padding: 1rem 1.1rem;
  margin-top: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-banner strong {
  color: var(--foreground);
  font-size: 1.02rem;
}

.hero-banner span {
  color: var(--muted-foreground);
  font-weight: 650;
}

.ticker-strip {
  overflow: hidden;
  background: var(--card);
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
}

.ticker-track span {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid var(--border);
  padding: 0 1.6rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-weight: 750;
  text-transform: uppercase;
}

.section {
  padding: 5.25rem 0;
}

section[id],
form[id] {
  scroll-margin-top: 88px;
}

.section-alt,
.section-form {
  background: hsl(240 10% 3.9%);
}

.two-column,
.form-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 3rem;
  align-items: start;
}

.section-intro {
  max-width: 540px;
}

.section-intro h2,
.section-heading h2 {
  margin: 0;
  color: var(--foreground);
  font-size: 2.45rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-intro p,
.section-heading p {
  color: var(--muted-foreground);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.drops-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.drop-list {
  display: grid;
  gap: 0.9rem;
}

.drop-card,
.lead-form,
.safety-panel,
details,
.phone-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: none;
}

.drop-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
}

.drop-card:hover {
  border-color: hsl(240 5% 26%);
  background: var(--card-strong);
}

.drop-card h3 {
  margin: 0 0 0.25rem;
  color: var(--foreground);
  font-size: 1.08rem;
  line-height: 1.15;
}

.drop-card p {
  margin: 0;
  color: var(--muted-foreground);
}

.drop-date {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--foreground);
  line-height: 1;
  text-align: center;
}

.drop-date span {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.drop-date strong {
  font-size: 1rem;
  font-weight: 800;
}

.text-link {
  color: var(--accent);
  font-weight: 750;
  text-decoration-color: rgba(45, 212, 191, 0.35);
  text-underline-offset: 0.22rem;
}

.text-link:hover {
  color: hsl(163 94% 54%);
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.phone-frame {
  overflow: hidden;
  background: hsl(240 10% 5.8%);
  color: var(--foreground);
  padding: 1rem;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  font-size: 0.88rem;
  font-weight: 700;
}

.phone-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: hsl(240 10% 3.9%);
  color: var(--foreground);
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.phone-card:last-child {
  margin-bottom: 0;
}

.phone-card-accent {
  border-color: rgba(45, 212, 191, 0.32);
  background: rgba(45, 212, 191, 0.08);
}

.phone-card h3 {
  margin: 0.45rem 0 0.2rem;
  line-height: 1.1;
}

.phone-card p {
  margin: 0;
  color: var(--muted-foreground);
  font-weight: 650;
}

.app-pill {
  display: inline-flex;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.1);
  color: var(--accent);
  padding: 0.16rem 0.48rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.app-flow {
  align-self: stretch;
}

.flow-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.step-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--secondary);
  color: var(--foreground);
  font-weight: 800;
}

.flow-list h3,
.safety-row h3,
.note-box h3 {
  margin: 0 0 0.35rem;
  color: var(--foreground);
  font-size: 1.04rem;
  line-height: 1.2;
}

.flow-list p,
.safety-row p,
.note-box p {
  margin: 0;
  color: var(--muted-foreground);
}

.safety-panel {
  overflow: hidden;
}

.safety-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1rem;
  padding: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.safety-row:last-child {
  border-bottom: 0;
}

.note-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1rem;
  margin-top: 1.5rem;
}

.lead-form {
  padding: 1.25rem;
}

.compact-form {
  display: grid;
  gap: 1rem;
}

.metadata-grid {
  grid-template-columns: 1fr 0.74fr;
}

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

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 0.4rem;
  margin: 0;
}

.lead-form label span,
.lead-form legend {
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 650;
}

.lead-form fieldset {
  border: 0;
  padding: 0;
}

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

.checkbox-grid label,
.lead-form .quiet-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: hsl(240 10% 3.9%);
  padding: 0.65rem;
}

.checkbox-grid input,
.lead-form .quiet-consent input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.lead-form .quiet-consent span {
  color: var(--muted-foreground);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.2rem 0 0;
  color: var(--accent);
  font-weight: 650;
}

.form-status.is-error {
  color: hsl(0 84% 65%);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.host-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.25rem;
}

.host-band .section-heading {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 750;
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted-foreground);
}

.site-footer {
  background: hsl(240 10% 3.9%);
  color: var(--foreground);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-brand {
  color: var(--foreground);
}

.site-footer p {
  max-width: 380px;
  color: var(--muted-foreground);
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--foreground);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  color: var(--muted-foreground);
  margin: 0.45rem 0;
  text-decoration: none;
}

.site-footer a:not(.brand):hover {
  color: var(--foreground);
}

.policy-page {
  background: var(--background);
}

.policy-hero {
  padding: 4.5rem 0 2rem;
  background: var(--card);
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.policy-hero h1 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.policy-hero p {
  max-width: 740px;
  color: var(--muted-foreground);
  font-size: 1.1rem;
}

.policy-content {
  max-width: 820px;
  padding: 3.5rem 0 5rem;
}

.policy-content h2 {
  margin: 2rem 0 0.5rem;
  color: var(--foreground);
  font-size: 1.55rem;
  line-height: 1.2;
}

.policy-content p,
.policy-content li {
  color: var(--muted-foreground);
}

.policy-content ul {
  padding-left: 1.2rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    height: calc(100vh - 72px);
    overflow: auto;
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 1rem;
  }

  .site-nav.is-open {
    display: grid;
    align-content: start;
  }

  .site-nav a {
    padding: 0.9rem;
    font-size: 1.08rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .two-column,
  .form-layout,
  .faq-layout,
  .drops-layout,
  .app-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    max-width: 680px;
  }

  .safety-row {
    grid-template-columns: 1fr;
  }

  .host-band {
    display: grid;
    align-items: start;
  }

  .drop-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .drop-card .text-link {
    grid-column: 2;
  }

  .phone-frame {
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    min-height: 74vh;
  }

  .hero-content {
    padding: 4.6rem 0 4rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .ticker-track span {
    min-height: 54px;
    padding: 0 1.1rem;
    font-size: 0.82rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-intro h2,
  .section-heading h2,
  .policy-hero h1 {
    font-size: 2.1rem;
  }

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

  .drop-card .text-link {
    grid-column: auto;
  }

  .drop-date {
    min-height: auto;
    display: flex;
    justify-content: space-between;
    padding: 0.7rem;
  }

  .flow-list li {
    grid-template-columns: 38px 1fr;
  }

  .lead-form {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
