/* omove – Landing Page Styles */

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

:root {
  --teal: #0D9488;
  --teal-deep: #115E59;
  --teal-soft: #CCFBF1;
  --coral: #F97066;
  --coral-soft: #FEE2E2;
  --ink: #1C1917;
  --stone: #78716C;
  --shell: #E7E5E4;
  --canvas: #FAFAF9;
  --white: #FFFFFF;

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --max-w: 1120px;
  --px: 24px;
  --radius: 16px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; transition: color .15s; }
a:hover { color: var(--teal-deep); }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--shell);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--teal); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--stone); }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--teal);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  transition: background .15s;
}
.nav-cta:hover { background: var(--teal-deep); color: var(--white) !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle svg { width: 24px; height: 24px; color: var(--ink); }

/* ===== Hero ===== */
.hero {
  padding: 80px 0 60px;
}

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

.hero-text { text-align: left; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}

.hero h1 .accent { color: var(--teal); }

.hero p {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--stone);
  max-width: 480px;
  margin: 0 0 36px;
  line-height: 1.5;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: var(--teal-deep); color: var(--white); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--shell);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-mockup {
  max-width: 300px;
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 32px 64px rgba(28, 25, 23, .12), 0 0 0 1px rgba(28,25,23,.05);
  background: var(--white);
  padding: 12px;
  overflow: hidden;
}

.hero-mockup-inner {
  background: var(--canvas);
  border-radius: 30px;
  aspect-ratio: 9/18;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 14px;
}

/* ===== Social Proof ===== */
.social-proof {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--shell);
}

.social-proof p {
  font-size: 14px;
  color: var(--stone);
  font-weight: 500;
  margin-bottom: 8px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
}

.stat-label {
  font-size: 14px;
  color: var(--stone);
}

/* ===== Features ===== */
.features {
  padding: 80px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--stone);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--shell);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .2s, box-shadow .2s;
}

.feature-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(13, 148, 136, .08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.5;
}

/* ===== How it Works ===== */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--shell);
  border-bottom: 1px solid var(--shell);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

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

.step-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--teal-soft);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== Pricing ===== */
.pricing {
  padding: 80px 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--shell);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.pricing-card--pro {
  border-color: var(--teal);
}

.pricing-card--pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}

.pricing-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}

.pricing-card--pro .pricing-label {
  color: var(--teal);
}

.pricing-feature--disabled {
  opacity: .4;
}

.pricing-feature--disabled svg {
  color: var(--stone) !important;
}

.pricing-price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 4px;
}

.pricing-unit {
  font-size: 16px;
  color: var(--stone);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--shell);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.pricing-note {
  font-size: 13px;
  color: var(--stone);
  margin-top: 16px;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--teal-deep);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  opacity: .8;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--teal-deep);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .1s;
}
.btn-white:hover { transform: translateY(-1px); color: var(--teal-deep); }

/* ===== Footer ===== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--shell);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--stone); max-width: 260px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--stone);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--shell);
  font-size: 13px;
  color: var(--stone);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--stone); font-size: 13px; }

/* ===== Legal Pages ===== */
.legal {
  padding: 60px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal .legal-date {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal p, .legal li {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal a { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root { --px: 20px; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero { padding: 48px 0 40px; }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text { text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  .steps { grid-template-columns: 1fr; gap: 32px; }

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

  .stats { gap: 32px; }

  .footer-grid { flex-direction: column; gap: 32px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
