:root {
  --ink: #0a1020;
  --paper: #f6f7f3;
  --navy: #0b1f3a;
  --teal: #028090;
  --teal-soft: #15bda0;
  --amber: #f4a526;
  --slate: #4a6274;
  --line: #d8dee6;
  --card: #ffffff;

  --max: 1180px;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(10, 16, 32, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 15% 0%, #d6e8ee 0%, transparent 40%), var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(246, 247, 243, 0.9);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-decoration: none;
}

.brand small {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #334b5c;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  background: var(--teal);
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu a.is-active::after {
  transform: scaleX(1);
}

.mobile-menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.btn {
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 12px 24px rgba(2, 128, 144, 0.25);
  padding: 13px 18px;
  font-size: 14px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(2, 128, 144, 0.32);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--navy);
  background: #fff;
  padding: 12px 18px;
  font-size: 14px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  background: #dff6f2;
  border: 1px solid #b8ece2;
  border-radius: 999px;
  padding: 8px 12px;
}

main section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 22ch;
  color: var(--navy);
}

.section-head p {
  color: #425f73;
  max-width: 60ch;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(10, 16, 32, 0.05);
  padding: 22px;
}

.card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-icon {
  margin-right: 6px;
  color: #0f4a63;
}

.card p,
.card li,
.copy {
  color: #415f73;
  font-size: 15px;
}

.card ul,
.content ul {
  margin-top: 10px;
  padding-left: 30px;
  display: grid;
  gap: 8px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.stat h3 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 8px;
}

.stats-source {
  margin-top: 12px;
  font-size: 12px;
  color: #6a8091;
}

.why-private {
  background: linear-gradient(160deg, #0a1730 0%, #0d2240 55%, #0e2a4b 100%);
  color: #edf4fa;
}

.why-private .container {
  width: min(var(--max), 94vw);
}

.why-private-head {
  text-align: center;
  max-width: 86ch;
  margin: 0 auto 26px;
}

.why-private-pill {
  color: #c7f2eb;
  background: rgba(21, 189, 160, 0.14);
  border-color: rgba(21, 189, 160, 0.35);
}

.why-private-head h2 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4.2vw, 52px);
  color: #ffffff;
}

