:root {
  color-scheme: dark;
  --ink: #f7f4ed;
  --muted: rgba(247, 244, 237, 0.68);
  --dim: rgba(247, 244, 237, 0.42);
  --night: #090a0f;
  --panel: #11131b;
  --panel-2: #171923;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #ff8b22;
  --pink: #ff4f8d;
  --violet: #7e63ff;
  --cyan: #55d6c2;
  --green: #51df8f;
  --yellow: #f2c94c;
  --red: #ff5d6c;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #090a0f;
  background-size: 68px 68px;
  mask-image: linear-gradient(#000, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(9, 10, 15, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: "Unica One", Inter, sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 139, 34, 0.2), rgba(126, 99, 255, 0.22));
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--pink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=2200&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 10, 15, 0.94) 0%, rgba(9, 10, 15, 0.78) 42%, rgba(9, 10, 15, 0.36) 100%),
    linear-gradient(180deg, rgba(9, 10, 15, 0.08), #090a0f 96%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  min-height: 100vh;
  padding: 120px clamp(18px, 5vw, 72px) 76px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

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

h1,
h2 {
  font-family: "Unica One", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(4.3rem, 10vw, 9.8rem);
  line-height: 0.82;
  text-transform: lowercase;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.signup-form button:hover {
  transform: translateY(-1px);
}

.primary,
.signup-form button {
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--violet));
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  margin-top: 36px;
  color: var(--dim);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-stats span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.hero-stats strong {
  color: var(--ink);
}

.phone-preview {
  width: min(100%, 420px);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(13, 15, 23, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 8px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.phone-top strong {
  color: var(--green);
}

.venue-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.venue-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

.venue-card span,
.venue-card small {
  display: block;
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.venue-card strong {
  display: block;
  margin: 4px 0;
  font-size: 1.05rem;
}

.venue-card.hot {
  border-color: rgba(242, 201, 76, 0.34);
}

.venue-card.full {
  border-color: rgba(255, 93, 108, 0.34);
}

.venue-card.calm {
  border-color: rgba(85, 214, 194, 0.34);
}

.section {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.feature-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.9;
  text-transform: lowercase;
}

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

.status-card,
.steps li,
.feature-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.status-card {
  min-height: 260px;
  padding: 24px;
  border-top: 3px solid var(--accent);
}

.status-card.quiet {
  --accent: var(--green);
}

.status-card.moderate {
  --accent: var(--cyan);
}

.status-card.filling {
  --accent: var(--yellow);
}

.status-card.packed {
  --accent: var(--red);
}

.status-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.status-card p,
.steps p,
.feature-list p,
.audience-panel p,
.audience-panel li {
  color: var(--muted);
  line-height: 1.62;
}

.status-card strong {
  display: block;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.audience-section {
  background: #0f1118;
  border-block: 1px solid var(--line);
}

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

.audience-panel {
  display: grid;
  grid-template-rows: 290px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.audience-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-panel div {
  padding: 28px;
}

.audience-panel h3 {
  max-width: 480px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.audience-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.audience-panel li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 260px;
  padding: 26px;
}

.steps span,
.feature-list span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 58px;
  border-radius: 8px;
  color: #090a0f;
  background: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.feature-copy {
  position: sticky;
  top: 120px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 24px;
}

.feature-list span {
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.join-section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 139, 34, 0.2), rgba(255, 79, 141, 0.14), rgba(85, 214, 194, 0.16)),
    #12141c;
}

.join-inner {
  max-width: 820px;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
  max-width: 620px;
  margin-top: 30px;
}

.signup-form input,
.signup-form button {
  min-height: 56px;
  border-radius: 8px;
}

.signup-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  font: inherit;
}

.signup-form input::placeholder {
  color: var(--dim);
}

.signup-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(85, 214, 194, 0.14);
}

.form-status {
  min-height: 22px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #090a0f;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
}

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

@media (max-width: 980px) {
  .hero-inner,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .phone-preview {
    margin-inline: 0;
  }

  .status-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .feature-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    font-size: 0.72rem;
  }

  .hero-inner {
    padding-top: 148px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.5rem);
  }

  .status-grid,
  .audience-grid,
  .steps,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    grid-template-rows: 220px 1fr;
  }

  .signup-form button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
