:root {
  --bg: #f3efe7;
  --bg-deep: #0f1210;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #151916;
  --ink: #111311;
  --muted: #5d645d;
  --muted-strong: #d5ddd2;
  --line: rgba(17, 19, 17, 0.08);
  --line-dark: rgba(255, 255, 255, 0.08);
  --accent: #b8ff68;
  --accent-deep: #1f3d08;
  --amber: #f6dfab;
  --shadow: 0 24px 80px rgba(17, 19, 17, 0.08);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 255, 104, 0.22), transparent 22%),
    radial-gradient(circle at right 15%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(180deg, #f8f4ec 0%, #ece4d5 100%);
}

body.legal-page {
  background: linear-gradient(180deg, #f7f4ee 0%, #efe7d9 100%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

a:hover {
  opacity: 0.92;
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 231, 0.78);
  border-bottom: 1px solid rgba(17, 19, 17, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.05em;
  font-size: 1.1rem;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f1210 0%, #31392f 45%, var(--accent) 100%);
  box-shadow: 0 0 0 7px rgba(184, 255, 104, 0.18);
}

.nav-links,
.footer-links,
.inline-links,
.plan-pills {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a,
.inline-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer-links a:hover,
.inline-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: #101310;
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 19, 16, 0.16);
}

.btn-primary:hover {
  background: #090b09;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(17, 19, 17, 0.1);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-deep);
  box-shadow: 0 14px 28px rgba(184, 255, 104, 0.22);
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f4f7f3;
}

.eyebrow,
.kicker,
.plan-tag,
.note-tag,
.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  border: 1px solid rgba(17, 19, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-card,
.legal-card,
.price-card,
.metric-card,
.quote-card,
.contact-card,
.story-card,
.cta-card,
.signal-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 38px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(184, 255, 104, 0.52) 0%, rgba(184, 255, 104, 0) 72%);
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.9rem, 5.4vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
  max-width: 10ch;
}

.hero p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
  max-width: 60ch;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-proof .signal-card,
.hero-point,
.mini-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 19, 17, 0.06);
}

.hero-point strong,
.signal-card strong,
.metric-card strong,
.price-card strong,
.stat-value {
  display: block;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.hero-point span,
.signal-card p,
.metric-card span,
.section-card p,
.quote-card p,
.contact-card p,
.price-card li,
.legal-card p,
.legal-card li,
.story-card p,
.cta-card p,
.small {
  color: var(--muted);
  line-height: 1.64;
}

.hero-panel {
  padding: 22px;
  background: linear-gradient(180deg, #111411 0%, #191e1a 100%);
  color: #f4f7f3;
  box-shadow: var(--shadow-strong);
}

.panel-stack {
  display: grid;
  gap: 14px;
}

.panel-card,
.panel-screen,
.timeline-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-card p,
.panel-card small,
.panel-screen p,
.panel-screen li,
.timeline-card p {
  color: rgba(244, 247, 243, 0.82);
}

.panel-line,
.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.panel-badge,
.pill-dark {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(184, 255, 104, 0.14);
  color: #d9ffb5;
  font-size: 0.82rem;
}

.panel-screen {
  display: grid;
  gap: 14px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.screen-title {
  font-size: 1.05rem;
  font-weight: 700;
}

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

.screen-cell {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-cell strong {
  display: block;
  margin-bottom: 6px;
}

.screen-timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
}

.section {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2,
.legal-card h1,
.legal-card h2,
.price-card h2,
.page-hero h2,
.contact-card h2,
.story-card h3,
.cta-card h2 {
  margin: 10px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading .small {
  max-width: 30ch;
  text-align: right;
}

.grid-2,
.grid-3,
.metrics-grid,
.price-grid,
.contact-grid,
.story-grid,
.proof-grid,
.plan-grid {
  display: grid;
  gap: 18px;
}

.grid-2,
.price-grid,
.proof-grid,
.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-grid-3,
.plan-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-3,
.metrics-grid,
.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-card,
.quote-card,
.price-card,
.metric-card,
.contact-card,
.story-card,
.cta-card {
  padding: 26px;
}

.pricing-focus-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(184, 255, 104, 0.16) 0%, rgba(255, 255, 255, 0.96) 68%);
  border: 1px solid rgba(184, 255, 104, 0.28);
  box-shadow: 0 20px 44px rgba(160, 196, 96, 0.08);
}

.pricing-focus-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -34px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 104, 0.2) 0%, rgba(184, 255, 104, 0) 72%);
}

