/**
 * EasyHisab professional surface
 * Calm light fintech — overrides legacy chrome.
 */

:root {
  --bg: #f3f7f5;
  --bg-elevated: #fbfcfb;
  --surface: #ffffff;
  --surface-muted: #e8efeb;
  --text: #0f1a14;
  --muted: #516057;
  --subtle: #738078;
  --border: rgba(15, 26, 20, 0.08);
  --border-strong: rgba(15, 26, 20, 0.14);
  --ink: #0f1a14;
  --navy: #0f1a14;
  --navy-mid: #1c2a22;
  --primary: #0b6b4f;
  --primary-strong: #08553f;
  --primary-soft: #e5f5ef;
  --accent: #0b6b4f;
  --accent-mint: #1a8a68;
  --green: #0b6b4f;
  --green-soft: #e5f5ef;
  --gold: #8a7340;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 26, 20, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 26, 20, 0.07);
  --shadow-lg: 0 24px 56px rgba(15, 26, 20, 0.1);
  --shadow-glow: none;
  --font-display: "IBM Plex Sans", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-brand: "IBM Plex Serif", "IBM Plex Sans", Georgia, serif;
  --space-section: clamp(56px, 8vw, 96px);
}

html {
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  letter-spacing: -0.011em;
}

/* Soft mint atmosphere */
body::before {
  opacity: 1;
  background-image: none;
  background:
    radial-gradient(ellipse 70% 45% at 90% -5%, rgba(11, 107, 79, 0.11), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 15%, rgba(11, 107, 79, 0.05), transparent 50%);
  mask-image: none;
}

h1,
h2,
h3,
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.brand-name,
.hero-brand {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.container {
  width: min(1120px, calc(100% - 48px));
}

/* ——— Chrome ——— */

.topbar {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: none;
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.04);
}

.topbar-inner {
  min-height: 64px;
}

.brand {
  color: var(--ink);
  gap: 11px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
  border-radius: 8px;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 600;
}

.brand-easy {
  color: var(--ink);
}

.brand-hisab {
  color: var(--primary);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
}

.menu-toggle span {
  background: var(--ink);
}

.nav-links {
  font-size: 0.9rem;
  font-weight: 500;
  gap: 2px;
}

.nav-links a {
  color: var(--muted);
  padding: 8px 11px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
  background: rgba(16, 24, 40, 0.04);
}

.nav-links a.is-active {
  background: rgba(16, 24, 40, 0.055);
}

.nav-links a::after {
  display: none !important;
}

.nav-actions {
  border-left-color: var(--border);
  gap: 6px;
  margin-left: 10px;
  padding-left: 14px;
}

.nav-login {
  color: var(--muted) !important;
  font-weight: 500;
}

.nav-login:hover {
  color: var(--ink) !important;
  background: rgba(16, 24, 40, 0.04);
}

.nav-links a.nav-cta {
  color: #ffffff !important;
  background: var(--primary) !important;
  border: none;
  box-shadow: none;
  border-radius: 12px;
  padding: 9px 16px;
  font-weight: 600;
}

.nav-links a.nav-cta:hover {
  background: var(--primary-strong) !important;
}

/* ——— Buttons ——— */

.btn {
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 0.95rem;
}

.btn-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: none;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-strong);
  box-shadow: none;
  transform: none;
}

.btn-secondary {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: rgba(16, 24, 40, 0.28);
  color: var(--ink);
  transform: none;
}

.hero .btn-secondary,
.marketing-page .page-hero .btn-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--border-strong);
}

.pricing-card .btn-secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border-strong);
}

.pricing-card .btn-secondary:hover {
  background: var(--bg);
  border-color: rgba(16, 24, 40, 0.28);
}

.cta-row {
  align-items: center;
  gap: 14px;
}

.play-badge {
  height: 48px;
  max-width: 160px;
}

/* ——— Hero ——— */

.hero {
  min-height: auto;
  display: block;
  background:
    radial-gradient(ellipse 55% 55% at 88% 20%, rgba(11, 107, 79, 0.14), transparent 58%),
    linear-gradient(180deg, #e8f2ed 0%, var(--bg) 58%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 8vw, 96px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
}

.hero-content > * {
  max-width: 34rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 5px 14px 5px 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 107, 79, 0.22);
  color: var(--primary-strong);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-brand {
  display: block;
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
}

.hero-brand .brand-easy {
  color: var(--ink);
}

.hero-brand .brand-hisab {
  color: var(--primary);
}

.hero h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  line-height: 1.05;
  font-weight: 700;
  max-width: 12ch;
  letter-spacing: -0.04em;
}

.headline-accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--primary);
}

