:root {
  --bg: #f8fbfe;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #212529;
  --muted: #495057;
  --line: #d8e3ec;
  --accent: #217dbc;
  --accent-alt: #75b9e7;
  --cta: #217dbc;
  --cta-hover: #1a669c;
  --navy: #00046d;
  --radius: 18px;
  --shadow: 0 16px 35px rgba(33, 61, 96, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(117, 185, 231, 0.12), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(33, 125, 188, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9fd 55%, #eef5fb 100%);
  line-height: 1.45;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.18;
  pointer-events: none;
}

.orb-a {
  width: 380px;
  height: 380px;
  background: #c5def1;
  top: -180px;
  left: -150px;
}

.orb-b {
  width: 320px;
  height: 320px;
  background: #9fc8e9;
  right: -120px;
  top: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  backdrop-filter: blur(10px);
  background: rgba(248, 251, 254, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 5vw;
}

.logo {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-icon {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
  border-radius: 6px;
}

.logo-banner {
  display: block;
  height: 2.6rem;
  width: auto;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.38rem 0.62rem;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(117, 185, 231, 0.28);
}

.cta-small {
  background: var(--cta);
  color: #ffffff !important;
}

.cta-small:hover {
  background: var(--cta-hover) !important;
}

main {
  width: min(1100px, 92vw);
  margin: 2.2rem auto 3.2rem;
}

.hero {
  padding: 2.6rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.kicker {
  margin: 0;
  letter-spacing: 0.12em;
  font-family: "IBM Plex Mono", monospace;
  color: var(--accent);
  font-size: 0.8rem;
}

h1 {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.lead {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--cta);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--cta-hover);
}

.btn-secondary {
  background: #34495e;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #2b3c4d;
}

.hero-points {
  margin: 1.4rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.panel {
  margin-top: 1.4rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow);
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.vision-panel article {
  border: 1px solid #d6e3ef;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.vision-tag {
  margin: 0 0 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--accent);
}

.plans-grid {
  margin-top: 1rem;
}

.plan-card {
  border: 1px solid #d6e3ef !important;
  background: #ffffff !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-price {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.plan-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.plan-card .btn {
  margin-top: auto;
  width: fit-content;
}

.grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: #ffffff;
}

.inner-page {
  margin-top: 1.8rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--line);
  text-align: left;
  padding: 0.66rem 0.7rem;
}

.compare-table th {
  background: #e5edf2;
}

.table-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
}

.steps li {
  margin-bottom: 0.8rem;
}

.inline-link {
  color: #217dbc;
  font-weight: 700;
}

.site-footer {
  width: min(1100px, 92vw);
  margin: 1rem auto 2rem;
  padding: 1rem;
  border-top: 1px solid #1f3c63;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d8e3ec;
  background: #34495e;
  border-radius: 12px;
}

.site-footer a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealIn 760ms ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 80ms;
}

.reveal:nth-of-type(3) {
  animation-delay: 140ms;
}

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

@media (max-width: 980px) {
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 1.3rem;
  }

  .logo-banner {
    height: 2.2rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
