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

:root {
  --dark:        #1c1917;
  --dark-2:      #0e0f0d;
  --green:       #2d9e6b;
  --green-hover: #25875a;
  --green-light: #edf7f1;
  --cream:       #f4f2ee;
  --cream-2:     #f9f7f4;
  --white:       #ffffff;
  --border:      #e8e3db;
  --muted:       #888888;
  --muted-2:     #555555;
  --red:         #c0392b;
  --amber:       #d4900a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(28,25,23,0.06);
  --shadow-md:  0 8px 24px rgba(28,25,23,0.08);
  --shadow-lg:  0 24px 64px rgba(28,25,23,0.10);
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Typography ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
}

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

section { padding: 100px 0; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  text-decoration: none;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(28,25,23,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  padding: 13px 24px;
  font-size: 14px;
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--dark);
  background: var(--cream-2);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 13px 24px;
  font-size: 14px;
}

.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

/* ─── Nav ────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(244,242,238,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

#nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

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

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

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px !important;
  font-weight: 500;
  transition: background 0.15s !important;
}

.nav-cta:hover { background: #333 !important; }

/* ─── Hero ───────────────────────────────────────────────────── */
#hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-left {}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-tagline em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-right {
  position: relative;
}

.hero-screenshot {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-screenshot img {
  width: 100%;
  display: block;
}

.hero-float-badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(28,25,23,0.3);
  animation: floatBadge 3s ease-in-out infinite;
  min-width: 120px;
}

.float-score {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
}

.float-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

.float-bar {
  width: 80px;
  height: 3px;
  background: #2a2825;
  border-radius: 99px;
  margin-top: 10px;
  overflow: hidden;
}

.float-bar-fill {
  width: 72%;
  height: 100%;
  background: var(--green);
  border-radius: 99px;
}

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

/* ─── Problem Section ────────────────────────────────────────── */
#problem {
  background: var(--dark);
  padding: 100px 0;
}

#problem .section-title { color: var(--white); }
#problem .section-sub   { color: #666; }

.fee-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 56px;
  margin-bottom: 40px;
}

.fee-card {
  background: var(--dark-2);
  border: 1px solid #242220;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.fee-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.fee-pct {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.fee-card:nth-child(1) .fee-pct { color: #e74c3c; }
.fee-card:nth-child(2) .fee-pct { color: #c0392b; }
.fee-card:nth-child(3) .fee-pct { color: var(--amber); }
.fee-card:nth-child(4) .fee-pct { color: #e67e22; }
.fee-card:nth-child(5) .fee-pct { color: #e74c3c; }

.fee-name {
  font-size: 10px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-mono);
}

.problem-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 28px 36px;
}

.problem-cta-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  max-width: 580px;
}

/* ─── Screenshots Showcase ───────────────────────────────────── */
#showcase {
  background: var(--white);
  padding: 100px 0;
}

.showcase-header {
  margin-bottom: 60px;
}

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

.showcase-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.showcase-item.wide {
  grid-column: span 2;
}

.showcase-item img {
  width: 100%;
  display: block;
}

.showcase-caption {
  padding: 16px 20px;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.caption-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.caption-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

.caption-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* ─── Features ───────────────────────────────────────────────── */
#features {
  background: var(--cream);
  padding: 100px 0;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.feature-icon-wrap {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-card.featured .feature-icon-wrap {
  background: rgba(45,158,107,0.12);
  margin-bottom: 0;
  width: 56px; height: 56px;
  font-size: 26px;
  margin-top: 4px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card.featured .feature-title {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.feature-card.featured .feature-desc { color: #666; font-size: 14px; }

/* ─── Pricing ────────────────────────────────────────────────── */
#pricing {
  background: var(--dark);
  padding: 100px 0;
}

#pricing .section-title { color: var(--white); }
#pricing .eyebrow       { color: var(--green); }
#pricing .section-sub   { color: #666; }

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}

.toggle-label { transition: color 0.2s; }
.toggle-label.active { color: var(--white); font-weight: 500; }

.toggle-switch {
  width: 44px;
  height: 24px;
  background: #2a2825;
  border-radius: 99px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  border: none;
  outline: none;
  flex-shrink: 0;
}

.toggle-switch.on { background: var(--green); }

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
}

.toggle-switch.on .toggle-knob { transform: translateX(20px); }

.save-badge {
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.plan-card {
  background: var(--dark-2);
  border: 1px solid #242220;
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover { border-color: #3a3835; transform: translateY(-2px); }

.plan-card.popular {
  border-color: var(--green);
  background: #0b1a12;
}

.plan-card.popular:hover { transform: translateY(-3px); }

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 99px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  white-space: nowrap;
}

.plan-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #444;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.price-currency {
  font-family: var(--font-mono);
  font-size: 18px;
  color: #555;
  margin-top: 4px;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  transition: all 0.2s;
}

.price-period {
  font-size: 13px;
  color: #444;
  font-family: var(--font-mono);
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  font-size: 13px;
  color: #777;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #1a1a18;
}

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

.plan-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.18s;
  border: 1px solid #2a2825;
  color: #666;
  cursor: pointer;
  background: transparent;
  font-family: var(--font-sans);
}

.plan-cta:hover { border-color: #555; color: var(--white); }

.plan-card.popular .plan-cta {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.plan-card.popular .plan-cta:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 12px;
  color: #3a3835;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* ─── CTA ────────────────────────────────────────────────────── */
#cta {
  background: var(--cream);
  padding: 120px 0;
  text-align: center;
}

#cta .section-title { margin: 0 auto 18px; max-width: 640px; }
#cta .section-sub   { margin: 0 auto 44px; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-logo span { color: var(--green); }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #444;
  transition: color 0.15s;
}

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

.footer-copy {
  font-size: 11px;
  color: #333;
  font-family: var(--font-mono);
}

/* ─── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .fee-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item.wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 72px 0; }
  .fee-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; flex-direction: column; }
  footer { flex-direction: column; text-align: center; padding: 36px 24px; }
  .problem-cta-row { flex-direction: column; gap: 20px; text-align: center; }
}
