:root {
  color-scheme: dark;
  --bg: #07110d;
  --bg-deep: #030504;
  --ink: #fff8dd;
  --ink-strong: #ffffff;
  --muted: #cfd4bf;
  --neon: #73ff55;
  --neon-soft: rgba(115, 255, 85, 0.2);
  --gold: #f0c86a;
  --ember: #d85d43;
  --cream: #fff4cf;
  --cream-ink: #14170f;
  --line: rgba(255, 248, 221, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --touch: 48px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 93, 67, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 36rem, #10100b 100%);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::after {
  content: "";
  display: block;
  height: 72px;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 10px 16px;
  background: rgba(7, 17, 13, 0.88);
  border-bottom: 1px solid rgba(115, 255, 85, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: var(--touch);
  color: var(--ink-strong);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  display: none;
}

.nav-cta {
  color: #061005 !important;
  background: var(--neon);
  border-radius: var(--radius);
  box-shadow: 0 0 24px rgba(115, 255, 85, 0.32);
}

.hero {
  position: relative;
  overflow: clip;
  padding-bottom: 28px;
  background: #050807;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 22%, rgba(3, 5, 4, 0.12) 52%, #050807 92%);
}

.hero-media {
  position: relative;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1120px);
  margin: -10px auto 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink-strong);
  line-height: 0.85;
  font-weight: 950;
  text-shadow: 0 0 28px rgba(115, 255, 85, 0.4);
}

.chaok-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.04em, 1vw, 0.1em);
  font-size: clamp(3rem, 21vw, 7.5rem);
  letter-spacing: 0;
}

.pacman-letter {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 0.92em;
  height: 0.92em;
  border-radius: 50%;
  border: 0.055em solid var(--neon);
  background: rgba(3, 5, 4, 0.72);
  box-shadow:
    0 0 0.12em rgba(115, 255, 85, 0.9),
    0 0 0.22em rgba(115, 255, 85, 0.42),
    inset 0 0 0.12em rgba(115, 255, 85, 0.35);
  filter: drop-shadow(0 0 16px rgba(115, 255, 85, 0.36));
}

.pacman-letter::before {
  content: "";
  width: 0.56em;
  height: 0.56em;
  border-radius: 50%;
  background: conic-gradient(from 55deg, transparent 0 72deg, var(--gold) 72deg 360deg);
  filter:
    drop-shadow(0 0 0.08em rgba(240, 200, 106, 0.9))
    drop-shadow(0 0 0.16em rgba(240, 200, 106, 0.45));
}

h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 11vw, 4rem);
  line-height: 1;
  font-weight: 920;
}

h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-lede {
  display: grid;
  gap: 6px;
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 5vw, 1.55rem);
  line-height: 1.25;
  font-weight: 720;
}

.hero-lede span:first-child {
  color: var(--ink-strong);
}

.hero-answer {
  width: fit-content;
  margin: 12px 0 0;
  padding: 8px 12px;
  color: #061005;
  border-radius: var(--radius);
  background: var(--gold);
  box-shadow: 0 0 22px rgba(240, 200, 106, 0.24);
  font-size: clamp(0.98rem, 4.6vw, 1.15rem);
  font-weight: 950;
  line-height: 1.15;
}

.hero-actions,
.place-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-actions {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  color: #061005;
  background: var(--neon);
  box-shadow: 0 0 28px rgba(115, 255, 85, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 248, 221, 0.08);
  border-color: var(--line);
}

.quick-facts {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.quick-facts div {
  padding: 14px;
  border: 1px solid rgba(240, 200, 106, 0.44);
  border-radius: var(--radius);
  background: rgba(240, 200, 106, 0.13);
  box-shadow: 0 0 18px rgba(240, 200, 106, 0.14);
}

.quick-facts dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.signup-band,
.convivial-band,
.host-band,
.place-band,
.light-band {
  padding: 56px 0;
}

.signup-band {
  background:
    linear-gradient(180deg, rgba(115, 255, 85, 0.12), transparent 24%),
    #0c130f;
}

.signup-layout,
.convivial-layout,
.host-layout,
.place-layout {
  display: grid;
  gap: 28px;
}

.signup-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.gauge {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(115, 255, 85, 0.32);
  border-radius: var(--radius);
  background: rgba(3, 5, 4, 0.42);
}

.gauge-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-weight: 850;
}

.gauge-topline strong {
  color: var(--neon);
  font-size: 1.25rem;
  white-space: nowrap;
}

.gauge-track {
  position: relative;
  height: 14px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 221, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 221, 0.1);
}

.gauge-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--neon), var(--gold), var(--ember));
  box-shadow: 0 0 18px rgba(115, 255, 85, 0.45);
  transition: width 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gauge-message {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.gauge.is-complete {
  animation: glowPulse 1700ms ease-in-out infinite;
}

.interest-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 221, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 248, 221, 0.08);
  box-shadow: var(--shadow);
}

.interest-form label:not(.consent-line) {
  color: var(--ink-strong);
  font-size: 0.88rem;
  font-weight: 850;
}

.interest-form input[type="text"],
.interest-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink-strong);
  border: 1px solid rgba(255, 248, 221, 0.24);
  border-radius: var(--radius);
  background: rgba(3, 5, 4, 0.7);
}

.interest-form input::placeholder {
  color: rgba(255, 248, 221, 0.5);
}

