:root {
  --bg: #07111f;
  --bg-soft: #0c1728;
  --ink: #101827;
  --body: #506077;
  --muted: #708096;
  --card: #f2f7fc;
  --card-2: #e7f0fa;
  --line: #d2dfed;
  --navy: #0c1728;
  --navy-2: #13243a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --teal: #22d3ee;
  --white: #ffffff;
  --off-white: #e8f0fb;
  --shadow: 0 26px 86px rgba(4, 14, 31, 0.34);
  --soft-shadow: 0 18px 58px rgba(4, 14, 31, 0.18);
  --glow: 0 0 0 1px rgba(34, 211, 238, 0.18), 0 28px 80px rgba(37, 99, 235, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.22), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 44%, #081120 100%);
  color: var(--off-white);
  line-height: 1.72;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 720px);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.28;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 31, 0.86);
  border-bottom: 1px solid rgba(219, 231, 243, 0.12);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 36px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 211, 238, 0.38);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #11326f);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd7e8;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero,
.announcement,
.page-hero,
.section,
.trust-bar,
.cta,
.site-footer > div {
  width: min(1160px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(19, 36, 58, 0.82), rgba(7, 17, 31, 0.92));
  box-shadow: 0 18px 58px rgba(4, 14, 31, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.announcement-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.announcement-copy span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.45;
}

.announcement small {
  display: block;
  margin-top: 2px;
  color: #aebdd1;
  font-size: 0.86rem;
  line-height: 1.5;
}

.announcement a {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: center;
  padding: 102px 0 82px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 22%;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 68%);
  filter: blur(8px);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p,
.page-hero p,
.section-heading p,
.split-section p {
  color: #c4d2e4;
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-copy > p {
  max-width: 620px;
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-row.centered {
  justify-content: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  will-change: transform;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px) scale(1.015);
}

.button.primary {
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: linear-gradient(135deg, var(--blue), #1749b7);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.16), 0 18px 52px rgba(37, 99, 235, 0.42);
}

.button.primary:hover,
.button.primary:focus {
  background: linear-gradient(135deg, var(--blue-dark), #123b96);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.28), 0 22px 64px rgba(37, 99, 235, 0.52);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  color: #d9e6f6;
}

.button.secondary:hover,
.button.secondary:focus {
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(34, 211, 238, 0.07);
}

.hero-card,
.summary-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(19, 36, 58, 0.96), rgba(12, 23, 40, 0.98));
  box-shadow: var(--shadow);
}

.hero-card::after,
.summary-card::after {
  content: "";
  position: absolute;
  inset: auto 18px -32px 18px;
  height: 70px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.28);
  filter: blur(34px);
}

.hero-card::before {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.hero-card h2,
.summary-card h2 {
  color: var(--white);
  font-size: 1.75rem;
}

.hero-card p,
.summary-card p {
  color: #c4d2e4;
  line-height: 1.78;
}

.stat-list {
  margin: 28px 0 0;
}

.stat-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(219, 231, 243, 0.14);
}

.stat-list dt {
  color: #9fb0c8;
}

.stat-list dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  text-align: right;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: -18px;
  border: 1px solid rgba(219, 231, 243, 0.14);
  border-radius: 16px;
  background: rgba(219, 231, 243, 0.14);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.trust-bar span {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(13, 26, 45, 0.96);
  color: #d6e2f2;
  font-size: 0.91rem;
  text-align: center;
}

.section {
  position: relative;
  padding: 108px 0;
}

.final-section {
  padding-bottom: 86px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 34px -42px auto;
  z-index: -1;
  height: 62%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.1), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  opacity: 0.72;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

main > .section:nth-of-type(even) .section-heading {
  margin-left: auto;
  text-align: right;
}

.section-heading h2,
.split-section h2,
.page-hero h1 {
  color: var(--white);
}

.page-hero {
  padding: 104px 0 58px;
  text-align: center;
}

.page-hero h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.page-hero p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.card-grid,
.stack-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.card,
.stack-card,
.feature-panel,
.contact-card,
.process-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0)),
    var(--card);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.card:hover,
.stack-card:hover,
.contact-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: var(--glow);
}

.feature-panel {
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.1), transparent 15rem),
    linear-gradient(180deg, var(--card), var(--card-2));
}

.card p,
.stack-card p,
.feature-panel p,
.contact-card p,
.process-card p {
  color: var(--body);
  margin-bottom: 0;
  line-height: 1.72;
}

.card h2,
.card h3,
.stack-card h3,
.feature-panel h2,
.feature-panel h3,
.contact-card h2,
.contact-card h3,
.process-card h3 {
  color: var(--ink);
}

.large-card {
  min-height: 280px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.16));
  color: var(--blue-dark);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12), 0 12px 28px rgba(37, 99, 235, 0.14);
}

.icon-badge svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-label {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.split-section,
.package-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.package-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.capability-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.capability-card {
  padding: clamp(36px, 4vw, 48px);
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 211, 238, 0.13), transparent 17rem),
    linear-gradient(180deg, rgba(19, 36, 58, 0.98), rgba(9, 19, 34, 0.99));
}

.capability-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(37, 99, 235, 0.12));
}

.capability-card .stat-list {
  margin-top: 24px;
}

.capability-card .stat-list div {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 18px 0;
  border-top-color: rgba(219, 231, 243, 0.1);
  transition: background 220ms ease, border-color 220ms ease, padding-inline 220ms ease;
}

.capability-card .stat-list div:hover {
  padding-inline: 10px;
  border-top-color: rgba(34, 211, 238, 0.2);
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.055), transparent 72%);
}

