@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Cedarville+Cursive&family=Inter:wght@400;500;600&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #1f2937;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ───────── Layout ───────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───────── Nav ───────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

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

.nav-logo {
  height: 26px;
}

.nav-brand {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #1f2937;
}

.nav-cta {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: #1f2937;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #374151;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1f2937;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1922 0%, #1a3040 50%, #264040 100%);
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1502657877623-f66bf489d236?auto=format&fit=crop&w=1920&h=1080&q=85");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
}

.hero-tagline {
  font-family: "Cedarville Cursive", cursive;
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: #fff;
  color: #1f2937;
}

.btn-primary:hover {
  background: #f3f4f6;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-credit {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 2;
  font-family: "Cedarville Cursive", cursive;
  font-size: 0.75rem;
  opacity: 0.7;
}

.hero-credit a {
  color: #fff;
  text-decoration: underline;
}

/* ───────── Extensions ───────── */
.extensions {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
}

.extension-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 640px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

.extension-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.extension-card--coming-soon {
  opacity: 0.5;
  border-style: dashed;
}

.extension-card--coming-soon:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transform: none;
}

.extension-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.extension-logo {
  height: 24px;
}

.extension-logo-placeholder {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #9ca3af;
  font-weight: 600;
}

.extension-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: #ecfdf5;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-soon {
  background: #f3f4f6;
  color: #6b7280;
}

.extension-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.extension-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.extension-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 8px;
}

/* ───────── Features ───────── */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f0f4f8 100%);
}

.section-label {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 560px;
  margin-bottom: 56px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(31, 41, 55, 0.06);
  color: #1f2937;
}

.feature-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.feature-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

.features-tier-label {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-tier-label--pro {
  margin-top: 56px;
}

.pro-pill-sm {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 6px;
  background: #1f2937;
  color: #fff;
}

.feature-card--pro {
  border: 1px solid rgba(31, 41, 55, 0.15);
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.08), 0 1px 4px rgba(31, 41, 55, 0.05), inset 0 0 0 1px rgba(31, 41, 55, 0.06);
}

/* ───────── Screenshot / Preview ───────── */
.preview {
  padding: 80px 0 100px;
  text-align: center;
}

.preview-image {
  margin-top: 48px;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.preview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.preview-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a3040, #264040);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  opacity: 0.7;
}

/* ───────── Pro / Pricing ───────── */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f0f4f8 100%);
  text-align: center;
}

.pricing-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 40px 36px;
  width: 320px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.pricing-card.featured {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 41, 55, 0.1);
  box-shadow: 0 8px 32px rgba(31, 41, 55, 0.1), 0 2px 8px rgba(31, 41, 55, 0.04);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 16px 0 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #9ca3af;
}

.pricing-or {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 2px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.save-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: #ecfdf5;
  color: #059669;
}

.pricing-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.pricing-features li::before {
  content: "✓ ";
  color: #10b981;
  font-weight: 700;
}

.btn-pricing {
  width: 100%;
  justify-content: center;
  background: #1f2937;
  color: #fff;
}

.btn-pricing:hover {
  background: #374151;
}

.btn-pricing-outline {
  width: 100%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  color: #1f2937;
  border: 1px solid rgba(209, 213, 219, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-pricing-outline:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ───────── Contact ───────── */
.contact {
  padding: 100px 0;
  text-align: center;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(31, 41, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: #1f2937;
  color: #fff;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #374151;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-status--success {
  background: #ecfdf5;
  color: #059669;
}

.form-status--error {
  background: #fef2f2;
  color: #dc2626;
}

/* ───────── Footer ───────── */
.footer {
  padding: 48px 0;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.footer-logo {
  height: 22px;
  margin: 0 auto 12px;
}

.footer-brand {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.footer p {
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: #6b7280;
  transition: color 0.2s;
}

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

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

.legal-title {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.legal-updated {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 40px;
}

.legal h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul {
  margin: 8px 0 16px 20px;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

.legal ul li {
  margin-bottom: 6px;
}

.legal a {
  color: #1f2937;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: #374151;
}

/* ───────── Responsive ───────── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .nav-links.open {
    display: flex;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

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

  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}
