:root {
  --bg: #07131f;
  --bg-soft: #0c2133;
  --surface: rgba(16, 29, 43, 0.84);
  --surface-strong: rgba(20, 36, 52, 0.9);
  --surface-light: rgba(255, 255, 255, 0.06);
  --text: #f3f8fd;
  --muted: #9baabd;
  --line: rgba(159, 182, 206, 0.18);
  --primary: #123a63;
  --primary-strong: #0d2d4c;
  --primary-dark: #95cfff;
  --accent: #27d3ff;
  --accent-strong: #0fb6de;
  --accent-warm: #49e1ff;
  --glow: rgba(39, 211, 255, 0.24);
  --shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #06111b 0%, #0a1a2a 48%, #07131f 100%);
}

.page-shell {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px) saturate(140%);
  background: rgba(7, 19, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  margin-left: 0.25rem;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 22px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0.95;
  max-width: none;
}

.brand-text {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  margin-left: 1.25rem;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    filter 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.button-primary {
  color: white;
  background: #156297;
  border-color: rgba(146, 223, 247, 0.24);
  box-shadow:
    0 12px 24px rgba(7, 22, 37, 0.24),
    0 0 0 1px rgba(146, 223, 247, 0.08),
    0 0 14px rgba(39, 211, 255, 0.08);
}

.button-primary:hover {
  background: #1b73ab;
  box-shadow:
    0 16px 30px rgba(7, 22, 37, 0.28),
    0 0 0 1px rgba(146, 223, 247, 0.14),
    0 0 18px rgba(39, 211, 255, 0.14);
}

.button-secondary,
.button-ghost {
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.14);
}

.button-secondary:hover,
.button-ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 12px 24px rgba(2, 6, 23, 0.16),
    0 0 12px rgba(39, 211, 255, 0.05);
}

.hero {
  position: relative;
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.7rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  color: #e4edf8;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ae5ff, var(--accent));
  box-shadow: 0 0 0 0 rgba(39, 211, 255, 0.7);
  animation: pulse 2.4s infinite;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  text-wrap: balance;
}

.hero-text,
.section-heading,
.feature-card p,
.plan-copy,
.plan-features,
.cta-card {
  color: var(--muted);
}

.hero-text {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  padding: 0 0 0 1rem;
  margin: 1.75rem 0 0;
  list-style: disc;
  color: var(--muted);
  font-weight: 600;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.signal-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.signal-label,
.insight-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-card strong,
.insight-strip strong {
  font-size: 1rem;
  line-height: 1.5;
}

.hero-panel {
  position: relative;
  min-height: 540px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.45;
}

.orb-a {
  width: 220px;
  height: 220px;
  top: 2rem;
  right: 2rem;
  background: radial-gradient(circle, rgba(18, 58, 99, 0.8), transparent 68%);
  animation: floatY 6s ease-in-out infinite;
}

.orb-b {
  width: 180px;
  height: 180px;
  bottom: 2rem;
  left: 1rem;
  background: radial-gradient(circle, rgba(39, 211, 255, 0.52), transparent 70%);
  animation: floatY 7.5s ease-in-out infinite reverse;
}

.panel-card,
.feature-card,
.pricing-card,
.cta-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: var(--shadow);
  background-clip: padding-box;
}

.panel-main {
  position: absolute;
  inset: 3rem 0 3rem 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.panel-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 38%, transparent 65%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-chip,
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #c8e8ff;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-stat {
  font-weight: 800;
}

.positive {
  color: #7ae5ff;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.metric-grid article,
.progress-card {
  padding: 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.metric-grid article:hover,
.progress-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.metric-label,
.progress-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.metric-value {
  margin: 0.35rem 0 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.progress-card {
  margin-top: 0.9rem;
}

.progress-copy strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.15rem;
  color: var(--text);
}

.progress-bar {
  margin-top: 1rem;
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: #1592bb;
  box-shadow: 0 0 20px rgba(39, 211, 255, 0.24);
}

.insight-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(18, 58, 99, 0.34);
  border: 1px solid rgba(132, 175, 214, 0.18);
}

.insight-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.floating-note {
  position: absolute;
  max-width: 210px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.floating-note:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.floating-note strong,
.feature-card h3,
.plan-name {
  display: block;
  color: var(--text);
}

.floating-note span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.5;
}

.note-left {
  left: 0;
  bottom: 1.5rem;
}

.note-right {
  right: 0;
  top: 1.25rem;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.trust {
  padding-top: 2rem;
}

.trust-header {
  max-width: 44rem;
  margin-bottom: 1.75rem;
}

.trust-header h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.logo-row,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.logo-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

.logo-card,
.testimonial-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow);
  background-clip: padding-box;
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 5.5rem;
  border-radius: 20px;
  overflow: hidden;
}

