:root {
  --bg: #f4efe5;
  --surface: #ffffff;
  --surface-strong: #121212;
  --text: #171512;
  --muted: #5f5a52;
  --line: rgba(23, 21, 18, 0.08);
  --accent: #0f8a4b;
  --accent-soft: rgba(15, 138, 75, 0.12);
  --shadow: 0 24px 60px rgba(22, 19, 15, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(15, 138, 75, 0.12), transparent 30%),
    linear-gradient(180deg, #f6f1e8 0%, #f4efe5 45%, #f1ebdf 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 229, 0.78);
  border-bottom: 1px solid rgba(23, 21, 18, 0.05);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero,
.gallery,
.flows,
.waitlist-section {
  padding: 5rem 0;
}

.social-proof {
  padding: 0 0 2rem;
}

.hero-grid,
.waitlist-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-copy h2,
.waitlist-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-body,
.section-copy p,
.waitlist-copy p,
.flow-column li {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow,
.flow-label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.eyebrow.dark {
  color: #8d8376;
}

.hero-cta-row {
  display: flex;
  gap: 0.875rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--surface-strong);
  color: #fff;
  box-shadow: 0 14px 28px rgba(18, 18, 18, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(18, 18, 18, 0.08);
}

.button-dark {
  width: 100%;
  background: #161616;
  color: #fff;
}

.button-full {
  width: 100%;
}

.hero-points,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-points li,
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.hero-points li::before,
.check-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-soft);
}

.hero-stack {
  position: relative;
  min-height: 740px;
}

.phone-frame {
  position: absolute;
  width: min(320px, 100%);
  border-radius: 42px;
  padding: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-frame-primary {
  top: 0;
  left: 0;
  background: #141414;
  color: #fff;
}

.phone-frame-secondary {
  right: 0;
  top: 160px;
  background: #fbf8f1;
  color: var(--text);
  border: 1px solid rgba(23, 21, 18, 0.08);
}

.phone-topbar {
  width: 38%;
  height: 22px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.screen-card,
.screen-cta-card,
.job-card,
.proof-card,
.venue-card,
.flow-column,
.waitlist-form {
  border-radius: var(--radius-lg);
}

.live-card {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.dot-live {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #34d27a;
  box-shadow: 0 0 0 7px rgba(52, 210, 122, 0.18);
}

.screen-title {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.screen-title.dark {
  color: var(--text);
}

.screen-cta-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.screen-cta-card h3,
.job-card h3,
.venue-copy h3,
.flow-column h3 {
  margin: 0.35rem 0;
  font-size: 1.15rem;
}

.screen-cta-card p,
.job-card p,
.venue-copy p {
  margin: 0;
  color: inherit;
  opacity: 0.78;
  line-height: 1.55;
}

.screen-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.mini-section {
  display: grid;
  gap: 0.85rem;
}

.mini-section-header,
.job-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.76;
}

.mini-carousel {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 0.9rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.mini-carousel img,
.venue-card img {
  height: 116px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.mini-carousel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.mini-carousel p {
  margin: 0;
  opacity: 0.78;
  line-height: 1.45;
}

.screen-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

.screen-tabs.dark {
  grid-template-columns: repeat(3, 1fr);
  color: rgba(23, 21, 18, 0.54);
}

.tab-active {
  color: #fff;
  font-weight: 800;
}

.tab-active.dark {
  color: var(--text);
}

.job-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: #fff;
  margin-bottom: 0.9rem;
  box-shadow: 0 16px 40px rgba(23, 21, 18, 0.08);
}

.job-card.muted {
  background: rgba(255, 255, 255, 0.62);
}

.job-tag,
.venue-copy span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f0ebe0;
  color: #40382f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-grid,
.gallery-grid,
.flow-grid {
  display: grid;
  gap: 1rem;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.flow-column,
.waitlist-form {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  padding: 1.35rem;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.venue-card {
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.venue-card img {
  height: 280px;
}

.venue-copy {
  padding: 1.15rem;
}

.section-copy {
  margin-bottom: 2rem;
}

.section-copy.narrow {
  max-width: 720px;
}

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

.flow-column ol {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.flow-column li + li {
  margin-top: 0.85rem;
}

.waitlist-form {
  display: grid;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}

.waitlist-form label,
.role-fieldset legend {
  font-weight: 800;
  font-size: 0.95rem;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  outline: 2px solid rgba(15, 138, 75, 0.24);
  border-color: rgba(15, 138, 75, 0.4);
}

.role-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.role-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(23, 21, 18, 0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.88);
}

.role-option input {
  width: auto;
  margin: 0;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
}

.form-status.success {
  color: var(--accent);
}

.form-status.error {
  color: #b43b3b;
}

.site-footer {
  padding: 1rem 0 2rem;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-grid,
  .waitlist-grid,
  .proof-grid,
  .gallery-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    min-height: 920px;
  }

  .phone-frame-primary {
    left: 50%;
    transform: translateX(-55%);
  }

  .phone-frame-secondary {
    top: 360px;
    left: 50%;
    transform: translateX(-10%);
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero,
  .gallery,
  .flows,
  .waitlist-section {
    padding: 3.5rem 0;
  }

  .hero-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .phone-frame {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
  }

  .phone-frame-secondary {
    margin-top: 0;
  }

  .hero-copy h1,
  .section-copy h2,
  .waitlist-copy h2 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }
}
