/* ─── Self-hosted fonts ─────────────────────────────────────── */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/dmsans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/dmsans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #1C1C1C;
  background-color: #FFF9FB;
  line-height: 1.75;
}

/* ─── Containers ────────────────────────────────────────────── */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--wide {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Sections ──────────────────────────────────────────────── */
.section {
  background-color: #FFF9FB;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.section--hero {
  position: relative;
  background-color: #FFF0F4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 560px;
  height: 560px;
  pointer-events: none;
  z-index: 0;
}

.hero-blob svg {
  width: 100%;
  height: 100%;
}

.hero-star {
  position: absolute;
  bottom: 80px;
  left: 48px;
  font-size: 2.4rem;
  color: #D4285F;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.wordmark {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4285F;
  margin-bottom: 48px;
  display: block;
}

.hero-headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #2D1419;
  max-width: 16ch;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(45, 20, 25, 0.5);
  margin-top: 24px;
  max-width: 38ch;
  line-height: 1.6;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(45, 20, 25, 0.25);
  font-size: 1.2rem;
  z-index: 1;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Content Sections ──────────────────────────────────────── */
.content-sections {
  background: #FFF9FB;
}

.section--row {
  padding: 64px 0;
  border-top: 1px solid #F5D5DF;
}

.section--row:first-child {
  border-top: none;
}

/* ─── Section block: icon + text layout ─────────────────────── */
.section-block {
  display: flex;
  align-items: center;
  gap: 48px;
}

.section-block--reversed {
  flex-direction: row-reverse;
}

.section-icon {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-block__content {
  flex: 1;
}

/* ─── Section Heading ───────────────────────────────────────── */
.section-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1C1C1C;
  margin-bottom: 20px;
}

/* ─── Body Text ─────────────────────────────────────────────── */
.body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3A3A3A;
}

/* ─── Pricing Card ──────────────────────────────────────────── */
.pricing-card {
  background: white;
  border: 2px solid #F5D5DF;
  border-radius: 20px;
  padding: 40px;
  margin-top: 4px;
}

.pricing-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-amount {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #2D1419;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-per {
  font-size: 0.6em;
  font-weight: 700;
  opacity: 0.7;
}

.pricing-desc {
  font-size: 0.82rem;
  color: rgba(45, 20, 25, 0.5);
  line-height: 1.4;
}

.pricing-arrow {
  font-size: 1.5rem;
  color: rgba(45, 20, 25, 0.2);
  font-family: 'Nunito', sans-serif;
  flex-shrink: 0;
}

.pricing-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #D4285F;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.pricing-cta:hover {
  opacity: 0.7;
}

.pricing-note {
  font-size: 0.9rem;
  color: rgba(45, 20, 25, 0.5);
  line-height: 1.6;
  border-top: 1px solid rgba(45, 20, 25, 0.1);
  padding-top: 20px;
}

/* ─── Signup Card ───────────────────────────────────────────── */
.section--signup-wrap {
  padding: 56px 0;
  border-top: 1px solid #F5D5DF;
}

.signup-card {
  background: #FDE8ED;
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
}

.signup-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #2D1419;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.signup-sub {
  font-size: 0.95rem;
  color: rgba(45, 20, 25, 0.55);
  margin-bottom: 28px;
  line-height: 1.5;
}

.signup-consent {
  font-size: 0.78rem;
  color: rgba(45, 20, 25, 0.38);
  margin-top: 12px;
  line-height: 1.5;
}

.signup-note {
  font-size: 0.85rem;
  color: #D4285F;
  margin-top: 14px;
}

/* ─── Email Form ────────────────────────────────────────────── */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.email-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 13px 18px;
  border: 1.5px solid rgba(45, 20, 25, 0.18);
  border-radius: 100px;
  background: white;
  color: #2D1419;
  width: 100%;
  min-width: 0;
  outline: none;
  transition: border-color 0.2s;
}

.email-input::placeholder {
  color: rgba(45, 20, 25, 0.35);
}

.email-input:focus {
  border-color: #D4285F;
}

.email-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 13px 24px;
  background: #2D1419;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.18s, transform 0.1s;
  white-space: nowrap;
  width: 100%;
}

.email-btn:hover {
  background: #D4285F;
}

.email-btn:active {
  transform: scale(0.98);
}