.hp-field {
  position: fixed;
  inset: 0 auto auto 0;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

.consent-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-line input {
  width: 22px;
  height: 22px;
  accent-color: var(--neon);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.form-status.is-error {
  color: #ffb29e;
}

.privacy-note {
  margin: 0;
  color: rgba(255, 248, 221, 0.72);
  font-size: 0.9rem;
}

.privacy-note a,
.privacy-content a {
  color: var(--gold);
  font-weight: 850;
}

.light-band {
  color: var(--cream-ink);
  background: var(--cream);
}

.light-band .eyebrow {
  color: #966b12;
}

.light-band h2 {
  color: var(--cream-ink);
}

.session-steps {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.session-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(20, 23, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #07110d;
  border: 2px solid #1b7f29;
  border-radius: 50%;
  background: rgba(115, 255, 85, 0.24);
  font-weight: 950;
}

.session-steps h3 {
  margin: 0 0 8px;
  color: var(--cream-ink);
}

.session-steps p {
  margin: 0;
  color: rgba(20, 23, 15, 0.76);
}

.convivial-band {
  background:
    linear-gradient(135deg, rgba(115, 255, 85, 0.14), transparent 38%),
    linear-gradient(180deg, #10130e, #07110d);
}

.convivial-layout {
  align-items: start;
}

.convivial-copy {
  display: grid;
  gap: 16px;
}

.convivial-cards {
  display: grid;
  gap: 12px;
}

.open-card {
  padding: 16px;
  border: 1px solid rgba(115, 255, 85, 0.28);
  border-radius: var(--radius);
  background: rgba(115, 255, 85, 0.1);
  box-shadow: 0 0 24px rgba(115, 255, 85, 0.12);
}

.open-card h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 1.45rem;
}

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

.hero-open-card {
  max-width: 680px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(240, 200, 106, 0.44);
  background: rgba(240, 200, 106, 0.13);
  box-shadow: 0 0 18px rgba(240, 200, 106, 0.14);
}

.hero-open-card h3 {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-open-card p {
  color: var(--ink);
  font-weight: 900;
}

.convivial-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 248, 221, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 248, 221, 0.08);
}

.convivial-icon {
  width: 42px;
  height: 42px;
  padding: 8px;
  color: var(--neon);
  border: 1px solid rgba(115, 255, 85, 0.36);
  border-radius: 50%;
  background: rgba(115, 255, 85, 0.12);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.convivial-card h3 {
  margin: 0 0 6px;
  color: var(--ink-strong);
}

.convivial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.convivial-reassurance {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.convivial-reassurance span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: #061005;
  border-radius: var(--radius);
  background: var(--gold);
  box-shadow: 0 0 22px rgba(240, 200, 106, 0.18);
  font-weight: 950;
  line-height: 1.15;
}

.convivial-copy .button {
  width: 100%;
}

.host-band {
  background:
    linear-gradient(135deg, rgba(240, 200, 106, 0.16), transparent 42%),
    #10130e;
}

.host-layout {
  align-items: center;
}

.host-photo {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(240, 200, 106, 0.24);
}

.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-band p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.place-band {
  background: #5a2018;
}

.place-layout {
  align-items: center;
}

address {
  margin-top: 16px;
  color: var(--ink);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 850;
}

.site-footer {
  padding: 28px 0 36px;
  color: rgba(255, 248, 221, 0.72);
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 248, 221, 0.12);
}

.footer-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.94rem;
}

.footer-layout a {
  width: fit-content;
  min-height: 36px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-action {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  left: max(16px, env(safe-area-inset-left));
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  color: #061005;
  background: var(--neon);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 28px rgba(115, 255, 85, 0.42);
  font-weight: 950;
  text-decoration: none;
}

.privacy-main {
  padding: 48px 0 72px;
  background: var(--bg);
}

.privacy-content {
  max-width: 780px;
}

.privacy-content h1 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 12vw, 5rem);
}

.privacy-content section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.privacy-content h2 {
  font-size: clamp(1.4rem, 7vw, 2.4rem);
}

.privacy-content p {
  color: var(--muted);
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(115, 255, 85, 0);
  }
  50% {
    box-shadow: 0 0 34px rgba(115, 255, 85, 0.26);
  }
}

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

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

@media (min-width: 560px) {
  .hero-actions,
  .place-actions {
    flex-direction: row;
  }

  .button {
    min-width: 190px;
  }

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

}

@media (min-width: 760px) {
  body::after {
    display: none;
  }

  .site-header {
    padding-inline: 28px;
  }

  .site-nav a:not(.nav-cta) {
    display: inline-flex;
  }

  .hero {
    min-height: 88svh;
    display: grid;
    align-items: end;
    padding: 96px 0 64px;
  }

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

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 5, 4, 0.86), rgba(3, 5, 4, 0.38) 52%, rgba(3, 5, 4, 0.1)),
      linear-gradient(180deg, rgba(3, 5, 4, 0.08), #050807 96%);
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero-lede {
    max-width: 560px;
  }

  .hero-actions {
    max-width: 520px;
  }

  .quick-facts {
    max-width: 620px;
  }

  .signup-band,
  .convivial-band,
  .host-band,
  .place-band,
  .light-band {
    padding: 82px 0;
  }

  .signup-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }

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

  .session-steps li {
    min-height: 176px;
  }

  .convivial-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  }

  .convivial-copy .button {
    width: fit-content;
  }

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

  .host-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .host-photo {
    width: 240px;
    height: 240px;
  }

  .place-layout {
    grid-template-columns: 1fr auto;
  }

  .footer-layout {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-action {
    display: none;
  }
}

@media (hover: hover) {
  .button:hover,
  .site-nav a:hover,
  .mobile-action:hover {
    transform: translateY(-1px);
  }
}
