:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --paper: #fffefa;
  --paper-clean: #ffffff;
  --wash: #f6f3ee;
  --night: #101827;
  --night-soft: #172236;
  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --line: #e5e7eb;
  --line-warm: #eadfd4;
  --orange: #ff6a00;
  --orange-dark: #c84600;
  --orange-soft: #fff1e7;
  --blue: #2563eb;
  --blue-soft: #edf4ff;
  --green: #15803d;
  --green-soft: #ecfdf3;
  --max: 1360px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --shadow-tight: 0 18px 42px rgba(15, 23, 42, 0.075);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  scroll-padding-top: 5.5rem;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(255, 106, 0, 0.055) 0 12rem, transparent 12rem 100%),
    linear-gradient(180deg, #ffffff 0, #fbfaf7 46rem),
    var(--bg);
  font-size: clamp(1rem, 0.97rem + 0.14vw, 1.0625rem);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.3);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 4.75rem;
  padding: 0.95rem clamp(1rem, 4vw, 4.25rem);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.brand-mark::before {
  width: 1.85rem;
  height: 1.85rem;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 74% 100%, 50% 42%, 26% 100%, 0 100%);
  content: "";
}

.brand-mark::after {
  position: absolute;
  bottom: 0.15rem;
  left: 0.86rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 2px;
  background: #fff;
  content: "";
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 760;
  white-space: nowrap;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--orange-dark);
}

.header-cta {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  width: min(100%, var(--max));
  min-height: 43rem;
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 6.6rem) clamp(1rem, 4vw, 4.25rem) 3rem;
  scroll-margin-top: 5rem;
}

