:root {
  color-scheme: light;
  --ink: #08111e;
  --ink-2: #152639;
  --muted: #617083;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #dce5ed;
  --cyan: #23d5c2;
  --blue: #56c7ff;
  --amber: #ffb74a;
  --coral: #ff6b5f;
  --forest: #0f6f60;
  --night: #07111d;
  --night-2: #0b1d2c;
  --shadow: 0 22px 70px rgba(8, 17, 30, 0.15);
  --radius: 8px;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(35, 213, 194, 0.12), transparent 20rem),
    linear-gradient(180deg, #f6f8fb 0%, #eef4f7 42%, #f8fafc 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.fluid-cursor {
  position: fixed;
  z-index: 18;
  left: 0;
  top: 0;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(35, 213, 194, 0.28), rgba(86, 199, 255, 0.12) 38%, rgba(255, 107, 95, 0.08) 56%, transparent 72%);
  filter: blur(20px) saturate(140%);
  mix-blend-mode: screen;
  opacity: 0.78;
  will-change: transform;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--white);
  color: var(--night);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.92), rgba(7, 17, 29, 0.55), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(9.5rem, 15vw, 14rem);
  height: auto;
  max-height: 3.2rem;
  object-fit: contain;
  filter: brightness(1.22) contrast(1.08) drop-shadow(0 0 1px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 10px rgba(86, 199, 255, 0.3)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.site-nav a {
  padding: 0.55rem 0.72rem;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
}

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

.site-nav .nav-cta {
  margin-left: 0.4rem;
  color: var(--night);
  background: var(--white);
  font-weight: 720;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  min-height: 94vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 28%, rgba(127, 63, 152, 0.42), transparent 24rem),
    radial-gradient(circle at 28% 58%, rgba(35, 213, 194, 0.34), transparent 25rem),
    var(--night);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -18%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(35, 213, 194, 0.42), transparent 24%),
    radial-gradient(circle at 66% 22%, rgba(86, 199, 255, 0.28), transparent 22%),
    radial-gradient(circle at 78% 68%, rgba(255, 107, 95, 0.34), transparent 25%),
    radial-gradient(circle at 34% 82%, rgba(255, 183, 74, 0.22), transparent 20%);
  filter: blur(34px) saturate(145%);
  mix-blend-mode: screen;
  opacity: 0.8;
  transform: translate3d(0, 0, 0);
  animation: fluid-sweep 13s ease-in-out infinite alternate;
}

.hero-image,
.page-hero > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.9) 0%, rgba(7, 17, 29, 0.74) 35%, rgba(7, 17, 29, 0.12) 72%),
    linear-gradient(180deg, rgba(7, 17, 29, 0.14), rgba(7, 17, 29, 0.58));
}

.fluid-canvas {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.96;
  pointer-events: none;
  filter: saturate(142%) contrast(108%);
  mix-blend-mode: screen;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 4;
  width: min(980px, calc(100vw - 2rem));
  padding: 22vh 0 8rem;
  margin-left: clamp(1rem, 7vw, 6rem);
}

.hero-content h1,
.page-hero-content h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(3rem, 5.25vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero-content h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.1vw, 5.4rem);
}

.hero-content p:not(.availability),
.page-hero-content p {
  max-width: 690px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.availability,
.section-kicker,
.panel-label {
  margin: 0 0 0.85rem;
  color: var(--amber);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--cyan);
  color: #031416;
  font-weight: 780;
  line-height: 1.1;
  box-shadow: 0 14px 34px rgba(35, 213, 194, 0.23);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(35, 213, 194, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.text-link {
  color: var(--forest);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.button-light {
  color: var(--night);
  background: var(--white);
  box-shadow: none;
}

.hero-console {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 5vw, 4rem);
  bottom: 3rem;
  display: grid;
  gap: 0.5rem;
  width: min(290px, calc(100% - 2rem));
}

.hero-console span {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 17, 29, 0.56);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.intro-band,
.service-explorer,
.proof-band,
.regions-section,
.process-section,
.faq-section,
.detail-section,
.keyword-section,
.related-section,
.contact-section,
.cta-band {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 2rem;
  align-items: center;
  background: var(--white);
}

.intro-band p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--ink-2);
}

