/* ── Reset & Base ──────────────────────────────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: #1d1d1f;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ───────────────────────────────────────────────────────────── */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.2s, box-shadow 0.2s;
}

#nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #1d1d1f;
}

.nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.nav-cta {
  font-size: 15px;
  font-weight: 600;
  color: #2D6A4F;
  padding: 8px 18px;
  border: 1.5px solid #2D6A4F;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: #2D6A4F;
  color: #fff;
}

/* ── Buttons ───────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2D6A4F;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: #245a42; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.apple-icon {
  width: 14px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Phone crop ────────────────────────────────────────────────────── */
/*
   Screenshots include the macOS Simulator chrome at the top
   (~12.5% of image height). We hide it via overflow + negative margin.
*/

.phone-crop {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.phone-crop img {
  display: block;
  width: 100%;
}

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 100px 48px 80px;
  max-width: 1040px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  max-width: 460px;
}

.hero-text h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 19px;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 380px;
}

.hero-phone {
  flex-shrink: 0;
  width: 260px;
}

/* ── Features ──────────────────────────────────────────────────────── */

.features {
  background: #f5f5f7;
  padding: 100px 0;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 64px 0;
  border-bottom: 1px solid #e5e5ea;
}

.feature-row:last-child { border-bottom: none; }

.feature-row.reverse { flex-direction: row-reverse; }

.feature-phone {
  flex-shrink: 0;
  width: 220px;
}

.feature-text { flex: 1; }

.feature-text h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1d1d1f;
  margin-bottom: 14px;
}

.feature-text p {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.6;
  max-width: 380px;
}

/* ── Pitch row ─────────────────────────────────────────────────────── */

.pitch {
  background: #fff;
  padding: 100px 0;
}

.pitch-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.pitch-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.pitch-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.pitch-item p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.55;
}

/* ── Pricing ───────────────────────────────────────────────────────── */

.pricing {
  background: #f5f5f7;
  padding: 100px 0;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 18px;
  color: #6e6e73;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  width: 220px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: relative;
}

.pricing-card.featured {
  background: #2D6A4F;
  color: #fff;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #52B788;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}

.pricing-amount span {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.7;
}

.pricing-desc {
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.4;
}

/* ── Footer ────────────────────────────────────────────────────────── */

footer {
  background: #f5f5f7;
  border-top: 1px solid #e5e5ea;
  padding: 40px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: #6e6e73;
  transition: color 0.15s;
}

.footer-links a:hover { color: #1d1d1f; }

.footer-copy {
  font-size: 13px;
  color: #aeaeb2;
}

/* ── Coming soon tooltip ───────────────────────────────────────────── */

.coming-soon {
  position: relative;
  display: inline-flex;
}

.coming-soon .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon .tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1d1d1f;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}

.coming-soon .tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1d1d1f;
}

.coming-soon:hover .tooltip { opacity: 1; }

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 88px 24px 60px;
    gap: 48px;
    min-height: auto;
  }

  .hero-sub { margin: 0 auto 32px; }

  .hero-phone { width: 200px; }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 36px;
    padding: 48px 0;
    text-align: center;
  }

  .feature-phone { width: 180px; margin: 0 auto; }

  .feature-text p { max-width: 100%; }

  .pitch-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 36px; }
  .pitch-inner { grid-template-columns: 1fr 1fr; }
}
