/* ========================
   MOVEMINT LANDING PAGE
   ======================== */

:root {
  --teal: #0F766E;
  --teal-light: #14B8A6;
  --teal-pale: #CCFBF1;
  --cream: #FBF9F7;
  --warm-white: #F8F6F3;
  --terracotta: #E05D28;
  --charcoal: #1C1917;
  --stone: #78716C;
  --stone-light: #A8A29E;
  --border: #E7E5E4;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(251, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #CCFBF1, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FEF3E8, transparent 70%);
  bottom: -80px;
  left: 10%;
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-accent {
  color: var(--teal);
}
.hero-sub {
  font-size: 17px;
  color: var(--stone);
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  border-radius: 14px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 32px;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.35);
}
.hero-cta-btn:hover { background: #0D6B60; transform: translateY(-1px); }
.hero-cta-btn:active { transform: scale(0.98); }
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--stone);
  font-weight: 500;
}

/* PHONE FRAME */
.hero-right {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 280px;
  background: #1C1917;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone-screen {
  background: var(--cream);
  border-radius: 30px;
  overflow: hidden;
}
.screen-topbar {
  background: #1C1917;
  padding: 14px 16px 6px;
  display: flex;
  justify-content: center;
}
.screen-notch {
  width: 80px;
  height: 22px;
  background: #1C1917;
  border-radius: 0 0 14px 14px;
}
.screen-content {
  padding: 20px 18px 24px;
}
.screen-header {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.screen-input-group {
  margin-bottom: 14px;
}
.screen-input-label {
  font-size: 10px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  font-weight: 500;
}
.screen-input-display {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.screen-link-text {
  font-size: 10px;
  color: var(--stone-light);
  font-family: var(--font-body);
}
.screen-link-icon {
  width: 20px;
  height: 20px;
  background: var(--teal-pale);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-item-preview {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.screen-item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.screen-item-info {
  flex: 1;
}
.screen-item-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.screen-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-display);
}
.screen-item-status {
  font-size: 9px;
  color: var(--teal);
  font-weight: 500;
  margin-top: 3px;
}
.screen-delivery-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.screen-delivery-label {
  font-size: 11px;
  color: var(--stone);
}
.screen-delivery-eta {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 2px 8px;
  border-radius: 100px;
}
.screen-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.screen-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
  transition: width 1s ease;
}
.screen-trust {
  display: flex;
  gap: 10px;
}
.screen-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--stone);
  font-weight: 500;
}

/* PASTE-IT SECTION */
.paste-it {
  background: #fff;
  padding: 100px 24px;
}
.paste-it-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--stone);
  max-width: 540px;
  margin: 20px 0 60px;
  line-height: 1.7;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid var(--border);
}
.step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.step-icon {
  color: var(--teal);
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}
.step-connector {
  display: flex;
  align-items: center;
  padding: 80px 0 0;
  justify-content: center;
}

/* WE FETCH IT */
.we-fetch-it {
  background: var(--warm-white);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.we-fetch-it-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.platforms-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.platform-label {
  font-size: 13px;
  color: var(--stone);
  font-weight: 500;
}
.platform-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.platform-badge {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  white-space: nowrap;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}

/* TRUST SECTION */
.trust-section {
  background: var(--charcoal);
  padding: 80px 24px;
}
.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.trust-quote-mark {
  font-size: 80px;
  color: var(--terracotta);
  line-height: 0.6;
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.trust-quote-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: #F8F6F3;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 60px;
}
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.trust-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.trust-stat-label {
  font-size: 13px;
  color: #A8A29E;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: #44403C;
}

/* CLOSING */
.closing {
  background: var(--cream);
  padding: 100px 24px;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.closing-accent {
  color: var(--teal);
}
.closing-sub {
  font-size: 17px;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--stone);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 24px;
}
.tagline-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* FOOTER */
.footer {
  background: var(--charcoal);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #F8F6F3;
}
.footer-tagline {
  font-size: 13px;
  color: #78716C;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right {
    order: -1;
  }
  .phone-frame {
    width: 240px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .trust-stats {
    flex-direction: column;
    gap: 24px;
  }
  .trust-divider {
    width: 48px;
    height: 1px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px 80px;
  }
  .paste-it, .we-fetch-it, .closing {
    padding: 70px 20px;
  }
  .feature-card {
    padding: 28px 24px;
  }
}