:root {
  --bg: #f4fbfb;
  --surface: #ffffff;
  --text: #0e1d21;
  --muted: #446069;
  --line: #cde7ea;
  --brand: #2a9fa6;
  --brand-deep: #1c6f75;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfefe 0%, #f2fbfb 100%);
}

.glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}

.glow-a {
  top: -120px;
  left: -80px;
  background: rgba(42, 159, 166, 0.28);
}

.glow-b {
  right: -120px;
  top: 140px;
  background: rgba(127, 207, 212, 0.34);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero-wrap {
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  color: var(--brand-deep);
  font-family: Sora, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.links a,
.mobile-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.menu-btn {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.15rem;
  align-items: stretch;
  padding: 2rem 0 3.4rem;
}

.hero-copy {
  background: linear-gradient(135deg, #ffffff, #f2fbfb);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: clamp(1.2rem, 2.5vw, 2.2rem);
}

.eyebrow {
  margin: 0;
  color: var(--brand-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: Sora, "Segoe UI", sans-serif;
}

h1 {
  margin: 0.7rem 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5.7vw, 4rem);
}

.hero-copy p {
  color: var(--muted);
  max-width: 54ch;
}

.cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  text-decoration: none;
  font-weight: 700;
}

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

.mini {
  padding: 0.45rem 0.9rem;
  font-size: 0.86rem;
}

.ghost {
  color: var(--brand-deep);
  background: transparent;
  border: 1px solid var(--line);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: #0f2025;
  color: #e9fafb;
  padding: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.panel-title,
.panel-note {
  margin: 0;
  color: #b8d8db;
}

.panel-value {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  font-family: Sora, "Segoe UI", sans-serif;
}

.bars {
  display: grid;
  gap: 0.5rem;
}

.bars span {
  height: 8px;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, #7ad2d6, #2a9fa6);
}

.mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mini-metrics article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  padding: 0.65rem;
}

.mini-metrics p,
.mini-metrics strong {
  margin: 0;
}

.mini-metrics p {
  color: #c0dee1;
  font-size: 0.83rem;
}

.mini-metrics strong {
  font-size: 1.1rem;
}

.section {
  padding: 3.8rem 0;
}

.head p {
  color: var(--muted);
  margin-top: 0.3rem;
}

.bento {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.tile {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1rem;
  box-shadow: 0 14px 28px rgba(28, 82, 88, 0.08);
}

.tile.big {
  grid-column: span 2;
}

.tile h3 {
  margin: 0 0 0.45rem;
}

.tile p {
  margin: 0;
  color: var(--muted);
}

.section-soft {
  background: linear-gradient(180deg, #eff9fa 0%, #f8fcfd 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.pricing-head p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--brand-deep);
  padding: 0.5rem 0.95rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.featured {
  background: linear-gradient(160deg, #0f2025, #163740);
  color: #effdfd;
  border-color: #244b54;
}

.featured .plan,
.featured .hint,
.featured li {
  color: #c4e6e8;
}

.plan {
  margin: 0;
  color: var(--brand-deep);
  font-weight: 700;
}

.price {
  margin: 0.2rem 0;
  font-size: 2rem;
  font-weight: 800;
  font-family: Sora, "Segoe UI", sans-serif;
}

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

ul {
  margin: 0.85rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.quotes {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.quote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
  padding: 1rem;
  color: #234049;
  display: grid;
  gap: 0.7rem;
}

cite {
  font-style: normal;
  color: var(--brand-deep);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  background: #ffffffd4;
  backdrop-filter: blur(4px);
}

.footer-row {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer a {
  text-decoration: none;
  color: var(--brand-deep);
  font-weight: 700;
}

.mobile-nav {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

  .tile.big {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .links {
    display: none;
  }

  .menu-btn {
    display: inline-block;
    border: 1px solid var(--line);
    background: white;
    border-radius: 0.6rem;
    padding: 0.45rem 0.7rem;
    color: var(--text);
    font-weight: 700;
  }

  .mobile-nav {
    display: grid;
    gap: 0.65rem;
    padding: 0 4vw 0.8rem;
  }

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

  .tile.big {
    grid-column: span 1;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.8rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
