:root {
  --bg: #fff8f3;
  --bg-accent: #fff1e6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #2a2438;
  --muted: #665f73;
  --primary: #ff6f61;
  --primary-dark: #db584d;
  --secondary: #725cff;
  --border: rgba(42, 36, 56, 0.08);
  --shadow: 0 24px 60px rgba(92, 66, 53, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 182, 193, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 224, 178, 0.45), transparent 24%),
    linear-gradient(180deg, #fffaf6 0%, #fff3eb 100%);
  color: var(--text);
}

img {
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: "Baloo 2", cursive;
  font-size: 1.6rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(114, 92, 255, 0.12);
  color: var(--secondary) !important;
}

.hero,
.section,
.social-proof {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  padding: 48px;
  border-radius: var(--radius-xl);
}

.eyebrow,
.section-label,
.plan-tag {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Baloo 2", cursive;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

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

.hero-text,
.section p,
.step-card p,
.price-card li,
.testimonial-grid p,
.faq-list p,
.preview-result p,
.site-footer,
.social-proof {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.hero-points,
.form-row,
.pricing-grid,
.testimonial-grid,
.faq-list,
.steps {
  display: grid;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  appearance: none;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--primary), #ff9277);
  color: white;
  box-shadow: 0 18px 36px rgba(255, 111, 97, 0.28);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #ff8067);
}

.button.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.full-width {
  width: 100%;
}

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

.hero-points li {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-card,
.preview-builder-card,
.price-card,
.step-card,
.reserve-section,
.section,
.social-proof,
.testimonial-grid article,
.faq-list article {
  border-radius: var(--radius-lg);
}

.hero-card {
  align-self: stretch;
  background: linear-gradient(180deg, #fff 0%, #fff4ef 100%);
  border: 1px solid rgba(255, 111, 97, 0.18);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.sheet {
  min-height: 280px;
  padding: 24px;
  border-radius: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  border: 2px dashed rgba(42, 36, 56, 0.08);
}

.sheet span {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-weight: 700;
}

.sheet-peach {
  background: linear-gradient(180deg, #ffd7ca, #ffece4);
}

.mini-review {
  padding: 18px 20px;
  border-radius: 20px;
  background: white;
}

.quote {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text);
}

.quote-meta {
  margin: 0;
  font-size: 0.92rem;
}

.social-proof {
  margin-top: 22px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section {
  margin-top: 22px;
  padding: 34px;
}

.section-grid,
.preview-section,
.pricing-section,
.reserve-section {
  display: grid;
  gap: 24px;
}

.steps,
.pricing-grid,
.testimonial-grid,
.faq-list {
  gap: 18px;
}

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

.step-card,
.price-card,
.testimonial-grid article,
.faq-list article,
.preview-builder-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 111, 97, 0.14);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.preview-builder-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.preview-form,
.waitlist-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(42, 36, 56, 0.12);
  border-radius: 14px;
  padding: 14px 15px;
  background: white;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(114, 92, 255, 0.2);
  border-color: var(--secondary);
}

.preview-result {
  background: linear-gradient(180deg, #fff7f2 0%, #ffffff 100%);
  border-radius: 22px;
  padding: 24px;
  min-height: 100%;
  border: 1px solid rgba(255, 111, 97, 0.14);
}

.preview-avatar {
  font-size: 3rem;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: white;
  margin-bottom: 18px;
  box-shadow: 0 16px 32px rgba(255, 111, 97, 0.16);
}

.preview-result ul,
.price-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-grid,
.testimonial-grid,
.faq-list,
.form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card.featured {
  border: 1px solid rgba(255, 111, 97, 0.3);
  box-shadow: 0 24px 40px rgba(255, 111, 97, 0.12);
}

.price {
  font-family: "Baloo 2", cursive;
  font-size: 3rem;
  color: var(--text);
  margin: 8px 0 8px;
}

.reserve-section {
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.09), rgba(114, 92, 255, 0.08));
}

.reserve-note {
  margin-top: 12px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--secondary);
}

.form-message[data-tone='error'] {
  color: #b42318;
}

.form-message[data-tone='success'] {
  color: #12715b;
}

.form-message[data-tone='warning'] {
  color: #9a6700;
}

.queue-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

.queue-health {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 36, 56, 0.08);
}

.queue-health-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.queue-health-label,
.queue-health-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.queue-health-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(114, 92, 255, 0.12);
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.queue-health-badge[data-tone='success'] {
  background: rgba(18, 113, 91, 0.12);
  color: #12715b;
}

.queue-health-badge[data-tone='warning'] {
  background: rgba(154, 103, 0, 0.12);
  color: #9a6700;
}

.queue-health-badge[data-tone='error'] {
  background: rgba(180, 35, 24, 0.12);
  color: #b42318;
}

.queue-health-badge[data-tone='neutral'] {
  background: rgba(114, 92, 255, 0.12);
  color: var(--secondary);
}

.queue-health-meta {
  color: var(--muted);
}

.queue-status[data-tone='warning'] {
  color: #9a6700;
}

.queue-status[data-tone='success'] {
  color: #12715b;
}

.queue-status[data-tone='error'] {
  color: #b42318;
}

.site-footer {
  text-align: center;
  padding: 28px 12px 0;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(calc(100% - 24px), 460px);
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  z-index: 50;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-title,
.cookie-consent-copy {
  margin: 0;
}

.cookie-consent-title {
  font-weight: 800;
}

.cookie-consent-copy {
  color: var(--muted);
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-shell {
  min-height: 100vh;
}

.legal-content {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 12px;
}

.legal-content h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-top: 26px;
}

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

@media (max-width: 960px) {
  .hero,
  .preview-builder-card,
  .steps,
  .pricing-grid,
  .testimonial-grid,
  .faq-list,
  .form-row,
  .social-proof {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 34px 24px;
  }

  .hero-points,
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .section,
  .hero,
  .social-proof {
    padding: 22px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.9rem;
  }
}