.intro-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.intro-metrics span {
  min-height: 5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  background: #f9fbfc;
  font-weight: 800;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.explorer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: stretch;
}

.service-tabs {
  display: grid;
  gap: 0.75rem;
}

.service-tab {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.25rem;
  width: 100%;
  min-height: 7.25rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.service-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 213, 194, 0.54);
  background:
    radial-gradient(220px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(35, 213, 194, 0.18), transparent 64%),
    var(--white);
}

.service-tab span {
  font-size: 1.16rem;
  font-weight: 820;
}

.service-tab small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-tab.is-active {
  border-color: rgba(35, 213, 194, 0.65);
  box-shadow: var(--shadow);
}

.service-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--night), var(--night-2) 58%, #163b43);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at var(--card-x, 72%) var(--card-y, 24%), rgba(35, 213, 194, 0.32), transparent 22rem),
    radial-gradient(circle at 18% 78%, rgba(255, 107, 95, 0.18), transparent 16rem);
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: 0.82;
  pointer-events: none;
  transition: opacity 0.2s ease;
  animation: fluid-sweep 9s ease-in-out infinite alternate;
}

.panel-orbit {
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(86, 199, 255, 0.35);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.panel-orbit::after {
  content: "";
  position: absolute;
  inset: 4rem;
  border: 1px solid rgba(255, 183, 74, 0.4);
  border-radius: 50%;
}

.service-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.service-panel p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.service-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-panel li::before {
  content: "";
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  margin: 0 0.75rem 0 -1.35rem;
  border-radius: 50%;
  background: var(--cyan);
}

.service-panel a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.82rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--night);
  font-weight: 800;
}

.proof-band {
  color: var(--white);
  background: #121915;
}

.proof-grid,
.related-grid,
.region-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-grid article,
.related-grid a,
.region-links a {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.proof-grid article:hover,
.related-grid a:hover,
.region-links a:hover,
.process-list li:hover,
details:hover,
.deliverables span:hover,
.keyword-grid span:hover,
.hero-console span:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 213, 194, 0.44);
  box-shadow: 0 20px 60px rgba(8, 17, 30, 0.12);
}

.proof-grid article::after,
.related-grid a::after,
.region-links a::after,
.process-list li::after,
details::after,
.deliverables span::after,
.keyword-grid span::after,
.contact-form::after,
.hero-console span::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(240px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(35, 213, 194, 0.2), transparent 62%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.proof-grid article:hover::after,
.related-grid a:hover::after,
.region-links a:hover::after,
.process-list li:hover::after,
details:hover::after,
.deliverables span:hover::after,
.keyword-grid span:hover::after,
.contact-form:hover::after,
.hero-console span:hover::after {
  opacity: 1;
}

.proof-grid h3,
.related-grid strong,
.region-links strong {
  display: block;
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.proof-grid p,
.related-grid span,
.region-links span {
  color: rgba(255, 255, 255, 0.72);
}

.regions-section {
  background: var(--white);
}

.region-map {
  position: relative;
  min-height: 22rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 58% 56%, rgba(35, 213, 194, 0.36), transparent 18rem),
    linear-gradient(135deg, #edf8fa, #fdf8ef 48%, #eef3f8);
  border: 1px solid var(--line);
}

.region-map::before,
.region-map::after {
  content: "";
  position: absolute;
  inset: 18% 10%;
  border: 1px solid rgba(8, 17, 30, 0.16);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.region-map::before {
  animation: orbit-spin 24s linear infinite;
}

.region-map::after {
  inset: 30% 20%;
  transform: rotate(16deg);
}

.node {
  position: absolute;
  z-index: 1;
  display: grid;
  min-width: 4.8rem;
  min-height: 2.35rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--white);
  font-weight: 820;
  box-shadow: 0 0 0 rgba(35, 213, 194, 0);
  animation: node-pulse 3.8s ease-in-out infinite;
}

.node-cebu { left: 56%; top: 56%; background: var(--forest); }
.node-usa { left: 18%; top: 34%; }
.node-europe { right: 18%; top: 28%; background: #7f3f98; }
.node-ph { right: 29%; bottom: 22%; background: var(--coral); }

.region-links a {
  color: var(--ink);
  background: #f8fafc;
  border-color: var(--line);
}

.region-links span {
  color: var(--muted);
}

.process-section {
  background: #fff7ea;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 183, 74, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.process-list li::before {
  position: relative;
  z-index: 1;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 2rem;
  color: var(--coral);
  font-weight: 880;
}

.process-list strong,
.process-list span {
  position: relative;
  z-index: 1;
  display: block;
}

.process-list strong {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.process-list span {
  color: #6b5940;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfc;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 820;
}

details p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), #143b53 62%, #1b1630);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 18% 42%, rgba(35, 213, 194, 0.34), transparent 23rem),
    radial-gradient(circle at 80% 56%, rgba(255, 107, 95, 0.24), transparent 22rem),
    radial-gradient(circle at 52% 92%, rgba(255, 183, 74, 0.18), transparent 18rem);
  filter: blur(26px) saturate(140%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: fluid-sweep 12s ease-in-out infinite alternate;
}

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

.cta-band h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.cta-band p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  min-height: 72vh;
}

.page-hero-content {
  padding-top: 24vh;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--amber);
  font-weight: 820;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: 2rem;
  background: var(--white);
}

.detail-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.detail-copy p,
.contact-section p {
  max-width: 720px;
  color: var(--muted);
}

.deliverables,
.keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-content: flex-start;
}

