:root {
  --bg: #f9fbf8;
  --surface: #ffffff;
  --surface-2: #f1f7ef;
  --ink: #06120c;
  --muted: #53645a;
  --muted-2: #8b9a91;
  --green: #48d52f;
  --green-2: #8cff2f;
  --green-3: #0d7a35;
  --lime-soft: rgba(72, 213, 47, 0.13);
  --dark: #050e0a;
  --dark-2: #0b1b13;
  --line: rgba(6, 18, 12, 0.10);
  --line-strong: rgba(72, 213, 47, 0.32);
  --line-dark: rgba(140, 255, 47, 0.16);
  --shadow: 0 24px 70px rgba(15, 45, 24, 0.10);
  --shadow-strong: 0 42px 120px rgba(3, 17, 8, 0.22);
  --radius: 30px;
  --radius-lg: 42px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(circle at 16% 2%, rgba(72, 213, 47, 0.17), transparent 28rem),
    radial-gradient(circle at 84% 9%, rgba(140, 255, 47, 0.12), transparent 30rem),
    linear-gradient(180deg, #fbfdf9 0%, var(--bg) 48%, #ffffff 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 11px 14px 11px 18px;
  border: 1px solid rgba(6, 18, 12, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 60px rgba(11, 32, 19, 0.08);
  backdrop-filter: blur(22px) saturate(1.18);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(72, 213, 47, 0.30);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 18, 12, 0.08);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 249, 239, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 12px 26px rgba(18, 64, 29, 0.10);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-word strong {
  color: var(--green-3);
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  color: #425247;
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--green-3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: #031008;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.40), transparent 42%),
    linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 18px 38px rgba(72, 213, 47, 0.28);
}

.btn-ghost,
.btn-outline {
  color: var(--ink);
  border-color: rgba(6, 18, 12, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(72, 213, 47, 0.08);
}

.btn-lg {
  min-height: 54px;
  padding: 0 26px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.section {
  position: relative;
  padding: 112px 0;
}

.section.compact {
  padding: 36px 0 80px;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 148px;
  overflow: hidden;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(6, 18, 12, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 18, 12, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 84%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.hero-layout::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(900px, 90vw);
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(72, 213, 47, 0.26), transparent 66%),
    radial-gradient(ellipse at 50% 55%, rgba(140, 255, 47, 0.13), transparent 70%);
  filter: blur(34px);
  transform: translate(-50%, -50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-3);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6vw, 4rem);
  line-height: 1.01;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 5vw, 4.05rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 780px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.375rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.hero-microcopy {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.hero-microcopy span {
  padding: 10px 13px;
  border: 1px solid rgba(72, 213, 47, 0.24);
  border-radius: 999px;
  color: #33513b;
  background: rgba(72, 213, 47, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  min-height: 710px;
  margin: 0 auto;
}

.dashboard-shell {
  position: absolute;
  top: 48px;
  left: 50%;
  z-index: 2;
  width: min(860px, calc(100% - 80px));
  min-height: 548px;
  display: grid;
  grid-template-columns: 84px 1fr;
  grid-template-rows: 54px 1fr;
  overflow: hidden;
  border: 1px solid rgba(6, 18, 12, 0.10);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 38px 120px rgba(7, 31, 14, 0.22), 0 0 0 10px rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(22px) saturate(1.2);
  transform: translateX(-50%);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 8%, rgba(72, 213, 47, 0.18), transparent 18rem),
    linear-gradient(180deg, transparent, rgba(248, 251, 246, 0.62));
}

.browser-chrome {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(6, 18, 12, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.browser-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(6, 18, 12, 0.14);
}

.browser-chrome span:nth-child(2) {
  background: rgba(72, 213, 47, 0.34);
}

.browser-chrome strong {
  min-width: 0;
  margin-left: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(6, 18, 12, 0.07);
  border-radius: 999px;
  color: #6b7a70;
  background: rgba(248, 251, 246, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.mock-sidebar {
  position: relative;
  z-index: 1;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: #f5faf3;
}

.mock-sidebar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 34px;
}

.mock-sidebar span {
  display: block;
  height: 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(6, 18, 12, 0.10);
}

.mock-sidebar .active {
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.mock-content {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.mock-topbar small {
  display: block;
  color: var(--muted-2);
  font-weight: 900;
}

.mock-topbar strong {
  display: block;
  margin-top: 5px;
  font-size: 1.7rem;
}

.mock-topbar > span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--green-3);
  background: rgba(72, 213, 47, 0.10);
  font-weight: 900;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mock-kpis div,
.mock-insight,
.mock-notification,
.trust-card,
.feature-card,
.safety-item,
.plan-card,
details {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(12, 35, 22, 0.06);
}

.mock-kpis div {
  padding: 16px;
  border-radius: 20px;
}

.mock-kpis span {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.mock-kpis strong {
  display: block;
  margin-top: 9px;
}

.mock-chart {
  height: 182px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(72, 213, 47, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(72, 213, 47, 0.08), rgba(255, 255, 255, 0.60));
}

.mock-chart span {
  flex: 1;
  min-height: 30px;
  border-radius: 14px 14px 5px 5px;
  background: linear-gradient(180deg, var(--green), var(--green-3));
}

.mock-insight {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: #fbfdf9;
}

.mock-insight span {
  color: var(--green-3);
  font-weight: 900;
}

.mock-insight p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.mock-notification {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: min(330px, 48%);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.mock-notification span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 12px 22px rgba(72, 213, 47, 0.22);
}

.mock-notification p {
  margin: 0;
  color: #34443a;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.phone-mock {
  position: absolute;
  z-index: 4;
  left: 42px;
  bottom: 30px;
  width: 230px;
  min-height: 316px;
  padding: 46px 18px 18px;
  border: 9px solid #06120c;
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(140, 255, 47, 0.20), transparent 10rem),
    linear-gradient(180deg, #102419, #07130d);
  box-shadow: var(--shadow-strong);
}

.phone-top {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 70px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
}

.phone-mock strong {
  display: block;
  font-size: 1.42rem;
}

.phone-mock p {
  margin: 16px 0 0;
  color: #dbeee0;
  line-height: 1.55;
}

.phone-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 74px;
  margin-top: 28px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.phone-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--green-2), var(--green-3));
}

.phone-bars span:nth-child(1) { height: 42%; }
.phone-bars span:nth-child(2) { height: 84%; }
.phone-bars span:nth-child(3) { height: 62%; }

.float-card {
  position: absolute;
  z-index: 5;
  width: 202px;
  padding: 16px;
  border: 1px solid rgba(6, 18, 12, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(12, 35, 22, 0.14);
  backdrop-filter: blur(18px) saturate(1.22);
  animation: float-soft 6.5s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.float-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 70px rgba(12, 35, 22, 0.18);
}

.float-card span,
.float-card small {
  display: block;
  color: var(--muted-2);
  font-size: 0.75rem;
  font-weight: 900;
}

.float-card strong {
  display: block;
  margin: 7px 0 5px;
  font-size: 1.08rem;
}

.profit-card { top: 96px; left: 0; }
.expense-card { top: 178px; right: 0; animation-delay: -1.4s; }
.goal-card { bottom: 94px; right: 96px; animation-delay: -2.6s; }
.das-card { bottom: 142px; left: 12px; animation-delay: -3.8s; }

@keyframes float-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-card {
  min-height: 132px;
  padding: 24px;
  border-radius: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-card strong {
  display: block;
  font-size: 1.15rem;
}

.trust-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

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

.feature-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.feature-card:hover,
.plan-card:hover,
.trust-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 15px;
  color: #05200c;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  font-weight: 900;
}

.feature-card p,
.pain-copy p,
.safety-item p,
.plan-card p,
.plan-card li,
details p,
.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.65;
}

.pain-section {
  color: #f7fff7;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(72, 213, 47, 0.24), transparent 26rem),
    radial-gradient(ellipse at 84% 60%, rgba(140, 255, 47, 0.13), transparent 30rem),
    linear-gradient(135deg, #020604 0%, #08160f 46%, #0c2116 100%);
}

.pain-section::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 72%);
}

.pain-section .eyebrow,
.final-cta .eyebrow {
  color: var(--green-2);
}

.pain-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.pain-copy p {
  max-width: 600px;
  color: #bdd0c4;
  font-size: 1.05rem;
}

.dark-product {
  position: relative;
  min-height: 520px;
}

.dark-window {
  position: absolute;
  inset: 28px 40px 28px 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0, rgba(140, 255, 47, 0.20), transparent 20rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.dark-metric {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.dark-metric span,
.dark-alert span {
  color: #a6b9ad;
  font-weight: 900;
}

.dark-metric strong {
  color: var(--green-2);
  font-size: 1.7rem;
}

.dark-bars {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.dark-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--green-2), var(--green-3));
}

.dark-bars span:nth-child(1) { height: 44%; }
.dark-bars span:nth-child(2) { height: 72%; }
.dark-bars span:nth-child(3) { height: 56%; }
.dark-bars span:nth-child(4) { height: 92%; }
.dark-bars span:nth-child(5) { height: 70%; }

.dark-alert {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.dark-alert strong {
  display: block;
  margin-top: 8px;
}

.dark-float {
  position: absolute;
  z-index: 2;
  width: 180px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(6, 18, 12, 0.72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.dark-float strong {
  display: block;
  color: #d8eadf;
  font-size: 0.8rem;
}

.dark-float span {
  display: block;
  margin-top: 8px;
  color: var(--green-2);
  font-weight: 900;
}

.dark-float.one { top: 0; right: 0; }
.dark-float.two { bottom: 0; left: 22px; }

.ai-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(72, 213, 47, 0.12), transparent 22rem),
    #fff;
}

.ai-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.ai-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 0, rgba(72, 213, 47, 0.15), transparent 16rem),
    var(--surface);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 84px rgba(15, 45, 24, 0.13);
}

.ai-header {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ai-header img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.ai-header span {
  display: block;
  color: var(--green-3);
  font-weight: 900;
}

.ai-header strong {
  display: block;
  margin-top: 4px;
}

.chat-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.chat-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #2c3d32;
  background: #f8fbf6;
  line-height: 1.55;
}

.safety-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 46px;
  align-items: start;
}

.safety-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.safety-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.safety-item:hover,
details:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.safety-item > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--green) 0 34%, transparent 36%),
    rgba(72, 213, 47, 0.13);
}

