:root {
  --bg: #07131a;
  --bg-alt: #0d1d27;
  --panel: rgba(13, 29, 39, 0.88);
  --panel-strong: #122a36;
  --card: #0d1f2a;
  --card-2: #132f39;
  --text: #eef6f8;
  --muted: #afc2c9;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #f59e0b;
  --accent-2: #7dd3fc;
  --accent-3: #34d399;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(52, 211, 153, 0.12), transparent 25%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(7, 19, 26, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04100d;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  color: #0b120d;
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.35);
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 90px 0 50px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(45, 212, 191, 0.08), transparent 48%);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  width: min(520px, 88%);
  height: 520px;
  margin: 0 auto;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.18);
  transform: rotate(-18deg);
  animation: pulseOrbit 16s ease-in-out infinite alternate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(45, 212, 191, 0.7);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.28);
}

.hero-visual::before {
  inset: 8px 24px 8px 24px;
  transform: scaleX(1.18) rotate(8deg);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.22);
}

.hero-visual::after {
  inset: 30px 12px 30px 12px;
  border-color: rgba(45, 212, 191, 0.55);
  transform: rotate(-12deg);
}

.hr-hero {
  padding: 90px 0 50px;
}

.hr-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  display: block;
  color: var(--accent-2);
}

.hr-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hr-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  margin-top: 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  display: block;
}

.hero-card,
.hr-card {
  background: linear-gradient(180deg, rgba(19, 47, 57, 0.96), rgba(9, 22, 26, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.85);
}

.stat-blocks {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.stat-blocks div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 18px 16px;
}

.stat-blocks strong {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.stat-blocks span {
  color: var(--muted);
}

.mini-panel {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.mini-panel p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

.tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.18);
  color: var(--text);
  font-size: 0.82rem;
}

.metrics {
  padding: 18px 0 36px;
}

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

.metrics-grid div {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 32, 39, 0.7);
}

.metrics-grid strong,
.metrics-grid span {
  display: block;
}

.metrics-grid strong {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.metrics-grid span {
  color: var(--muted);
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-section {
  padding-top: 36px;
  padding-bottom: 110px;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 1.4fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.platform-column {
  display: grid;
  gap: 18px;
}

.platform-group {
  display: grid;
  gap: 12px;
}

.platform-group h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.platform-boxes {
  display: grid;
  gap: 14px;
}

.platform-box {
  background: linear-gradient(180deg, rgba(8, 20, 28, 0.96), rgba(6, 18, 24, 0.9));
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 14px;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  padding: 16px 18px;
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.05), 0 14px 22px rgba(4, 12, 18, 0.14);
  font-size: 1.02rem;
}

.platform-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.platform-ring {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(7, 24, 34, 0.96), rgba(4, 18, 24, 0.98) 58%, rgba(2, 10, 15, 1));
  border: 3px solid rgba(125, 211, 252, 0.82);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.16), 0 0 28px rgba(125, 211, 252, 0.22), inset 0 0 22px rgba(125, 211, 252, 0.12);
  animation: ringPulse 7s ease-in-out infinite;
}

.platform-ring::before,
.platform-ring::after {
  content: "";
  position: absolute;
  inset: 12% 8% 12% 8%;
  border-radius: 50%;
  border: 2px solid rgba(125, 211, 252, 0.9);
  transform: rotate(-18deg);
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.18);
  animation: ringRotate 16s linear infinite;
}

.platform-ring::after {
  inset: 23% 5% 23% 5%;
  border-color: rgba(125, 211, 252, 0.5);
  transform: rotate(16deg);
  animation-direction: reverse;
}

.platform-ring-inner {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(12, 34, 40, 0.96), rgba(6, 20, 26, 0.98));
  border: 2px solid rgba(125, 211, 252, 0.45);
  box-shadow: inset 0 0 18px rgba(125, 211, 252, 0.12), 0 0 30px rgba(125, 211, 252, 0.08);
  animation: coreFade 5s ease-in-out infinite;
}

.platform-ring-label {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 4px;
  text-align: center;
}

.platform-ring-label span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-ring-label strong {
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  letter-spacing: -0.04em;
}

.platform-orbit {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid rgba(125, 211, 252, 0.5);
  background: rgba(8, 22, 28, 0.92);
  color: var(--text);
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.14);
  opacity: 0.5;
  transition: opacity 0.4s ease, box-shadow 0.4s ease;
  animation: orbitFloat 5.5s ease-in-out infinite;
}

.platform-orbit::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 1), rgba(45, 212, 191, 0.56));
  box-shadow: 0 0 16px rgba(125, 211, 252, 0.7);
  top: 50%;
  transform: translateY(-50%);
}

.platform-orbit::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.9), rgba(125, 211, 252, 0));
  top: 50%;
  transform: translateY(-50%);
}

