@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #0A0F1E;
  --surface: #101B35;
  --surface-soft: rgba(16, 27, 53, 0.72);
  --surface-glass: rgba(16, 27, 53, 0.58);
  --cyan: #00E5FF;
  --coral: #FF6B6B;
  --text: #FFFFFF;
  --muted: #BFC8D6;
  --line: rgba(0, 229, 255, 0.16);
  --line-strong: rgba(0, 229, 255, 0.34);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 229, 255, 0.075), transparent 30rem),
    radial-gradient(circle at 82% 8%, rgba(255, 107, 107, 0.06), transparent 28rem),
    linear-gradient(180deg, #0A0F1E 0%, #080D19 100%);
  color: var(--text);
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -3;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  animation: gridShift 28s linear infinite;
}

body::after {
  z-index: -2;
  opacity: 0.34;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(0, 229, 255, 0.08) 48%, transparent 54%),
    radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.055), transparent 34rem);
  animation: systemScan 9s ease-in-out infinite;
}

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

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

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

h1,
h2,
h3,
.brand,
.header-cta,
.button {
  font-family: "Space Grotesk", "Sora", sans-serif;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 15, 30, 0.78);
  backdrop-filter: blur(24px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.42;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 229, 255, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(255, 107, 107, 0.08)),
    #0A0F1E;
  color: transparent;
  font-size: 0;
  box-shadow: inset 0 0 24px rgba(0, 229, 255, 0.08), 0 0 28px rgba(0, 229, 255, 0.16);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  width: 25px;
  height: 25px;
  background:
    radial-gradient(circle at 0 0, var(--cyan) 0 3px, transparent 3.6px),
    radial-gradient(circle at 100% 50%, var(--cyan) 0 3px, transparent 3.6px),
    radial-gradient(circle at 0 100%, var(--cyan) 0 3px, transparent 3.6px),
    radial-gradient(circle at 50% 50%, var(--coral) 0 4px, transparent 4.8px),
    linear-gradient(135deg, transparent 18%, var(--cyan) 19% 24%, transparent 25%),
    linear-gradient(45deg, transparent 18%, var(--cyan) 19% 24%, transparent 25%),
    linear-gradient(90deg, transparent 8%, var(--cyan) 9% 14%, transparent 15% 85%, var(--cyan) 86% 91%, transparent 92%);
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.64));
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -50% 38%;
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(20deg) translateX(-4rem);
  animation: markSweep 5.5s ease-in-out infinite;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 24px);
  color: var(--muted);
  font-size: clamp(0.84rem, 0.86vw, 0.94rem);
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  opacity: 0;
  transform: translateX(-50%) scale(0.6);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a:hover::before,
.site-nav a.active::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.header-cta {
  min-height: 44px;
  padding-inline: clamp(14px, 1.7vw, 22px);
  white-space: nowrap;
}

.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.34) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 0.64s ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px) scale(1.01);
}

.header-cta:hover::before,
.button:hover::before {
  transform: translateX(120%);
}

.header-cta,
.button.primary {
  background: var(--cyan);
  color: #07101F;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.34), 0 18px 54px rgba(0, 229, 255, 0.16);
}

.header-cta:hover,
.button.primary:hover {
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.54), 0 24px 70px rgba(0, 229, 255, 0.24);
}

.button.ghost {
  color: var(--text);
  border-color: rgba(0, 229, 255, 0.26);
  background: rgba(16, 27, 53, 0.52);
  box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.035);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(16, 27, 53, 0.72);
  box-shadow: inset 0 0 22px rgba(0, 229, 255, 0.08), 0 0 26px rgba(0, 229, 255, 0.14);
}

.nav-icon {
  display: grid;
  gap: 5px;
  width: 22px;
  margin: auto;
}

.nav-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.76);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background:
    radial-gradient(circle at 74% 45%, rgba(0, 229, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 42% 55%, rgba(255, 107, 107, 0.075), transparent 24rem);
}

.network-field {
  position: absolute;
  inset: 0;
  opacity: 0.82;
  background:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  animation: gridShift 32s linear infinite;
}

.network-field::before,
.network-field::after {
  content: "";
  position: absolute;
  inset: 8% 3% 6% 38%;
  background:
    radial-gradient(circle at 12% 26%, var(--cyan) 0 3px, transparent 4px),
    radial-gradient(circle at 38% 16%, var(--cyan) 0 3px, transparent 4px),
    radial-gradient(circle at 62% 28%, var(--coral) 0 3px, transparent 4px),
    radial-gradient(circle at 82% 48%, var(--cyan) 0 3px, transparent 4px),
    radial-gradient(circle at 44% 58%, var(--cyan) 0 3px, transparent 4px),
    radial-gradient(circle at 20% 74%, var(--coral) 0 3px, transparent 4px),
    linear-gradient(31deg, transparent 18%, rgba(0, 229, 255, 0.24) 18.2% 18.6%, transparent 18.8%),
    linear-gradient(153deg, transparent 32%, rgba(0, 229, 255, 0.22) 32.2% 32.6%, transparent 32.8%),
    linear-gradient(11deg, transparent 43%, rgba(255, 107, 107, 0.16) 43.2% 43.6%, transparent 43.8%);
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.48));
  animation: nodePulse 5.4s ease-in-out infinite;
}