.plans {
  background:
    radial-gradient(circle at 16% 16%, rgba(72, 213, 47, 0.12), transparent 24rem),
    #fbfdf9;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
  border-radius: 32px;
}

.plan-kicker {
  margin: 0 0 12px;
  color: var(--green-3);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 1.5rem;
}

.plan-card > strong {
  display: block;
  margin: 16px 0 14px;
  font-size: 2rem;
  color: var(--ink);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 20px;
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.plan-featured {
  color: #fff;
  border-color: rgba(140, 255, 47, 0.44);
  background:
    radial-gradient(circle at 80% 0, rgba(140, 255, 47, 0.22), transparent 16rem),
    linear-gradient(180deg, #102419, #06110c);
  box-shadow: var(--shadow-strong);
}

.plan-featured .plan-kicker,
.plan-featured > strong {
  color: var(--green-2);
}

.plan-featured p,
.plan-featured li {
  color: #c5d8ca;
}

.plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #031008;
  background: var(--green-2);
  font-size: 0.74rem;
  font-weight: 900;
}

.landing-alert {
  display: none;
  max-width: 760px;
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(192, 44, 44, 0.24);
  border-radius: 18px;
  color: #8b1f1f;
  background: rgba(255, 90, 90, 0.08);
  line-height: 1.55;
  text-align: center;
}

.landing-alert.show {
  display: block;
}

.landing-alert.success {
  color: #123f1d;
  border-color: rgba(72, 213, 47, 0.34);
  background: rgba(72, 213, 47, 0.10);
}

details {
  overflow: hidden;
  border-radius: 22px;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(72, 213, 47, 0.16), transparent 30rem),
    var(--dark);
}

