:root {
  --color-primary: #18181B;
  --color-secondary: #3F3F46;
  --color-accent: #EC4899;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(9, 9, 11, 0.06);
  --shadow-md: 0 12px 40px -10px rgba(9, 9, 11, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(9, 9, 11, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 600;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--color-secondary); }
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}
.lede { font-size: 1.125rem; color: var(--color-secondary); max-width: 52ch; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #f472b6);
  color: var(--color-neutral-light);
  box-shadow: 0 10px 24px -8px rgba(236, 72, 153, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(236, 72, 153, 0.6); }
.btn-primary:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(24, 24, 27, 0.18);
}
.btn-ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(24, 24, 27, 0.06);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  box-shadow: 0 8px 24px -12px rgba(9, 9, 11, 0.18);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-secondary);
  position: relative;
  padding: 0.25rem 0;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-hover);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-neutral-light);
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { background: var(--color-accent); color: var(--color-neutral-light); }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform .2s; }
.primary-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1.5rem 1.25rem 2rem;
  gap: 1rem;
  box-shadow: 0 20px 30px -10px rgba(9, 9, 11, 0.18);
}

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
  .nav-inner { padding: 1rem 2rem; }
}

/* === Layout === */
main { display: block; }
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.section-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.section-narrow h2 { font-family: var(--font-heading); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head .sub { color: var(--color-secondary); }

@media (min-width: 768px) {
  .section { padding: 6rem 2rem; }
  .section-narrow { padding: 6rem 2rem; }
}

/* === Hero (split) === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem 4rem;
  background:
    radial-gradient(60% 60% at 15% 20%, rgba(236, 72, 153, 0.10), transparent 70%),
    radial-gradient(50% 50% at 90% 10%, rgba(63, 63, 70, 0.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 1.25rem; }
.hero-copy .lede { margin-bottom: 2rem; font-size: 1.15rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .hero { padding: 6rem 2rem 7rem; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .hero-copy .lede { font-size: 1.25rem; }
}

.hero-thanks { text-align: center; }
.hero-thanks-inner { max-width: 720px; margin: 0 auto; }

/* === Cards === */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }
.card-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; font-size: 0.95rem; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(236, 72, 153, 0.04));
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* === Testimonial === */
.testimonial { max-width: 860px; text-align: center; }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.95rem;
}

/* === CTA band === */
.cta-band {
  margin: 4rem 1.25rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(50% 100% at 100% 0%, rgba(236, 72, 153, 0.35), transparent 60%),
    linear-gradient(135deg, var(--color-neutral-dark), var(--color-secondary));
  color: var(--color-neutral-light);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250, 250, 250, 0.8); margin-bottom: 1.75rem; }
.cta-band-inner { max-width: 680px; margin: 0 auto; }
@media (min-width: 768px) {
  .cta-band { margin: 6rem 2rem; padding: 4.5rem 2rem; }
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border: 2px solid var(--color-accent);
  box-shadow: 0 20px 50px -15px rgba(236, 72, 153, 0.35);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--color-accent);
  color: var(--color-neutral-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-card__plan { font-size: 1.25rem; margin-bottom: 0.35rem; color: var(--color-secondary); }
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.pricing-card__lede { font-size: 0.95rem; margin-bottom: 1.25rem; color: var(--color-secondary); }
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}
.pricing-card__features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--color-primary);
}
.pricing-card__features li span {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}
.pricing-card__cta { align-self: stretch; text-align: center; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq details {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: box-shadow .25s;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 1rem 0 0; }

/* === Contact band (about) === */
.contact-band {
  background: linear-gradient(135deg, #ffffff, #f4f4f5);
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-line { font-size: 0.95rem; }

/* === Contact form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(24, 24, 27, 0.15);
  border-radius: 10px;
  background: #fff;
  color: var(--color-primary);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-secondary);
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; flex-shrink: 0; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 250, 250, 0.7);
  padding: 4rem 1.25rem 2rem;
  margin-top: 4rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; }
  .site-footer { padding: 5rem 2rem 2rem; }
}
.site-footer .logo img { height: 64px; }
.site-footer .tagline {
  font-family: var(--font-heading);
  color: rgba(250, 250, 250, 0.85);
  margin-top: 1rem;
  font-size: 0.95rem;
}
.site-footer h4 {
  color: var(--color-neutral-light);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a,
.legal-nav a {
  color: rgba(250, 250, 250, 0.65);
  font-size: 0.95rem;
  transition: color .2s;
}
.footer-nav a:hover, .legal-nav a:hover { color: var(--color-accent); }
.footer-contact address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.7);
  margin-bottom: 1.25rem;
}
.footer-contact address a { color: rgba(250, 250, 250, 0.75); }
.legal-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.copyright {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 250, 0.08);
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.5);
  text-align: center;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  z-index: 9999;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { color: rgba(250, 250, 250, 0.85); margin: 0 0 1rem; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }
.cookie-banner__actions .btn-ghost { color: var(--color-neutral-light); border-color: rgba(250, 250, 250, 0.25); }
.cookie-banner__actions .btn-ghost:hover { border-color: var(--color-neutral-light); }
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 250, 250, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs .btn { margin-top: 0.5rem; align-self: flex-start; padding: 0.5rem 1rem; font-size: 0.85rem; }

/* === Reveal (scroll motion) === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