/* ─── Decorative dots ───────────────────────────────────────── */
.deco-dots {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 40, 95, 0.3);
  margin-bottom: 32px;
  box-shadow:
    18px 0 0 0 rgba(212, 40, 95, 0.2),
    36px 0 0 0 rgba(212, 40, 95, 0.12),
    0 18px 0 0 rgba(212, 40, 95, 0.2),
    18px 18px 0 0 rgba(212, 40, 95, 0.14),
    36px 18px 0 0 rgba(212, 40, 95, 0.08);
}

/* ─── Logo Intro ────────────────────────────────────────────── */
.section--logo-intro {
  padding: 64px 0 32px;
  border-top: 1px solid #F5D5DF;
}

/* ─── Logo Grid ─────────────────────────────────────────────── */
.section--logos {
  padding: 16px 0 80px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
}

.logo-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 40, 95, 0.12);
}

.logo-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.logo-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1C1C1C;
}

.logo-label {
  font-size: 0.78rem;
  color: #999999;
  letter-spacing: 0.04em;
}

/* ─── Google Form ───────────────────────────────────────────── */
.section--form {
  padding: 64px 0 100px;
  border-top: 1px solid #F5D5DF;
}

.form-intro {
  font-size: 0.95rem;
  color: rgba(45, 20, 25, 0.55);
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.7;
}

.form-intro__note {
  display: block;
  font-size: 0.82rem;
  color: rgba(45, 20, 25, 0.35);
  margin-top: 6px;
}

.form-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.form-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* ─── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 20, 25, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.15s;
}

.lightbox-close:hover {
  color: #ffffff;
}

/* ─── Sticky Bar ────────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FDE8ED;
  border-top: 1px solid rgba(212, 40, 95, 0.15);
  z-index: 1000;
  padding: 14px 24px;
}

.sticky-bar__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-right: 32px;
}

.sticky-bar__text {
  font-size: 0.88rem;
  color: rgba(45, 20, 25, 0.65);
  flex: 1;
}

.sticky-bar__text strong {
  color: #2D1419;
}

.sticky-bar__form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 340px;
}

.email-input--sticky {
  flex: 1;
  min-width: 0;
  width: auto;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-color: rgba(45, 20, 25, 0.15);
}

.email-btn--sticky {
  padding: 10px 20px;
  font-size: 0.84rem;
  flex-shrink: 0;
  width: auto;
}

.sticky-bar__success {
  font-size: 0.88rem;
  color: #D4285F;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.sticky-bar__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(45, 20, 25, 0.3);
  font-size: 1rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.15s;
}

.sticky-bar__close:hover {
  color: rgba(45, 20, 25, 0.65);
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  padding: 24px 32px;
  border-top: 1px solid #F5D5DF;
  text-align: center;
}

.site-footer__text {
  font-size: 0.78rem;
  color: rgba(45, 20, 25, 0.3);
  letter-spacing: 0.03em;
}

/* ─── Mobile ────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .section--row {
    padding: 48px 0;
  }

  .section-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .section-block--reversed {
    flex-direction: column;
  }

  .section-icon {
    width: 88px;
  }

  .section-icon svg {
    width: 88px;
    height: 88px;
  }

  .hero-blob {
    width: 320px;
    height: 320px;
    top: -40px;
    right: -60px;
  }

  .hero-star {
    bottom: 60px;
    left: 28px;
    font-size: 1.8rem;
  }

  .logo-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pricing-arrow {
    display: none;
  }

  .signup-card {
    padding: 36px 24px;
  }

  .email-form {
    flex-direction: column;
    align-items: stretch;
  }

  .email-input {
    width: 100%;
  }

  .email-btn {
    width: 100%;
  }

  .sticky-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-right: 32px;
  }

  .sticky-bar__text {
    white-space: normal;
    font-size: 0.82rem;
  }

  .sticky-bar__form {
    flex-direction: column;
    gap: 8px;
  }

  .email-input--sticky,
  .email-btn--sticky {
    width: 100%;
  }

  .form-wrapper iframe {
    height: 700px;
  }

  .section--logo-intro {
    padding: 48px 0 24px;
  }

  .section--logos {
    padding-bottom: 60px;
  }

  .section--form {
    padding: 48px 0 80px;
  }

  .section--signup-wrap {
    padding: 44px 0;
  }
}
