/* ============================================
   Kalpay Landing Page — Redesign
   Design moderno, escuro e impactante
   ============================================ */

:root {
  /* Brand */
  --brand-primary:     #af3002;
  --brand-primary-dim: #872200;
  --brand-accent:      #ffb5a0;
  --brand-tertiary:    #e9c254;

  /* Dark bg palette */
  --dark-900: #110a08;
  --dark-800: #1d100d;
  --dark-700: #2a1c18;
  --dark-600: #362622;
  --dark-500: #41312d;

  /* Light palette */
  --light-100: #ffffff;
  --light-200: #fff8f6;
  --light-300: #f7ddd6;
  --light-400: #fde3dc;
  --light-500: #ffdbd1;

  /* Text */
  --text-dark:    #261814;
  --text-muted:   #5a413a;
  --text-light:   #f7ddd6;
  --text-lighter: #e2bfb6;

  /* Outline */
  --outline:         #8e7069;
  --outline-variant: #e2bfb6;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-normal: 250ms ease;
  --t-slow:   400ms ease;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12);
  --shadow-md:   0 4px 16px rgba(0,0,0,.15);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.2);
  --shadow-glow: 0 0 40px rgba(175,48,2,.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--light-200);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

/* ---- Utility ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.btn--lg { padding: 0.875rem 2rem; font-size: 1rem; }

.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--brand-primary-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(247, 221, 214, .3);
}
.btn--ghost:hover {
  background: rgba(247, 221, 214, .08);
  border-color: rgba(247, 221, 214, .5);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

.section-tag {
  display: inline-block;
  padding: var(--sp-xs) var(--sp-md);
  background: var(--light-500);
  color: var(--brand-primary-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}
.section-tag--light {
  background: rgba(255, 181, 160, .15);
  color: var(--brand-accent);
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--sp-3xl); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: var(--sp-md);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--sp-md) 0;
  transition: background var(--t-normal), box-shadow var(--t-normal), backdrop-filter var(--t-normal);
}
.header.scrolled {
  background: rgba(17, 10, 8, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.header__logo { height: 36px; width: auto; }
.header__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--sp-xl);
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-lighter);
  transition: color var(--t-fast);
}
.header__link:hover { color: var(--text-light); }

.header__cta-link {
  padding: 0.6rem 1.25rem;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: background var(--t-fast), transform var(--t-fast);
}
.header__cta-link:hover {
  background: var(--brand-primary-dim);
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--dark-800);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 7rem var(--sp-xl) var(--sp-3xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(175,48,2,.45) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233,194,84,.2) 0%, transparent 70%);
  bottom: -80px;
  right: 5%;
}
.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(175,48,2,.25) 0%, transparent 70%);
  top: 40%;
  right: 30%;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3xl);
  text-align: center;
}

.hero__content { max-width: 680px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.4rem 1rem;
  background: rgba(175,48,2,.15);
  border: 1px solid rgba(255,181,160,.2);
  border-radius: var(--r-full);
  color: var(--brand-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-xl);
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-light);
  margin-bottom: var(--sp-xl);
}
.hero__title-gradient {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-primary) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-lighter);
  margin-bottom: var(--sp-2xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  justify-content: center;
}

/* Phone mockup */
.hero__visual {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}

.hero__phone {
  width: 220px;
  height: 430px;
  background: linear-gradient(160deg, #2a3f5f 0%, #0e1e36 100%);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-md);
  position: relative;
  overflow: hidden;
}
.hero__phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
}
.hero__phone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3) 100%);
}

.hero__phone-logo {
  width: 110px;
  z-index: 1;
}
.hero__phone-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  z-index: 1;
  letter-spacing: 0.08em;
}

/* Floating chips */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.6rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.hero__float svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__float--1 {
  background: #fff;
  color: var(--text-dark);
  top: 10%;
  right: -8%;
  animation-delay: 0s;
}
.hero__float--2 {
  background: var(--brand-primary);
  color: #fff;
  bottom: 22%;
  left: -8%;
  animation-delay: 1.5s;
}
.hero__float--3 {
  background: var(--dark-600);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,.1);
  bottom: 8%;
  right: -8%;
  animation-delay: 0.8s;
}
.hero__float--4 {
  background: var(--brand-tertiary);
  color: var(--text-dark);
  top: 22%;
  left: -8%;
  animation-delay: 2.2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--dark-900);
  padding: var(--sp-2xl) var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.stats__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xl);
}

.stats__item {
  text-align: center;
}

.stats__number {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-primary) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.stats__label {
  font-size: 0.9rem;
  color: var(--text-lighter);
  font-weight: 500;
}

.stats__divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.1);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: var(--sp-4xl) var(--sp-xl);
  background: var(--light-200);
}

.how__inner {
  max-width: 900px;
  margin: 0 auto;
}

.how__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--light-500) 100%);
}

.how__step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-xl);
  padding: var(--sp-xl) 0;
  position: relative;
}

.how__step-number {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--light-200), var(--shadow-md);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.how__step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
}

.how__step-text {
  font-size: 0.975rem;
  color: var(--text-muted);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: var(--sp-4xl) var(--sp-xl);
  background: var(--dark-800);
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features .section-title { color: var(--text-light); }
.features .section-subtitle { color: var(--text-lighter); }

.features__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.feature-card {
  background: var(--dark-700);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transition: border-color var(--t-normal), transform var(--t-normal), box-shadow var(--t-normal);
}
.feature-card:hover {
  border-color: rgba(175,48,2,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,.3);
}

.feature-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.feature-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.feature-card:hover .feature-card__image { transform: scale(1.06); }

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,10,8,.7) 100%);
}

