:root {
  color-scheme: light;
  --bg: #0a1222;
  --global-orbit-period: 24s;
  --global-orbit-delay: 0s;
  --panel: rgba(245, 249, 255, 0.86);
  --panel-strong: #f8fbff;
  --text: #142238;
  --muted: #4d617a;
  --accent: #2f84ff;
  --accent-deep: #1a4f9c;
  --line: rgba(20, 34, 56, 0.14);
  --shadow: 0 24px 60px rgba(8, 18, 34, 0.24);
  --hero-dark: rgba(8, 19, 38, 0.96);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Malgun Gothic", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(76, 130, 255, 0.24), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(111, 178, 255, 0.2), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(10, 24, 52, 0.95), rgba(6, 12, 24, 1) 70%),
    linear-gradient(180deg, #060c1a 0%, var(--bg) 100%);
  padding: 24px;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    radial-gradient(2px 2px at 8% 12%, rgba(255, 255, 255, 0.72), transparent),
    radial-gradient(1px 1px at 26% 78%, rgba(160, 207, 255, 0.7), transparent),
    radial-gradient(2px 2px at 64% 22%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 82% 64%, rgba(180, 223, 255, 0.78), transparent),
    radial-gradient(2px 2px at 92% 34%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 46% 46%, rgba(179, 214, 255, 0.62), transparent);
  opacity: 0.72;
  animation: starDrift 22s linear infinite;
}

body::after {
  background:
    radial-gradient(circle at 15% 85%, rgba(75, 118, 255, 0.22), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(95, 174, 255, 0.2), transparent 22%);
  filter: blur(18px);
}

.global-satellite-orbit {
  position: fixed;
  right: clamp(12px, 2.4vw, 28px);
  top: clamp(84px, 10vh, 120px);
  width: clamp(92px, 11vw, 132px);
  height: clamp(92px, 11vw, 132px);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(163, 219, 255, 0.28), rgba(33, 61, 115, 0.46));
  border: 1px solid rgba(164, 216, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(193, 231, 255, 0.12), 0 12px 28px rgba(8, 20, 42, 0.4);
  z-index: 20;
  pointer-events: none;
}

.global-orbit-ring {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(174, 220, 255, 0.34);
}

.global-satellite {
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, #edf9ff, #8cbcff);
  box-shadow: 0 0 9px rgba(173, 226, 255, 0.82);
  transform-origin: 0 0;
  animation: globalOrbitSpin var(--global-orbit-period) linear infinite;
  animation-delay: var(--global-orbit-delay);
}

.global-satellite::before,
.global-satellite::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 8px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(180deg, #5ca1f4, #214f91);
}

.global-satellite::before { left: -9px; }
.global-satellite::after { right: -9px; }

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.92) 0%, rgba(234, 242, 254, 0.9) 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  margin-bottom: 24px;
}

.brand-stack {
  display: grid;
  gap: 12px;
}

.site-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffbb79 0%, #d45c1f 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(203, 77, 24, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.03em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.company-logo-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.company-logo-row img {
  width: 188px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 31, 56, 0.18);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(24, 32, 39, 0.07);
}

.site-nav a.active,
.site-nav a:hover {
  color: #fff;
  background: linear-gradient(135deg, #2f84ff 0%, #1a4f9c 100%);
}

.hero-block,
.page-hero,
.section-block,
.content-panel,
.page-card,
.service-card {
  border-radius: 28px;
}

.hero-block,
.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  padding: 40px;
  background:
    linear-gradient(135deg, var(--hero-dark) 0%, rgba(11, 33, 64, 0.94) 56%, rgba(24, 69, 120, 0.9) 100%),
    url("../images/space-satellite.svg") right -90px center / 48% no-repeat;
  color: #fff7f2;
}

.compact-hero {
  grid-template-columns: 1fr;
}

.hero-block::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 181, 255, 0.28) 0%, rgba(115, 181, 255, 0) 72%);
  animation: orbitalGlow 6s ease-in-out infinite;
}

.hero-copy,
.hero-visual-card,
.page-hero {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin-bottom: 18px;
  background: rgba(88, 158, 255, 0.16);
  color: #d9ecff;
}

.section-label {
  margin-bottom: 14px;
  background: rgba(47, 132, 255, 0.12);
  color: var(--accent);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-copy p,
.page-hero p {
  margin-top: 20px;
  max-width: 48ch;
  color: rgba(223, 240, 255, 0.86);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(99, 167, 255, 0.16);
  border: 1px solid rgba(163, 212, 255, 0.32);
  color: rgba(233, 247, 255, 0.96);
  font-size: 13px;
  animation: pulseSoft 4.2s ease-in-out infinite;
}

.ai-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ai-badge-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(168, 223, 255, 0.42);
  background: rgba(93, 161, 255, 0.2);
  color: #e7f4ff;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #6bb4ff 0%, #2f84ff 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 111, 209, 0.34);
}

