html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.landing-page {
  --landing-bg: #06090a;
  --landing-bg-soft: #0b1010;
  --landing-bg-panel: #101814;
  --landing-border: #1d2d22;
  --landing-border-strong: #27402f;
  --landing-accent: #00f080;
  --landing-accent-soft: rgba(0, 240, 128, 0.12);
  --landing-accent-glow: rgba(0, 240, 128, 0.24);
  --landing-text: #e0efe4;
  --landing-text-muted: #8aa48f;
  --landing-text-soft: #4f6c55;
  --landing-danger: #ff7474;
  --landing-warn: #f0b040;
  --landing-shadow: 0 40px 80px rgba(0, 0, 0, 0.48);
  background:
    radial-gradient(circle at top right, rgba(0, 240, 128, 0.08), transparent 30%),
    linear-gradient(180deg, #07100b 0%, var(--landing-bg) 35%, #050708 100%);
  color: var(--landing-text);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p,
.landing-page a,
.landing-page span,
.landing-page strong {
  min-width: 0;
}

.landing-page__background {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.landing-page__background::before {
  background-image: radial-gradient(circle, rgba(0, 240, 128, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 25%, #000 0%, transparent 100%);
  position: absolute;
}

.landing-page__background::after {
  background: radial-gradient(circle, rgba(0, 240, 128, 0.12), transparent 62%);
  border-radius: 50%;
  content: "";
  height: 34rem;
  position: absolute;
  right: -10rem;
  top: 5rem;
  width: 34rem;
}

.landing-page__shell,
.landing-page__header,
.landing-section__container,
.landing-footer {
  margin: 0 auto;
  max-width: 76rem;
  position: relative;
  z-index: 1;
}

.landing-page__header {
  padding: 0 1.5rem;
  position: sticky;
  top: 1rem;
  z-index: 20;
}

.landing-page__shell {
  padding: 0 1.5rem;
}

.landing-nav {
  align-items: center;
  backdrop-filter: blur(24px);
  background: rgba(6, 9, 10, 0.9);
  border: 1px solid rgba(29, 45, 34, 0.8);
  box-sizing: border-box;
  border-radius: 999px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0.9rem 1.1rem 0.9rem 1.4rem;
  width: 100%;
}

.landing-nav__brand,
.landing-footer__brand {
  color: var(--landing-text);
  flex-shrink: 0;
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.landing-nav__links {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
}

.landing-nav__link,
.landing-nav__drawer-link {
  color: var(--landing-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.landing-nav__link:hover,
.landing-nav__drawer-link:hover {
  color: var(--landing-text);
}

.landing-nav__cta,
.landing-nav__drawer-cta,
.landing-button {
  align-items: center;
  background: var(--landing-accent);
  border-radius: 999px;
  box-sizing: border-box;
  color: #051108;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
  white-space: nowrap;
}

.landing-nav__cta:hover,
.landing-nav__drawer-cta:hover,
.landing-button:hover {
  box-shadow: 0 0 1.8rem var(--landing-accent-glow);
  transform: translateY(-1px);
}

.landing-nav__drawer {
  display: none;
  position: relative;
}

.landing-nav__drawer[open] .landing-nav__drawer-toggle {
  border-color: rgba(0, 240, 128, 0.35);
  color: var(--landing-text);
}

.landing-nav__drawer-toggle {
  appearance: none;
  border: 1px solid rgba(29, 45, 34, 0.9);
  border-radius: 0.75rem;
  color: var(--landing-text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  list-style: none;
  padding: 0.65rem 0.9rem;
}

.landing-nav__drawer-toggle::-webkit-details-marker {
  display: none;
}

.landing-nav__drawer-panel {
  backdrop-filter: blur(24px);
  background: rgba(11, 16, 16, 0.96);
  border: 1px solid rgba(39, 64, 47, 0.9);
  border-radius: 1rem;
  box-shadow: var(--landing-shadow);
  display: grid;
  gap: 0.75rem;
  min-width: 15rem;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: min(20rem, calc(100vw - 2rem));
}

.landing-nav__drawer-cta {
  margin-top: 0.25rem;
}

.landing-hero {
  align-items: center;
  box-sizing: border-box;
  display: grid;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  gap: 4rem;
  grid-template-columns: minmax(0, 34rem) minmax(24rem, 30rem);
  justify-content: center;
  min-height: calc(100vh - 6rem);
  padding: 7rem 0 5rem clamp(3rem, 6vw, 5rem);
}

.landing-hero__content {
  max-width: 34rem;
  min-width: 0;
}

.landing-badge {
  align-items: center;
  background: var(--landing-accent-soft);
  border: 1px solid rgba(0, 240, 128, 0.18);
  border-radius: 999px;
  color: var(--landing-accent);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.55rem;
  letter-spacing: 0.14em;
  margin: 0 0 1.5rem;
  padding: 0.55rem 0.95rem;
  text-transform: uppercase;
}

.landing-badge__dot {
  animation: landing-pulse 2.2s ease-in-out infinite;
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
  height: 0.45rem;
  width: 0.45rem;
}

.landing-hero__title {
  font-family: "Syne", "Inter", sans-serif;
  font-size: clamp(3rem, 4.35vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.landing-hero__title span {
  color: var(--landing-accent);
  display: block;
  font-style: italic;
  overflow-wrap: break-word;
  white-space: normal;
}

.landing-hero__description {
  color: var(--landing-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.5rem 0 0;
  max-width: 34rem;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.landing-button--secondary {
  background: transparent;
  border: 1px solid rgba(39, 64, 47, 0.9);
  color: var(--landing-text);
}

.landing-button--secondary:hover {
  background: rgba(16, 24, 20, 0.7);
}

.landing-button--full {
  width: 100%;
}

.landing-hero__stats {
  border-top: 1px solid rgba(29, 45, 34, 0.9);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.landing-stat__value {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.landing-stat__label {
  color: var(--landing-text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 0.35rem;
}

.landing-hero__visual {
  min-height: 32rem;
  position: relative;
}

.landing-dashboard {
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(11, 16, 16, 0.96), rgba(7, 10, 9, 0.96));
  border: 1px solid rgba(29, 45, 34, 0.95);
  border-radius: 1.6rem;
  box-shadow: var(--landing-shadow);
  overflow: hidden;
  padding: 1.4rem;
  position: relative;
}

.landing-dashboard::before,
.landing-feature-panel::before,
.landing-price-card::before {
  background: linear-gradient(90deg, transparent, var(--landing-accent), transparent);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.landing-dashboard__header,
.landing-dashboard__section-head,
.landing-feature-panel__heading {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.landing-dashboard__header {
  margin-bottom: 1rem;
}

.landing-dashboard__eyebrow,
.landing-feature-panel__eyebrow,
.landing-section__eyebrow,
.landing-price-card__plan {
  color: var(--landing-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.landing-dashboard__title,
.landing-feature-panel__title,
.landing-price-card__title {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0;
}

.landing-dashboard__period {
  background: rgba(16, 24, 20, 0.95);
  border: 1px solid rgba(39, 64, 47, 0.9);
  border-radius: 999px;
  color: var(--landing-text-muted);
  font-size: 0.75rem;
  margin: 0;
  padding: 0.38rem 0.8rem;
}

.landing-dashboard__metrics {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.landing-dashboard__metric-card,
.landing-feature-panel__metric-card,
.landing-feature-panel__goal-metric,
.landing-feature-panel__recurring-card {
  background: var(--landing-bg-panel);
  border: 1px solid rgba(39, 64, 47, 0.9);
  border-radius: 1rem;
  padding: 0.95rem;
}

.landing-dashboard__metric-label,
.landing-feature-panel__metric-label,
.landing-feature-panel__goal-metric span,
.landing-feature-panel__recurring-day,
.landing-feature-panel__goal-caption {
  color: var(--landing-text-muted);
  font-size: 0.72rem;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

.landing-dashboard__metric-value,
.landing-feature-panel__metric-value,
.landing-feature-panel__summary strong,
.landing-feature-panel__recurring-value,
.landing-feature-panel__goal-metric strong,
.landing-feature-panel__report-row strong {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.45rem 0 0;
}

.landing-dashboard__metric-value--positive,
.landing-feature-panel__metric-value--positive,
.landing-dashboard__transaction-value--positive,
.landing-floating-card__value,
.landing-feature-panel__goal-head strong,
.landing-feature-panel__summary strong {
  color: var(--landing-accent);
}

.landing-dashboard__metric-value--negative,
.landing-feature-panel__metric-value--negative,
.landing-dashboard__transaction-value--negative,
.landing-feature-panel__recurring-value {
  color: var(--landing-danger);
}

.landing-dashboard__metric-value--highlight {
  color: var(--landing-warn);
}

.landing-dashboard__chart,
.landing-dashboard__transactions,
.landing-feature-panel__list-card,
.landing-feature-panel__goal-card {
  background: rgba(16, 24, 20, 0.92);
  border: 1px solid rgba(39, 64, 47, 0.9);
  border-radius: 1rem;
  padding: 1rem;
}

.landing-dashboard__section-head {
  margin-bottom: 0.85rem;
}

.landing-dashboard__section-head h3,
.landing-feature-panel__goal-head span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.landing-dashboard__section-head p {
  color: var(--landing-text-muted);
  font-size: 0.74rem;
  margin: 0;
}

.landing-dashboard__bars {
  align-items: end;
  display: flex;
  gap: 0.35rem;
  height: 6rem;
}

.landing-dashboard__bar-group {
  align-items: end;
  display: flex;
  flex: 1;
  gap: 0.18rem;
  height: 100%;
}

.landing-dashboard__bar {
  animation: landing-bar-grow 900ms ease forwards;
  align-self: stretch;
  border-radius: 0.4rem 0.4rem 0 0;
  display: block;
  flex: 1;
  transform: scaleY(0);
  transform-origin: bottom;
}

.landing-dashboard__bar--expense {
  animation-delay: 90ms;
  background: rgba(255, 116, 116, 0.5);
}

.landing-dashboard__bar--income {
  animation-delay: 180ms;
  background: rgba(0, 240, 128, 0.65);
}

.landing-dashboard__bar--h-8 {
  --landing-bar-scale: 0.08;
}

.landing-dashboard__bar--h-12 {
  --landing-bar-scale: 0.12;
}

.landing-dashboard__bar--h-15 {
  --landing-bar-scale: 0.15;
}

.landing-dashboard__bar--h-18 {
  --landing-bar-scale: 0.18;
}

.landing-dashboard__bar--h-22 {
  --landing-bar-scale: 0.22;
}

.landing-dashboard__bar--h-25 {
  --landing-bar-scale: 0.25;
}

.landing-dashboard__bar--h-28 {
  --landing-bar-scale: 0.28;
}

.landing-dashboard__bar--h-30 {
  --landing-bar-scale: 0.3;
}

.landing-dashboard__bar--h-35 {
  --landing-bar-scale: 0.35;
}

.landing-dashboard__bar--h-40 {
  --landing-bar-scale: 0.4;
}

.landing-dashboard__bar--h-42 {
  --landing-bar-scale: 0.42;
}

.landing-dashboard__bar--h-45 {
  --landing-bar-scale: 0.45;
}

.landing-dashboard__bar--h-48 {
  --landing-bar-scale: 0.48;
}

.landing-dashboard__bar--h-50 {
  --landing-bar-scale: 0.5;
}

.landing-dashboard__bar--h-55 {
  --landing-bar-scale: 0.55;
}

.landing-dashboard__bar--h-60 {
  --landing-bar-scale: 0.6;
}

.landing-dashboard__bar--h-65 {
  --landing-bar-scale: 0.65;
}

.landing-dashboard__bar--h-70 {
  --landing-bar-scale: 0.7;
}

.landing-dashboard__bar--h-75 {
  --landing-bar-scale: 0.75;
}

.landing-dashboard__bar--h-80 {
  --landing-bar-scale: 0.8;
}

.landing-dashboard__transaction-list {
  display: grid;
  gap: 0.75rem;
}

.landing-dashboard__transaction {
  align-items: center;
  border-bottom: 1px solid rgba(29, 45, 34, 0.9);
  display: flex;
  font-size: 0.88rem;
  justify-content: space-between;
  padding-bottom: 0.75rem;
}

.landing-dashboard__transaction:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.landing-dashboard__transaction-description {
  color: var(--landing-text);
}

.landing-dashboard__transaction-value {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-stretch: condensed;
  font-weight: 800;
}

.landing-floating-card {
  backdrop-filter: blur(18px);
  background: rgba(11, 16, 16, 0.96);
  border: 1px solid rgba(0, 240, 128, 0.28);
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.34);
  padding: 0.85rem 1rem;
  position: absolute;
}

.landing-floating-card--bottom {
  bottom: -1.25rem;
  right: -1.4rem;
}

.landing-floating-card--top {
  left: -1.3rem;
  top: -2.8rem;
}

.landing-floating-card__label {
  color: var(--landing-text-muted);
  font-size: 0.72rem;
  margin: 0;
}

.landing-floating-card__value {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.25rem 0 0;
}

.landing-section {
  border-top: 1px solid rgba(29, 45, 34, 0.9);
  padding: 5.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.landing-section--alt {
  background: rgba(11, 16, 16, 0.6);
}

.landing-section__container--centered {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.landing-section__title {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0.85rem 0 0;
  max-width: 14ch;
}

.landing-section__title--centered {
  max-width: 18ch;
}

.landing-feature-tabs {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 30rem);
  margin-top: 3rem;
}

.landing-feature-tabs__input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.landing-feature-tabs__list {
  display: grid;
  gap: 0.55rem;
}

.landing-feature-tabs__tab {
  align-items: start;
  border: 1px solid transparent;
  border-radius: 1rem;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.landing-feature-tabs__tab:hover {
  background: rgba(16, 24, 20, 0.72);
  border-color: rgba(39, 64, 47, 0.9);
  transform: translateY(-1px);
}

.landing-feature-tabs__icon {
  align-items: center;
  background: var(--landing-accent-soft);
  border: 1px solid rgba(0, 240, 128, 0.18);
  border-radius: 0.8rem;
  color: var(--landing-accent);
  display: inline-flex;
  flex: 0 0 2.5rem;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  height: 2.5rem;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  width: 2.5rem;
}

.landing-feature-tabs__copy {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.landing-feature-tabs__title {
  color: var(--landing-text);
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.landing-feature-tabs__description {
  color: var(--landing-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.landing-feature-tabs__panels {
  position: sticky;
  top: 7rem;
}

.landing-feature-panel {
  background: linear-gradient(180deg, rgba(11, 16, 16, 0.96), rgba(9, 13, 12, 0.96));
  border: 1px solid rgba(29, 45, 34, 0.95);
  border-radius: 1.5rem;
  box-shadow: var(--landing-shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  min-height: 24rem;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}

#feature-tab-0:checked ~ .landing-feature-tabs__list label[for="feature-tab-0"],
#feature-tab-1:checked ~ .landing-feature-tabs__list label[for="feature-tab-1"],
#feature-tab-2:checked ~ .landing-feature-tabs__list label[for="feature-tab-2"],
#feature-tab-3:checked ~ .landing-feature-tabs__list label[for="feature-tab-3"],
#feature-tab-4:checked ~ .landing-feature-tabs__list label[for="feature-tab-4"] {
  background: rgba(16, 24, 20, 0.9);
  border-color: rgba(0, 240, 128, 0.18);
}

#feature-tab-0:checked ~ .landing-feature-tabs__panels .landing-feature-panel--0,
#feature-tab-1:checked ~ .landing-feature-tabs__panels .landing-feature-panel--1,
#feature-tab-2:checked ~ .landing-feature-tabs__panels .landing-feature-panel--2,
#feature-tab-3:checked ~ .landing-feature-tabs__panels .landing-feature-panel--3,
#feature-tab-4:checked ~ .landing-feature-tabs__panels .landing-feature-panel--4 {
  display: flex;
}

.landing-feature-panel__metric-grid,
.landing-feature-panel__goal-metrics,
.landing-feature-panel__recurring-grid {
  display: grid;
  gap: 0.75rem;
}

.landing-feature-panel__period-chip-row,
.landing-feature-panel__filters,
.landing-price-card__proof {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.landing-feature-panel__period-chip,
.landing-feature-panel__current-chip,
.landing-feature-panel__filter {
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
}

.landing-feature-panel__period-chip,
.landing-feature-panel__filter {
  background: rgba(16, 24, 20, 0.92);
  border: 1px solid rgba(39, 64, 47, 0.9);
  color: var(--landing-text-muted);
}

.landing-feature-panel__period-chip span {
  color: var(--landing-accent);
}

.landing-feature-panel__current-chip,
.landing-feature-panel__filter--active {
  background: var(--landing-accent-soft);
  border: 1px solid rgba(0, 240, 128, 0.18);
  color: var(--landing-accent);
}

.landing-feature-panel__metric-grid,
.landing-feature-panel__goal-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-feature-panel__note,
.landing-pricing__strapline,
.landing-price-card__billing,
.landing-price-card__safe-copy {
  color: var(--landing-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.landing-pricing__strapline strong {
  color: var(--landing-accent);
}

.landing-feature-panel__list-card {
  display: grid;
  gap: 0.75rem;
}

.landing-feature-panel__list-item,
.landing-feature-panel__report-row,
.landing-feature-panel__goal-head,
.landing-feature-panel__summary {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
}

.landing-feature-panel__list-item {
  border-bottom: 1px solid rgba(29, 45, 34, 0.9);
  font-size: 0.9rem;
  padding-bottom: 0.75rem;
}

.landing-feature-panel__list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.landing-feature-panel__alert {
  background: rgba(255, 116, 116, 0.08);
  border: 1px solid rgba(255, 116, 116, 0.2);
  border-radius: 1rem;
  color: var(--landing-danger);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  padding: 0.95rem 1rem;
}

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

.landing-feature-panel__recurring-name {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.landing-feature-panel__recurring-value {
  margin-top: 0.4rem;
}

.landing-feature-panel__summary {
  background: var(--landing-accent-soft);
  border: 1px solid rgba(0, 240, 128, 0.18);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.landing-feature-panel__goal-card {
  display: grid;
  gap: 0.9rem;
}

.landing-feature-panel__goal-track,
.landing-feature-panel__report-track {
  background: rgba(39, 64, 47, 0.7);
  border-radius: 999px;
  overflow: hidden;
}

.landing-feature-panel__goal-track {
  height: 0.5rem;
}

.landing-feature-panel__goal-fill {
  background: linear-gradient(90deg, var(--landing-accent), #7fffbb);
  border-radius: 999px;
  height: 100%;
  width: 72%;
}

.landing-feature-panel__report-list {
  display: grid;
  gap: 0.9rem;
}

.landing-feature-panel__report-row {
  font-size: 0.88rem;
}

.landing-feature-panel__report-track {
  flex: 1;
  height: 0.55rem;
}

.landing-feature-panel__report-fill {
  border-radius: 999px;
  height: 100%;
}

.landing-feature-panel__report-fill--primary {
  background: var(--landing-accent);
  width: 78%;
}

.landing-feature-panel__report-fill--secondary {
  background: var(--landing-warn);
  width: 55%;
}

.landing-feature-panel__report-fill--muted {
  background: #7692c0;
  width: 32%;
}

.landing-price-card {
  background: linear-gradient(180deg, rgba(16, 24, 20, 0.98), rgba(9, 13, 12, 0.98));
  border: 1px solid rgba(0, 240, 128, 0.22);
  border-radius: 1.75rem;
  box-shadow:
    0 0 4rem rgba(0, 240, 128, 0.06),
    var(--landing-shadow);
  margin-top: 2.2rem;
  max-width: 29rem;
  overflow: hidden;
  padding: 2.5rem;
  position: relative;
  text-align: left;
  width: 100%;
}

.landing-price-card__tag {
  animation: landing-pulse 2.5s ease-in-out infinite;
  background: var(--landing-accent);
  border-radius: 999px;
  color: #041007;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 1.2rem;
  padding: 0.4rem 0.8rem;
  text-transform: uppercase;
}

.landing-price-card__title {
  font-size: 1.45rem;
  margin-top: 0.5rem;
}

.landing-price-card__prices {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.landing-price-card__old-price {
  color: var(--landing-text-soft);
  display: inline-block;
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.55rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
}

.landing-price-card__old-price::after {
  animation: landing-strike 1s ease 450ms forwards;
  background: var(--landing-danger);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 52%;
  width: 0;
}

.landing-price-card__discount {
  background: rgba(255, 116, 116, 0.14);
  border: 1px solid rgba(255, 116, 116, 0.3);
  border-radius: 999px;
  color: var(--landing-danger);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  text-transform: uppercase;
}

.landing-price-card__current-price {
  align-items: flex-end;
  display: flex;
  gap: 0.2rem;
  margin-top: 0.75rem;
}

.landing-price-card__currency,
.landing-price-card__cents {
  color: var(--landing-accent);
  font-weight: 700;
}

.landing-price-card__currency {
  font-size: 1.35rem;
  line-height: 2.2;
}

.landing-price-card__amount {
  color: var(--landing-accent);
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 4.4rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.landing-price-card__cents {
  font-size: 2rem;
  line-height: 1.85;
}

.landing-price-card__urgency {
  background: rgba(240, 176, 64, 0.08);
  border: 1px solid rgba(240, 176, 64, 0.24);
  border-radius: 1rem;
  color: var(--landing-warn);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
}

.landing-price-card__benefits {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
}

.landing-price-card__benefits li {
  align-items: center;
  animation: landing-fade-up 520ms ease forwards;
  border-bottom: 1px solid rgba(29, 45, 34, 0.9);
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  padding: 0.85rem 0;
}

.landing-price-card__benefits li:nth-child(1) {
  animation-delay: 120ms;
}

.landing-price-card__benefits li:nth-child(2) {
  animation-delay: 220ms;
}

.landing-price-card__benefits li:nth-child(3) {
  animation-delay: 320ms;
}

.landing-price-card__benefits li:nth-child(4) {
  animation-delay: 420ms;
}

.landing-price-card__benefits li:nth-child(5) {
  animation-delay: 520ms;
}

.landing-price-card__benefits li:nth-child(6) {
  animation-delay: 620ms;
}

.landing-price-card__benefits li:nth-child(7) {
  animation-delay: 720ms;
}

.landing-price-card__benefits li:nth-child(8) {
  animation-delay: 820ms;
}

.landing-price-card__benefits li:last-child {
  border-bottom: 0;
}

.landing-price-card__check {
  align-items: center;
  background: var(--landing-accent-soft);
  border: 1px solid rgba(0, 240, 128, 0.2);
  border-radius: 999px;
  color: var(--landing-accent);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  height: 1.45rem;
  justify-content: center;
  width: 1.45rem;
}

.landing-price-card__cta {
  margin-top: 0.4rem;
}

.landing-price-card__proof {
  color: var(--landing-text-muted);
  font-size: 0.82rem;
  justify-content: center;
  margin-top: 1rem;
}

.landing-price-card__proof-bar {
  background: rgba(39, 64, 47, 0.85);
  border-radius: 999px;
  flex: 1;
  height: 0.35rem;
  max-width: 7.5rem;
  overflow: hidden;
}

.landing-price-card__proof-fill {
  background: linear-gradient(90deg, var(--landing-accent), var(--landing-warn));
  border-radius: 999px;
  height: 100%;
  width: 73%;
}

.landing-price-card__safe-copy {
  margin-top: 0.9rem;
  text-align: center;
}

.landing-footer {
  align-items: center;
  border-top: 1px solid rgba(29, 45, 34, 0.9);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
}

.landing-footer__copy {
  color: var(--landing-text-soft);
  font-size: 0.82rem;
  margin: 0;
}

@property --landing-bar-scale {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes landing-bar-grow {
  to {
    transform: scaleY(var(--landing-bar-scale));
  }
}

@keyframes landing-fade-up {
  from {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 128, 0.28);
  }

  50% {
    box-shadow: 0 0 0 0.55rem rgba(0, 240, 128, 0);
  }
}

@keyframes landing-strike {
  to {
    width: 100%;
  }
}

@media (max-width: 63rem) {
  .landing-nav {
    margin: 0;
  }

  .landing-hero,
  .landing-feature-tabs {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    gap: 2.5rem;
    min-height: auto;
    padding: 5.5rem 0 4rem;
  }

  .landing-hero__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-wrap: wrap;
  }

  .landing-hero__title span {
    max-width: none;
  }

  .landing-hero__visual {
    margin: 0 auto;
    max-width: 32rem;
    width: 100%;
  }

  .landing-floating-card {
    display: none;
  }

  .landing-feature-tabs__panels {
    position: static;
  }
}

@media (max-width: 48rem) {
  .landing-nav {
    border-radius: 1rem;
    padding: 0.85rem 0.9rem;
  }

  .landing-nav__links {
    display: none;
  }

  .landing-nav__drawer {
    display: block;
  }

  .landing-hero {
    gap: 2rem;
    padding-top: 4.75rem;
  }

  .landing-hero__content {
    margin: 0 auto;
    text-align: center;
    width: min(100%, 31rem);
  }

  .landing-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero__stats,
  .landing-dashboard__metrics,
  .landing-feature-panel__metric-grid,
  .landing-feature-panel__goal-metrics,
  .landing-feature-panel__recurring-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero__stats {
    justify-items: center;
    text-align: center;
  }

  .landing-hero__title span {
    white-space: normal;
  }

  .landing-hero__actions {
    flex-direction: column;
  }

  .landing-button,
  .landing-nav__drawer-cta {
    width: 100%;
  }

  .landing-dashboard__header,
  .landing-dashboard__section-head,
  .landing-feature-panel__heading,
  .landing-feature-panel__period-chip-row,
  .landing-feature-panel__summary,
  .landing-feature-panel__report-row,
  .landing-price-card__prices,
  .landing-price-card__proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-dashboard__period {
    align-self: flex-start;
  }

  .landing-feature-panel__report-track,
  .landing-price-card__proof-bar {
    max-width: none;
    width: 100%;
  }

  .landing-feature-tabs__tab {
    padding: 1rem;
  }

  .landing-price-card {
    max-width: 100%;
    padding: 2rem 1.4rem;
  }

  .landing-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 32rem) {
  .landing-page__shell,
  .landing-page__header,
  .landing-section,
  .landing-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .landing-nav {
    width: 100%;
  }

  .landing-hero__title {
    font-size: 2.35rem;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
  }

  .landing-nav__brand,
  .landing-footer__brand,
  .landing-dashboard__transaction-description,
  .landing-feature-tabs__title,
  .landing-feature-tabs__description,
  .landing-feature-panel__title,
  .landing-price-card__title {
    overflow-wrap: anywhere;
  }

  .landing-price-card__amount {
    font-size: 3.2rem;
  }
}