.capability-card .stat-list dt {
  color: rgba(196, 210, 228, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.capability-card .stat-list dd {
  color: #f4f8ff;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.45;
  text-align: left;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list.columns {
  columns: 2;
  column-gap: 42px;
}

.check-list li {
  break-inside: avoid;
  position: relative;
  padding: 10px 0 10px 30px;
  color: var(--ink);
  border-bottom: 1px solid rgba(112, 128, 150, 0.16);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.check-list li:last-child {
  border-bottom: 0;
}

.included-panel {
  padding: clamp(30px, 3.5vw, 42px);
}

.included-list li {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 13px 0 13px 32px;
  border-bottom-color: rgba(112, 128, 150, 0.12);
  line-height: 1.45;
  transition: background 220ms ease, border-color 220ms ease, padding-inline 220ms ease;
}

.included-list li::before {
  top: 50%;
  transform: translateY(-50%);
}

.included-list li:hover {
  padding-inline: 10px 0;
  border-bottom-color: rgba(37, 99, 235, 0.18);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.055), transparent 74%);
}

.included-list li:hover::before {
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12), 0 0 22px rgba(34, 211, 238, 0.16);
}

.compact-panel {
  padding: 30px;
}

.process-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(34, 211, 238, 0.16));
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.process-card::after {
  content: "";
  position: absolute;
  top: 48px;
  left: calc(100% - 8px);
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.36), rgba(34, 211, 238, 0));
}

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

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  padding: 12px 15px;
  border: 1px solid rgba(219, 231, 243, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dce8f6;
}

.contact-page .page-hero {
  padding-top: clamp(120px, 10vw, 150px);
  padding-bottom: 72px;
}

.contact-content {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
  margin-bottom: 112px;
}

.contact-intro-panel {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.85fr);
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
  padding: clamp(44px, 5vw, 64px);
  border: 1px solid rgba(65, 132, 255, 0.45);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.18), transparent 25rem),
    linear-gradient(180deg, rgba(10, 28, 52, 0.72), rgba(8, 17, 31, 0.96));
  box-shadow: 0 28px 90px rgba(8, 20, 38, 0.46), 0 0 0 1px rgba(34, 211, 238, 0.06);
}

.contact-intro-copy,
.contact-card,
.contact-card h2,
.contact-card p,
.contact-card a,
.contact-card strong {
  min-width: 0;
}

.contact-intro-copy {
  max-width: 720px;
}

.contact-intro-copy h2 {
  max-width: 700px;
  font-size: clamp(2.25rem, 3.4vw, 3.8rem);
  line-height: 1.08;
}

.contact-intro-copy p {
  max-width: 680px;
  color: #c4d2e4;
  font-size: 1rem;
  line-height: 1.7;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-items span {
  padding: 9px 12px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #e4eefb;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-profile-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(19, 36, 58, 0.92), rgba(12, 23, 40, 0.98));
  box-shadow: var(--shadow);
  min-width: 0;
}

.contact-profile-card::after {
  content: "";
  position: absolute;
  inset: auto 22px -28px;
  z-index: -1;
  height: 70px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.28);
  filter: blur(34px);
}

.contact-profile-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 16px;
}

.contact-profile-card figcaption {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 16px 4px 2px;
  color: #c4d2e4;
}

.contact-profile-card figcaption strong {
  display: block;
  color: var(--white);
}

.contact-profile-card figcaption span {
  display: block;
}

.contact-profile-card figcaption em {
  color: var(--teal);
  font-style: normal;
  font-weight: 800;
}

.contact-methods-section {
  margin-top: 32px;
}

.contact-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

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

.contact-card {
  min-width: 0;
  padding: 32px;
  border-color: rgba(65, 132, 255, 0.45);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.14), transparent 15rem),
    linear-gradient(180deg, rgba(10, 28, 52, 0.72), rgba(12, 23, 40, 0.98));
  color: var(--off-white);
  box-shadow: 0 22px 70px rgba(8, 20, 38, 0.38);
}

.contact-card:hover {
  border-color: rgba(34, 211, 238, 0.34);
}

.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.contact-card h2 {
  font-size: clamp(1.08rem, 1.25vw, 1.25rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-card p {
  color: #c4d2e4;
}

.email-address,
.contact-card a,
.contact-card strong {
  display: block;
  color: var(--teal);
  overflow-wrap: anywhere;
  word-break: normal;
  min-width: 0;
  max-width: 100%;
  line-height: 1.25;
  white-space: normal;
}

.email-address {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.cta {
  position: relative;
  margin-bottom: 92px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.26), rgba(12, 23, 40, 0.96)),
    var(--navy);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  right: 8%;
  top: -42%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.24), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
}

.cta > * {
  position: relative;
}

.cta .button-row {
  justify-content: flex-end;
  margin-top: 0;
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.cta-helper {
  max-width: 520px;
  margin: 16px 0 0;
  color: #c4d2e4;
}

.quote-request {
  width: min(100%, 560px);
  display: grid;
  gap: 18px;
  justify-items: end;
}

.quote-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(219, 231, 243, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 211, 238, 0.09), transparent 17rem),
    rgba(7, 17, 31, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.quote-form input[name="website"] {
  position: absolute;
  left: -10000px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #c4d2e4;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form label.full,
.quote-form .turnstile-field,
.quote-form button,
.quote-form .form-status {
  grid-column: 1 / -1;
}

.turnstile-field {
  min-height: 65px;
  overflow: hidden;
}

.turnstile-field iframe {
  max-width: 100%;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(219, 231, 243, 0.14);
  border-radius: 10px;
  background: rgba(5, 13, 24, 0.72);
  color: var(--white);
  font: inherit;
  line-height: 1.45;
  padding: 11px 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.48);
  background: rgba(5, 13, 24, 0.9);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.quote-form button {
  justify-self: start;
  cursor: pointer;
}

.quote-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: #c4d2e4;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.success {
  color: var(--teal);
}

.form-status.error {
  color: #fecaca;
}

.site-footer {
  padding: 48px 0 34px;
  border-top: 1px solid rgba(219, 231, 243, 0.12);
  background: #050d18;
  color: #aebdd1;
}

.site-footer > div {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.65fr) minmax(180px, 0.65fr);
  align-items: start;
  gap: 34px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  color: var(--teal);
}

.footer-copy,
.footer-meta {
  margin: 0;
  color: #aebdd1;
  line-height: 1.7;
}