.hero p,
.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 0 26px;
  font-weight: 400;
}

.hero-fine {
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-points,
.eyebrow::before {
  display: none;
}

.eyebrow {
  display: block;
  width: fit-content;
  background: none;
  border: none;
  padding: 0;
  min-height: auto;
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: none;
}

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

.hero-float {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  min-width: 132px;
}

.hero-float span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--subtle);
}

.hero-float strong {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-float em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.hero-scene {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(290px, 100%);
  margin: 0 auto;
  z-index: 1;
  filter: drop-shadow(0 28px 56px rgba(15, 26, 20, 0.16));
}

.phone-frame {
  transform: none;
  border-radius: 34px;
  padding: 9px;
  background: #171f2c;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 48px rgba(16, 24, 40, 0.16);
}

.phone-frame::before {
  height: 20px;
  width: 82px;
  top: 9px;
  background: #0d121b;
  box-shadow: none;
}

.phone-frame::after {
  opacity: 0.5;
}

/* ——— Trust strip ——— */

.trust-strip {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-strip-inner span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.65;
}

.trust-ledger {
  display: none;
}

/* ——— Sections ——— */

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section-kicker {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2,
.marketing-page h1,
.marketing-page h2 {
  color: var(--ink);
  font-weight: 600;
}

.section-head p {
  color: var(--muted);
  max-width: 38rem;
}

/* ——— Marketing heroes ——— */

.marketing-page .page-hero {
  padding: clamp(48px, 7vw, 72px) 0 36px;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(11, 92, 75, 0.08), transparent 55%),
    linear-gradient(180deg, #eceef2 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.marketing-page .page-hero::before {
  display: none;
}

.marketing-page .page-hero h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.75rem);
  max-width: 14ch;
}

.marketing-page .page-hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.page-hero-proof {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.page-hero-proof li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.page-hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.75;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.page-hero--portal {
  padding-bottom: clamp(48px, 7vw, 72px) !important;
}

.hero-carousel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-carousel-frame {
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-carousel-track {
  position: relative;
}

.hero-carousel-slide {
  margin: 0;
  display: none;
}

.hero-carousel-slide.is-active {
  display: block;
}

.hero-carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.hero-carousel-slide figcaption {
  margin-top: 12px;
  padding: 0 6px 2px;
  color: var(--subtle);
  font-size: 0.84rem;
  line-height: 1.4;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.hero-carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-carousel-dots {
  display: flex;
  gap: 8px;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(15, 26, 20, 0.18);
  cursor: pointer;
}

.hero-carousel-dots button.is-active {
  background: var(--primary);
  width: 20px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-carousel-slide.is-active img {
    animation: hero-fade 0.45s ease;
  }
}

@keyframes hero-fade {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.portal-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
}

.portal-feature-item {
  padding: 24px 22px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.portal-feature-item:nth-child(2n) {
  border-right: none;
}

.portal-feature-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.portal-feature-item h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 650;
}

.portal-feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.access-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
}

.access-band h2 {
  margin: 8px 0 16px;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}

.access-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.access-list li {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.access-list strong {
  color: var(--ink);
}

.access-trust {
  padding: 24px 22px;
  background: var(--ink);
  border-radius: 18px;
  color: #ffffff;
}

.access-trust h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.05rem;
}

.access-trust ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.access-trust li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.access-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-mint);
}

@media (max-width: 980px) {
  .page-hero-split,
  .access-band,
  .portal-feature-list {
    grid-template-columns: 1fr;
  }

  .portal-feature-item {
    border-right: none !important;
  }

  .portal-feature-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

/* ——— Pricing ——— */

.pricing-section {
  background: transparent;
  padding-top: 40px;
  padding-bottom: var(--space-section);
}

.pricing-billing-toggle {
  margin-bottom: 40px;
}

.pricing-billing-toggle[role="group"] {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: none;
  padding: 3px;
  border-radius: 999px;
}

.pricing-billing-toggle button {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: 999px;
}

.pricing-billing-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: #ffffff;
}

.pricing-billing-toggle .save-hint {
  color: inherit;
  opacity: 0.75;
  font-size: 0.74rem;
}

.pricing-grid {
  max-width: 800px;
  gap: 18px;
}

.pricing-card-glow,
.pricing-ribbon,
.pricing-card-top,
.pricing-stat {
  display: none !important;
}

.pricing-card-inner {
  padding: 36px 32px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: none;
  border-top: 1px solid var(--border) !important;
}

