.hero {
  align-items: center;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
  position: relative;
}

.hero-bg-1 {
  animation: drift 22s ease-in-out infinite;
  background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
  border-radius: 50%;
  height: 700px;
  position: absolute;
  right: -15%;
  top: -25%;
  width: 700px;
}

.hero-bg-2 {
  animation: drift 28s ease-in-out infinite reverse;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -20%;
  height: 500px;
  left: -10%;
  position: absolute;
  width: 500px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.1fr 0.9fr;
  margin: 0 auto;
  max-width: 1140px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-text {
  max-width: 540px;
}

.launch-badge {
  animation: fadeUp 0.6s ease-out both;
  align-items: center;
  background: var(--secondary-soft);
  border: 1.5px solid var(--secondary);
  border-radius: 50px;
  color: var(--secondary);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
}

.launch-badge::before {
  animation: pulse-dot 2s ease-in-out infinite;
  background: var(--secondary);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.hero-title {
  animation: fadeUp 0.6s ease-out 0.08s both;
  color: var(--neutral-dark);
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero-title em {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.hero-sub {
  animation: fadeUp 0.6s ease-out 0.16s both;
  color: #6b6560;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.email-form {
  animation: fadeUp 0.6s ease-out 0.24s both;
  display: flex;
  gap: 0.65rem;
  max-width: 440px;
}

.email-form input {
  background: var(--white);
  border: 2px solid var(--neutral-light);
  border-radius: 12px;
  color: var(--neutral-dark);
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  outline: none;
  padding: 0.8rem 1.1rem;
  transition: border-color 0.25s ease;
}

.email-form input:focus {
  border-color: var(--primary);
}

.email-form input::placeholder {
  color: #b5afa9;
}

.email-form button {
  background: var(--primary);
  border: none;
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.email-form button:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(224, 132, 85, 0.3);
  transform: translateY(-1px);
}

.email-form button:disabled {
  cursor: wait;
  opacity: 0.85;
}

.form-note {
  animation: fadeUp 0.6s ease-out 0.32s both;
  color: #9b9590;
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

.form-success {
  background: var(--secondary-soft);
  border: 1.5px solid var(--secondary);
  border-radius: 12px;
  color: var(--secondary);
  display: none;
  font-weight: 600;
  max-width: 440px;
  padding: 0.9rem 1.3rem;
}

.beta-inline-note {
  animation: fadeUp 0.6s ease-out 0.4s both;
  margin-top: 1rem;
  max-width: 470px;
}

.hero-visual {
  align-items: center;
  animation: fadeUp 0.8s ease-out 0.2s both;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-globe {
  animation: gentle-bob 7s ease-in-out infinite;
  filter: drop-shadow(0 16px 36px rgba(62, 58, 55, 0.12));
  height: auto;
  width: 360px;
}

.story-section,
.why-section,
.cta-section {
  background: var(--white);
  position: relative;
}

.story-section,
.how-section,
.why-section,
.preview-section,
.cta-section {
  padding: 5.5rem 2rem;
}

.story-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.story-section::before,
.why-section::before,
.cta-section::before {
  background: linear-gradient(90deg, transparent, var(--neutral-light), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

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

.story-quote {
  color: var(--neutral-dark);
  font-family: "Merriweather", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.85;
  padding: 0 1rem;
  position: relative;
}

.story-quote::before {
  color: var(--primary);
  content: "\201C";
  font-size: 4rem;
  font-style: normal;
  left: -0.4em;
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: -0.35em;
}

.story-attribution {
  color: #9b9590;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1.2rem;
}

.how-section .section-inner {
  max-width: 1060px;
}

.how-section .section-title {
  margin-bottom: 3rem;
}

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

.step-card {
  background: var(--white);
  border: 1px solid rgba(62, 58, 55, 0.05);
  border-radius: 18px;
  overflow: hidden;
  padding: 2.2rem 1.4rem;
  position: relative;
  text-align: center;
  transition: all 0.35s ease;
}

.step-card:hover {
  box-shadow: 0 10px 28px rgba(62, 58, 55, 0.07);
  transform: translateY(-3px);
}

.step-num {
  align-items: center;
  background: var(--primary-soft);
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  display: inline-flex;
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 36px;
}

.step-icon {
  filter: drop-shadow(0 3px 10px rgba(62, 58, 55, 0.08));
  height: 88px;
  margin: 0 auto 1.2rem;
  object-fit: contain;
  width: 88px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: #6b6560;
  font-size: 0.92rem;
  line-height: 1.65;
}

.why-grid {
  display: grid;
  gap: 1.5rem 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 880px;
}

.why-item {
  align-items: flex-start;
  border-radius: 14px;
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  transition: background 0.25s ease;
}

.why-item:hover {
  background: var(--bg-cream);
}

.why-icon {
  align-items: center;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
  font-size: 1.3rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.why-icon.orange {
  background: #e0845515;
}

.why-icon.green {
  background: #70876c15;
}

.why-icon.blue {
  background: #6ba3ab15;
}

.why-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.why-item p {
  color: #6b6560;
  font-size: 0.88rem;
  line-height: 1.6;
}

.preview-section {
  overflow: hidden;
  position: relative;
}

.preview-section::before {
  background: linear-gradient(160deg, var(--secondary-soft) 0%, var(--accent-soft) 50%, var(--primary-soft) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.preview-inner {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.preview-header {
  text-align: center;
  margin-bottom: 3rem;
}

.phone-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
}

.phone-wrap {
  transition: transform 0.4s ease;
}

.phone-wrap:hover {
  transform: translateY(-6px);
}

.phone-frame {
  background: var(--neutral-dark);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(62, 58, 55, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  flex-shrink: 0;
  padding: 10px;
  width: 230px;
}

.phone-screen {
  aspect-ratio: 9 / 19.5;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.phone-screen img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.phone-label {
  color: var(--neutral-dark);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.85rem;
  opacity: 0.65;
  text-align: center;
}

.cta-section {
  text-align: center;
}

.cta-inner {
  margin: 0 auto;
  max-width: 560px;
}

.cta-globe {
  display: block;
  filter: drop-shadow(0 6px 18px rgba(62, 58, 55, 0.1));
  height: auto;
  margin: 0 auto 1.3rem;
  width: 110px;
}

.cta-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.cta-sub {
  color: #6b6560;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.cta-form {
  margin: 0 auto;
  max-width: 440px;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(25px, -18px);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    gap: 2rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
    max-width: 100%;
  }

  .email-form {
    flex-direction: column;
    margin: 0 auto;
    max-width: 100%;
  }

  .email-form button,
  .form-success {
    width: 100%;
  }

  .form-note {
    text-align: center;
  }

  .hero-globe {
    width: 260px;
  }

  .hero-visual {
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 380px;
  }

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

  .phone-carousel {
    gap: 1.25rem;
  }

  .phone-frame {
    width: 190px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: 5.5rem 1.25rem 3rem;
  }

  .hero-globe {
    width: 200px;
  }

  .phone-frame {
    width: 155px;
  }

  .story-quote {
    font-size: 1rem;
  }
}