.footer-heading {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.footer-links a {
  color: #c8d6e8;
}

.landing-hero {
  min-height: clamp(680px, 84vh, 820px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(38px, 6vw, 78px);
  padding: clamp(78px, 9vw, 132px) 0 82px;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 34px -6vw auto;
  z-index: -2;
  height: 82%;
  background:
    radial-gradient(circle at 78% 36%, rgba(34, 211, 238, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(168, 85, 247, 0.12), transparent 18rem),
    linear-gradient(90deg, rgba(5, 13, 24, 0), rgba(5, 13, 24, 0.78) 52%, rgba(5, 13, 24, 0));
  pointer-events: none;
}

.landing-hero::after {
  right: 14%;
  top: 20%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 68%);
}

.landing-hero .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.landing-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7.4vw, 6.8rem);
  line-height: 0.95;
}

.landing-hero .hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: #d4e3f4;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.72;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 24px;
  background: #050b14;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.035);
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-visual::before {
  background:
    linear-gradient(90deg, rgba(5, 13, 24, 0.72), rgba(5, 13, 24, 0.2) 42%, rgba(5, 13, 24, 0.04)),
    linear-gradient(180deg, rgba(5, 13, 24, 0.08), rgba(5, 13, 24, 0.46));
}

.hero-visual::after {
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(34, 211, 238, 0.055) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, transparent, black 20%, transparent 86%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.92) contrast(1.08);
}

.signal-panel {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: calc(100% - 44px);
}

.signal-panel span {
  padding: 8px 10px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  background: rgba(5, 13, 24, 0.62);
  color: #dff9ff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.trust-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -42px;
  border-color: rgba(34, 211, 238, 0.16);
  border-radius: 0;
  background: rgba(34, 211, 238, 0.14);
}

.trust-bar span {
  min-height: 78px;
  background: rgba(5, 13, 24, 0.86);
  color: #e4f7fb;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.power-section {
  padding-top: 118px;
}

.power-section::before {
  inset: 42px -42px auto;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.08), transparent 24rem),
    radial-gradient(circle at 92% 26%, rgba(168, 85, 247, 0.07), transparent 22rem);
}

.power-section .section-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

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

.feature-card-grid .card {
  min-height: 250px;
  padding: 24px;
  border-color: rgba(34, 211, 238, 0.14);
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.08), transparent 13rem),
    linear-gradient(180deg, rgba(14, 27, 46, 0.96), rgba(7, 17, 31, 0.98));
  color: var(--off-white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.feature-card-grid .card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.34);
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.12), transparent 13rem),
    linear-gradient(180deg, rgba(16, 32, 54, 0.98), rgba(7, 17, 31, 0.98));
}

.feature-card-grid .card h3 {
  color: var(--white);
  font-size: 1.04rem;
}

.feature-card-grid .card p {
  color: #b8c8dc;
  font-size: 0.95rem;
  line-height: 1.64;
}

.card-kicker {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.landing-cta {
  border-radius: 0;
  background:
    radial-gradient(circle at 84% 0%, rgba(168, 85, 247, 0.14), transparent 19rem),
    radial-gradient(circle at 16% 0%, rgba(34, 211, 238, 0.14), transparent 19rem),
    linear-gradient(135deg, rgba(10, 28, 52, 0.9), rgba(5, 13, 24, 0.98));
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .package-layout {
    grid-template-columns: 1fr;
  }

  .stack-grid,
  .card-grid.includes-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

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

  .landing-hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
  }

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

  .process-card::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .contact-content {
    width: min(100% - 32px, 720px);
  }

  .contact-intro-panel {
    grid-template-columns: 1fr;
  }

  .contact-profile-card {
    justify-self: start;
    max-width: 420px;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 42px;
    gap: 28px;
  }

  .landing-hero {
    padding-top: 70px;
  }

  .landing-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .announcement {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 18px;
  }

  .announcement-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .section {
    padding: 68px 0;
  }

  .final-section {
    padding-bottom: 56px;
  }

  main > .section:nth-of-type(even) .section-heading {
    margin-left: 0;
    text-align: left;
  }

  .page-hero {
    padding: 62px 0 30px;
    text-align: left;
  }

  .page-hero h1,
  .page-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .button-row,
  .button-row.centered {
    justify-content: flex-start;
  }

  .capability-card .stat-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .capability-card .stat-list div:hover {
    padding-inline: 0;
  }

  .cta .button-row {
    width: 100%;
  }

  .check-list.columns {
    columns: 1;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 62px;
    padding: 30px;
  }

  .quote-request {
    justify-items: stretch;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .turnstile-field {
    justify-self: start;
    width: 100%;
  }

  .contact-content {
    margin-bottom: 64px;
  }

  .contact-intro-panel {
    padding: 30px;
  }

  .site-footer > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 540px) {
  .hero,
  .announcement,
  .page-hero,
  .section,
  .cta,
  .trust-bar,
  .site-footer > div {
    width: min(100% - 28px, 1160px);
  }

  .button {
    width: 100%;
  }

  .stack-grid,
  .card-grid.includes-grid,
  .process-grid,
  .trust-bar,
  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .summary-card,
  .contact-profile-card,
  .contact-intro-panel,
  .card,
  .stack-card,
  .feature-panel,
  .process-card,
  .contact-card {
    padding: 22px;
    border-radius: 16px;
  }

  .footer-links {
    flex-direction: column;
  }
}

/* Cyberpunk landing refinement */
body {
  background:
    radial-gradient(circle at 82% 8%, rgba(168, 85, 247, 0.12), transparent 22rem),
    radial-gradient(circle at 18% 14%, rgba(34, 211, 238, 0.1), transparent 24rem),
    linear-gradient(180deg, #02060c 0%, #050b13 48%, #02070d 100%);
}

body::before {
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.075) 1px, transparent 1px),
    linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 34% 30%, rgba(168, 85, 247, 0.1), transparent 1px);
  background-size: 96px 96px, 96px 96px, 42px 42px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, black, rgba(0, 0, 0, 0.72) 520px, transparent 1120px);
}

.site-header {
  background: rgba(2, 6, 12, 0.78);
  border-bottom: 1px solid rgba(34, 211, 238, 0.16);
  box-shadow: 0 1px 0 rgba(168, 85, 247, 0.14);
}

.nav {
  width: min(100% - 48px, 1480px);
  min-height: 86px;
}