.pricing-card--paid .pricing-card-inner,
.pricing-card--featured .pricing-card-inner {
  border-color: rgba(16, 24, 40, 0.18);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing-card--paid .pricing-card-inner::before {
  content: "Recommended";
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.pricing-card--featured,
.pricing-card--featured:hover,
.pricing-card:hover {
  transform: none !important;
}

.pricing-card:hover .pricing-card-inner {
  box-shadow: var(--shadow-md);
}

.pricing-card-head h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-tagline {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  max-width: 22ch;
}

.pricing-price-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-amount {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--ink);
  line-height: 0.95;
}

.pricing-card--free .pricing-amount,
.pricing-card--paid .pricing-amount {
  color: var(--ink);
}

.pricing-period {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-note {
  display: block;
  margin-top: 6px;
  color: var(--subtle);
  font-size: 0.8rem;
}

.pricing-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.4;
  border: none;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-soft);
}

.pricing-list li:not(.is-muted)::after {
  content: "";
  position: absolute;
  left: 3.5px;
  top: 16.5px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--primary);
  border-bottom: 1.5px solid var(--primary);
  transform: rotate(-45deg);
}

.pricing-list li.is-muted {
  color: var(--subtle);
}

.pricing-list li.is-muted::before {
  background: var(--surface-muted);
}

.pricing-list li.is-muted::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 19px;
  width: 7px;
  height: 1.5px;
  background: var(--subtle);
  border: none;
  transform: none;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.checkout-trust {
  margin: 14px 0 0;
  text-align: left;
  color: var(--subtle);
  font-size: 0.78rem;
  line-height: 1.5;
}

.pricing-pay-panel {
  margin-top: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
}

.pricing-pay-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.pricing-pay-panel strong {
  color: var(--ink);
  font-weight: 600;
}

/* ——— Quieter surfaces ——— */

.feature-detail-card,
.faq-card,
.info-card,
.link-card,
.platform-panel,
.showcase-card,
.usp-card,
.feature-card {
  box-shadow: none !important;
  border-color: var(--border) !important;
  border-radius: 14px !important;
}

.feature-detail-card::before,
.feature-detail-card::after,
.info-card::before,
.link-card::before,
.usp-card::before {
  display: none !important;
}

.feature-detail-card:hover,
.faq-card:hover,
.link-card:hover,
.platform-panel:hover,
.showcase-card:hover,
.usp-card:hover,
.feature-card:hover {
  transform: none !important;
  border-color: var(--border-strong) !important;
  box-shadow: var(--shadow-sm) !important;
}

.link-card {
  padding: 26px 24px;
}

.link-card-icon {
  box-shadow: none !important;
  border-color: var(--border) !important;
  background: var(--primary-soft) !important;
  color: var(--primary) !important;
}

.cta-band {
  background: var(--ink);
  border: none;
  padding: 48px 0;
}

.cta-band h2 {
  color: #ffffff;
  font-weight: 600;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.68);
}

.cta-band .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
}

footer {
  background: #0d121b;
  padding: 40px 0 36px;
}

.plan-table-wrap {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  background: var(--surface);
}

.plan-table th,
.plan-table td {
  border-color: var(--border);
}

.faq-card {
  background: var(--surface);
  padding: 22px 22px;
}

.faq-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.faq-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— Pricing: web highlights + compare ——— */