.deliverables span,
.keyword-grid span {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  font-weight: 740;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.keyword-section {
  background: #edf8fa;
}

.related-section {
  color: var(--white);
  background: #1a1721;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.75fr);
  gap: 2rem;
  background: var(--white);
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-2);
  font-weight: 790;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd7e2;
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem) 2rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
}

.message-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.94), rgba(11, 29, 44, 0.88)),
    url("kassis-global-infrastructure.png") center / cover;
}

.message-result {
  display: grid;
  gap: 1rem;
  align-content: center;
  min-height: 100vh;
  width: min(720px, calc(100vw - 2rem));
  margin: 0 auto;
}

.message-result h1 {
  margin: 1rem 0 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
}

.message-result p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

@keyframes fluid-sweep {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(-2deg) scale(1);
  }

  50% {
    transform: translate3d(2%, 1%, 0) rotate(3deg) scale(1.06);
  }

  100% {
    transform: translate3d(-1%, 2%, 0) rotate(-1deg) scale(1.03);
  }
}

@keyframes brand-pulse {
  0%,
  100% {
    box-shadow: inset 0 0 22px rgba(86, 199, 255, 0.18), 0 0 0 rgba(35, 213, 194, 0);
  }

  50% {
    box-shadow: inset 0 0 32px rgba(86, 199, 255, 0.34), 0 0 28px rgba(35, 213, 194, 0.26);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(35, 213, 194, 0);
  }

  50% {
    box-shadow: 0 0 26px rgba(35, 213, 194, 0.36);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.55fr));
  gap: 1.5rem;
}

.footer-grid h2 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.84);
}

.footer-brand {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .proof-grid,
  .region-links,
  .process-list,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-band,
  .explorer-layout,
  .detail-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    margin: -4rem 1rem 2rem;
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    background: rgba(7, 17, 29, 0.94);
  }

  .brand-logo {
    width: min(13rem, calc(100vw - 6rem));
    max-height: 3rem;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    left: min(342px, calc(100vw - 3.5rem));
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: auto;
    top: 4.4rem;
    display: none;
    width: min(358px, calc(100vw - 2rem));
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(7, 17, 29, 0.98);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  .page-hero {
    min-height: 88vh;
  }

  .hero-content,
  .page-hero-content {
    width: min(358px, calc(100vw - 2rem));
    max-width: min(358px, calc(100vw - 2rem));
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 9rem;
  }

  .hero-content h1,
  .page-hero-content h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7.6vw, 2.45rem);
    line-height: 1.02;
  }

  .hero-content p:not(.availability),
  .page-hero-content p {
    max-width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }

  .hero-shade,
  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(7, 17, 29, 0.97), rgba(7, 17, 29, 0.72)),
      linear-gradient(180deg, rgba(7, 17, 29, 0.25), rgba(7, 17, 29, 0.78));
  }

  .intro-metrics,
  .proof-grid,
  .region-links,
  .process-list,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-tab {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .fluid-canvas,
  .fluid-cursor {
    display: none !important;
  }
}
