:root {
  --bg: #09141a;
  --bg-soft: #10212a;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
  --text: #ecfdf9;
  --muted: #b6cbc7;
  --primary: #34d399;
  --primary-deep: #0f766e;
  --accent: #38bdf8;
  --warning: #fb923c;
  --danger: #f87171;
  --shadow: 0 24px 80px rgba(3, 10, 15, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(52, 211, 153, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 24%),
    linear-gradient(180deg, #0a171d 0%, #071015 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8rem;
  right: -10rem;
  background: rgba(52, 211, 153, 0.16);
}

body::after {
  bottom: -10rem;
  left: -12rem;
  background: rgba(56, 189, 248, 0.14);
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: min(280px, 34vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(3, 10, 15, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.hero,
.pain,
.features,
.benefits,
.readiness,
.cta {
  padding: 44px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbf8e7;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 18px 0 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 11ch;
}

.hero h1 span {
  color: #baf7de;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #062219;
  background: linear-gradient(135deg, #81f5c1 0%, #67e8f9 100%);
  box-shadow: 0 18px 40px rgba(103, 232, 249, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.trust-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.trust-points li::before,
.benefit-card li::before,
.side-note li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.glass {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.dashboard-card,
.feature-card,
.cta-panel {
  border-radius: var(--radius-xl);
}

.dashboard-card {
  padding: 22px;
}

.card-head,
.chart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-title,
.side-note-title {
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.pill-positive {
  color: #dbfff2;
  background: rgba(52, 211, 153, 0.18);
}

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

.kpi-card,
.problem-card,
.benefit-card,
.readiness-card {
  border-radius: var(--radius-md);
}

.kpi-card {
  padding: 18px;
  background: rgba(4, 12, 15, 0.28);
}

.kpi-card span,
.kpi-card small,
.problem-card p,
.feature-copy p,
.readiness-card p,
.cta-panel p {
  color: var(--muted);
}

.kpi-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.7rem;
}

.kpi-card small {
  display: block;
  margin-top: 8px;
}

.chart-panel {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(4, 12, 15, 0.3);
}

.chart-area {
  min-height: 200px;
}

.area-lines {
  position: relative;
  height: 126px;
  margin-top: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(52, 211, 153, 0.22), rgba(52, 211, 153, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 16.66% 100%, 100% 25%;
  overflow: hidden;
}

.area-lines span {
  position: absolute;
  inset: auto 0 0;
  height: 75%;
  border-radius: 30px 30px 0 0;
  transform: skewX(-14deg) translateY(10%);
}

.area-lines span:nth-child(1) {
  width: 90%;
  left: -8%;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.35), rgba(56, 189, 248, 0.02));
}

.area-lines span:nth-child(2) {
  width: 82%;
  left: 10%;
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.42), rgba(52, 211, 153, 0.02));
}

.area-lines span:nth-child(3) {
  width: 28%;
  left: 42%;
  height: 62%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.area-lines span:nth-child(4) {
  width: 18%;
  left: 74%;
  height: 86%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-panels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.chart-bar .bar-group {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 110px;
  margin-top: 20px;
}

.chart-bar .bar-group span {
  width: 100%;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(129, 245, 193, 0.95), rgba(34, 197, 94, 0.28));
}

.side-note {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.side-note ul,
.benefit-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.side-note li,
.benefit-card li {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.pain-grid,
.benefit-grid,
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.problem-card,
.benefit-card,
.readiness-card {
  padding: 22px;
}

.problem-card strong,
.benefit-card h3,
.readiness-card strong,
.feature-copy h3 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

.problem-card p,
.readiness-card p,
.feature-copy p {
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.feature-tag {
  display: inline-block;
  color: #ccfbf1;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin: 14px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.feature-preview {
  min-height: 270px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(5, 16, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-dashboard .preview-strip {
  height: 18px;
  width: 42%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.preview-grid span,
.task-list span,
.profile-content span {
  display: block;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(255, 255, 255, 0.05));
}

.preview-grid span {
  height: 70px;
}

.preview-chart {
  height: 130px;
  margin-top: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(129, 245, 193, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.03));
}

.preview-huddle {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
}

.timeline {
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 146, 60, 0.14), rgba(255, 255, 255, 0.03));
  background-size: 100% 22%;
}

.task-list {
  display: grid;
  gap: 12px;
}

.task-list span:nth-child(1) {
  height: 48px;
}

.task-list span:nth-child(2) {
  height: 64px;
}

.task-list span:nth-child(3) {
  height: 56px;
}

.task-list span:nth-child(4) {
  height: 72px;
}

.preview-profile {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
}

.profile-sidebar {
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(248, 113, 113, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.profile-content {
  display: grid;
  gap: 12px;
}

.profile-content span:nth-child(1) {
  height: 56px;
}

.profile-content span:nth-child(2) {
  height: 98px;
}

.profile-content span:nth-child(3) {
  height: 78px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.cta-panel p {
  max-width: 56ch;
  line-height: 1.75;
}

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

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

@media (max-width: 1080px) {
  .hero,
  .feature-card,
  .cta-panel,
  .mini-panels {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .benefit-grid,
  .pain-grid,
  .readiness-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand-logo {
    width: min(220px, 52vw);
    max-height: 58px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .kpi-grid,
  .preview-grid,
  .preview-huddle,
  .preview-profile {
    grid-template-columns: 1fr;
  }

  .feature-preview {
    min-height: 220px;
  }
}