.final-box {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 24%, rgba(140, 255, 47, 0.20), transparent 20rem),
    linear-gradient(135deg, #102419, #07130d);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.final-box p {
  max-width: 640px;
  margin: 18px auto 30px;
  color: #c5d8ca;
  line-height: 1.75;
}

.footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 42px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer nav,
.footer-contact {
  display: grid;
  gap: 11px;
}

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

.footer a:hover {
  color: var(--green-3);
}

.copyright {
  width: min(1160px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .header-actions {
    display: none;
  }

  .hero-layout,
  .pain-layout,
  .ai-layout,
  .safety-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 680px;
  }

  .dashboard-shell {
    width: min(820px, calc(100% - 48px));
  }

  .trust-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dark-product {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark img {
    width: 29px;
    height: 29px;
  }

  .brand-word {
    font-size: 1.16rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 10px;
    right: 10px;
    display: none;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(72, 213, 47, 0.28);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: grid;
  }

  .section {
    padding: 82px 0;
  }

  .section.compact {
    padding: 24px 0 66px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-layout {
    gap: 34px;
  }

  .hero-stage {
    min-height: auto;
  }

  .dashboard-shell,
  .mock-notification,
  .phone-mock,
  .float-card,
  .dark-window,
  .dark-float {
    position: relative;
    inset: auto;
  }

  .dashboard-shell {
    width: 100%;
    transform: none;
  }

  .phone-mock {
    width: min(100%, 340px);
    min-height: 240px;
    margin: 18px auto 0;
  }

  .mock-notification {
    width: 100%;
    margin-top: 12px;
  }

  .float-card {
    width: 100%;
    margin-top: 10px;
    animation: none;
  }

  .dark-product {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .dark-window {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 2.72rem;
  }

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

  .dashboard-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 52px auto;
    border-radius: 28px;
  }

  .browser-chrome strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-content {
    padding: 20px;
  }

  .mock-kpis {
    grid-template-columns: 1fr;
  }

  .mock-topbar,
  .dark-metric {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-box {
    padding: 44px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
