: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: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #1f4f68;
  background: #e7f4fb;
  border: 1px solid #c7deec;
  border-radius: 999px;
  padding: 8px 12px;
}

main section {
  padding: 72px 0;
}

main section.section-divider {
  border-top: 1px solid #e2eaf0;
}

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

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  max-width: 20ch;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-head p {
  color: #4f687b;
  max-width: 54ch;
  font-size: 16px;
  line-height: 1.74;
}

.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: 24px;
}

.card-accent {
  border-top: 3px solid #79bfd2;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.featured-card {
  border-color: #a8c8da;
  background:
    radial-gradient(circle at 100% 0%, rgba(2, 128, 144, 0.08), transparent 48%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: 0 18px 30px rgba(10, 16, 32, 0.09);
}

.card h3 {
  font-size: clamp(21px, 2.4vw, 24px);
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
  max-width: 24ch;
}

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

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

.card p,
.copy {
  max-width: 62ch;
}

.signal-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price-guidance {
  margin-top: 4px;
  margin-bottom: 8px;
  color: #26475d;
  font-size: 13px;
  line-height: 1.62;
}

.price-guidance strong {
  color: #0f2e49;
}

.tier-note {
  margin-top: 2px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #4b6577;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-profile-card {
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(2, 128, 144, 0.08), transparent 42%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
  border-color: #c9dbe6;
}

.founder-figure {
  margin: 0 auto;
  width: min(100%, 420px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #c8d9e5;
  background: linear-gradient(160deg, #ffffff, #f2f7fb);
  box-shadow: 0 14px 28px rgba(10, 16, 32, 0.08);
}

.image-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid #d4e0e8;
  border-radius: 12px;
  background: linear-gradient(165deg, #ffffff, #edf4f9);
}

.js-optional-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.image-fallback {
  position: absolute;
  inset: 0;
  min-height: 150px;
  padding: 18px;
  display: grid;
  gap: 8px;
  place-items: center;
  text-align: center;
  color: #3f5d71;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 36%),
    linear-gradient(150deg, #edf5fa, #deebf3 60%, #d7e6ef);
  opacity: 0;
  pointer-events: none;
}

.image-frame.is-error .image-fallback {
  opacity: 1;
  pointer-events: auto;
}

.image-frame.is-error .js-optional-image {
  opacity: 0;
}

.founder-image-frame {
  aspect-ratio: 5 / 4;
}

.founder-fallback {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.82), transparent 52%),
    radial-gradient(circle at 78% 78%, rgba(2, 128, 144, 0.12), transparent 30%),
    linear-gradient(150deg, #dfeef4, #cadeea 70%, #c0d8e7);
  align-content: center;
}

.founder-fallback-label {
  display: inline-flex;
  align-self: start;
  margin-bottom: auto;
  border-radius: 999px;
  border: 1px solid rgba(20, 73, 100, 0.16);
  background: rgba(255, 255, 255, 0.52);
  color: #285169;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 10px;
}

.fallback-initials {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.22));
  border: 1px solid rgba(16, 51, 78, 0.12);
  box-shadow: 0 14px 26px rgba(16, 51, 78, 0.12);
  color: #10334e;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.founder-fallback p {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #33586f;
}


.founder-meta {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.founder-meta h3 {
  margin-bottom: 0;
}

.founder-pill {
  width: fit-content;
}

.founder-contact-list {
  margin-top: 6px;
  display: grid;
  gap: 8px;
}

.founder-contact-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-top: 8px;
  border-top: 1px solid #e1eaf0;
  max-width: none;
}

.founder-contact-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #577183;
}

.founder-contact-list a {
  color: #0f4660;
  font-weight: 700;
  text-decoration: none;
}

.founder-contact-list a:hover {
  text-decoration: underline;
}

.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: 18px;
}

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

.grid-emphasis {
  grid-template-columns: 1.15fr 0.85fr;
}

.rhythm-grid > .card:nth-child(2) {
  transform: translateY(-6px);
  border-color: #bcd3e1;
  box-shadow: 0 16px 28px rgba(10, 16, 32, 0.08);
}

.section-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(2, 128, 144, 0.08), transparent 42%),
    linear-gradient(180deg, #f7fbfd, #f3f7fa);
  border-top: 1px solid #e1e9ef;
  border-bottom: 1px solid #e1e9ef;
}

.section-muted {
  background:
    radial-gradient(circle at 88% 14%, rgba(11, 31, 58, 0.04), transparent 36%),
    linear-gradient(180deg, #f8fbfd, #f6f9fc);
  border-top: 1px solid #e3ebf1;
  border-bottom: 1px solid #e3ebf1;
}

.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: 11px;
  font-weight: 800;
  color: #476174;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.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: 11px;
  color: #6a8091;
  letter-spacing: 0.02em;
}