.logo-card span {
  color: #d8e8f7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

.testimonial-card {
  overflow: hidden;
  isolation: isolate;
  padding: 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(159, 182, 206, 0.1);
  background: rgba(16, 29, 43, 0.88);
  box-shadow:
    0 16px 36px rgba(2, 6, 23, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(159, 182, 206, 0.16);
  box-shadow: 0 22px 46px rgba(2, 6, 23, 0.22);
}

.testimonial-quote {
  margin: 0;
  color: #dce9f6;
  line-height: 1.8;
  font-size: 1rem;
}

.testimonial-meta {
  margin-top: 1.4rem;
}

.testimonial-meta strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.testimonial-meta span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.section-copy {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  line-height: 1.75;
  font-size: 1rem;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.feature-grid,
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

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

.feature-card,
.pricing-card {
  position: relative;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.24);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: rgba(18, 58, 99, 0.42);
  color: #edf7ff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  margin: 1.2rem 0 0.7rem;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  color: #ccecff;
  text-decoration: none;
  font-weight: 700;
  transition: color 180ms ease;
}

.feature-link:hover {
  color: #ffffff;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-toolbar {
  display: flex;
  justify-content: center;
  margin: 0 0 1.75rem;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12);
}

.billing-option {
  min-height: 2.8rem;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.billing-option:hover {
  color: var(--text);
}

.billing-option.is-active {
  color: white;
  background: #11436d;
  box-shadow: 0 10px 20px rgba(7, 22, 37, 0.2);
}

.billing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(39, 211, 255, 0.12);
  color: #bdefff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(16, 29, 43, 0.9);
  border: 1px solid rgba(159, 182, 206, 0.1);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.pricing-card-featured {
  position: relative;
  overflow: hidden;
  background: rgba(17, 49, 79, 0.96);
  color: white;
  transform: translateY(-6px);
  border: 1px solid rgba(120, 196, 235, 0.14);
  box-shadow: 0 24px 54px rgba(3, 10, 24, 0.24);
}

.pricing-card-featured .plan-name,
.pricing-card-featured .plan-price,
.pricing-card-featured .plan-copy,
.pricing-card-featured .plan-features {
  color: white;
}

.pricing-card-featured:hover {
  transform: translateY(-8px);
}

.plan-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.plan-price {
  margin: 0.8rem 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.plan-billing-note {
  margin: -0.15rem 0 1rem;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.7;
}

.plan-copy {
  margin: 0;
  min-height: 4.2rem;
  line-height: 1.7;
}

.plan-features {
  margin: 1.5rem 0 2rem;
  padding: 0 0 0 1rem;
  list-style: disc;
  line-height: 1.9;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card-featured .plan-billing-note {
  color: #cfefff;
}

.cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 2rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 20px;
  border: 1px solid rgba(159, 182, 206, 0.1);
  background: linear-gradient(135deg, rgba(14, 30, 47, 0.96), rgba(10, 22, 35, 0.94));
  background-clip: padding-box;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.cta-card .section-copy {
  margin-top: 1rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(39, 211, 255, 0.65);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(39, 211, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(39, 211, 255, 0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .logo-row,
  .testimonial-grid,
  .feature-grid,
  .pricing-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 500px;
  }

  .cta-card {
    display: grid;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .nav-button {
    margin-left: auto;
  }

  .hero {
    padding-top: 2rem;
  }

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

  .panel-main {
    inset: 2.5rem 0 4.75rem 0;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-note {
    max-width: 180px;
    font-size: 0.92rem;
  }

  .note-left {
    left: 0.5rem;
    bottom: 0.5rem;
  }

  .note-right {
    right: 0.5rem;
    top: 0.5rem;
  }
}

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

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

  .hero-proof,
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-panel {
    min-height: 620px;
  }

  .logo-row {
    grid-template-columns: 1fr;
  }

  .floating-note {
    max-width: 160px;
  }

  .plan-price {
    font-size: 2.4rem;
  }

  .billing-toggle {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .billing-option {
    flex: 1 1 140px;
  }

  .insight-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}