.orbit-top {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-top::before {
  left: -10px;
}

.orbit-top::after {
  left: -18px;
}

.orbit-right {
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-right::before {
  left: -10px;
}

.orbit-right::after {
  left: -18px;
}

.orbit-bottom {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-bottom::before {
  left: -10px;
}

.orbit-bottom::after {
  left: -18px;
}

.orbit-left {
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-left::before {
  right: -10px;
  left: auto;
}

.orbit-left::after {
  right: -18px;
  left: auto;
  background: linear-gradient(270deg, rgba(125, 211, 252, 0.9), rgba(125, 211, 252, 0));
}

.platform-orbit:hover {
  opacity: 1;
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.18);
}

.platform-card-list {
  display: grid;
  gap: 14px;
}

.platform-card {
  border: 1px solid rgba(125, 211, 252, 0.26);
  background: linear-gradient(180deg, rgba(7, 20, 28, 0.96), rgba(6, 18, 22, 0.94));
  border-radius: 16px;
  padding: 18px 16px;
  min-height: 120px;
  display: grid;
  gap: 10px;
  box-shadow: 0 14px 22px rgba(4, 12, 18, 0.14);
}

.platform-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.35);
  color: var(--accent-2);
  font-size: 0.92rem;
}

.platform-card h4 {
  margin: 0;
  font-size: 1.08rem;
}

.platform-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.platform-outcomes {
  display: grid;
  gap: 14px;
}

.outcome-badge {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 10px 14px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 999px;
  background: rgba(7, 20, 25, 0.9);
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.06);
}

.badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.35);
  color: var(--accent-2);
  font-size: 0.9rem;
}

.outcome-badge span {
  color: var(--text);
  font-size: 1rem;
}

@media (max-width: 980px) {
  .platform-layout {
    grid-template-columns: 1fr;
  }

  .platform-ring {
    max-width: 520px;
  }
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.split-layout h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.team-section {
  background: linear-gradient(135deg, rgba(143, 214, 236, 0.18), rgba(209, 171, 220, 0.12));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 34px;
  align-items: start;
}

.team-member {
  display: grid;
  justify-items: center;
  text-align: center;
}

.team-photo {
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 22, 27, 0.7);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
  transform: scale(1.02);
}

.team-meta {
  margin-top: 16px;
}

.team-meta h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.7rem);
  letter-spacing: -0.04em;
  color: #f3f8fb;
  line-height: 1.2;
}

.team-meta p {
  margin: 6px 0 0;
  color: rgba(214, 232, 238, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 24px;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-photo {
    width: min(100%, 200px);
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  background: linear-gradient(180deg, rgba(13, 31, 42, 0.95), rgba(8, 20, 27, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(125, 211, 252, 0.18));
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.split-layout p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.process-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.015);
}

.process-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding-top: 40px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(125, 211, 252, 0.08));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 18px;
  background: rgba(5, 15, 20, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.18);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
}

.site-footer h3 {
  margin: 0 0 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding-top: 30px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-page {
  display: flex;
  align-items: center;
  padding: 72px 0 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 86px;
}

.contact-copy {
  max-width: 660px;
}

.contact-copy h1 {
  margin: 0;
  font-size: clamp(4.2rem, 6vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 500;
  font-family: Georgia, 'Times New Roman', serif;
  color: #f1f3f5;
}

.contact-copy h1 span {
  color: var(--accent-2);
}

.contact-copy p {
  margin-top: 28px;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  line-height: 1.45;
  font-weight: 400;
}

.contact-panel {
  width: min(100%, 610px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
  padding: 28px 26px 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 1rem 1rem;
  color: var(--text);
  min-height: 52px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(125, 211, 252, 0.85);
  box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.12);
}

.submit-btn {
  margin-top: 8px;
  border: 1px solid rgba(125, 211, 252, 0.8);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  min-height: 62px;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
}

@keyframes pulseOrbit {
  0% {
    transform: rotate(-18deg) scale(0.96);
    box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.14), 0 0 26px rgba(45, 212, 191, 0.18);
  }
  50% {
    transform: rotate(10deg) scale(1.02);
    box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.2), 0 0 48px rgba(45, 212, 191, 0.24);
  }
  100% {
    transform: rotate(-12deg) scale(1.04);
    box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.22), 0 0 56px rgba(45, 212, 191, 0.3);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.16), 0 0 28px rgba(125, 211, 252, 0.18), inset 0 0 22px rgba(125, 211, 252, 0.08);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.2), 0 0 42px rgba(125, 211, 252, 0.26), inset 0 0 26px rgba(125, 211, 252, 0.14);
  }
}

@keyframes ringRotate {
  0% {
    transform: rotate(-18deg) scale(0.98);
    opacity: 0.72;
  }
  50% {
    transform: rotate(12deg) scale(1.01);
    opacity: 1;
  }
  100% {
    transform: rotate(-18deg) scale(0.98);
    opacity: 0.72;
  }
}

@keyframes coreFade {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    opacity: 0.72;
    filter: drop-shadow(0 0 0 rgba(125, 211, 252, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.18));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .card-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split-layout,
  .footer-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .main-nav {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 60px;
  }

  .metrics-grid,
  .card-grid,
  .process-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-box {
    padding: 24px 20px;
  }

  .contact-panel {
    padding: 18px 16px 16px;
  }

  .contact-copy h1 {
    font-size: 3.6rem;
  }

  .contact-copy p {
    font-size: 1.18rem;
  }
}