.hero-copy {
  max-width: 43rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(255, 106, 0, 0.24);
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-badge::before {
  width: 0.8rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

h1 {
  max-width: 12.5ch;
  margin-bottom: 1.15rem;
  color: var(--ink);
  font-size: clamp(2.55rem, 2rem + 3.2vw, 5rem);
  line-height: 0.96;
}

.hero-lede {
  max-width: 39rem;
  margin-bottom: 1.55rem;
  color: var(--body);
  font-size: 1.12rem;
  line-height: 1.74;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.05rem;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.button.secondary {
  background: #fff;
}

.hero-visual {
  min-width: 0;
}

.visual-shell {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(160deg, #ffffff 0, #f7f2ec 100%);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
}

.visual-shell > * {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.visual-shell:hover .search-widget,
.visual-shell:hover .document-widget,
.visual-shell:hover .chart-widget,
.visual-shell:hover .map-widget {
  transform: translateY(-2px);
}

.visual-shell::before {
  position: absolute;
  inset: 3rem;
  border: 1px dashed rgba(255, 106, 0, 0.32);
  border-radius: 50%;
  content: "";
}

.visual-shell::after {
  position: absolute;
  inset: 6.3rem 9rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 50%;
  content: "";
}

.search-widget,
.document-widget,
.chart-widget,
.map-widget,
.platform-stack,
.dotted-path {
  position: absolute;
}

.search-widget {
  top: 8.2rem;
  left: 10%;
  z-index: 4;
  display: grid;
  grid-template-columns: 0.9rem 1fr 2rem;
  gap: 0.72rem;
  align-items: center;
  width: min(68%, 29rem);
  min-height: 3.4rem;
  padding: 0.55rem 0.6rem 0.55rem 1rem;
  border: 1px solid #e3e8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.11);
}

.search-widget span {
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid #334155;
  border-radius: 50%;
}

.search-widget strong {
  color: #94a3b8;
  font-size: 0.9rem;
}

.search-widget i {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
}

.search-widget i::before {
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
}

.document-widget {
  top: 3.7rem;
  right: 15%;
  z-index: 2;
  width: 11.2rem;
  min-height: 12.5rem;
  padding: 1rem;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.document-widget span {
  display: block;
  height: 0.38rem;
  margin-bottom: 0.62rem;
  border-radius: 99px;
  background: #cbd5e1;
}

.document-widget span:first-child {
  width: 4.5rem;
}

.document-widget span:nth-child(2) {
  width: 6rem;
}

.document-widget figure {
  height: 6.8rem;
  margin: 1rem 0 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.24)),
    linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.chart-widget {
  top: 8.4rem;
  right: 3.2rem;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 0.34rem;
  width: 7.1rem;
  height: 6.8rem;
  padding: 1rem;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.chart-widget span {
  width: 0.62rem;
  border-radius: 2px 2px 0 0;
  background: var(--orange);
}

.chart-widget span:nth-child(1) {
  height: 1.2rem;
}

.chart-widget span:nth-child(2) {
  height: 2rem;
}

.chart-widget span:nth-child(3) {
  height: 3rem;
}

.chart-widget span:nth-child(4) {
  height: 4rem;
}

.map-widget {
  right: 8.5%;
  bottom: 4.4rem;
  z-index: 3;
  width: 8rem;
  height: 6.4rem;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(148, 163, 184, 0.18) 25%, transparent 25%) 0 0 / 1.6rem 1.6rem,
    #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.map-widget::before {
  position: absolute;
  top: 1.55rem;
  left: 3.05rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  content: "";
  transform: rotate(-45deg);
}

.map-widget::after {
  position: absolute;
  top: 2rem;
  left: 3.48rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.platform-stack {
  right: 42%;
  bottom: 5rem;
  z-index: 2;
  width: 12rem;
  height: 9rem;
  transform: translateX(50%);
}

.platform-base {
  position: absolute;
  left: 50%;
  width: 9.8rem;
  height: 4.25rem;
  border: 1px solid #e6edf5;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #eef1f5);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
  transform: translateX(-50%) skewX(-12deg);
}

.platform-base.top {
  top: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.platform-base.middle {
  top: 2rem;
  z-index: 2;
}

.platform-base.bottom {
  top: 4rem;
  z-index: 1;
}

.cloud-mark {
  width: 3.9rem;
  height: 2rem;
  border-radius: 2rem 2rem 0.8rem 0.8rem;
  background: var(--orange);
  transform: skewX(12deg);
}

.cloud-mark::before {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  margin: -0.7rem 0 0 0.75rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.trust-belt {
  display: grid;
  gap: 1.05rem;
  padding: 1.1rem clamp(1rem, 4vw, 4.25rem);
  border-block: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
}

.trust-belt > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.trust-belt p {
  margin: 0;
  color: #475569;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-belt ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-belt li {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-right: 1px solid var(--line);
  color: #334155;
  font-size: 0.88rem;
  font-weight: 760;
}

.trust-belt li:last-child {
  border-right: 0;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4.25rem);
  scroll-margin-top: 5.5rem;
}

.section > .section-heading,
.section > .architecture-flow,
.section > .product-groups,
.section > .service-cards,
.section > .footprint,
.section > .stage-inner,
.section > .summary-panel {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(20rem, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 2rem;
}

h2 {
  max-width: 13ch;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 2.7rem;
  line-height: 1.04;
}

.section-heading p,
.group-intro p,
.product-card p,
.service-cards p,
.summary p,
.footer span {
  color: var(--body);
  line-height: 1.65;
}

.section-heading p {
  max-width: 48rem;
  margin-bottom: 0;
  font-size: 1.03rem;
}

.thesis {
  text-align: center;
}

.thesis .section-heading {
  display: block;
  max-width: 58rem;
  margin-inline: auto;
}

.thesis h2 {
  max-width: none;
  margin-bottom: 0.9rem;
  font-size: 2rem;
}

.thesis h2::before {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "Our platform thesis";
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 84rem;
  margin-inline: auto;
}

.capability-strip span,
.service-grid span {
  min-height: 4rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #243244;
  font-weight: 760;
  line-height: 1.3;
}

.architecture {
  background:
    linear-gradient(180deg, #ffffff 0, #fffaf5 100%);
}

.architecture .section-heading h2::before,
.products .section-heading h2::before,
.cloudflare .section-heading h2::before {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture .section-heading h2::before {
  content: "Architecture at a glance";
}

.products .section-heading h2::before {
  content: "Our products";
}

.cloudflare .section-heading h2::before {
  content: "Cloudflare for Startups credits";
}

.architecture-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto minmax(0, 1.9fr) auto minmax(0, 0.9fr);
  gap: 1.15rem;
  align-items: stretch;
  padding: 0.35rem;
  border: 1px solid rgba(234, 223, 212, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.flow-column {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.045);
}

.platform-column {
  border-color: rgba(255, 106, 0, 0.44);
  background:
    linear-gradient(180deg, #fff8f2, #ffffff);
}

.flow-column h3,
.product-group h3,
.product-card h4,
.service-cards h3 {
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.12;
}

.flow-column ul {
  display: grid;
  gap: 0.66rem;
  margin: 0;
  padding: 0;
  color: var(--body);
  line-height: 1.42;
  list-style: none;
}

.flow-column li {
  position: relative;
  padding-left: 1.1rem;
}

.flow-column li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.platform-core-card {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 106, 0, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), transparent 55%),
    #ffffff;
}

.platform-core-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.1;
}

.platform-core-card p {
  margin-bottom: 0.85rem;
  color: var(--body);
  line-height: 1.55;
}

.platform-core-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-core-card li {
  padding: 0.35rem 0.48rem;
  border-radius: 999px;
  background: #fff1e7;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
}

.service-grid span {
  display: grid;
  min-height: 3.4rem;
  place-items: center;
  border-color: #f4d4bd;
  background: #ffffff;
  color: #172033;
  text-align: center;
}

.flow-arrow {
  display: grid;
  min-width: 1.8rem;
  place-items: center;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 800;
}

.products {
  background:
    linear-gradient(180deg, var(--night) 0, var(--night) 21rem, #fffaf5 21rem, #ffffff 100%);
}

.products .section-heading h2 {
  color: #fff9f3;
}

.products .section-heading h2::before {
  color: #ffb16f;
}

.products .section-heading p {
  color: #d8e0ec;
}

.product-groups {
  counter-reset: product-group;
  display: grid;
  gap: 0;
  margin-top: 0.5rem;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(234, 223, 212, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px) 0 0 / 4.5rem 4.5rem,
    linear-gradient(180deg, #fffefa, #ffffff 56%);
  box-shadow: 0 26px 76px rgba(15, 23, 42, 0.13);
}

.product-group {
  counter-increment: product-group;
  position: relative;
  display: grid;
  grid-template-columns: minmax(14rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: start;
  padding: clamp(1.45rem, 3.4vw, 2.8rem) 0;
  border-bottom: 1px solid var(--line-warm);
}

.product-group::before {
  position: absolute;
  top: clamp(1.45rem, 3.4vw, 2.8rem);
  left: 0;
  color: rgba(15, 23, 42, 0.18);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 0.8;
  content: "0" counter(product-group);
}

.product-group:last-child {
  border-bottom: 0;
}

.group-intro {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.2rem, 5vw, 4.2rem);
}

.group-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.65rem;
  padding: 0.34rem 0.5rem;
  border: 1px solid rgba(255, 106, 0, 0.24);
  border-radius: 999px;
  background: #fff4ea;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-intro p {
  max-width: 19rem;
  margin-bottom: 0;
}

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

.atlas-cards {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.atlas-group {
  grid-template-columns: minmax(14rem, 0.26fr) minmax(0, 1fr);
}

.atlas-card {
  grid-column: span 2;
  min-height: 15rem;
}

.atlas-card.featured {
  grid-column: span 3;
  min-height: 15.75rem;
}

.atlas-card.featured h4 {
  font-size: clamp(1.45rem, 2.3vw, 1.75rem);
}

.product-card,
.service-cards article {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  min-width: 0;
  min-height: 12rem;
  padding: clamp(1rem, 1.7vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 248, 0.98)),
    var(--paper);
  box-shadow: var(--shadow-tight);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover,
.service-cards article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.32);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.085);
}

.product-card::before,
.service-cards article::before {
  display: inline-flex;
  width: fit-content;
  min-height: 1.85rem;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.5rem;
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  content: attr(data-type);
}

.service-cards article::before {
  content: "CF";
}

.product-card.core {
  min-height: 13.5rem;
  border-color: rgba(255, 106, 0, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.24), transparent 38%),
    linear-gradient(180deg, var(--night-soft), var(--night));
  color: #f8fbff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.2);
}

.product-card.core::before {
  border-color: rgba(255, 177, 111, 0.36);
  background: rgba(255, 177, 111, 0.12);
  color: #ffcb9c;
  content: attr(data-type);
}

.core-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.78rem;
  padding: 0.36rem 0.52rem;
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h4 {
  margin-bottom: 0.5rem;
}

.product-card h4,
.service-cards h3 {
  margin-top: -0.15rem;
}

.product-card p,
.service-cards p {
  margin-bottom: 0;
}

.product-card.core h4,
.product-card.core p {
  color: #f8fbff;
}

.product-card.core p {
  color: #dbe4f2;
}

.product-card a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 2rem;
  align-items: center;
  padding: 0.35rem 0.52rem;
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 999px;
  background: #fff4ea;
  overflow-wrap: anywhere;
  color: var(--orange-dark);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.22;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.product-card a:hover {
  border-color: rgba(255, 106, 0, 0.38);
  background: #ffe6d4;
}

.product-card.core a {
  border-color: rgba(255, 177, 111, 0.32);
  background: rgba(255, 177, 111, 0.12);
  color: #ffcb9c;
}

.cloudflare {
  background: #ffffff;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-cards article {
  min-height: 12.4rem;
}

.service-cards article:nth-child(4n + 1) {
  border-top-color: rgba(255, 106, 0, 0.6);
}

.service-cards article:nth-child(4n + 2) {
  border-top-color: rgba(37, 99, 235, 0.42);
}

.service-cards article:nth-child(4n + 3) {
  border-top-color: rgba(21, 128, 61, 0.42);
}

.footprint {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 1.15rem 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
}

.cloudflare .footprint {
  margin: 1.15rem auto 0;
}

.footprint div {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

.footprint div:last-child {
  border-right: 0;
}

.footprint dt {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.footprint dd {
  margin: 0.42rem 0 0;
  color: var(--body);
  line-height: 1.35;
}

.stage {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.07) 0 16rem, transparent 16rem),
    linear-gradient(180deg, #ffffff 0, #fff8f0 100%);
}

.stage::before {
  position: absolute;
  inset: 0 clamp(1rem, 4vw, 4.25rem);
  max-width: var(--max);
  margin-inline: auto;
  border-inline: 1px solid rgba(234, 223, 212, 0.62);
  pointer-events: none;
  content: "";
}

.stage-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.stage-copy {
  position: sticky;
  top: 6.7rem;
}

.stage-kicker,
.summary-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.36rem 0.54rem;
  border: 1px solid rgba(255, 106, 0, 0.24);
  border-radius: 999px;
  background: #fff4ea;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.stage-copy h2 {
  max-width: 9ch;
  margin-bottom: 1rem;
}

.stage-copy p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.7;
}

.stage-timeline {
  display: grid;
  gap: 0;
  border: 1px solid rgba(234, 223, 212, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px) 0 0 / 4.25rem 4.25rem,
    #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.stage-item {
  position: relative;
  display: grid;
  grid-template-columns: 3.7rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  min-height: 5.9rem;
  padding: 1.15rem clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid var(--line-warm);
}

.stage-item:last-child {
  border-bottom: 0;
}

.stage-item span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 999px;
  background: #fff4ea;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.stage-item strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1vw, 1.22rem);
  line-height: 1.22;
}

.stage-item p {
  grid-column: 2;
  max-width: 38rem;
  margin: -0.42rem 0 0;
  color: var(--body);
  line-height: 1.55;
}

.stage-item.is-current {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.13), transparent 46%),
    #fffaf5;
}

.stage-item.is-current strong {
  font-size: clamp(1.18rem, 1.4vw, 1.45rem);
}

.stage-item.is-next {
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent 42%),
    #f8fbff;
}

.stage-item.is-next span {
  border-color: rgba(37, 99, 235, 0.22);
  background: var(--blue-soft);
  color: #1d4ed8;
}

.summary {
  padding-block: clamp(4rem, 7vw, 6rem);
  background:
    linear-gradient(120deg, rgba(255, 106, 0, 0.18), transparent 42%),
    linear-gradient(180deg, var(--night-soft), var(--night));
  color: #f8fbff;
}

.summary-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.52fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.2rem, 3.5vw, 2.35rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 4rem 4rem,
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.summary-label {
  border-color: rgba(255, 177, 111, 0.34);
  background: rgba(255, 177, 111, 0.13);
  color: #ffcb9c;
}

.summary h2 {
  max-width: 15ch;
  margin-bottom: 0;
  color: #f8fbff;
  font-size: clamp(2.05rem, 3.2vw, 3.45rem);
  line-height: 1;
}

.summary-copy p {
  max-width: 53rem;
  margin-bottom: 1.2rem;
  color: #dbe4ee;
  font-size: clamp(1.05rem, 1vw, 1.22rem);
  line-height: 1.68;
}

.summary-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.summary-points div {
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.summary-points dt {
  margin-bottom: 0.35rem;
  color: #ffcb9c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.summary-points dd {
  margin: 0;
  color: #dbe4ee;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7);
}

.contact-section .section-heading {
  display: block;
  margin-bottom: 0;
}

.contact-section h2 {
  max-width: none;
  margin-bottom: 0.9rem;
}

.contact-form {
  display: grid;
  width: 100%;
  max-width: 48rem;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form label {
  color: #243244;
  font-size: 0.9rem;
  font-weight: 780;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #d7dde7;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.contact-form input {
  min-height: 3.05rem;
  padding: 0 0.85rem;
}

.contact-form textarea {
  min-height: 9rem;
  padding: 0.85rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 106, 0, 0.8);
  outline: 3px solid rgba(255, 106, 0, 0.18);
  outline-offset: 1px;
}

.turnstile-field {
  min-height: 4.1rem;
}

.contact-form .button {
  width: fit-content;
  max-width: 100%;
  cursor: pointer;
}

.form-status {
  margin: 0;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(21, 128, 61, 0.28);
  border-radius: 8px;
  background: #effbf3;
  color: #166534;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 4.25rem);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  margin-bottom: 0.22rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer a {
  color: var(--orange-dark);
  font-weight: 780;
}

@media (min-width: 981px) {
  .product-group .group-intro {
    position: sticky;
    top: 6.5rem;
  }
}

@media (max-width: 1160px) {
  .service-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .atlas-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .atlas-card,
  .atlas-card.featured {
    grid-column: span 2;
  }

  .capability-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .section-heading,
  .product-group,
  .atlas-group,
  .stage-inner,
  .summary-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .stage-copy {
    position: static;
  }

  .stage-copy h2 {
    max-width: none;
  }

  .stage-copy p {
    max-width: 44rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3.4rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .visual-shell {
    min-height: 29rem;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    min-height: 1.8rem;
    transform: rotate(90deg);
  }

  .trust-belt ul,
  .cards,
  .atlas-cards,
  .service-cards,
  .summary-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-card,
  .atlas-card.featured {
    grid-column: auto;
  }

  .trust-belt li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-belt li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 660px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .brand {
    font-size: 1rem;
  }

  .header-cta {
    width: 100%;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.55rem 0.9rem;
    overflow: visible;
    white-space: normal;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2,
  .thesis h2 {
    font-size: 1.95rem;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .products {
    background:
      linear-gradient(180deg, var(--night) 0, var(--night) 18rem, #fffaf5 18rem, #ffffff 100%);
  }

  .product-groups {
    padding-inline: 1rem;
  }

  .product-group::before {
    top: 1.45rem;
    font-size: 2.7rem;
  }

  .group-intro {
    padding-top: 2.7rem;
  }

  .hero-lede,
  .summary p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .button {
    min-height: 2.8rem;
    padding: 0.72rem 0.82rem;
  }

  .visual-shell {
    min-height: 24rem;
  }

  .search-widget {
    top: 5.4rem;
    left: 5%;
    width: 88%;
  }

  .document-widget {
    top: 2rem;
    right: 5%;
    width: 8.8rem;
    min-height: 10rem;
    opacity: 0.72;
  }

  .chart-widget {
    top: 11.2rem;
    right: 1rem;
  }

  .map-widget {
    right: 1rem;
    bottom: 1.5rem;
  }

  .platform-stack {
    right: 53%;
    bottom: 3rem;
    transform: translateX(50%) scale(0.86);
  }

  .trust-belt ul,
  .cards,
  .atlas-cards,
  .service-cards,
  .summary-points,
  .capability-strip,
  .service-grid,
  .form-grid,
  .footprint {
    grid-template-columns: 1fr;
  }

  .stage-item {
    grid-template-columns: 2.7rem minmax(0, 1fr);
    gap: 0.7rem;
    padding: 1rem;
  }

  .stage-item span {
    width: 2.35rem;
    height: 2.35rem;
  }

  .stage-item p {
    grid-column: 1 / -1;
    margin-top: -0.2rem;
  }

  .summary-panel {
    padding: 1rem;
  }

  .atlas-card,
  .atlas-card.featured {
    grid-column: auto;
    min-height: 13rem;
  }

  .footprint div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footprint div:last-child {
    border-bottom: 0;
  }

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

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