:root {
  --cream: #f8f1e6;
  --forest: #2b5e2a;
  --dark: #1e281f;
  --mint: #c8e3d2;
  --bluegrey: #b3cdce;
  --golden: #ffce44;
  --white: #fffdfa;
  --red: #dc2626;
  --shadow-forest: 0 24px 60px rgba(43, 94, 42, 0.12);
  --shadow-soft: 0 20px 45px rgba(30, 40, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--dark);
  background: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 3rem, 80rem);
  margin: 0 auto;
}

.narrow {
  max-width: 48rem;
}

.center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
  background: rgba(248, 241, 230, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 10px rgba(30, 40, 31, 0.06);
}

.nav-inner {
  width: min(100% - 3rem, 80rem);
  height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 2.5rem;
  transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo {
  transform: scale(1.05);
}

.desktop-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-links a {
  color: rgba(30, 40, 31, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-links a:hover {
  color: var(--forest);
}

.desktop-links .nav-cta,
.mobile-cta {
  color: var(--dark);
  background: var(--golden);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.desktop-links .nav-cta:hover {
  color: var(--dark);
  background: rgba(255, 206, 68, 0.9);
  box-shadow: 0 8px 20px rgba(255, 206, 68, 0.2);
}

.mobile-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--dark);
}

.mobile-toggle .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-toggle .icon-close,
.mobile-toggle.is-open .icon-menu {
  display: none;
}

.mobile-toggle.is-open .icon-close {
  display: block;
}

.mobile-menu {
  border-top: 1px solid rgba(43, 94, 42, 0.1);
  background: rgba(248, 241, 230, 0.98);
  backdrop-filter: blur(14px);
  padding: 1rem 1.5rem;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: rgba(30, 40, 31, 0.72);
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-menu .mobile-cta {
  margin-top: 0.5rem;
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(64px);
}

.hero-glow-mint {
  top: 5rem;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(200, 227, 210, 0.32);
}

.hero-glow-golden {
  left: 0;
  bottom: 5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 206, 68, 0.1);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero-wordmark {
  width: 9rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-title {
  max-width: 45rem;
  color: var(--dark);
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.mobile-line {
  display: none;
}

.hero-title span,
.section-heading h2 span,
.download-copy h2 span {
  color: var(--forest);
}

.hero-text {
  max-width: 34rem;
  margin-top: 1.5rem;
  color: rgba(30, 40, 31, 0.6);
  font-size: 1.125rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.125rem;
  border-radius: 999px;
  border: 0;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.button .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.button-primary {
  color: var(--dark);
  background: var(--golden);
  box-shadow: 0 12px 28px rgba(255, 206, 68, 0.2);
}

.button-primary:hover {
  background: rgba(255, 206, 68, 0.9);
  box-shadow: 0 14px 30px rgba(255, 206, 68, 0.25);
}

.button-primary:hover .icon {
  transform: translateX(0.25rem);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
  border: 2px solid var(--forest);
}

.button-secondary:hover {
  color: var(--cream);
  background: var(--forest);
}

.button:active {
  transform: scale(0.98);
}

.member-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border: 2px solid var(--cream);
  border-radius: 999px;
}

.avatar-stack img + img {
  margin-left: -0.75rem;
}

.member-count {
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 600;
}

.member-caption {
  margin-top: 0.15rem;
  color: rgba(30, 40, 31, 0.5);
  font-size: 0.75rem;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.screen-card {
  position: relative;
  width: min(100%, 28rem);
}

.screen-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: rgba(200, 227, 210, 0.42);
  transform: rotate(3deg) scale(1.05);
}

.hero-screen {
  position: relative;
  width: 100%;
  height: 30rem;
  object-fit: contain;
  border-radius: 1.5rem;
  filter: drop-shadow(0 25px 40px rgba(30, 40, 31, 0.22));
}

.waitlist-section {
  border-top: 1px solid rgba(43, 94, 42, 0.1);
  background: rgba(43, 94, 42, 0.05);
}

.waitlist-section h2,
.section-heading h2 {
  color: var(--dark);
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-copy,
.section-heading p {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: rgba(30, 40, 31, 0.6);
  font-size: 1.125rem;
  line-height: 1.65;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 36rem;
  margin: 2.5rem auto 0;
}

input[type="email"] {
  width: 100%;
  min-height: 3.5rem;
  border: 1px solid rgba(43, 94, 42, 0.2);
  border-radius: 999px;
  outline: 0;
  background: var(--cream);
  color: var(--dark);
  padding: 1rem 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

input[type="email"]::placeholder {
  color: rgba(30, 40, 31, 0.4);
}

input[type="email"]:focus {
  border-color: var(--golden);
  box-shadow: 0 0 0 3px rgba(255, 206, 68, 0.3);
}

input[type="email"]:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.submit-button .spinner {
  display: none;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid rgba(30, 40, 31, 0.25);
  border-top-color: var(--dark);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

.submit-button.is-loading .spinner {
  display: block;
}

.form-message {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.success-message {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
}

.success-message .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.error-message {
  color: var(--red);
}

.features-section {
  background: rgba(200, 227, 210, 0.4);
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.eyebrow {
  color: rgba(43, 94, 42, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-top: 0.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.feature-card,
.testimonial-card,
.plan-card {
  border-radius: 1rem;
  background: rgba(255, 253, 250, 0.82);
  transition: transform 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
}

.feature-card {
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-0.25rem);
  background: var(--white);
  box-shadow: 0 24px 48px rgba(43, 94, 42, 0.05);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  background: var(--mint);
  color: var(--forest);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: var(--cream);
  background: var(--forest);
}

.feature-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card h3,
.step-card h3,
.testimonial-card strong,
.plan-card h3 {
  color: var(--dark);
}

.feature-card h3,
.step-card h3,
.plan-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card p,
.step-card p {
  margin-top: 0.75rem;
  color: rgba(30, 40, 31, 0.55);
  font-size: 0.875rem;
  line-height: 1.65;
}

.process-section,
.testimonials-section {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

.step-card {
  position: relative;
  text-align: center;
}

.step-icon {
  position: relative;
  width: 6rem;
  height: 6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 18px 35px rgba(43, 94, 42, 0.06);
}

.step-icon .icon {
  width: 2rem;
  height: 2rem;
}

.step-icon span {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--dark);
  background: var(--golden);
  font-size: 0.75rem;
  font-weight: 700;
}

.step-card p {
  max-width: 20rem;
  margin-right: auto;
  margin-left: auto;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(30, 40, 31, 0.04);
}

.testimonial-card:hover {
  box-shadow: 0 24px 48px rgba(179, 205, 206, 0.1);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  color: rgba(179, 205, 206, 0.4);
  transition: color 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  color: rgba(179, 205, 206, 0.6);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--golden);
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  stroke: currentColor;
}

.testimonial-card > p {
  color: rgba(30, 40, 31, 0.7);
  font-size: 0.875rem;
  line-height: 1.65;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(179, 205, 206, 0.2);
}

.testimonial-person img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
  font-size: 0.875rem;
}

.testimonial-person strong {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
}

.testimonial-person span {
  margin-top: 0.15rem;
  color: rgba(30, 40, 31, 0.5);
  font-size: 0.75rem;
}

.pricing-section {
  background: rgba(200, 227, 210, 0.2);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(30, 40, 31, 0.04);
}

.plan-card:hover {
  box-shadow: 0 20px 40px rgba(30, 40, 31, 0.08);
}

.plan-card.featured {
  color: var(--cream);
  background: var(--forest);
  box-shadow: 0 28px 60px rgba(43, 94, 42, 0.2);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--golden);
  color: var(--dark);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.popular-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.plan-card.featured h3 {
  color: var(--cream);
}

.plan-description {
  margin-top: 0.5rem;
  color: rgba(30, 40, 31, 0.55);
  font-size: 0.875rem;
  line-height: 1.6;
}

.plan-card.featured .plan-description {
  color: rgba(248, 241, 230, 0.7);
}

.price-row {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.price {
  color: var(--dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.period {
  color: rgba(30, 40, 31, 0.5);
  font-size: 0.875rem;
}

.plan-card.featured .price {
  color: var(--cream);
}

.plan-card.featured .period {
  color: rgba(248, 241, 230, 0.6);
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(30, 40, 31, 0.7);
  font-size: 0.875rem;
  line-height: 1.45;
}

.feature-list svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.125rem;
  color: var(--forest);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-card.featured .feature-list li {
  color: rgba(248, 241, 230, 0.9);
}

.plan-card.featured .feature-list svg {
  color: var(--golden);
}

.plan-button {
  display: block;
  border: 2px solid var(--forest);
  border-radius: 999px;
  padding: 0.875rem 1rem;
  color: var(--forest);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.plan-button:hover {
  color: var(--cream);
  background: var(--forest);
}

.plan-card.featured .plan-button {
  border-color: var(--golden);
  background: var(--golden);
  color: var(--dark);
}

.plan-card.featured .plan-button:hover {
  background: rgba(255, 206, 68, 0.9);
  box-shadow: 0 14px 30px rgba(255, 206, 68, 0.18);
}

.download-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.download-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.download-copy h2 {
  color: var(--cream);
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.download-copy h2 span {
  color: var(--golden);
}

.download-copy > p {
  max-width: 28rem;
  margin-top: 1.5rem;
  color: rgba(248, 241, 230, 0.6);
  font-size: 1.125rem;
  line-height: 1.65;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.store-button {
  border: 0;
  background: transparent;
  padding: 0;
  transition: opacity 0.3s ease;
}

.store-button:hover {
  opacity: 0.9;
}

.store-button img {
  width: auto;
  height: 10.5rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stats-row strong {
  display: block;
  color: var(--golden);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.stats-row span {
  display: block;
  margin-top: 0.125rem;
  color: rgba(248, 241, 230, 0.5);
  font-size: 0.75rem;
}

.download-media {
  display: flex;
  justify-content: center;
}

.phone-preview {
  position: relative;
}

.phone-shadow {
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  background: rgba(43, 94, 42, 0.3);
  filter: blur(4px);
  transform: rotate(6deg) scale(0.95);
}

.phone-frame {
  position: relative;
  width: 16rem;
  border-radius: 2.5rem;
  background: linear-gradient(to bottom, rgba(43, 94, 42, 0.8), rgba(43, 94, 42, 0.4));
  padding: 0.75rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

.phone-frame img {
  width: 100%;
  height: 26.25rem;
  object-fit: cover;
  border-radius: 2rem;
}

.streak-card {
  position: absolute;
  top: -1rem;
  right: -1rem;
  border-radius: 1rem;
  background: var(--golden);
  color: var(--dark);
  padding: 0.75rem 1rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.streak-card span,
.streak-card strong {
  display: block;
}

.streak-card span {
  font-size: 0.75rem;
  font-weight: 500;
}

.streak-card strong {
  margin-top: 0.15rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.25s ease-out forwards;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-panel {
  position: relative;
  width: min(100%, 28rem);
  border-radius: 1.5rem;
  background: var(--cream);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  animation: scaleIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: rgba(30, 40, 31, 0.6);
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.modal-close:hover {
  color: var(--dark);
  background: rgba(30, 40, 31, 0.05);
}

.modal-content {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.modal-logo {
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-content h3 {
  color: var(--forest);
  font-size: clamp(1.5rem, 7vw, 1.875rem);
  font-weight: 700;
  line-height: 1.15;
}

.modal-content > p {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  color: rgba(30, 40, 31, 0.6);
  line-height: 1.6;
}

.modal-form {
  display: grid;
  gap: 1rem;
}

.modal-form input[type="email"] {
  background: var(--white);
}

.modal-form .submit-button {
  width: 100%;
  font-weight: 700;
}

.privacy-note {
  color: rgba(30, 40, 31, 0.5);
  font-size: 0.75rem;
}

.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}

.modal-success[hidden] {
  display: none;
}

.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(43, 94, 42, 0.1);
  color: var(--forest);
}

.success-icon .icon {
  width: 1.75rem;
  height: 1.75rem;
}

.modal-success p {
  color: var(--dark);
  font-weight: 500;
}

.site-footer {
  background: var(--dark);
  color: rgba(248, 241, 230, 0.8);
}

.site-footer .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-grid h3 {
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-grid p {
  margin-top: 1rem;
  color: rgba(248, 241, 230, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-grid h4 {
  margin: 0 0 1rem;
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid li + li {
  margin-top: 0.75rem;
}

.footer-grid a {
  color: rgba(248, 241, 230, 0.8);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(248, 241, 230, 0.1);
  padding-top: 2rem;
}

.footer-bottom p {
  color: rgba(248, 241, 230, 0.5);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-links a {
  color: rgba(248, 241, 230, 0.6);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--cream);
}

.social-links .icon,
.tiktok-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.reveal,
.reveal-child {
  opacity: 0;
}

.reveal.is-visible,
.reveal.is-visible .reveal-child {
  animation: fadeInUp 0.7s ease-out forwards;
}

.reveal.is-visible .reveal-child {
  animation-delay: var(--delay, 0s);
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-fade-in-up-delay-1 {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 0.15s forwards;
}

.animate-fade-in-up-delay-2 {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 640px) {
  .nav-inner {
    height: 5rem;
  }

  .brand-logo {
    height: 3rem;
  }

  .waitlist-form {
    flex-direction: row;
  }

  .waitlist-form input {
    flex: 1;
  }

  .phone-frame {
    width: 18rem;
  }

  .phone-frame img {
    height: 30rem;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .desktop-links {
    display: flex;
  }

  .mobile-toggle,
  .mobile-menu {
    display: none;
  }

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

  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3rem;
    left: 60%;
    width: 80%;
    border-top: 2px dashed rgba(43, 94, 42, 0.2);
  }

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

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

  .plan-card.featured {
    margin-top: -1rem;
    padding-bottom: 3rem;
  }

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

  .footer-grid > :first-child {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: flex-start;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  .hero-wordmark {
    width: 14rem;
    margin-bottom: 3.5rem;
  }

  .hero-title {
    font-size: clamp(3.75rem, 5.5vw, 4.5rem);
  }

  .hero-text {
    font-size: 1.25rem;
  }

  .hero-media {
    justify-content: flex-end;
    margin-top: 5rem;
  }

  .hero-screen {
    height: 35rem;
  }

  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}

@media (max-width: 520px) {
  .container,
  .nav-inner {
    width: min(100% - 2rem, 80rem);
  }

  .hero-title {
    max-width: 100%;
    font-size: 2.35rem;
  }

  .hero-text {
    max-width: 21rem;
    font-size: 1rem;
  }

  .hero-actions {
    max-width: 21rem;
  }

  .mobile-line {
    display: block;
  }

  .hero-actions .button,
  .waitlist-form .button,
  .modal-form .button {
    width: 100%;
  }

  .store-button img {
    height: 8rem;
  }

  .stats-row {
    gap: 1.25rem;
  }

  .streak-card {
    right: -0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