.network-field::after {
  inset: 14% 10% 18% 56%;
  opacity: 0.42;
  transform: rotate(180deg) scale(0.72);
  animation-delay: -2s;
}

.network-field span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.78);
  animation: particleFloat 7s ease-in-out infinite;
}

.network-field span:nth-child(1) { left: 58%; top: 22%; }
.network-field span:nth-child(2) { left: 78%; top: 18%; animation-delay: -1.3s; }
.network-field span:nth-child(3) { left: 86%; top: 52%; animation-delay: -2.4s; }
.network-field span:nth-child(4) { left: 62%; top: 70%; animation-delay: -3.1s; background: var(--coral); }
.network-field span:nth-child(5) { left: 43%; top: 42%; animation-delay: -4s; }
.network-field span:nth-child(6) { left: 72%; top: 80%; animation-delay: -5.2s; }

.system-orbit {
  position: absolute;
  right: clamp(24px, 8vw, 130px);
  top: 50%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 44%),
    conic-gradient(from 90deg, transparent, rgba(0, 229, 255, 0.32), transparent, rgba(255, 107, 107, 0.18), transparent);
  mask-image: radial-gradient(circle, transparent 38%, #000 39%);
  animation: orbitTurn 18s linear infinite;
}

.system-orbit::before,
.system-orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(0, 229, 255, 0.18);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.system-orbit::after {
  inset: 32%;
  border-color: rgba(255, 107, 107, 0.2);
  animation: orbitTurn 10s linear infinite reverse;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 15, 30, 0.96) 0%, rgba(10, 15, 30, 0.82) 48%, rgba(10, 15, 30, 0.58) 100%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.14), #0A0F1E 100%);
}

.hero-content {
  width: min(1080px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding: 80px 0;
  animation: heroEnter 0.8s ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  max-width: 760px;
  color: var(--muted);
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--cyan);
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.32rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section,
.page-hero,
.contact-layout {
  position: relative;
  padding: clamp(64px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.section::after,
.solution-detail::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background:
    radial-gradient(circle at 0 50%, var(--cyan) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.8) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.3), transparent 28%, rgba(0, 229, 255, 0.18), transparent);
  opacity: 0.62;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 38px;
}

.section-heading h2,
.page-hero h1 {
  margin-bottom: 14px;
}

.feature-grid,
.solution-grid,
.detail-grid,
.industry-grid,
.case-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.solution-card,
.detail-grid article,
.industry-grid article,
.case-grid article,
.resource-list a,
.contact-form {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    var(--surface-glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.feature-card::before,
.solution-card::before,
.detail-grid article::before,
.industry-grid article::before,
.case-grid article::before,
.resource-list a::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.72), transparent 35%, rgba(255, 107, 107, 0.34));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.feature-card::after,
.solution-card::after,
.detail-grid article::after,
.industry-grid article::after,
.case-grid article::after,
.resource-list a::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  opacity: 0.16;
  background:
    radial-gradient(circle at 0 0, var(--cyan) 0 3px, transparent 4px),
    radial-gradient(circle at 100% 50%, var(--cyan) 0 3px, transparent 4px),
    radial-gradient(circle at 0 100%, var(--coral) 0 3px, transparent 4px),
    linear-gradient(135deg, transparent 28%, var(--cyan) 29% 32%, transparent 33%);
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
}

.feature-card:hover::before,
.solution-card:hover::before,
.detail-grid article:hover::before,
.industry-grid article:hover::before,
.case-grid article:hover::before,
.resource-list a:hover::before,
.contact-form:hover::before {
  opacity: 1;
}

.feature-card,
.detail-grid article,
.industry-grid article,
.case-grid article,
.resource-list a,
.solution-card {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.feature-card:hover,
.detail-grid article:hover,
.industry-grid article:hover,
.case-grid article:hover,
.resource-list a:hover,
.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.11), var(--shadow);
}

.feature-card {
  min-height: 226px;
  padding: 28px;
}

.feature-card p,
.solution-card p,
.detail-grid p,
.industry-grid p,
.case-grid p,
.resource-list p,
.site-footer p,
.stacked-copy,
.page-hero p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 229, 255, 0.34);
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.075);
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.08);
}