.brand {
  gap: 14px;
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand span:last-child {
  max-width: 190px;
  line-height: 1.12;
}

.brand-mark {
  border-radius: 0;
  background: rgba(3, 13, 23, 0.7);
  color: var(--teal);
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.24);
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 34px);
  margin-left: clamp(18px, 3vw, 48px);
  color: #d7e3f0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--teal);
  opacity: 0;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.65);
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a[aria-current="page"] {
  color: var(--teal);
  background: transparent;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-quote {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid rgba(34, 211, 238, 0.58);
  background:
    linear-gradient(90deg, rgba(168, 85, 247, 0.12), rgba(34, 211, 238, 0.08)),
    rgba(2, 8, 16, 0.66);
  color: #effaff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.22), 0 0 30px rgba(34, 211, 238, 0.16);
}

.nav-quote span {
  color: var(--teal);
  font-size: 1.15rem;
}

.landing-hero {
  width: 100%;
  min-height: clamp(720px, 86vh, 900px);
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 760px) minmax(360px, 680px) minmax(24px, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(86px, 9vw, 138px) 0 clamp(70px, 8vw, 118px);
  overflow: hidden;
  isolation: isolate;
}

.landing-hero::before {
  inset: 0;
  height: auto;
  z-index: -3;
  background:
    linear-gradient(90deg, #02060c 0%, rgba(2, 6, 12, 0.96) 24%, rgba(2, 6, 12, 0.34) 58%, #02060c 100%),
    radial-gradient(circle at 70% 32%, rgba(34, 211, 238, 0.18), transparent 25rem),
    radial-gradient(circle at 85% 50%, rgba(168, 85, 247, 0.16), transparent 21rem);
}

.landing-hero::after {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  z-index: 0;
  width: auto;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.42), rgba(168, 85, 247, 0.24), transparent);
  filter: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-background::before,
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-background::before {
  background:
    linear-gradient(90deg, #02060c 0%, rgba(2, 6, 12, 0.92) 31%, rgba(2, 6, 12, 0.24) 62%, rgba(2, 6, 12, 0.74) 100%),
    linear-gradient(180deg, rgba(2, 6, 12, 0.16), rgba(2, 6, 12, 0.96));
}

.hero-background::after {
  background:
    linear-gradient(115deg, transparent 0 56%, rgba(34, 211, 238, 0.18) 56.1%, transparent 56.35%),
    linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.06), transparent);
  opacity: 0.72;
}

.hero-background img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(76vw, 1120px);
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  filter: saturate(1.15) contrast(1.12) brightness(0.78);
  transform: scale(1.04);
}

.landing-hero .hero-copy {
  grid-column: 2 / 3;
  max-width: none;
}

.landing-hero .eyebrow,
.power-section .eyebrow,
.landing-cta .eyebrow {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #92b4c8;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.landing-hero .eyebrow::before {
  content: ">";
  margin-right: 10px;
  color: var(--teal);
}

.landing-hero h1 {
  max-width: 1180px;
  margin-bottom: 26px;
  color: #f2f6fb;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(3.9rem, 6.9vw, 7.25rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.055);
  -webkit-text-stroke: 1px rgba(34, 211, 238, 0.032);
}

.landing-hero .hero-title-line {
  display: block;
  white-space: nowrap;
}

.landing-hero .hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #d9e1eb;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.landing-hero .button-row {
  margin-top: 34px;
}

.button {
  border-radius: 3px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  border-color: rgba(34, 211, 238, 0.76);
  background: linear-gradient(135deg, #19c7dd, #079eb8);
  color: #02070d;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.22), 0 0 38px rgba(34, 211, 238, 0.28);
}

.button.secondary {
  border-color: rgba(34, 211, 238, 0.48);
  background: rgba(2, 8, 16, 0.48);
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.12);
}

.trust-bar {
  width: min(100% - 48px, 1460px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: -54px;
  padding: 20px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-bar span {
  min-height: 0;
  flex: 1 1 220px;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 24px;
  border-left: 1px solid rgba(34, 211, 238, 0.22);
  background: transparent;
  color: #dce8f5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-align: left;
}

.trust-bar span::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(34, 211, 238, 0.44);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(168, 85, 247, 0.08)),
    rgba(2, 8, 16, 0.68);
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.15);
}

.trust-bar strong {
  display: block;
  color: #eaf6ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-bar small {
  display: block;
  margin-top: 4px;
  color: #8c9bad;
  font-size: 0.75rem;
  line-height: 1.25;
  text-transform: none;
}

.power-section {
  width: min(100% - 48px, 1460px);
  padding-top: 70px;
}

.power-section .section-heading {
  max-width: none;
  margin: 0 0 28px;
  text-align: left;
}

.power-section .section-heading::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.44), rgba(168, 85, 247, 0.18), transparent);
}

.power-section h2 {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.feature-card-grid .card {
  min-height: 300px;
  padding: 30px 26px;
  border-color: rgba(34, 211, 238, 0.13);
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.09), transparent 13rem),
    radial-gradient(circle at 82% 18%, rgba(168, 85, 247, 0.055), transparent 12rem),
    linear-gradient(180deg, rgba(8, 20, 33, 0.86), rgba(3, 10, 18, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 24px 70px rgba(0, 0, 0, 0.28);
}

.feature-card-grid .card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: auto;
  bottom: 26px;
  width: 38px;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.55);
}

.feature-card-grid .card:nth-child(even)::after {
  background: #b45cf6;
  box-shadow: 0 0 18px rgba(180, 92, 246, 0.48);
}

.card-kicker {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(142, 190, 212, 0.46);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 34px;
  color: var(--teal);
}

.feature-icon.purple {
  color: #b45cf6;
}

.feature-icon svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px currentColor);
}