.why-private-head p {
  color: #bfd1e1;
  max-width: 78ch;
  margin: 0 auto;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.compare-col {
  border: 1px solid rgba(200, 220, 235, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.compare-col h3 {
  font-size: 19px;
  color: #ffffff;
  padding: 12px 14px;
  margin: 0;
}

.compare-standard h3 {
  background: rgba(132, 34, 34, 0.55);
}

.compare-enterprise h3 {
  background: rgba(139, 95, 26, 0.55);
}

.compare-private h3 {
  background: rgba(11, 107, 104, 0.6);
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
}

.compare-col li {
  color: #d4e1ec;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.icon {
  font-weight: 800;
  line-height: 1;
  margin-top: 2px;
}

.icon-x {
  color: #ff7f8f;
}

.icon-warn {
  color: #f2bf56;
}

.icon-ok {
  color: #54d2a5;
}

.why-private-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn-private-outline {
  border-color: rgba(210, 226, 238, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #eaf3fa;
}

.btn-private-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.trust-section {
  background: #f6f7f3;
}

.trust-head {
  margin-bottom: 18px;
}

.trust-head h2 {
  margin-top: 12px;
}

.trust-sub {
  font-size: 12px;
  font-weight: 700;
  color: #4d6778;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-pills {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c8d9e5;
  background: #ecf6fb;
  color: #2e4d61;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 11px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  color: #5f7788;
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #456277;
  font-weight: 500;
}

.page-hero {
  padding-top: 56px;
  padding-bottom: 30px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  color: var(--navy);
  margin: 12px 0;
  max-width: 16ch;
}

.page-hero p {
  color: #3e5a6f;
  max-width: 68ch;
}

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

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

.form-stack {
  display: grid;
  gap: 10px;
}

.form-stack input,
.form-stack textarea,
.form-stack select {
  width: 100%;
  border: 1px solid #cfd9e0;
  border-radius: 8px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
}

.form-stack textarea {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  font-size: 13px;
  color: var(--slate);
  min-height: 18px;
}

.form-status.success {
  color: #0d6f60;
}

.field-label {
  font-size: 12px;
  font-weight: 700;
  color: #355063;
}

.form-help {
  font-size: 12px;
  color: #5f7788;
}

.footer-row p {
  margin: 0;
}

.footer-disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: #7b909f;
  text-align: center;
}

@media (max-width: 1060px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .mobile-menu-btn {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    right: 4vw;
    top: 78px;
    min-width: 240px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 14px;
  }

  .menu.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .footer-row {
    justify-content: center;
    text-align: center;
  }
}

.hero {
  position: relative;
  padding-top: 68px;
  padding-bottom: 48px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 16px 0 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--navy), #153f62 55%, var(--teal));
  border-radius: 0 0 56px 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  color: #f5feff;
  padding: 36px;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin: 16px 0 14px;
  max-width: 12ch;
}

.hero-copy p {
  color: #d3e5ef;
  max-width: 56ch;
  margin-bottom: 22px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 12px;
  color: #d7e8f2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(215, 232, 242, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
}

.hero-note {
  font-size: 13px;
  color: #bfd4e0;
  margin-top: 14px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-card li {
  border-bottom: 1px dashed #d7e2e9;
  padding-bottom: 10px;
  color: #355063;
}

.hero-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-console {
  background: #0d1f34;
  border-color: rgba(21, 189, 160, 0.35);
  color: #d8e7f1;
}

.hero-console h3 {
  color: #e8f5fc;
  font-size: 18px;
}

.console-status {
  list-style: none;
  margin-top: 8px;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.console-status li {
  border-bottom: 1px solid rgba(159, 195, 216, 0.2);
  padding-bottom: 8px;
  color: #d8e7f1;
  font-size: 14px;
}

.status-dot {
  color: #33d17a;
  margin-right: 8px;
}

.console-log {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(159, 195, 216, 0.2);
  background: rgba(255, 255, 255, 0.04);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: #a5c7da;
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.strip-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.strip-track span {
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3f596a;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.process {
  counter-reset: process;
  display: grid;
  gap: 12px;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 16px 16px 58px;
}

.step::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.step h4 {
  color: var(--navy);
  margin-bottom: 4px;
}

.package-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}

.package-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 16px 28px rgba(2, 128, 144, 0.14);
}

.package-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 800;
  margin-bottom: 10px;
}

.package-meta {
  color: #456176;
  margin-bottom: 10px;
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(10, 16, 32, 0.05);
}

.plan-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.team-badge {
  display: inline-block;
  margin-bottom: 10px;
  background: #eaf1f6;
  color: #2f4a5d;
  border: 1px solid #d2dee8;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.plan-card ul {
  margin-top: 10px;
  margin-bottom: 14px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.plan-card li {
  color: #415f73;
  font-size: 15px;
}

.plan-card.featured {
  border: 2px solid var(--amber);
  box-shadow: 0 16px 28px rgba(244, 165, 38, 0.18);
}

.pricing-note {
  margin: 18px auto 0;
  max-width: 88ch;
  text-align: center;
  font-size: 12px;
  color: #6a8091;
}

.pricing-cta {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: #42627a;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 10px;
  color: #425f73;
}

.cta-band {
  background: linear-gradient(132deg, var(--navy), #0d3655 56%, var(--teal));
  border-radius: 24px;
  color: #fff;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 10px 0;
}

.cta-band p {
  color: #c7dbe8;
  max-width: 58ch;
}

.contact-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.legal main {
  padding-top: 44px;
  padding-bottom: 70px;
}

.legal .content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.legal h1 {
  color: var(--navy);
  margin-bottom: 8px;
}

.legal h2 {
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 24px;
}

.legal p,
.legal li {
  color: #415f73;
}

@media (max-width: 1060px) {
  .hero-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 30px;
  }

  .hero::before {
    inset: 8px 0 0;
    border-radius: 0 0 30px 30px;
  }

  .hero-copy {
    padding: 24px;
  }

  .cta-band {
    padding: 24px;
  }
}