.split-band,
.results-band,
.page-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 107, 107, 0.05), transparent 25rem),
    linear-gradient(180deg, rgba(16, 27, 53, 0.38), rgba(10, 15, 30, 0.08));
}

.solution-card {
  min-height: 270px;
  padding: 32px;
}

.solution-card span {
  display: inline-block;
  margin-top: 30px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.compact {
  padding-top: 76px;
  padding-bottom: 76px;
}

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

.pill-row a {
  position: relative;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 27, 53, 0.56);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pill-row a:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.14);
}

.results-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 229, 255, 0.1);
}

.results-list div {
  position: relative;
  min-height: 138px;
  display: flex;
  align-items: end;
  padding: 24px;
  background: rgba(16, 27, 53, 0.68);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
}

.results-list div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.74);
}

.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(46px, 6vw, 78px) clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 50%, rgba(0, 229, 255, 0.11), transparent 24rem),
    linear-gradient(135deg, rgba(16, 27, 53, 0.88), rgba(10, 15, 30, 0.96));
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(30deg, transparent 0 48%, rgba(0, 229, 255, 0.18) 49% 50%, transparent 51%),
    linear-gradient(150deg, transparent 0 48%, rgba(255, 107, 107, 0.12) 49% 50%, transparent 51%);
  background-size: 92px 92px;
}

.cta-section > * {
  position: relative;
}

.cta-section h2 {
  margin-bottom: 0;
}

.page-hero {
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 24%, rgba(0, 229, 255, 0.14), transparent 22rem);
  background-size: 64px 64px, 64px 64px, auto;
  mask-image: linear-gradient(115deg, #000 0%, transparent 78%);
}

.page-hero > * {
  position: relative;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.12rem;
}

.solution-detail {
  position: relative;
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.detail-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 26px;
}

.detail-heading h2 {
  margin-bottom: 0;
}

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

.detail-grid article,
.industry-grid article,
.case-grid article,
.resource-list a {
  padding: 26px;
}

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

.industry-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.industry-grid h2,
.case-grid h2,
.resource-list h2 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.industry-kicker,
.case-grid span,
.resource-list span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.industry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.industry-meta span {
  padding: 7px 9px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.055);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
}

.industry-grid ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.industry-grid li {
  position: relative;
  padding-left: 18px;
}

.industry-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.8);
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 84px);
}

.stacked-copy {
  font-size: 1.1rem;
}

.case-grid article,
.resource-list a {
  min-height: 250px;
}

.resource-list {
  display: grid;
  gap: 18px;
  max-width: 960px;
}

.resource-list a {
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.contact-copy h1 {
  font-size: clamp(2.6rem, 4.8vw, 5.4rem);
}

.contact-copy > p:not(.eyebrow) {
  font-size: 1.14rem;
}

.contact-notes {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-notes div {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-notes span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(10, 15, 30, 0.74);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select option {
  color: #0A0F1E;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.12);
}

textarea {
  resize: vertical;
}

.site-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #070B16;
}

.site-footer::before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  top: -17px;
  background: url("assets/coraly-mark.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.56));
}

.site-footer p {
  max-width: 460px;
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 78px;
  height: 78px;
  background: url("assets/coraly-mark.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.72));
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

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

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 10px 0 5px;
  }

  .site-nav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .feature-grid.four,
  .detail-grid,
  .results-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid,
  .solution-grid,
  .feature-grid.three,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .system-orbit {
    opacity: 0.45;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.5rem, 14vw, 4.6rem);
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    margin-inline: 18px;
    padding-top: 58px;
  }

  .network-field::before {
    inset: 28% 0 0 20%;
    opacity: 0.42;
  }

  .system-orbit {
    width: 360px;
    right: -140px;
    top: 66%;
  }

  .hero-actions,
  .cta-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .feature-grid.four,
  .detail-grid,
  .results-list,
  .detail-heading,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .results-list div {
    min-height: 106px;
  }
}

@keyframes gridShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 72px, 72px 72px; }
}

@keyframes systemScan {
  0%, 44% { transform: translateX(-18%); opacity: 0.18; }
  55% { opacity: 0.44; }
  100% { transform: translateX(18%); opacity: 0.18; }
}

@keyframes markSweep {
  0%, 58% { transform: rotate(20deg) translateX(-4rem); }
  82%, 100% { transform: rotate(20deg) translateX(4rem); }
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.48; transform: scale(0.98); }
  50% { opacity: 0.88; transform: scale(1); }
}

@keyframes particleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.86); opacity: 0.42; }
  50% { transform: translate3d(14px, -18px, 0) scale(1.1); opacity: 0.95; }
}

@keyframes orbitTurn {
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.62; }
  50% { transform: scale(1); opacity: 1; }
}