.pricing-focus-card h2 {
  max-width: 14ch;
}

.pricing-focus-card .kicker {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(184, 255, 104, 0.28);
}

.pricing-focus-card li::before {
  background: #9de14a;
}

.pricing-support-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 239, 228, 0.96) 100%);
  border: 1px solid rgba(17, 19, 17, 0.1);
  box-shadow: 0 18px 38px rgba(17, 19, 17, 0.04);
}

.pricing-support-card .kicker {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 19, 17, 0.08);
}

.pricing-support-card h2 {
  max-width: 14ch;
}

.metric-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-value {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.95;
  margin: 10px 0 8px;
}

.section-card ul,
.price-card ul,
.legal-card ul,
.contact-card ul,
.story-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.section-card li,
.price-card li,
.contact-card li,
.story-card li {
  position: relative;
  padding-left: 20px;
}

.section-card li::before,
.price-card li::before,
.contact-card li::before,
.story-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(184, 255, 104, 0.28) 0%, rgba(255, 255, 255, 0.9) 64%);
}

.highlight::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 104, 0.45) 0%, rgba(184, 255, 104, 0) 72%);
}

.highlight-club {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(164, 86, 86, 0.16) 0%, rgba(255, 255, 255, 0.92) 66%);
}

.highlight-club::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 86, 86, 0.24) 0%, rgba(164, 86, 86, 0) 72%);
}

.price-line {
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 18px 0;
}

.price-line strong {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
}

.price-line-textual {
  align-items: start;
  flex-direction: column;
  gap: 4px;
}

.price-line-textual strong {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-line-textual span {
  color: var(--muted);
  font-size: 0.98rem;
}

.plan-pills {
  margin-top: 16px;
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 19, 17, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

.story-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(252, 248, 241, 0.92) 100%);
}

.story-step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #101310;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-card {
  background: linear-gradient(180deg, rgba(17, 19, 17, 0.96) 0%, rgba(29, 33, 29, 0.96) 100%);
  color: #f4f7f3;
  box-shadow: var(--shadow-strong);
}

.quote-card p,
.quote-card .small,
.quote-card .note-tag {
  color: rgba(244, 247, 243, 0.82);
}

.note-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-card {
  background: linear-gradient(135deg, #101310 0%, #1a211a 100%);
  color: #f5f7f3;
  box-shadow: var(--shadow-strong);
}

.cta-card p,
.cta-card .small,
.cta-card .kicker {
  color: rgba(245, 247, 243, 0.78);
}

.page-hero {
  padding: 72px 0 24px;
}

.page-hero .container,
.legal-card {
  padding: 0;
}

.legal-shell {
  padding: 40px 0 72px;
}

.legal-card {
  padding: 32px;
}

.legal-card section + section,
.contact-card section + section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 19, 17, 0.08);
}

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

.support-line {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-footer {
  padding: 36px 0 48px;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.footer-copy {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 46ch;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 19, 17, 0.02) 0%, rgba(17, 19, 17, 0.12) 50%, rgba(17, 19, 17, 0.02) 100%);
  margin: 8px 0 0;
}

@media (max-width: 1100px) {
  .hero-grid,
  .grid-2,
  .price-grid,
  .proof-grid,
  .plan-grid,
  .contact-grid,
  .story-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .section-heading .small {
    text-align: left;
    max-width: 60ch;
  }
}