.feature-card-grid .card h3 {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.feature-card-grid .card p {
  color: #a7b2c0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
  line-height: 1.75;
}

.infrastructure-section {
  width: min(100% - 48px, 1460px);
  padding-top: 52px;
  padding-bottom: 96px;
}

.infrastructure-section::before {
  inset: 28px -42px auto;
  background:
    radial-gradient(circle at 74% 18%, rgba(34, 211, 238, 0.08), transparent 25rem),
    radial-gradient(circle at 92% 68%, rgba(168, 85, 247, 0.055), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.infrastructure-heading {
  max-width: 900px;
  margin-bottom: 32px;
}

.infrastructure-heading .eyebrow {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #92b4c8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.infrastructure-heading h2 {
  max-width: 880px;
  margin-bottom: 16px;
  color: #f2f6fb;
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.infrastructure-heading p {
  max-width: 760px;
  color: #b8c8dc;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.comparison-panel {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(34, 211, 238, 0.12);
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0.76), rgba(3, 10, 18, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.022), 0 24px 72px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.comparison-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(34, 211, 238, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

.comparison-panel h3 {
  position: relative;
  margin-bottom: 28px;
  color: #dbe8f5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-panel h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: rgba(142, 190, 212, 0.34);
}

.comparison-panel ul {
  position: relative;
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-panel li {
  position: relative;
  padding-left: 24px;
  color: #a6b3c2;
  font-size: 0.98rem;
  line-height: 1.5;
}

.comparison-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(142, 190, 212, 0.5);
  transform: rotate(45deg);
}

.consumer-panel {
  border-color: rgba(142, 190, 212, 0.1);
  background:
    radial-gradient(circle at 20% 0%, rgba(142, 190, 212, 0.035), transparent 16rem),
    linear-gradient(180deg, rgba(7, 15, 26, 0.62), rgba(3, 9, 16, 0.92));
  opacity: 0.88;
}

.consumer-panel h3,
.consumer-panel li {
  color: #8794a4;
}

.infrastructure-panel {
  border-color: rgba(34, 211, 238, 0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.115), transparent 18rem),
    radial-gradient(circle at 92% 16%, rgba(168, 85, 247, 0.07), transparent 14rem),
    linear-gradient(180deg, rgba(8, 23, 38, 0.92), rgba(3, 10, 18, 0.98));
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.035), 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 44px rgba(34, 211, 238, 0.06);
}

.infrastructure-panel h3 {
  color: #f0fbff;
}

.infrastructure-panel h3::after {
  background: var(--teal);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.42);
}

.infrastructure-panel li {
  color: #d3e1ef;
}

.infrastructure-panel li::before {
  border-color: rgba(34, 211, 238, 0.86);
  background: rgba(34, 211, 238, 0.16);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.22);
}

.landing-cta {
  width: min(100% - 48px, 1460px);
  border-color: rgba(34, 211, 238, 0.2);
  background:
    radial-gradient(circle at 82% 0%, rgba(168, 85, 247, 0.13), transparent 22rem),
    linear-gradient(135deg, rgba(5, 17, 28, 0.9), rgba(2, 8, 16, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

@media (max-width: 1180px) {
  .nav {
    flex-wrap: wrap;
  }

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

  .landing-hero {
    grid-template-columns: minmax(24px, 1fr) minmax(0, 920px) minmax(24px, 1fr);
  }

  .landing-hero .hero-copy {
    grid-column: 2 / 3;
  }

  .hero-background img {
    width: 100vw;
    opacity: 0.7;
  }

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

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

  .comparison-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 28px, 1480px);
  }

  .nav-quote {
    width: 100%;
    justify-content: center;
  }

  .landing-hero {
    min-height: auto;
    grid-template-columns: minmax(14px, 1fr) minmax(0, 100%) minmax(14px, 1fr);
    padding: 74px 0 54px;
  }

  .landing-hero h1 {
    font-size: clamp(2.8rem, 11.5vw, 4.4rem);
    line-height: 0.98;
  }

  .landing-hero .button-row {
    width: 100%;
  }

  .trust-bar,
  .power-section,
  .infrastructure-section,
  .landing-cta {
    width: min(100% - 28px, 1460px);
  }

  .trust-bar {
    margin-top: 0;
    padding-top: 22px;
  }

  .trust-bar span {
    flex-basis: 100%;
    padding: 0 0 0 16px;
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .infrastructure-section {
    padding-top: 34px;
    padding-bottom: 62px;
  }
}

/* Cohesive platform pages: Super User Stack + Contact */
.stack-page .page-hero,
.contact-page .page-hero {
  width: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 11vw, 164px) max(24px, calc((100% - 1460px) / 2)) clamp(70px, 8vw, 112px);
  text-align: left;
}

.stack-page .page-hero::before,
.contact-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 12, 0.98) 0%, rgba(2, 6, 12, 0.88) 43%, rgba(2, 6, 12, 0.42) 72%, rgba(2, 6, 12, 0.92) 100%),
    radial-gradient(circle at 76% 30%, rgba(34, 211, 238, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 48%, rgba(168, 85, 247, 0.11), transparent 20rem),
    url("images/network-infrastructure-hero.png");
  background-size: auto, auto, auto, min(78vw, 1080px) auto;
  background-position: center, center, center, right center;
  background-repeat: no-repeat;
  filter: saturate(1.02) contrast(1.06);
}

.stack-page .page-hero::after,
.contact-page .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.42), rgba(168, 85, 247, 0.2), transparent);
}

.stack-page .page-hero h1,
.contact-page .page-hero h1 {
  max-width: 980px;
  margin: 0 0 24px;
  color: #f2f6fb;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.055);
  -webkit-text-stroke: 1px rgba(34, 211, 238, 0.03);
}

.stack-page .page-hero p,
.contact-page .page-hero p {
  max-width: 690px;
  margin-left: 0;
  margin-right: 0;
  color: #d3dfeb;
}

.stack-page .page-hero .button-row {
  justify-content: flex-start;
}

.stack-page .section,
.contact-page .contact-content {
  width: min(100% - 48px, 1460px);
}

.stack-section {
  padding-top: 86px;
}

.stack-page .section-heading,
.contact-section-heading {
  max-width: 940px;
  text-align: left;
}

.stack-page .section-heading::after,
.contact-section-heading::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.44), rgba(168, 85, 247, 0.18), transparent);
}

.stack-page .section-heading .eyebrow,
.contact-page .eyebrow {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #92b4c8;
  letter-spacing: 0.18em;
}

.stack-page .section-heading h2,
.contact-section-heading h2,
.contact-intro-copy h2 {
  color: #f2f6fb;
  text-transform: uppercase;
}