.feature-card__body {
  padding: var(--sp-xl);
}

.feature-card__tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(175,48,2,.2);
  color: var(--brand-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}

.feature-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: var(--sp-md);
}

.feature-card__text {
  font-size: 0.95rem;
  color: var(--text-lighter);
  margin-bottom: var(--sp-lg);
}

.feature-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.feature-card__list li {
  font-size: 0.875rem;
  color: var(--text-lighter);
  padding-left: 1.2rem;
  position: relative;
}
.feature-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

.feature-card--highlight {
  border-color: rgba(175,48,2,.25);
}

/* ============================================
   WAITLIST
   ============================================ */
.waitlist {
  position: relative;
  background: var(--dark-900);
  padding: var(--sp-4xl) var(--sp-xl);
  overflow: hidden;
}

.waitlist__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.waitlist__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.waitlist__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(175,48,2,.35) 0%, transparent 70%);
  top: -100px;
  right: -80px;
}
.waitlist__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233,194,84,.15) 0%, transparent 70%);
  bottom: -60px;
  left: 5%;
}

.waitlist__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3xl);
  text-align: center;
}

.waitlist__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-light);
  margin-bottom: var(--sp-lg);
}

.waitlist__subtitle {
  font-size: 1.05rem;
  color: var(--text-lighter);
  max-width: 460px;
  margin: 0 auto var(--sp-xl);
}

.waitlist__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  text-align: left;
  max-width: 380px;
  margin: 0 auto;
}
.waitlist__perks li {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-lighter);
}
.waitlist__perks svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand-tertiary);
}

/* Waitlist Card */
.waitlist__card {
  width: 100%;
  max-width: 460px;
  background: var(--dark-700);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.waitlist__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--sp-sm);
}
.waitlist__card-desc {
  font-size: 0.9rem;
  color: var(--text-lighter);
  margin-bottom: var(--sp-xl);
}

/* Form */
.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.form__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-lighter);
  text-transform: uppercase;
}

.form__input {
  padding: 0.875rem var(--sp-md);
  font-size: 0.975rem;
  font-family: inherit;
  background: var(--dark-600);
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form__input::placeholder { color: rgba(226,191,182,.35); }
.form__input:hover { border-color: rgba(255,181,160,.25); }
.form__input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(175,48,2,.2);
}
.form__input.error { border-color: #f87171; }

.form__error {
  font-size: 0.78rem;
  color: #f87171;
  min-height: 1.1em;
}

/* Success */
.form__success {
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.form__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(175,48,2,.2);
  border: 2px solid var(--brand-primary);
  margin: 0 auto var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__success-icon svg {
  width: 26px;
  height: 26px;
  color: var(--brand-accent);
}
.form__success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--sp-sm);
}
.form__success-text {
  font-size: 0.9rem;
  color: var(--text-lighter);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-900);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: var(--sp-2xl) var(--sp-xl);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xs);
}
.footer__logo { height: 32px; }
.footer__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.02em;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--outline);
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--dark-500);
  color: rgba(226,191,182,.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* Hero floats: ajustes em telas pequenas */
@media (max-width: 767px) {
  .hero__visual {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
  .hero__float--1 { top: 8%; }
  .hero__float--2 { bottom: 20%; }
  .hero__float--3 { bottom: 6%; }
  .hero__float--4 { top: 20%; }
  .hero__float {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
  }
  .hero__float svg { width: 12px; height: 12px; }
}

/* Telas muito estreitas: cards colados ao celular para garantir visibilidade */
@media (max-width: 380px) {
  .hero__float--1 { right: 0; }
  .hero__float--2 { left: 0; }
  .hero__float--3 { right: 0; }
  .hero__float--4 { left: 0; }
}

@media (min-width: 640px) {
  .stats__inner {
    flex-direction: row;
    justify-content: center;
  }
  .stats__divider {
    width: 1px;
    height: 60px;
  }
  .stats__item { flex: 1; }

  .hero__actions { flex-wrap: nowrap; justify-content: center; }
}

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

  .hero__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }
  .hero__content { text-align: left; }
  .hero__subtitle { margin-left: 0; margin-right: 0; }
  .hero__actions { justify-content: flex-start; }
  .hero__visual { width: 280px; }

  .how .section-header { text-align: left; margin-left: 0; margin-right: 0; }

  .features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .feature-card--highlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
  .feature-card--highlight .feature-card__image-wrap {
    aspect-ratio: auto;
  }

  .waitlist__inner {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    justify-content: space-between;
  }
  .waitlist__copy { flex: 1; text-align: left; }
  .waitlist__copy .section-tag { margin: 0 0 var(--sp-md); }
  .waitlist__subtitle { margin-left: 0; margin-right: 0; }
  .waitlist__perks { margin: 0; }
  .waitlist__form-wrap { flex-shrink: 0; width: 420px; }
}

@media (min-width: 1024px) {
  .hero__visual { width: 320px; }
  .hero__phone { width: 260px; height: 500px; }
  .hero__phone-logo { width: 130px; }
}