@media (max-width: 900px) {
  .navbar,
  .footer-card {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links,
  .nav-actions,
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero,
  .page-hero {
    padding-top: 40px;
  }

  .hero-copy,
  .hero-panel,
  .section-card,
  .quote-card,
  .price-card,
  .metric-card,
  .contact-card,
  .story-card,
  .cta-card,
  .legal-card {
    padding: 22px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-actions,
  .page-actions,
  .nav-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .nav-links,
  .footer-links,
  .inline-links,
  .plan-pills {
    gap: 12px;
  }

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

  .screen-header,
  .row-between,
  .panel-line {
    align-items: start;
    flex-direction: column;
  }
}

.hero-strong {
  padding-top: 84px;
}

.hero-grid-strong {
  grid-template-columns: 1fr 0.92fr;
  align-items: start;
}

.hero-copy-strong {
  min-height: 100%;
}

.hero-panel-strong {
  position: relative;
  top: 20px;
}

.hero-inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-inline-proof span,
.mini-badge-dark,
.mini-badge-warn {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
}

.hero-inline-proof span {
  background: rgba(16, 19, 16, 0.06);
  color: var(--muted);
}

.eyebrow-strong {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(184, 255, 104, 0.28) 0%, rgba(255, 255, 255, 0.92) 100%);
  border-color: rgba(184, 255, 104, 0.48);
  color: #2d381d;
  box-shadow: 0 10px 24px rgba(184, 255, 104, 0.16);
}

.pricing-display {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 10ch;
  text-wrap: balance;
}

.pricing-word {
  display: inline-block;
  padding: 0 0.04em;
}

.pricing-word-base {
  color: #2d342d;
}

.pricing-word-premium {
  color: #20390b;
}

.pricing-word-club {
  color: #6a3434;
}

.hero-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.outcome-chip {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 19, 17, 0.07);
}

.outcome-chip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.outcome-chip span {
  color: var(--muted);
  line-height: 1.55;
}

.product-stage {
  gap: 18px;
}

.product-stack {
  display: grid;
  gap: 12px;
}

.product-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card p {
  margin: 10px 0 0;
}

.accent-card {
  background: linear-gradient(180deg, rgba(184, 255, 104, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.warning-card {
  background: linear-gradient(180deg, rgba(246, 223, 171, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.mini-badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 243, 0.82);
}

.mini-badge-warn {
  background: rgba(246, 223, 171, 0.18);
  color: #f7dfaa;
}

.story-grid-strong,
.metrics-grid-strong,
.proof-grid-strong {
  align-items: stretch;
}

.story-card-strong,
.section-card-strong,
.metric-card-strong,
.quote-card-strong,
.cta-card-strong {
  position: relative;
  overflow: hidden;
}

.pricing-final-card {
  background:
    radial-gradient(circle at top right, rgba(184, 255, 104, 0.12), transparent 28%),
    linear-gradient(135deg, #171d17 0%, #1d261d 56%, #181e18 100%);
}

.pricing-final-card .section-heading {
  margin-bottom: 18px;
}

.pricing-final-card .kicker {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(245, 247, 243, 0.84);
}

.pricing-final-card h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.pricing-final-card h2 span {
  display: block;
}

.pricing-final-card p {
  max-width: 62ch;
  color: rgba(245, 247, 243, 0.82);
}

.pricing-final-card .hero-actions {
  margin-top: 24px;
}

.pricing-final-card .btn-accent {
  box-shadow: 0 18px 34px rgba(184, 255, 104, 0.2);
}

.pricing-final-card .btn-ghost-dark {
  background: rgba(255, 255, 255, 0.1);
}

.story-card-strong::after,
.section-card-strong::after,
.metric-card-strong::after {
  content: "";
  position: absolute;
  inset: auto -34px -34px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 104, 0.16) 0%, rgba(184, 255, 104, 0) 72%);
}

.quote-card-strong h2,
.cta-card-strong h2 {
  max-width: 12ch;
}

.showcase-section {
  padding-top: 12px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  grid-column: span 6;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
}

.showcase-card-large {
  grid-column: span 7;
}

.showcase-card-wide {
  grid-column: span 5;
}

.showcase-card-dark {
  background: linear-gradient(180deg, #101310 0%, #1b211c 100%);
  color: #f4f7f3;
  box-shadow: var(--shadow-strong);
}

.showcase-card-dark h3,
.showcase-card-dark p {
  color: #f4f7f3;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
}

.showcase-header h3 {
  margin: 10px 0 0;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.showcase-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 19, 17, 0.06);
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.ui-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 17, 0.08);
  background: linear-gradient(180deg, rgba(248, 244, 236, 0.96) 0%, rgba(241, 234, 223, 0.96) 100%);
}

.ui-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #101310;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
}

.ui-logo {
  font-weight: 700;
}

.ui-nav {
  color: rgba(255, 255, 255, 0.62);
}

.ui-grid {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.ui-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ui-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ui-stat,
.ui-mini-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 19, 17, 0.08);
}