.stack-page .section-heading p,
.contact-section-heading p,
.contact-intro-copy p {
  color: #b8c8dc;
}

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

.stack-page .stack-card,
.contact-card,
.contact-intro-panel,
.quote-form {
  border-color: rgba(34, 211, 238, 0.14);
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.08), transparent 15rem),
    radial-gradient(circle at 88% 8%, rgba(168, 85, 247, 0.045), transparent 12rem),
    linear-gradient(180deg, rgba(8, 20, 33, 0.88), rgba(3, 10, 18, 0.97));
  color: var(--off-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.024), 0 24px 72px rgba(0, 0, 0, 0.28);
}

.stack-page .stack-card {
  min-height: 360px;
  padding: 30px;
}

.stack-page .stack-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.035), 0 28px 82px rgba(0, 0, 0, 0.34), 0 0 34px rgba(34, 211, 238, 0.055);
}

.stack-page .stack-card h3,
.contact-card h2,
.contact-card h3 {
  color: #f0f7ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1rem;
  letter-spacing: 0.07em;
  line-height: 1.36;
  text-transform: uppercase;
}

.stack-page .stack-card p,
.contact-card p {
  color: #a7b2c0;
  font-size: 0.94rem;
}

.stack-page .card-label,
.contact-card .card-label {
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.12em;
}

.stack-page .icon-badge {
  border-radius: 0;
  background: transparent;
  color: var(--teal);
  box-shadow: none;
}

.stack-page .icon-badge svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.36));
}

.stack-page .stack-card:nth-child(even) .icon-badge {
  color: #b45cf6;
}

.expansion-section {
  padding-top: 56px;
}

.expansion-section .pill-grid span,
.trust-items span {
  max-width: 100%;
  border-color: rgba(34, 211, 238, 0.2);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.065), rgba(168, 85, 247, 0.035)),
    rgba(2, 8, 16, 0.56);
  color: #dce8f6;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.contact-page .page-hero {
  padding-bottom: clamp(58px, 7vw, 96px);
}

.contact-content {
  margin-top: 64px;
}

.contact-intro-panel {
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 30px 92px rgba(0, 0, 0, 0.32);
}

.contact-profile-card {
  border-radius: 0;
  border-color: rgba(34, 211, 238, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 20, 33, 0.92), rgba(3, 10, 18, 0.98));
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.34), 0 0 34px rgba(34, 211, 238, 0.05);
}

.contact-profile-card img {
  border-radius: 0;
  filter: saturate(0.86) contrast(1.05);
}

.contact-card-grid {
  gap: 24px;
}

.contact-card {
  border-radius: 0;
}

.email-address,
.contact-card a,
.contact-card strong {
  color: var(--teal);
}

.contact-quote-cta {
  width: min(100% - 48px, 1460px);
  align-items: flex-start;
}

.contact-quote-cta > div:first-child {
  text-align: center;
}

.contact-quote-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.contact-quote-cta .quote-request {
  justify-items: stretch;
}

.quote-form {
  border-radius: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 211, 238, 0.08), transparent 16rem),
    rgba(2, 8, 16, 0.58);
}

.quote-form label {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.08em;
}

.quote-form input,
.quote-form textarea {
  border-radius: 0;
  border-color: rgba(34, 211, 238, 0.14);
  background: rgba(2, 8, 16, 0.76);
}

.quote-form input:hover,
.quote-form textarea:hover {
  border-color: rgba(34, 211, 238, 0.28);
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.56);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.09), 0 0 24px rgba(34, 211, 238, 0.08);
}

.contact-intro,
.contact-action {
  width: min(100% - 48px, 1460px);
  margin-left: auto;
  margin-right: auto;
}

.contact-intro {
  position: relative;
  padding: clamp(84px, 9vw, 126px) 0 clamp(34px, 5vw, 58px);
}

.contact-intro::before {
  content: "";
  position: absolute;
  inset: 20px -8vw auto;
  z-index: -1;
  height: 120%;
  background:
    radial-gradient(circle at 78% 20%, rgba(34, 211, 238, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 44%, rgba(168, 85, 247, 0.08), transparent 18rem);
  pointer-events: none;
}

.contact-intro h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #f2f6fb;
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.055);
}

.contact-intro p:not(.eyebrow) {
  max-width: 660px;
  color: #d3dfeb;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.72;
}

.contact-action {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: 20px 0 clamp(58px, 7vw, 92px);
}

.contact-action .quote-request {
  width: 100%;
  justify-items: stretch;
}

.quote-heading {
  margin-bottom: 18px;
}

.quote-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #f2f6fb;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-info-panel {
  display: grid;
  gap: 18px;
}

.contact-info-panel .contact-profile-card {
  max-width: none;
  justify-self: stretch;
}

.contact-info-panel .contact-card {
  padding: clamp(24px, 3vw, 34px);
}

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

  .contact-action {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .stack-page .page-hero,
  .contact-page .page-hero {
    padding: 74px 14px 54px;
  }

  .stack-page .page-hero h1,
  .contact-page .page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 1;
  }

  .stack-page .section,
  .contact-page .contact-content,
  .contact-quote-cta,
  .contact-intro,
  .contact-action {
    width: min(100% - 28px, 1460px);
  }

  .contact-intro {
    padding-top: 70px;
  }

  .contact-intro h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .contact-info-panel {
    grid-template-columns: 1fr;
  }

  .stack-page .stack-grid {
    grid-template-columns: 1fr;
  }

  .stack-page .stack-card {
    min-height: auto;
  }
}

/* Responsive hardening pass */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

img {
  height: auto;
}

body,
main,
section,
article,
aside,
div,
p,
h1,
h2,
h3,
a,
span,
li,
label,
input,
textarea,
button {
  min-width: 0;
}

p,
h1,
h2,
h3,
a,
span,
li,
label,
input,
textarea,
button {
  overflow-wrap: anywhere;
}

.hero,
.page-hero,
.section,
.trust-bar,
.cta,
.site-footer > div,
.power-section,
.infrastructure-section,
.landing-cta,
.stack-page .section,
.contact-intro,
.contact-action,
.contact-quote-cta {
  max-width: 1460px;
}