.footer-row p {
  margin: 0;
}

.footer-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: #7b909f;
  line-height: 1.6;
  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-flagship::after {
  content: "";
  position: absolute;
  inset: 16px 0 0;
  z-index: -1;
  border-radius: 0 0 56px 56px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 35%),
    radial-gradient(circle at 84% 80%, rgba(21, 189, 160, 0.22), transparent 42%);
  pointer-events: none;
}

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

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

.hero-flagship .hero-copy {
  border: 1px solid rgba(195, 225, 238, 0.24);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

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

.hero-copy p {
  color: #d3e5ef;
  max-width: 52ch;
  margin-bottom: 22px;
  line-height: 1.72;
}

.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-flagship .trust-item {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(215, 232, 242, 0.36);
}

.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-flagship .hero-console {
  box-shadow: 0 20px 34px rgba(4, 12, 24, 0.34);
  border-color: rgba(110, 204, 189, 0.42);
}

.hero-flagship .hero-cta .btn-outline {
  border-color: rgba(221, 237, 247, 0.46);
  color: #eaf5fb;
  background: rgba(255, 255, 255, 0.06);
}

.hero-flagship .hero-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.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: 11px;
  line-height: 1.55;
  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: 14px;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 18px 18px 62px;
  box-shadow: 0 10px 22px rgba(10, 16, 32, 0.05);
}

.step::before {
  counter-increment: process;
  content: "0" counter(process);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #93b8cc;
  background: linear-gradient(160deg, #edf6fb, #dbeaf3);
  color: #1c4a64;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.step::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 52px;
  bottom: -14px;
  width: 1px;
  background: linear-gradient(180deg, #bdd6e4, #e4eef5);
}

.process .step:last-child::after {
  display: none;
}

.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: linear-gradient(135deg, #0b3d62, #0f8f9f);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  margin-bottom: 10px;
  box-shadow: 0 10px 20px rgba(13, 95, 126, 0.28);
}

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

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

.pricing-flagship {
  background:
    radial-gradient(circle at 12% 12%, rgba(11, 31, 58, 0.05), transparent 34%),
    linear-gradient(180deg, #f8fbfd, #f5f9fc);
}

.pricing-flagship .section-head {
  align-items: start;
  margin-bottom: 36px;
}

.pricing-flagship .section-head .pill {
  margin-bottom: 8px;
  background: #e6f2f8;
  border-color: #c4d9e7;
  color: #234f67;
}

.pricing-grid {
  gap: 20px;
}

.pricing-flagship .plan-card {
  border-top: 3px solid #bfd6e5;
  background:
    radial-gradient(circle at 100% 0%, rgba(2, 128, 144, 0.06), transparent 42%),
    #ffffff;
  box-shadow: 0 14px 24px rgba(10, 16, 32, 0.07);
}

.pricing-flagship .plan-card.featured {
  border-top-color: #41a8ba;
  box-shadow: 0 22px 34px rgba(16, 120, 136, 0.2);
}

.pricing-flagship .price-guidance {
  margin-top: 6px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border: 1px solid #d7e4ed;
  border-radius: 10px;
  background: #f8fbfd;
}

.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: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.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 #0f8b98;
  background: linear-gradient(180deg, #ffffff, #f5fbfc);
  box-shadow: 0 18px 30px rgba(16, 120, 136, 0.16);
}

.plan-card.featured .team-badge {
  background: #def4f6;
  border-color: #b8e5ea;
  color: #11475f;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid #c4dae8;
  background: #edf6fb;
  color: #2f5268;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
}

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

.pricing-flagship .pricing-note {
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid #d0dee8;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
}

.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;
  border: 1px solid rgba(156, 202, 224, 0.28);
  color: #fff;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 34px rgba(10, 22, 40, 0.25);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.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);
  box-shadow: 0 16px 28px rgba(5, 14, 28, 0.16);
}

.premium-callout {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(140deg, #0f7182, #0b5f73 45%, #0a526b 100%);
  color: #ecf7fc;
  border-top: 1px solid rgba(188, 232, 242, 0.38);
  border-bottom: 1px solid rgba(188, 232, 242, 0.38);
}

.premium-callout h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  color: #fff;
}

.premium-callout p {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.3;
  max-width: 34ch;
}

.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;
  }

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

  .rhythm-grid > .card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 760px) {
  main section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .card,
  .plan-card {
    padding: 20px;
  }

  .hero {
    padding-top: 30px;
  }

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

  .hero-copy {
    padding: 22px;
  }

  .hero-flagship .hero-copy {
    border-radius: 14px;
  }

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

  .step {
    padding-left: 58px;
  }

  .step::after {
    left: 30px;
  }

  .founder-contact-list p {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
