:root {
  --royal: hsl(225 82% 52%);
  --royal-dark: hsl(225 82% 40%);
  --teal: hsl(175 64% 40%);
  --violet: hsl(265 68% 58%);
  --cyan: hsl(190 80% 55%);
  --ink: hsl(230 30% 12%);
  --ink-soft: hsl(230 15% 38%);
  --paper: hsl(40 40% 98%);
  --paper-alt: hsl(230 45% 97%);
  --line: hsl(230 20% 88%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 60px -25px hsl(230 40% 20% / 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Clash Display", "Satoshi", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

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

.gradient-text {
  background: linear-gradient(100deg, var(--royal), var(--violet) 55%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Ambient background */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.bg-blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.bg-blobs .b1 { width: 520px; height: 520px; background: var(--royal); top: -180px; left: -140px; }
.bg-blobs .b2 { width: 460px; height: 460px; background: var(--violet); top: 10%; right: -180px; opacity: 0.28; }
.bg-blobs .b3 { width: 480px; height: 480px; background: var(--teal); bottom: -220px; left: 20%; opacity: 0.25; }

/* Header */
header {
  padding: 28px 0 8px;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand svg { width: 60px; height: 45px; flex-shrink: 0; }
.brand-name {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: white;
  border: 1px solid var(--line);
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 10px -6px hsl(230 40% 20% / 0.2);
}
.location-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
}

/* Hero */
.hero {
  padding: 64px 0 40px;
  text-align: center;
}
.hero .tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal);
  background: hsl(225 82% 52% / 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.03;
  margin-bottom: 22px;
}
.hero .sub {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Waitlist form */
.waitlist {
  max-width: 480px;
  margin: 0 auto 18px;
}
.waitlist-form {
  display: flex;
  gap: 10px;
  background: white;
  padding: 6px;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.waitlist-form input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  min-width: 0;
}
.waitlist-form input[type="email"]::placeholder { color: hsl(230 15% 60%); }
.waitlist-form button {
  border: none;
  cursor: pointer;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: white;
  background: linear-gradient(100deg, var(--royal), var(--violet));
  padding: 14px 26px;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.waitlist-form button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px hsl(225 82% 52% / 0.55); }
.waitlist-form button:disabled { opacity: 0.6; cursor: default; transform: none; }

.waitlist-status {
  min-height: 22px;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 500;
}
.waitlist-status.success { color: var(--teal); }
.waitlist-status.info { color: var(--royal); }
.waitlist-status.error { color: hsl(0 65% 50%); }

.social-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--royal-dark);
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.fb-link:hover { border-color: var(--royal-dark); }
.fb-link svg { width: 18px; height: 18px; }

/* Hero image */
.hero-visual {
  margin: 56px auto 0;
  max-width: 880px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.hero-visual img { width: 100%; height: auto; }

/* Teaser strip */
.teaser {
  padding: 88px 0 40px;
}
.teaser-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}
.teaser-head .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
  display: block;
}
.teaser-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 14px;
}
.teaser-head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.teaser-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  box-shadow: 0 14px 34px -18px hsl(230 40% 20% / 0.35);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.teaser-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -16px hsl(230 40% 20% / 0.4); }
.teaser-card img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
footer {
  padding: 60px 0 40px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
}
footer .brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
footer .brand-row svg { width: 34px; height: 25px; }
footer .brand-row span { font-family: "Clash Display", sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--ink); }

@media (max-width: 760px) {
  .teaser-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .waitlist-form { flex-direction: column; border-radius: var(--radius-md); padding: 10px; }
  .waitlist-form input[type="email"] { padding: 12px 14px; }
  .waitlist-form button { padding: 13px 20px; }
  .hero { padding: 44px 0 24px; }
  .header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .teaser-grid { grid-template-columns: 1fr 1fr; }
}
