:root {
  --purple: #7c4dff;
  --purple-dark: #5e35b1;
  --pink: #ff4d8d;
  --amber: #ffb300;
  --bg: #f6f3ff;
  --surface: #ffffff;
  --text: #1b1433;
  --muted: #6b6280;
  --border: #e6e0f5;
  --radius: 20px;
  --shadow: 0 12px 40px rgba(90, 53, 177, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: var(--purple);
}

img {
  max-width: 100%;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  background: #0a1f44;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-inner.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-inner.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-inner.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: none;
  position: absolute;
  top: calc(100% - 6px);
  right: 0;
  min-width: 220px;
  flex-direction: column;
  gap: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.nav-inner.is-open .nav-links {
  display: flex;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
}

.nav-links a:hover {
  color: var(--purple);
  background: var(--bg);
}

.hero {
  padding: 56px 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--purple);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
}

.btn-primary[aria-disabled='true'] {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  opacity: 0;
}

.waitlist-status {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 14px;
}

.waitlist-status.is-success {
  color: #1b7a4a;
}

.waitlist-status.is-error {
  color: #b3261e;
}

.waitlist-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

.hero-art {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #fff;
  display: block;
}

section {
  padding: 48px 0;
}

h2 {
  font-size: 28px;
  margin: 0 0 8px;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 24px;
}

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.shot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
}

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

.policy {
  max-width: 760px;
  padding: 40px 0 80px;
}

.policy h1 {
  font-size: 36px;
}

.policy h2 {
  margin-top: 28px;
}

.policy p,
.policy li {
  color: #3d3554;
}

form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

label {
  font-weight: 700;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .hero-art {
    max-width: 520px;
    margin: 0 auto;
  }
}