.ui-stat strong,
.ui-mini-stat b {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 6px;
}

.ui-stat span,
.ui-mini-stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.ui-mini-stat.warn {
  background: rgba(246, 223, 171, 0.42);
}

.ui-panels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  padding: 0 18px 18px;
}

.ui-panel {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 19, 17, 0.08);
}

.ui-panel-warn {
  background: rgba(246, 223, 171, 0.4);
}

.ui-panel-title {
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.ui-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  line-height: 1.5;
}

.ui-row.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px 10px;
  font-weight: 700;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}

.calendar-day {
  min-height: 220px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 19, 17, 0.08);
}

.calendar-day > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.calendar-event {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(17, 19, 17, 0.06);
  border-left: 3px solid #101310;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.calendar-event.soft {
  border-left-color: rgba(17, 19, 17, 0.32);
}

.ui-client-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 18px 18px 0;
}

.ui-client-head strong {
  font-size: 1.1rem;
}

.ui-payment-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.ui-payment-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 19, 17, 0.08);
}

.ui-payment-card strong,
.ui-payment-card span,
.ui-payment-card em {
  display: block;
}

.ui-payment-card span,
.ui-payment-card em {
  margin-top: 5px;
}

.ui-payment-card span {
  color: var(--ink);
}

.ui-payment-card em {
  color: var(--muted);
  font-style: normal;
}

.ui-payment-card.muted {
  opacity: 0.84;
}

.telegram-stack {
  display: grid;
  gap: 12px;
}

.tg-bubble {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tg-bubble strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.tg-bubble p {
  margin: 0;
  color: rgba(244, 247, 243, 0.86);
  line-height: 1.55;
}

.tg-meta,
.tg-link {
  display: block;
  margin-top: 10px;
  color: rgba(184, 255, 104, 0.88);
  font-size: 0.92rem;
}

.tg-actions {
  display: grid;
  gap: 10px;
}

.tg-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #101310;
  font-weight: 700;
}

.tg-button.ghost {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(244, 247, 243, 0.92);
}

.tg-button.success {
  background: rgba(184, 255, 104, 0.92);
  color: #163207;
}

.late-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}

.late-step {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 19, 17, 0.08);
}

.late-step.warn {
  background: rgba(246, 223, 171, 0.42);
}

.late-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.late-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.late-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.2rem;
}

button.btn {
  cursor: pointer;
  font: inherit;
}

.club-lead-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: start;
}

.club-lead-copy,
.club-lead-form-card {
  padding: 28px;
}

.club-lead-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.club-lead-copy ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.club-lead-copy li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.club-lead-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #a7e64c;
}

.club-form {
  display: grid;
  gap: 16px;
}

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

.club-form label {
  display: grid;
  gap: 8px;
}

.club-form label span {
  font-size: 0.92rem;
  color: var(--muted);
}

.club-form input,
.club-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 17, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.club-form input:focus,
.club-form textarea:focus {
  outline: none;
  border-color: rgba(160, 228, 71, 0.7);
  box-shadow: 0 0 0 4px rgba(184, 255, 104, 0.16);
  background: #fff;
}

.club-form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.club-lead-success {
  margin: 16px 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(184, 255, 104, 0.18);
  border: 1px solid rgba(160, 228, 71, 0.35);
  color: #29420d;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .hero-grid-strong {
    grid-template-columns: 1fr;
  }

  .hero-panel-strong {
    top: 0;
  }

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

  .showcase-card,
  .showcase-card-large,
  .showcase-card-wide {
    grid-column: auto;
  }

  .ui-panels,
  .club-lead-grid,
  .late-flow {
    grid-template-columns: 1fr;
  }

  .late-arrow {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-inline-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .eyebrow-strong {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    text-align: center;
    line-height: 1.35;
  }

  .pricing-display {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 0.98;
  }

  .hero-outcome-grid,
  .ui-grid-3,
  .ui-grid-4,
  .calendar-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .showcase-header,
  .ui-client-head {
    flex-direction: column;
    align-items: start;
  }

  .quote-card-strong h2,
  .cta-card-strong h2 {
    max-width: none;
  }

  .pricing-final-card h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
    line-height: 1.06;
  }
}