.button-secondary {
  border: 1px solid rgba(188, 226, 255, 0.3);
  background: rgba(48, 120, 199, 0.2);
  color: #eef8ff;
}

.hero-visual-card,
.content-panel,
.page-card,
.service-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.hero-visual-card {
  padding: 20px;
  animation: floatCard 7.2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-visual-card img,
.media-panel img {
  border-radius: 20px;
}

.hero-visual-copy,
.media-caption {
  margin-top: 16px;
}

.public-orbit-scene {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(87, 168, 255, 0.26), rgba(14, 38, 76, 0.4));
  border: 1px solid rgba(168, 223, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(188, 230, 255, 0.1), 0 10px 20px rgba(3, 14, 33, 0.35);
  pointer-events: none;
  z-index: 2;
}

.public-planet {
  position: absolute;
  left: 42px;
  top: 42px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 24%, #d8f3ff 0%, #5fa6ff 46%, #24467e 100%);
  box-shadow: 0 0 10px rgba(139, 197, 255, 0.7);
}

.public-orbit-ring {
  position: absolute;
  left: 21px;
  top: 21px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(166, 219, 255, 0.3);
  transform-style: preserve-3d;
}

.public-orbit-a {
  animation: publicOrbitSpinA 6.5s linear infinite;
}

.public-orbit-b {
  left: 12px;
  top: 12px;
  width: 94px;
  height: 94px;
  border-color: rgba(129, 174, 244, 0.26);
  animation: publicOrbitSpinB 10.5s linear infinite;
}

.public-satellite {
  position: absolute;
  top: -7px;
  left: 32px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f0f8ff 0%, #89b7ff 100%);
  box-shadow: 0 0 8px rgba(169, 221, 255, 0.76);
}

.public-satellite::before,
.public-satellite::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 8px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(180deg, #4f94ef, #224f92);
}

.public-satellite::before {
  left: -9px;
}

.public-satellite::after {
  right: -9px;
}

.public-sat-b {
  left: 41px;
  width: 10px;
  height: 10px;
}

.hero-visual-copy strong,
.media-caption,
.feature-list strong,
.page-card strong,
.service-card strong,
.contact-detail-list strong {
  display: block;
}

.hero-visual-copy strong,
.feature-list strong,
.page-card strong,
.service-card strong,
.contact-detail-list strong {
  margin-bottom: 6px;
  font-size: 17px;
}

.ai-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.ai-metric-grid article {
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(168, 226, 255, 0.38);
  background:
    radial-gradient(circle at 20% 20%, rgba(120, 183, 255, 0.24), transparent 42%),
    rgba(19, 49, 91, 0.45);
}

.ai-metric-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #d9edff;
  font-size: 14px;
}

.ai-metric-grid span {
  color: rgba(226, 242, 255, 0.85);
  font-size: 12px;
  line-height: 1.5;
}

.section-block {
  margin-top: 24px;
}

.satellite-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(12, 29, 58, 0.94), rgba(8, 20, 41, 0.98));
  border: 1px solid rgba(128, 190, 255, 0.28);
}

.satellite-stage {
  position: relative;
  height: 260px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 24%, rgba(111, 173, 255, 0.26), transparent 28%),
    radial-gradient(circle at 78% 74%, rgba(101, 130, 255, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(9, 22, 43, 0.94), rgba(6, 14, 31, 1));
  border: 1px solid rgba(152, 211, 255, 0.3);
  overflow: hidden;
}

.satellite-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 14%, rgba(255, 255, 255, 0.72), transparent),
    radial-gradient(1px 1px at 36% 74%, rgba(214, 237, 255, 0.7), transparent),
    radial-gradient(1px 1px at 64% 30%, rgba(255, 255, 255, 0.62), transparent),
    radial-gradient(1px 1px at 88% 60%, rgba(172, 216, 255, 0.68), transparent);
}

.saturn-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  margin: -35px 0 0 -35px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 22%, #e1f6ff 0%, #74b7ff 46%, #294f89 100%);
  box-shadow: 0 0 22px rgba(140, 199, 255, 0.7);
}

.saturn-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform-style: preserve-3d;
  border: 1px solid rgba(153, 211, 255, 0.34);
}

.saturn-ring-a {
  width: 130px;
  height: 130px;
  margin: -65px 0 0 -65px;
  animation: stageOrbitA 7s linear infinite;
}

.saturn-ring-b {
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-color: rgba(136, 178, 242, 0.26);
  animation: stageOrbitB 11s linear infinite;
}