.nav,
.hero,
.section,
.trust-bar,
.cta,
.site-footer > div,
.power-section,
.infrastructure-section,
.landing-cta,
.stack-page .section,
.contact-intro,
.contact-action,
.contact-quote-cta {
  width: min(100% - 48px, 1460px);
}

.button,
.nav-links a,
.nav-quote,
.quote-form button {
  min-height: 44px;
}

.button {
  max-width: 100%;
  text-align: center;
}

.card,
.stack-card,
.contact-card,
.comparison-panel,
.quote-form,
.contact-profile-card,
.contact-info-panel {
  min-width: 0;
}

.contact-profile-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .nav {
    align-items: center;
    gap: 14px 24px;
    padding: 12px 0;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-links {
    flex: 1 0 100%;
    margin-left: 0;
    justify-content: center;
    gap: 8px 22px;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 8px 6px;
  }

  .nav-quote {
    flex: 0 0 auto;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 92px;
  }

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

  .trust-bar span {
    flex: initial;
  }

  .feature-card-grid,
  .stack-page .stack-grid,
  .contact-card-grid,
  .card-grid,
  .card-grid.includes-grid,
  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-action {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-request {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .landing-hero,
  .section,
  .stack-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .infrastructure-section,
  .landing-cta,
  .contact-action {
    padding-bottom: 70px;
  }

  .landing-hero h1 {
    font-size: 4.6rem;
  }

  .stack-page .page-hero h1,
  .contact-intro h1 {
    font-size: 4.2rem;
  }

  .stack-page .page-hero,
  .contact-page .page-hero,
  .contact-intro {
    padding-top: 86px;
  }

  .feature-card-grid .card,
  .stack-page .stack-card {
    min-height: auto;
  }

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

  .cta .button-row {
    justify-content: flex-start;
  }

  .site-footer > div {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.5fr);
  }
}

@media (max-width: 768px) {
  .nav,
  .hero,
  .section,
  .trust-bar,
  .cta,
  .site-footer > div,
  .power-section,
  .infrastructure-section,
  .landing-cta,
  .stack-page .section,
  .contact-intro,
  .contact-action,
  .contact-quote-cta {
    width: min(100% - 32px, 1460px);
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 0;
    padding: 12px 0 14px;
  }

  .brand {
    max-width: calc(100% - 132px);
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .brand span:last-child {
    max-width: 170px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .nav-quote {
    width: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(34, 211, 238, 0.16);
    background: rgba(34, 211, 238, 0.1);
  }

  .nav-links a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    background: rgba(2, 8, 16, 0.88);
    font-size: 0.68rem;
    line-height: 1.25;
    text-align: center;
  }

  .nav-links a::after {
    display: none;
  }

  .landing-hero {
    grid-template-columns: minmax(16px, 1fr) minmax(0, 100%) minmax(16px, 1fr);
    padding: 58px 0 46px;
  }

  .hero-background img {
    width: 100%;
    opacity: 0.54;
    object-position: 66% 50%;
  }

  .landing-hero h1 {
    font-size: 3.25rem;
    line-height: 1;
  }

  .landing-hero .hero-copy > p:not(.eyebrow),
  .infrastructure-heading p,
  .contact-intro p:not(.eyebrow),
  .stack-page .page-hero p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .button-row,
  .landing-hero .button-row,
  .cta .button-row {
    width: 100%;
    gap: 10px;
  }

  .button-row .button,
  .cta .button-row .button {
    flex: 1 1 220px;
    padding-inline: 14px;
  }

  .trust-bar,
  .feature-card-grid,
  .stack-page .stack-grid,
  .contact-card-grid,
  .contact-card-grid-two,
  .contact-info-panel,
  .card-grid,
  .card-grid.includes-grid,
  .card-grid.three,
  .comparison-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-bar span {
    min-height: 58px;
    padding: 12px 0 12px 16px;
  }

  .section,
  .power-section,
  .infrastructure-section,
  .stack-section,
  .expansion-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading,
  .infrastructure-heading {
    margin-bottom: 28px;
  }

  main > .section:nth-of-type(even) .section-heading {
    margin-left: 0;
    text-align: left;
  }

  .infrastructure-heading h2,
  .stack-page .section-heading h2,
  .quote-heading h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .stack-page .page-hero,
  .contact-page .page-hero {
    padding: 62px 16px 46px;
  }

  .stack-page .page-hero::before,
  .contact-page .page-hero::before {
    background-size: auto, auto, auto, auto 100%;
    background-position: center, center, center, 68% center;
  }

  .stack-page .page-hero h1,
  .contact-intro h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .contact-intro {
    padding-top: 58px;
    padding-bottom: 32px;
  }

  .contact-action {
    gap: 28px;
    padding-top: 8px;
    padding-bottom: 54px;
  }

  .quote-form {
    grid-template-columns: minmax(0, 1fr);
    padding: 18px;
  }

  .quote-form input,
  .quote-form textarea {
    min-height: 44px;
  }

  .quote-form button {
    width: 100%;
  }

  .contact-profile-card figcaption {
    display: grid;
    gap: 10px;
  }

  .contact-card h2,
  .contact-card h3,
  .email-address {
    font-size: 0.95rem;
  }

  .site-footer > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 430px) {
  .nav,
  .hero,
  .section,
  .trust-bar,
  .cta,
  .site-footer > div,
  .power-section,
  .infrastructure-section,
  .landing-cta,
  .stack-page .section,
  .contact-intro,
  .contact-action,
  .contact-quote-cta {
    width: min(100% - 24px, 1460px);
  }

  .brand {
    max-width: 100%;
    flex-basis: 100%;
  }

  .brand span:last-child {
    max-width: none;
  }

  .nav-quote {
    width: 100%;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .landing-hero {
    grid-template-columns: 12px minmax(0, 1fr) 12px;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .landing-hero h1 {
    font-size: clamp(2.05rem, 11vw, 2.55rem);
  }

  .landing-hero .eyebrow,
  .power-section .eyebrow,
  .landing-cta .eyebrow,
  .stack-page .section-heading .eyebrow,
  .contact-page .eyebrow,
  .infrastructure-heading .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .button-row .button,
  .cta .button-row .button {
    flex-basis: 100%;
    width: 100%;
  }

  .card,
  .stack-page .stack-card,
  .contact-card,
  .comparison-panel,
  .quote-form,
  .cta {
    padding: 22px;
  }

  .feature-card-grid .card {
    padding: 24px 22px 36px;
  }

  .feature-icon {
    margin-bottom: 22px;
  }

  .infrastructure-heading h2,
  .stack-page .section-heading h2,
  .quote-heading h2 {
    font-size: 1.65rem;
  }

  .stack-page .page-hero h1,
  .contact-intro h1 {
    font-size: 2.4rem;
  }

  .stack-page .page-hero,
  .contact-page .page-hero {
    padding-top: 52px;
    padding-bottom: 38px;
  }

  .contact-intro {
    padding-top: 48px;
  }

  .contact-profile-card figcaption {
    padding: 16px;
  }
}

/* Desktop Stack page alignment recovery */
@media (min-width: 1025px) {
  .stack-page .page-hero {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(48px, calc((100% - 1460px) / 2));
    padding-right: max(48px, calc((100% - 1460px) / 2));
  }

  .stack-page .page-hero::before {
    background-size: auto, auto, auto, min(72vw, 1120px) auto;
    background-position: center, center, center, right center;
  }

  .stack-page .page-hero h1 {
    max-width: 1120px;
  }

  .stack-page .page-hero p {
    max-width: 760px;
  }

  main.stack-page > .stack-section .section-heading {
    max-width: 1040px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  main.stack-page > .stack-section .section-heading h2 {
    max-width: 980px;
  }

  main.stack-page > .stack-section .section-heading p {
    max-width: 860px;
  }
}

/* Infrastructure Notes blog page */
.blog-page .page-hero {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 11vw, 164px) max(24px, calc((100% - 1460px) / 2)) clamp(70px, 8vw, 112px);
  text-align: left;
}

.blog-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 12, 0.98) 0%, rgba(2, 6, 12, 0.88) 43%, rgba(2, 6, 12, 0.42) 72%, rgba(2, 6, 12, 0.92) 100%),
    radial-gradient(circle at 76% 30%, rgba(34, 211, 238, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 48%, rgba(168, 85, 247, 0.11), transparent 20rem),
    url("images/network-infrastructure-hero.png");
  background-size: auto, auto, auto, min(72vw, 1120px) auto;
  background-position: center, center, center, right center;
  background-repeat: no-repeat;
  filter: saturate(1.02) contrast(1.06);
}

.blog-page .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.42), rgba(168, 85, 247, 0.2), transparent);
}