.section--web-highlights {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.web-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.web-feature-lead {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.web-feature-lead-card {
  padding: 28px 24px;
  background: linear-gradient(165deg, #ffffff 0%, var(--primary-soft) 130%);
  border: 1px solid rgba(11, 107, 79, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.web-feature-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-feature-lead-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.web-feature-lead-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.web-highlight-card {
  padding: 22px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.web-highlight-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.web-highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.web-highlight-cta {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}

.compare-lead {
  margin: -8px 0 22px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 36rem;
}

.compare-note {
  margin-top: 16px;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.plan-table thead th {
  background: var(--bg);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--subtle);
}

.plan-table th,
.plan-table td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}

.plan-table tbody th {
  font-weight: 500;
  color: var(--ink);
  width: 52%;
}

.plan-table td {
  width: 24%;
  color: var(--muted);
}

.plan-table .plan-yes {
  color: var(--primary);
  font-weight: 600;
}

.plan-table .plan-no {
  color: var(--subtle);
}

.plan-row-group th {
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 980px) {
  .web-highlight-grid,
  .web-feature-lead {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .web-highlight-grid,
  .web-feature-lead {
    grid-template-columns: 1fr 1fr;
  }
}

/* ——— Home: proof, benefits, journey, why, reviews, support ——— */

.hero-outcomes {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-outcomes li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1.5px var(--primary);
}

.hero-lead {
  margin-bottom: 18px !important;
}

.proof-strip {
  padding: 28px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 28px;
}

.proof-item {
  display: grid;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid var(--primary-soft);
}

.proof-item strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.features-head {
  margin-bottom: 44px;
}

.feature-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  max-width: 44rem;
}

.feature-rail li {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.feature-rail li.is-paid {
  background: var(--primary-soft);
  border-color: rgba(11, 107, 79, 0.18);
  color: var(--primary-strong);
}

.benefit-stack {
  display: grid;
  gap: clamp(48px, 7vw, 80px);
}

.benefit-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(8px, 1.5vw, 16px);
  border-radius: 28px;
}

.benefit-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.55);
}

.benefit-row--flip .benefit-copy {
  order: 2;
}

.benefit-row--flip .benefit-visual {
  order: 1;
}

.benefit-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.benefit-index {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.benefit-plan {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 18ch;
}

.benefit-copy > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
  max-width: 38rem;
}

.benefit-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.benefit-points li {
  position: relative;
  padding: 10px 12px 10px 28px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.benefit-points li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 1.05em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.benefit-visual {
  display: flex;
  justify-content: center;
}

.benefit-panel {
  width: min(100%, 400px);
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.benefit-panel-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0 4px 8px;
  border-bottom: 1px solid var(--border);
}

.benefit-panel-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.benefit-panel-chrome span:nth-child(1) { background: #f87171; }
.benefit-panel-chrome span:nth-child(2) { background: #fbbf24; }
.benefit-panel-chrome span:nth-child(3) { background: #34d399; }

.benefit-panel-chrome em {
  margin-left: 8px;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--subtle);
}

.benefit-doc,
.benefit-dues,
.benefit-report {
  width: 100%;
  padding: 18px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.benefit-doc header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.benefit-doc header span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--subtle);
}

.benefit-doc header strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.benefit-doc-party {
  margin-bottom: 4px;
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--ink);
}

.benefit-doc-meta {
  margin-bottom: 14px;
  color: var(--subtle);
  font-size: 0.78rem;
}

.benefit-doc-line,
.benefit-report .benefit-doc-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-doc-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-strong);
  color: var(--ink);
  font-size: 0.92rem;
}

.benefit-doc-total strong {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.benefit-doc-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.benefit-doc-actions span {
  flex: 1;
  text-align: center;
  padding: 9px 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 650;
}

.benefit-doc-actions .is-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.benefit-dues-hero {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #ffffff;
}

.benefit-dues-hero span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.benefit-dues-hero strong {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.benefit-dues-hero em {
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 0.9;
}

.benefit-age-bar {
  display: flex;
  gap: 3px;
  height: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 999px;
}

.benefit-age-bar i {
  display: block;
  border-radius: 999px;
}

.benefit-age-bar .age-30 { background: #f59e0b; }
.benefit-age-bar .age-60 { background: #ea580c; }
.benefit-age-bar .age-90 { background: #dc2626; }

.benefit-age-legend {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 600;
}

.benefit-dues-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

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

.benefit-dues-row span {
  color: var(--ink);
  font-weight: 500;
}

.benefit-dues-row b {
  color: var(--ink);
  font-weight: 650;
}

.benefit-dues-row i {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--primary);
}

.benefit-dues-row.is-overdue i {
  color: #b45309;
}

.benefit-report-head {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.benefit-report-head strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.benefit-report-head span {
  color: var(--subtle);
  font-size: 0.8rem;
  font-weight: 500;
}

.benefit-report-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.benefit-report-kpis div {
  display: grid;
  gap: 2px;
  padding: 10px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.benefit-report-kpis span {
  color: var(--subtle);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.benefit-report-kpis b {
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.benefit-export-chip {
  margin-top: 14px;
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 650;
}

.feature-more {
  margin-top: clamp(48px, 7vw, 72px);
  padding-top: clamp(36px, 5vw, 48px);
  border-top: 1px solid var(--border);
}

.feature-more-head {
  margin-bottom: 22px;
  max-width: 40rem;
}

.feature-more-head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.025em;
}

.feature-more-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.feature-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-more-card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-more-card:hover {
  border-color: rgba(11, 107, 79, 0.22);
  box-shadow: var(--shadow-sm);
}

.feature-more-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.feature-more-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.feature-more-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 650;
}

.feature-more-card--accent {
  background: linear-gradient(165deg, #ffffff 0%, var(--primary-soft) 130%);
  border-color: rgba(11, 107, 79, 0.18);
}

.feature-more-cta {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-more-cta a {
  color: var(--primary);
  font-weight: 650;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.journey-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-soft), rgba(11, 107, 79, 0.35), var(--primary-soft));
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 0 18px;
}

.journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--bg);
}

.journey-body {
  padding: 20px 18px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.journey-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 650;
}

.journey-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
}

.home-price-card {
  position: relative;
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.home-price-card--paid {
  border-color: rgba(15, 26, 20, 0.2);
  box-shadow: var(--shadow-md);
}

.home-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.home-price-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.home-price-amount {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.home-price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.home-price-note {
  margin: 8px 0 18px;
  color: var(--subtle);
  font-size: 0.88rem;
}

.home-price-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.home-price-card li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--text);
  font-size: 0.92rem;
}

.home-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1.5px var(--primary);
}

.home-price-card .btn {
  width: 100%;
}

.reviews-head {
  margin-bottom: 36px;
}

.reviews-head p strong {
  color: var(--ink);
  font-weight: 650;
}

.reviews-play-inline {
  color: var(--primary);
  font-weight: 650;
  white-space: nowrap;
}

.reviews-play-inline:hover {
  text-decoration: underline;
}

.reviews-carousel {
  display: grid;
  gap: 18px;
}

.reviews-carousel-viewport {
  overflow: hidden;
}

.reviews-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.reviews-carousel .review-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  min-height: 0;
}

.reviews-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel-track {
    transition: none;
  }
}

@media (max-width: 980px) {
  .reviews-carousel .review-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-carousel .review-card {
    flex-basis: 100%;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  border-color: rgba(11, 107, 79, 0.22);
  box-shadow: var(--shadow-md);
}

.review-card--lead {
  background: linear-gradient(165deg, #ffffff 0%, var(--primary-soft) 140%);
  border-color: rgba(11, 107, 79, 0.18);
}

.review-outcome {
  margin: 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-stars {
  margin: 0;
  color: #c4a035;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
  flex: 1;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
}

.review-card--lead blockquote {
  font-size: 1.05rem;
  line-height: 1.55;
}

.review-meta {
  display: grid;
  gap: 2px;
  margin: 4px 0 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.review-meta strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.review-meta span {
  color: var(--subtle);
  font-size: 0.8rem;
}

.support-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.support-band-copy {
  max-width: 36rem;
}

.support-band-copy .section-kicker {
  display: inline-block;
  margin-bottom: 10px;
}

.support-band-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  letter-spacing: -0.03em;
}

.support-band-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

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

.final-cta {
  padding-top: 12px;
}

.final-cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  background: var(--ink);
  border-radius: 24px;
  color: #ffffff;
}

.final-cta-panel h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
}

.final-cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.final-cta-panel .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.final-cta-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: #ffffff;
}

.showcase-card {
  border-radius: 18px !important;
  padding: 22px;
  background: var(--surface);
}

.section--soft {
  background: rgba(255, 255, 255, 0.55);
}

@media (max-width: 980px) {
  .proof-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-row,
  .benefit-row--flip {
    grid-template-columns: 1fr;
  }

  .benefit-row--flip .benefit-copy,
  .benefit-row--flip .benefit-visual {
    order: unset;
  }

  .feature-more-grid {
    grid-template-columns: 1fr;
  }

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

  .journey-track::before {
    display: none;
  }

  .journey-step {
    padding: 0;
    grid-template-columns: 40px 1fr;
    align-items: start;
    gap: 14px;
  }

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

  .support-band {
    padding: 28px 22px;
  }

  .final-cta-panel {
    padding: 28px 22px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-float {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .feature-more-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .proof-strip-inner {
    grid-template-columns: 1fr;
  }
}

/* ——— Motion ——— */

@media (prefers-reduced-motion: no-preference) {
  .btn:hover,
  .feature-card:hover {
    transform: none;
  }

  html.motion-safe .reveal-on-scroll {
    transform: translate3d(0, 14px, 0);
    transition-duration: 0.55s;
  }
}

/* ——— Responsive ——— */

@media (max-width: 980px) {
  .container {
    width: min(1120px, calc(100% - 36px));
  }

  .nav-links {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    margin-top: 8px;
    padding: 10px;
    white-space: normal;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .nav-login {
    color: var(--ink) !important;
  }

  .nav-actions {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }

  .hero-brand {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding: 28px 0 44px;
    gap: 28px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-float {
    display: none;
  }

  .hero-scene {
    width: min(248px, 68vw);
  }

  .hero-content > * {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.55rem);
    max-width: none;
  }

  .hero-pill {
    font-size: 0.8rem;
  }

  .pricing-card-inner {
    padding: 28px 22px 24px;
  }

  .pricing-amount {
    font-size: 2.55rem;
  }

  .pricing-card--paid .pricing-card-inner::before {
    top: 16px;
    right: 16px;
  }
}