.saturn-ring-c {
  width: 230px;
  height: 230px;
  margin: -115px 0 0 -115px;
  border-color: rgba(117, 157, 230, 0.24);
  animation: stageOrbitC 16s linear infinite;
}

.saturn-sat {
  position: absolute;
  top: -9px;
  left: 56px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(180deg, #edf8ff, #86b8ff);
  box-shadow: 0 0 10px rgba(170, 222, 255, 0.8);
}

.saturn-sat::before,
.saturn-sat::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 9px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(180deg, #5ba0ff, #245397);
}

.saturn-sat::before { left: -10px; }
.saturn-sat::after { right: -10px; }

.saturn-sat-b { left: 83px; width: 12px; height: 12px; }
.saturn-sat-c { left: 108px; width: 10px; height: 10px; }

.satellite-stage-copy h2 {
  color: #f0f8ff;
}

.satellite-stage-copy p {
  color: rgba(218, 239, 255, 0.86);
  margin-top: 14px;
}

.orbit-data-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.orbit-data-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(149, 208, 255, 0.28);
  background:
    radial-gradient(circle at 14% 20%, rgba(125, 193, 255, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(18, 43, 79, 0.82), rgba(10, 28, 54, 0.9));
  padding: 10px 12px;
}

.orbit-data-card::before {
  content: "NODE";
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(164, 219, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.orbit-data-card::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #d6f0ff 0%, #5fb3ff 55%, #275697 100%);
  box-shadow: 0 0 10px rgba(129, 200, 255, 0.7);
}

.orbit-data-grid strong {
  display: block;
  color: #e2f4ff;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 0 0 6px 18px;
}

.orbit-data-grid span {
  color: rgba(214, 235, 255, 0.86);
  font-size: 12px;
  line-height: 1.5;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f4f9ff 0%, #ecf4ff 100%);
  border: 1px solid rgba(47, 132, 255, 0.16);
}

.status-strip div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 32, 39, 0.07);
}

.status-strip strong,
.timeline-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.status-strip span,
.timeline-card span {
  color: var(--muted);
  line-height: 1.65;
}

.section-grid-two,
.card-grid-three,
.detailed-grid {
  display: grid;
  gap: 24px;
}

.section-grid-two {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.card-grid-three,
.detailed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-panel,
.page-card,
.service-card {
  padding: 28px;
}

.feature-list,
.contact-detail-list,
.step-list {
  margin-top: 24px;
}

.feature-list,
.contact-detail-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.contact-detail-list div,
.page-card,
.service-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fafdff 0%, #f1f7ff 100%);
  border: 1px solid rgba(47, 132, 255, 0.1);
}

