: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%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  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;
}

@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));
  }

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

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