/* Home page — hero, proof, how-it-works, features, tax band, pricing, FAQ, CTA. */

/* Sections */
section {
  padding: 96px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mint-on-light);
  margin-bottom: 12px;
}
@media (prefers-color-scheme: dark) {
  .section-label { color: var(--mint); }
}

.section-title {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 60px;
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--mint-tint) 0%, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  animation: glowPulse 9s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.85; transform: translateX(-50%) scale(1.06); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(52, 199, 89, 0); }
}

.hero-title {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.04;
  max-width: 820px;
  margin: 0 auto 22px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-dl-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 18px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 500;
}

/* Hero mock card — money moment */
.hero-mock {
  margin: 64px auto 0;
  max-width: 560px;
  background: var(--forest);
  border-radius: 24px;
  padding: 36px 32px 32px;
  text-align: left;
  box-shadow: 0 30px 80px rgba(28, 60, 43, 0.35), 0 8px 24px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}
.hero-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(117, 220, 130, 0.18), transparent 55%);
  pointer-events: none;
}
.mock-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}
.mock-amount {
  font-family: var(--font-num);
  font-size: clamp(44px, 8vw, 64px);
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}
.mock-sub {
  color: rgba(235, 235, 245, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
}
.mock-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
}
.mock-row-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-name {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
}
.mock-meta {
  color: rgba(235, 235, 245, 0.55);
  font-size: 12px;
}
.mock-amt {
  font-family: var(--font-num);
  color: var(--mint);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ─── Proof bar ──────────────────────────────────── */
.proof {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.proof-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── How it works ──────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.step-num {
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  color: var(--mint-on-light);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
@media (prefers-color-scheme: dark) {
  .step-num { color: var(--mint); }
}
.step-icon {
  width: 44px;
  height: 44px;
  background: var(--fill-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Features ──────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow), border-color var(--t-slow);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--border-2);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--fill-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--t-slow) var(--ease), background var(--t-slow);
}
.feature:hover .feature-icon {
  transform: scale(1.06);
  background: var(--fill);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.feature p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ─── Tax band — money moment ───────────────────── */
.tax {
  padding: 80px 0;
}
.tax-card {
  background: var(--forest);
  border-radius: 28px;
  padding: 60px 48px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(28, 60, 43, 0.28);
}
.tax-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(117, 220, 130, 0.15), transparent 60%);
  pointer-events: none;
}
.tax-card .section-label {
  color: var(--mint);
  position: relative;
}
.tax-card .section-title {
  color: #FFFFFF;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  position: relative;
}
.tax-card p {
  color: rgba(235, 235, 245, 0.75);
  font-size: 16px;
  line-height: 1.6;
  max-width: 440px;
  position: relative;
}
.tax-meter {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
}
.tax-meter-label {
  font-size: 12px;
  color: rgba(235, 235, 245, 0.5);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tax-meter-amount {
  font-family: var(--font-num);
  font-size: 48px;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.tax-meter-sub {
  color: rgba(235, 235, 245, 0.65);
  font-size: 13px;
  margin-bottom: 18px;
}
.tax-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.tax-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mint), #52C46A);
  border-radius: 9999px;
  width: 0;
  transition: width 1.4s var(--ease);
}
.tax-bar-fill.is-filled {
  width: 68%;
}
.tax-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(235, 235, 245, 0.55);
}

/* ─── Pricing ───────────────────────────────────── */
.pricing {
  background: var(--surface);
}
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
.pricing-toggle {
  display: flex;
  background: var(--fill-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3px;
  gap: 2px;
}
.pricing-toggle button {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 9px;
  cursor: pointer;
  transition: background var(--t-normal) var(--ease), color var(--t-normal);
}
.pricing-toggle button.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
@media (prefers-color-scheme: dark) {
  .pricing-toggle button.is-active { background: var(--surface-2); }
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow);
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.plan--featured {
  background: var(--forest);
  color: #FFFFFF;
  border-color: var(--forest);
}
.plan--featured::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(117, 220, 130, 0.15), transparent 60%);
  pointer-events: none;
  border-radius: 50%;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: #0B2718;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.plan-tier {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.plan--featured .plan-tier { color: rgba(235, 235, 245, 0.6); }

.plan-price {
  font-family: var(--font-num);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}
.plan--featured .plan-price { color: var(--mint); }
.plan-price span {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.plan--featured .plan-price span { color: rgba(235, 235, 245, 0.55); }

.plan-eq {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2px;
  min-height: 20px;
  position: relative;
}
.plan--featured .plan-eq { color: rgba(235, 235, 245, 0.55); }

.plan-alt {
  font-size: 13px;
  color: var(--mint-on-light);
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 18px;
  position: relative;
}
.plan--featured .plan-alt { color: var(--mint); }

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
  position: relative;
}
.plan--featured .plan-divider { background: rgba(255, 255, 255, 0.08); }

.plan-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
  position: relative;
}
.plan-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
}
.plan-perks li.is-dim {
  color: var(--muted);
}
.check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--mint-tint);
  color: var(--mint-on-light);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.plan--featured .check { color: var(--mint); }
.cross {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--fill-subtle);
  color: var(--dim);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity var(--t-fast), transform var(--t-normal);
  position: relative;
}
.plan-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

/* ─── FAQ ───────────────────────────────────────── */
.faqs {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--t-normal);
}
.faq.is-open {
  border-color: var(--border-2);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  transition: color var(--t-normal);
  user-select: none;
  -webkit-user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: inherit;
  font-family: inherit;
}
.faq-question:hover {
  color: var(--muted);
}
.faq-arrow {
  font-size: 12px;
  color: var(--dim);
  transition: transform var(--t-slow);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq.is-open .faq-arrow {
  transform: rotate(180deg);
  color: var(--text);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq.is-open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Final CTA ─────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 100px 0;
}
.final-cta .section-title {
  margin-bottom: 14px;
}
.final-cta .section-sub {
  margin: 0 auto 40px;
  text-align: center;
}
.final-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.final-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 420px; }
  .steps { grid-template-columns: 1fr; }
  .tax-card { grid-template-columns: 1fr; padding: 44px 32px; gap: 32px; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-sub { max-width: 480px; }
}

@media (max-width: 680px) {
  section { padding: 72px 0; }
  .hero { padding: 110px 0 64px; }
  .hero-title { font-size: clamp(34px, 8vw, 44px); letter-spacing: -1px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-mock { padding: 28px 22px 22px; margin-top: 48px; }
  .features { grid-template-columns: 1fr; }
  .feature { padding: 28px 24px; }
  .proof-row { gap: 16px; flex-direction: column; align-items: center; }
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer-inner { padding: 0 20px 18px; font-size: 14px; }
  .final-cta { padding: 64px 0; }
  .step { padding: 30px 24px; }
  .plan-price { font-size: 42px; }
  .plan { padding: 28px 24px; }
  .tax-card { padding: 36px 24px; }
  .tax-meter { padding: 26px 22px; }
  .tax-meter-amount { font-size: 40px; }
}

@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; }
}