.page-card {
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.page-card:hover,
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.dual-company-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.split-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.split-card h2 {
  margin-bottom: 12px;
}

.split-card p {
  margin-bottom: 22px;
}

.split-card-fire {
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

.split-card-smart {
  background: linear-gradient(180deg, #eef6ff 0%, #e4f0ff 100%);
}

.smart-card {
  background: linear-gradient(180deg, #edf6ff 0%, #e2efff 100%);
}

.text-link {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
}

.light-link {
  color: #fff1e8;
}

.smart-highlight-panel {
  background: linear-gradient(180deg, #17355e 0%, #0b233f 100%);
  color: #fff6f1;
}

.smart-space-panel,
.smart-solution-card {
  position: relative;
  overflow: hidden;
}

.smart-space-panel {
  background:
    radial-gradient(circle at 14% 18%, rgba(120, 182, 255, 0.36), transparent 30%),
    radial-gradient(circle at 84% 76%, rgba(94, 140, 255, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(10, 24, 47, 0.98) 0%, rgba(8, 18, 37, 1) 100%);
  border: 1px solid rgba(128, 192, 255, 0.38);
  box-shadow: inset 0 0 0 1px rgba(184, 224, 255, 0.12), 0 16px 40px rgba(2, 10, 24, 0.45);
}

.smart-space-panel h2,
.smart-space-panel h3,
.smart-space-panel strong {
  color: #f2f9ff;
  text-shadow: 0 1px 2px rgba(4, 12, 26, 0.35);
}

.smart-space-panel p,
.smart-space-panel span,
.smart-space-panel li {
  color: rgba(234, 246, 255, 0.92);
}

.smart-space-panel .section-label {
  background: rgba(140, 198, 255, 0.18);
  color: #e8f5ff;
  border: 1px solid rgba(173, 220, 255, 0.34);
}

.smart-space-panel::before,
.smart-solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 8% 14%, rgba(255,255,255,0.62), transparent),
    radial-gradient(1px 1px at 36% 74%, rgba(202,231,255,0.7), transparent),
    radial-gradient(2px 2px at 72% 30%, rgba(255,255,255,0.58), transparent),
    radial-gradient(1px 1px at 88% 62%, rgba(182,221,255,0.62), transparent);
  opacity: 0.68;
}

.smart-solution-card {
  background:
    radial-gradient(circle at 22% 22%, rgba(132, 194, 255, 0.3), transparent 38%),
    linear-gradient(180deg, #17385f 0%, #102844 100%);
  border: 1px solid rgba(169, 214, 255, 0.36);
  box-shadow: inset 0 0 0 1px rgba(214, 238, 255, 0.12), 0 10px 24px rgba(7, 20, 40, 0.26);
}

.smart-solution-card,
.smart-solution-card * {
  color: #f2f9ff !important;
}

.smart-solution-card strong,
.smart-solution-card span {
  position: relative;
  z-index: 1;
}

.smart-solution-card strong {
  color: #f5fbff;
  text-shadow: 0 1px 2px rgba(5, 14, 29, 0.35);
}

.smart-solution-card span {
  color: #eaf5ff;
  font-weight: 500;
  line-height: 1.72;
  text-shadow: 0 1px 2px rgba(6, 16, 34, 0.28);
}

.smart-highlight-panel p {
  color: rgba(255, 246, 241, 0.82);
}

.emphasis-list li {
  font-weight: 600;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.timeline-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  border: 1px solid rgba(47, 132, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.contact-strip {
  background: linear-gradient(180deg, #ebf4ff 0%, #e1eeff 100%);
}

@keyframes starDrift {
  0% {
    transform: translateY(0);
    opacity: 0.66;
  }
  50% {
    transform: translateY(-12px);
    opacity: 0.84;
  }
  100% {
    transform: translateY(0);
    opacity: 0.66;
  }
}

@keyframes orbitalGlow {
  0% {
    transform: scale(0.92);
    opacity: 0.68;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.68;
  }
}

@keyframes pulseSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes publicOrbitSpinA {
  from {
    transform: rotateX(62deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(62deg) rotateZ(360deg);
  }
}

@keyframes publicOrbitSpinB {
  from {
    transform: rotateX(62deg) rotateZ(360deg);
  }
  to {
    transform: rotateX(62deg) rotateZ(0deg);
  }
}

@keyframes stageOrbitA {
  from { transform: rotateX(68deg) rotateZ(0deg); }
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

@keyframes stageOrbitB {
  from { transform: rotateX(68deg) rotateZ(360deg); }
  to { transform: rotateX(68deg) rotateZ(0deg); }
}

@keyframes stageOrbitC {
  from { transform: rotateX(68deg) rotateZ(0deg); }
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

@keyframes globalOrbitSpin {
  from { transform: rotate(0deg) translateX(calc(clamp(92px, 11vw, 132px) * 0.34)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(calc(clamp(92px, 11vw, 132px) * 0.34)) rotate(-360deg); }
}

.accent-panel {
  background: linear-gradient(180deg, rgba(24, 32, 39, 0.96) 0%, rgba(49, 34, 28, 0.98) 100%);
  color: #fff6f1;
}

.accent-panel p,
.accent-panel li,
.small-note {
  color: rgba(255, 246, 241, 0.78);
}

.step-list {
  padding-left: 18px;
}

.step-list li + li {
  margin-top: 10px;
}

.gallery-section .section-heading {
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(47, 132, 255, 0.16);
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  box-shadow: 0 10px 24px rgba(10, 20, 36, 0.08);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 10px 12px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.media-panel {
  overflow: hidden;
}

.small-note {
  margin-top: 24px;
}

@media (max-width: 980px) {
  body {
    padding: 16px;
  }

  .site-shell {
    padding: 16px;
  }

  .site-header,
  .site-footer,
  .hero-block,
  .section-grid-two,
  .company-split-grid,
  .status-strip,
  .card-grid-three,
  .detailed-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-block,
  .page-hero {
    padding: 28px 22px;
  }

  .satellite-showcase {
    grid-template-columns: 1fr;
  }

  .orbit-data-grid {
    grid-template-columns: 1fr 1fr;
  }


@media (max-width: 640px) {
  .orbit-data-grid {
    grid-template-columns: 1fr;
  }
}
  .ai-metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .button-row,
  .site-nav,
  .hero-pill-row {
    flex-direction: column;
  }

  .company-logo-row {
    flex-direction: column;
    align-items: stretch;
  }

  .company-logo-row img {
    width: 100%;
  }

  .button,
  .site-nav a {
    width: 100%;
  }

  .site-header,
  .site-footer {
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .global-satellite-orbit {
    top: 74px;
    right: 10px;
    width: 88px;
    height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-satellite,
  .global-orbit-ring {
    animation: none !important;
  }
}