.blog-page .page-hero h1 {
  max-width: 980px;
  margin: 0 0 24px;
  color: #f2f6fb;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.055);
  -webkit-text-stroke: 1px rgba(34, 211, 238, 0.03);
}

.blog-page .page-hero p {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  color: #d3dfeb;
}

.blog-page .section {
  width: min(100% - 48px, 1460px);
}

.blog-page .section-heading {
  max-width: 940px;
  text-align: left;
}

.blog-page .section-heading::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.44), rgba(168, 85, 247, 0.18), transparent);
}

.blog-page .eyebrow,
.blog-page .section-heading .eyebrow {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #92b4c8;
  letter-spacing: 0.18em;
}

.blog-page .section-heading h2 {
  color: #f2f6fb;
  text-transform: uppercase;
}

.blog-page .section-heading p {
  color: #b8c8dc;
}

.blog-intro {
  padding-top: 86px;
  padding-bottom: 52px;
}

.blog-list-section {
  padding-top: 44px;
}

.status-label {
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.065), rgba(168, 85, 247, 0.035)),
    rgba(2, 8, 16, 0.56);
  color: #dce8f6;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}


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

.blog-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.08), transparent 15rem),
    radial-gradient(circle at 88% 8%, rgba(168, 85, 247, 0.045), transparent 12rem),
    linear-gradient(180deg, rgba(8, 20, 33, 0.88), rgba(3, 10, 18, 0.97));
  color: var(--off-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.024), 0 24px 72px rgba(0, 0, 0, 0.28);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.035), 0 28px 82px rgba(0, 0, 0, 0.34), 0 0 34px rgba(34, 211, 238, 0.055);
}

.blog-card::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 42px;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.48);
}

.blog-card:nth-child(even)::after {
  background: #b45cf6;
  box-shadow: 0 0 18px rgba(180, 92, 246, 0.46);
}

.blog-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.blog-card .card-label {
  margin-bottom: 0;
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.12em;
}

.status-label {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #92f0ff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-card time {
  display: block;
  margin-bottom: 18px;
  color: #7f8da0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  color: #f0f7ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1rem;
  letter-spacing: 0.07em;
  line-height: 1.36;
  text-transform: uppercase;
}

.blog-card p {
  margin-bottom: 28px;
  color: #a7b2c0;
  font-size: 0.94rem;
  line-height: 1.72;
}

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

@media (max-width: 768px) {
  .blog-page .page-hero {
    padding: 62px 16px 46px;
  }

  .blog-page .page-hero::before {
    background-size: auto, auto, auto, auto 100%;
    background-position: center, center, center, 68% center;
  }

  .blog-page .page-hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .blog-page .page-hero p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .blog-page .section {
    width: min(100% - 32px, 1460px);
  }

  .blog-intro,
  .blog-list-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .blog-page .section-heading h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

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

  .blog-card {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  .blog-page .section {
    width: min(100% - 24px, 1460px);
  }

  .blog-page .page-hero {
    padding-top: 52px;
    padding-bottom: 38px;
  }

  .blog-page .page-hero h1 {
    font-size: 2.4rem;
  }

  .blog-page .eyebrow,
  .blog-page .section-heading .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .blog-page .section-heading h2 {
    font-size: 1.65rem;
  }

  .blog-card {
    padding: 22px;
  }

  .blog-card::after {
    left: 22px;
    bottom: 22px;
  }

  .blog-card-meta {
    display: grid;
    justify-content: stretch;
  }

  .status-label {
    justify-self: start;
  }
}
