/* Layout — LP sections */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--space-page);
  max-width: 1120px;
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.nav__logo:hover {
  text-decoration: none;
}

.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  color: #fff;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
}

.hero__photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  max-height: 520px;
}

.hero-trust {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.hero-trust a {
  color: inherit;
  text-decoration: underline;
}

.social-band {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.social-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .social-band__inner {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
}

.social-band__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.social-band__text {
  flex: 1;
}

.social-band__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.social-band__bio {
  font-size: 14px;
  color: var(--ink-body);
  line-height: 1.5;
}

.social-band__stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.social-band__stat {
  font-size: 13px;
  color: var(--ink-meta);
  text-align: center;
}

.social-band__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cta);
}

.benefits-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 8px;
  max-width: 640px;
}

.benefits-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefits-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--cta);
  background: var(--secondary);
  border-radius: 50%;
}

.benefits-list__item p {
  font-size: 15px;
  color: var(--ink-body);
  line-height: 1.5;
}

.cta-mid {
  padding: 48px 0;
}

.cta-mid__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-mid__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .cta-mid__inner .waitlist-form {
    flex-shrink: 0;
    max-width: 440px;
  }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px var(--space-page);
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(47, 24, 42, 0.08);
}

.sticky-cta[hidden] {
  display: none;
}

body:has(.sticky-cta:not([hidden])) {
  padding-bottom: 72px;
}

.section {
  padding: var(--space-section) 0;
}

.section--sand {
  background: var(--bg);
}

.section--white {
  background: #fff;
}

.section--burgundy {
  background: linear-gradient(160deg, #3d152d 0%, #6b2048 50%, #8c2654 100%);
  color: #fff;
}

.section--burgundy .section-title,
.section--burgundy h2,
.section--burgundy h3 {
  color: #fff;
}

.section--burgundy .section-sub {
  color: rgba(255, 255, 255, 0.85);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .problem__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.problem__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  max-width: 360px;
  margin: 0 auto;
}

.gap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .gap__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.gap__mock {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.gap__mock h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-section);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.gap__avocado {
  text-align: center;
  padding: 20px;
  background: var(--bg);
  border-radius: 16px;
  margin-bottom: 16px;
}

.gap__search {
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ink-meta);
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.gap__result {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.gap__result:last-child {
  border-bottom: none;
}

.gap__result-meta {
  font-size: 11px;
  color: var(--ink-meta);
}

.gap__punch {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--cta);
  text-align: center;
  margin-top: 48px;
}

.pillars__phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .pillars__phones {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-label {
  text-align: center;
  margin-top: 12px;
}

.pillar-label h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.pillar-label p {
  font-size: 13px;
  color: var(--ink-meta);
}

.social__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .social__grid {
    grid-template-columns: 200px 1fr;
  }
}

.social__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.social__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social__stat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--cta);
}

.social__stat span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-meta);
}

.vision {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.vision__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vision__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-vision);
  z-index: 1;
}

.vision__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.vision__content .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.vision__content .section-label::before {
  background: rgba(255, 255, 255, 0.6);
}

.vision__content h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.vision__content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.vision__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: #f5c9dc;
  margin-top: 20px;
  font-size: 20px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-final {
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  padding: var(--space-section) 0;
}

.cta-final h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-final .waitlist-form {
  margin: 0 auto;
}

.cta-final .waitlist-input {
  background: rgba(255, 255, 255, 0.95);
}

.cta-final .waitlist-message--success {
  color: #b7f0d0;
}

.cta-final .waitlist-message--error {
  color: #fecaca;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer__links a {
  font-size: 14px;
  color: var(--ink-meta);
}

.footer__links a:hover {
  color: var(--cta);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.filter-pill {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.filter-pill--active {
  background: rgba(255, 255, 255, 0.2);
}

.library-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: #f5c9dc;
  margin-top: 24px;
  font-size: 18px;
}
