﻿:root {
  --bg:#ffffff;
  --bg-gradient:linear-gradient(180deg, #101224 0%, #080912 100%);
  --surface:#191c2a;
  --surface-soft:rgba(25, 28, 42, 0.72);
  --surface-alt:rgba(15, 17, 29, 0.85);
  --border:rgba(255,255,255,0.08);
  --border-strong:rgba(255,255,255,0.16);
  --text:#f7f7fb;
  --muted:#a0a4b3;
  --accent:#4d6aff;
  --accent-2:#bc6aff;
  --accent-soft:rgba(77,106,255,0.15);
  --radius:18px;
  --shadow:0 18px 60px rgba(5, 6, 12, 0.45);
  --shadow-soft:0 20px 55px rgba(8, 11, 25, 0.35);
  --font-base:"Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font: 16px/1.6 var(--font-base);
  background: var(--bg-gradient);
  color: var(--text);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

.container {
  width: min(1440px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-main {
  flex: 1;
}


.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(12, 14, 26, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
}

.site-nav {
  display: flex;
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(77, 106, 255, 0.28);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(77, 106, 255, 0.32);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--accent);
  color: #fff;
}

.lang-switcher {
  position: relative;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 17, 29, 0.7);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.lang-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  list-style: none;
  margin: 0;
  padding: 6px;
  background: rgba(15, 17, 29, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 120px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  width: 100%;
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.lang-menu button:hover,
.lang-menu button:focus {
  background: var(--accent-soft);
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
  scroll-margin-top: 120px;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 6vw, 44px);
  line-height: 1.2;
}

.section-head p,
.section-note {
  margin: 16px auto 0;
  max-width: 580px;
  color: var(--muted);
}

.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;              /* чтобы край был чистым */
  margin-inline: calc(50% - 50vw - 5px);
  width: calc(100vw + 10px);
  min-height: clamp(680px, 92vh, 980px);
  border-radius: 0 0 48px 48px;  
  
  background-image: url("../images/Hero/most.jpg");
  background-size: cover;          /* заполняет, лишнее обрежет */
  background-position: 50% 15%;    /* фокус чуть выше центра */
  background-repeat: no-repeat;
  /* display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(620px, calc(100vw * 0.625), 900px);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 48px);
  background: url("../images/Hero/Background.png") center top / cover no-repeat;
  overflow: hidden; */
}


@media (max-width: 768px){
  .hero{
    background-image: url("../images/Hero/Background-mobile-1280.webp");
    background-position: 50% 0%;
  }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 6vw, 60px);
  width: min(92%, 1100px);
  height: 100%;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface-alt);
  box-shadow: var(--shadow);
  margin-inline: auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(36px, 6vw, 54px);
  line-height: 1.15;
}

.accent {
  color: transparent;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub,
.hero-note {
  margin: 0;
  color: var(--muted);
}

.hero-note {
  font-size: 14px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(320px, 100%);
  padding: 28px;
  border-radius: 24px;
  background: rgba(12, 14, 26, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card-label {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-card-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-card-list li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(77, 106, 255, 0.12);
  color: var(--text);
  font-weight: 600;
}

.about-section {
  position: relative;
  z-index: 0;
  margin-top: -8px;              /* подними на сколько нужно */
  padding: 0;
  padding-top: calc(120px + 8px);/* компенсируй отступ */
  padding-bottom: clamp(160px, 18vw, 240px);
  min-height: 1200px;
}

.about-section.is-empty {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(60% 60% at 18% 22%, rgba(77, 106, 255, 0.28), transparent 72%),
    radial-gradient(55% 55% at 82% 18%, rgba(188, 106, 255, 0.24), transparent 80%),
    linear-gradient(180deg, rgba(10, 13, 24, 0.65) 0%, rgba(10, 12, 22, 0.25) 100%);
  opacity: 0.55;
  pointer-events: none;
  z-index: -3;
}

.about-decor {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, 92vw);
  height: calc(100% + 220px);
  transform: translate(-50%, -40px);
  border-radius: 40px;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
  will-change: transform, opacity;
}

.about-section + .products {
  margin-top: calc(clamp(80px, 12vw, 160px) - 100px);
}

.about-spacer {
  width: min(1440px, 92vw);
  min-height: 1200px;
}

.about-section.is-empty .about-spacer {
  flex: 1;
}

.about-decor::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  background: radial-gradient(circle at 50% 45%, rgba(33, 41, 73, 0.65), transparent 70%);
  filter: blur(40px);
  opacity: 0.5;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(32px, 6vw, 60px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(15, 17, 29, 0.94) 0%, rgba(15, 17, 29, 0.78) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-summary p {
  color: var(--muted);
  max-width: 52ch;
}

.about-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.about-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.about-card-title--large {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.about-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-card-text + .about-card-text {
  margin-top: 12px;
}

.about-card-highlights {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-card-highlights li {
  margin: 0;
}

.about-card-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card-chip::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.about-card-chip:hover,
.about-card-chip:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.about-how {
  margin: clamp(110px, 12vw, 180px) auto 0;
  width: min(1200px, 92vw);
  display: grid;
  gap: clamp(32px, 5vw, 48px);
}

.about-how__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.about-how__title {
  margin: 0;
  padding: 14px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-style: italic;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.about-how__subtitle {
  margin: 0;
  color: rgba(239, 242, 246, 0.88);
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 500;
  max-width: 720px;
}

.about-how__description {
  margin: 6px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
}

.about-how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 4vw, 28px);
}

.about-how__step {
  position: relative;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 24px;
  background: rgba(15, 17, 29, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-how__step-number {
  position: absolute;
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(8px, 2.5vw, 20px);
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.about-how__step-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-how__step-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.about-how__step-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .about-how {
    gap: 32px;
  }

  .about-how__products {
    gap: 10px;
  }

  .about-how__product {
    padding: 8px 16px;
    font-size: 12px;
  }

  .about-how__steps {
    gap: 16px;
  }

  .about-how__step {
    padding: 22px;
  }

  .about-how__step-number {
    right: 16px;
    bottom: 12px;
  }
}

.about-carousel {
  --about-carousel-width: 800px;
  --about-carousel-height: clamp(260px, 32vw, 420px);
  position: relative;
  width: min(var(--about-carousel-width), 100%);
  display: block;
  margin-left: -15px;
  margin-right: auto;
  transform-style: preserve-3d;
  justify-self: start;
}

.about-carousel__track {
  position: relative;
  overflow: hidden;
  height: var(--about-carousel-height);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(6, 9, 20, 0.5);
  isolation: isolate;
}

.about-carousel__card {
  position: absolute;
  inset: 0;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 33, 50, 0.96), rgba(16, 23, 34, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(5, 8, 18, 0.55);
  display: grid;
  align-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateX(10%) scale(0.96);
  pointer-events: none;
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  backdrop-filter: blur(6px);
}

.about-carousel__card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.55;
}

.about-carousel__card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.about-carousel__card.is-left {
  opacity: 0;
  transform: translateX(-12%) scale(0.94) rotateY(6deg);
}

.about-carousel__card.is-right {
  opacity: 0;
  transform: translateX(12%) scale(0.94) rotateY(-6deg);
}

.about-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 11, 25, 0.6);
  color: var(--text);
  font-size: 34px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.about-carousel__nav--prev {
  left: -59px;
}

.about-carousel__nav--next {
  right: -59px;
}

.about-carousel__nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(10, 14, 28, 0.8);
}

.about-carousel__nav:active {
  transform: translateY(-50%) scale(0.96);
}

.about-carousel__dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.about-carousel__dot[aria-selected="true"],
.about-carousel__dot:hover {
  transform: scale(1.25);
}

.about-carousel__dot[aria-selected="true"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.about-decor-card,
.about-decor-orb,
.about-decor-line {
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}

.about-decor-card {
  width: var(--w, 320px);
  height: var(--h, 480px);
  top: var(--top, 50%);
  left: var(--left, 50%);
  background: var(--gradient, linear-gradient(160deg, rgba(77, 106, 255, 0.24) 0%, rgba(188, 106, 255, 0.14) 100%));
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(5, 8, 18, 0.55);
  opacity: var(--opacity, 0.22);
  mix-blend-mode: screen;
  animation: aboutFloat var(--duration, 16s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.about-decor-card::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.4;
}

.about-decor-orb {
  width: var(--w, 220px);
  height: var(--h, 220px);
  top: var(--top, 50%);
  left: var(--left, 50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(106, 147, 255, 0.55), rgba(52, 71, 132, 0.35) 45%, transparent 78%);
  opacity: var(--opacity, 0.35);
  filter: blur(0.5px) saturate(1.3);
  animation: aboutPulse var(--duration, 18s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.about-decor-line {
  width: var(--w, 220px);
  height: var(--h, 2px);
  top: var(--top, 50%);
  left: var(--left, 50%);
  transform-origin: center;
  background: linear-gradient(90deg, transparent 0%, rgba(170, 190, 255, 0.55) 45%, rgba(188, 106, 255, 0.55) 55%, transparent 100%);
  opacity: var(--opacity, 0.4);
  animation: aboutDrift var(--duration, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes aboutFloat {
  0% {
    transform: translate(calc(-50% - var(--floatX, 18px)), calc(-50% - var(--floatY, 24px))) rotate(var(--rotate, 0deg));
  }
  100% {
    transform: translate(calc(-50% + var(--floatX, 18px)), calc(-50% + var(--floatY, 24px))) rotate(var(--rotate, 0deg));
  }
}

@keyframes aboutPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: calc(var(--opacity, 0.35) * 0.85);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: calc(var(--opacity, 0.35) * 1.2);
  }
}

@keyframes aboutDrift {
  0% {
    transform: translate(-50%, -50%) rotate(var(--rotate, 0deg)) scaleX(0.9);
  }
  50% {
    transform: translate(-48%, -52%) rotate(var(--rotate, 0deg)) scaleX(1.05);
  }
  100% {
    transform: translate(-52%, -48%) rotate(var(--rotate, 0deg)) scaleX(0.95);
  }
}

.products {
  position: relative;
  padding-bottom: clamp(60px, 10vw, 110px);
  color: var(--text);
  background: #171717;
  border-radius: 48px;
  overflow: hidden;
}

.products .section-head h2 {
  color: #f7f8ff;
}

.products .section-head p {
  color: rgba(229, 232, 245, 0.78);
}

.product-controls {
  display: flex;
  justify-content: center;
  margin: clamp(26px, 6vw, 44px) 0 clamp(20px, 5vw, 36px);
}

.product-views {
  position: relative;
  min-height: var(--product-views-height, 0px);
  transition: min-height 0.35s ease;
}

.product-rotator {
  position: relative;
  min-height: 1.6em;
}

.product-rotator__line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-rotator__line.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.product-view {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.product-view.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-view-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(14, 17, 30, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  margin: 0 auto;
}

.product-view-toggle__btn {
  position: relative;
  border: none;
  background: transparent;
  color: rgba(233, 236, 247, 0.68);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px 8px 34px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product-view-toggle__btn::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(233, 236, 247, 0.38);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-view-toggle__btn.is-active {
  color: #f7f8ff;
  background: rgba(77, 106, 255, 0.18);
  box-shadow: 0 12px 28px rgba(10, 12, 24, 0.28);
}

.product-view-toggle__btn.is-active::before {
  background: linear-gradient(135deg, #a8b5ff, #6ddcff);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(77, 106, 255, 0.16);
}

.product-view-toggle__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(118, 141, 255, 0.35);
}

.product-view {
  margin-top: clamp(18px, 4vw, 32px);
}

.product-view.is-hidden {
  display: none;
}

.products-note {
  margin-top: clamp(24px, 5vw, 38px);
  text-align: center;
  color: rgba(229, 232, 245, 0.72);
  font-size: 15px;
}

@media (max-width: 640px) {
  .product-view-toggle {
    flex-direction: column;
    gap: 8px;
    width: min(320px, 100%);
  }

  .product-view-toggle__btn {
    width: 100%;
    justify-content: center;
    padding-left: 40px;
  }

  .product-view-toggle__btn::before {
    left: 18px;
  }
}

.cases {
  position: relative;
  color: var(--text);
}

.cases .section-head h2 {
  color: #f7f8ff;
}

.cases .section-head p {
  color: rgba(229, 232, 245, 0.72);
}

.cases .section-head p {
  color: #4f586d;
}

.product-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.product-scroller::-webkit-scrollbar {
  height: 6px;
}

.product-scroller::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}

.product-card {
  scroll-snap-align: start;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 17, 29, 0.08);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 310px;
  min-height: 420px;
  box-shadow: 0 22px 45px rgba(10, 12, 22, 0.08);
}

.product-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6a7490;
}

.product-card h3 {
  margin: 0;
  font-size: 20px;
  color: #1b2b4f;
}

.product-card p {
  margin: 0;
  color: #4d586e;
  flex: 1;
}

.product-link {
  color: #4d6aff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-link::after {
  content: "›";
  font-size: 18px;
  transform: translateY(-1px);
  transition: transform 0.2s ease;
  color: inherit;
}

.product-link:hover::after,
.product-link:focus::after {
  transform: translateX(4px);
}

.grid-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card,
.assurance-card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(15, 17, 29, 0.82);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.case-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 17, 29, 0.08);
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 20px 55px rgba(8, 11, 25, 0.08);
}

.price-card.highlight {
  background: rgba(77, 106, 255, 0.12);
  border-color: rgba(77, 106, 255, 0.32);
}

.price-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.price-description {
  margin: 12px 0 18px;
  color: var(--text);
  font-weight: 600;
}

.price-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.case-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #1b2b4f;
}

.case-card p {
  margin: 0;
  color: #4f596f;
}

.assurance-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--text);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 60px);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(15, 17, 29, 0.9);
  box-shadow: var(--shadow);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info p {
  color: var(--muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-label {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-list a {
  color: #fff;
  text-decoration: none;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(10, 12, 24, 0.9);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(77, 106, 255, 0.4);
  outline-offset: 2px;
}

.page-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: rgba(10, 12, 24, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 18px;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: clamp(24px, 4vw, 36px) auto 0;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(12, 14, 26, 0.8);
  backdrop-filter: blur(12px);
}

.pricing-toggle-btn {
  position: relative;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pricing-toggle-btn.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pricing-toggle-btn.is-active .pricing-toggle-badge {
  background: rgba(77, 106, 255, 0.18);
}

.pricing-toggle-btn:focus-visible {
  outline: 2px solid rgba(77, 106, 255, 0.45);
  outline-offset: 2px;
}

.pricing-toggle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  margin-left: 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: rgba(77, 106, 255, 0.12);
}

.pricing-grid {
  margin-top: clamp(32px, 6vw, 52px);
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(15, 17, 29, 0.85);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 360px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(140% 120% at 50% -10%, rgba(77, 106, 255, 0.22), transparent 65%);
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before,
.pricing-card:focus-within::before {
  opacity: 1;
}

.pricing-card.is-highlighted {
  background: linear-gradient(150deg, rgba(77, 106, 255, 0.2), rgba(10, 12, 24, 0.9));
  border-color: rgba(77, 106, 255, 0.4);
}

.pricing-card.is-highlighted::before {
  opacity: 1;
}

.pricing-card.is-pulse-highlight {
  border-color: rgba(77, 106, 255, 0.65);
  box-shadow: 0 0 0 2px rgba(77, 106, 255, 0.45), 0 20px 52px rgba(20, 24, 52, 0.55);
  animation: pricingCardPulse 1.6s ease-in-out 2;
}

.pricing-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-tier {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(77, 106, 255, 0.32);
  box-shadow: 0 10px 26px rgba(77, 106, 255, 0.35);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
}

.pricing-symbol {
  font-size: 20px;
  color: var(--muted);
}

.pricing-value {
  font-size: clamp(32px, 5vw, 42px);
}

.pricing-period {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.pricing-description {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.pricing-features li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(77, 106, 255, 0.8), rgba(188, 106, 255, 0.8));
  opacity: 0.9;
  flex: none;
}

.btn-full {
  width: 100%;
}

@media (max-width: 640px) {
  .pricing-toggle {
    flex-direction: column;
    width: 100%;
    padding: 8px;
  }

  .pricing-toggle-btn {
    width: 100%;
    text-align: center;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-card {
    padding: 20px;
  }

  .about-carousel {
    width: 100%;
    margin-top: 32px;
    margin-left: 0;
  }

  .about-carousel__nav {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .about-carousel__nav--prev {
    left: -23px;
  }

  .about-carousel__nav--next {
    right: -23px;
  }

  .about-carousel__dots {
    margin-top: 12px;
  }

  .about-decor {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .contact-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .about-decor {
    height: calc(100% + 160px);
    transform: translate(-50%, -28px);
    border-radius: 32px;
  }

  .about-carousel {
    justify-self: center;
    width: min(520px, 100%);
    margin-left: 0;
  }

  .about-carousel__dots {
    padding-top: 18px;
  }

  .hero-card {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 6vw, 60px);
  width: min(92%, 1100px);
  height: 100%;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface-alt);
  box-shadow: var(--shadow);
  margin-inline: auto;
}

  .product-scroller {
    grid-auto-columns: minmax(310px, 85vw);
  }

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

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











.about-card-title--medium {
  font-size: clamp(22px, 3.4vw, 26px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.about-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.about-card-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.about-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1.6;
}



/* Orbital timeline */
.orbital-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbital-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.legend-dot--active {
  background: linear-gradient(135deg, #a8b5ff, #6ddcff);
}

.legend-dot--related {
  background: rgba(255, 255, 255, 0.16);
}

.orbital-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-inline: auto;
  width: min(540px, 92vw);
}

.orbital-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: visible;
}

.orbital-backdrop {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(150, 170, 255, 0.24), rgba(8, 9, 16, 0.08) 72%);
  filter: blur(4px);
}

.orbital-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  z-index: 20;
}

.orbital-core-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 150, 255, 0.32), rgba(20, 20, 34, 0));
  animation: orbitalCoreGlow 4s ease-in-out infinite alternate;
}

.orbital-core-inner {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(10, 11, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dce3ff;
}

.orbital-core-inner strong {
  font-size: 18px;
}

.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.orbital-ring--outer {
  width: 420px;
  height: 420px;
}

.orbital-ring--inner {
  width: 250px;
  height: 250px;
  opacity: 0.4;
}

.orbital-nodes {
  position: absolute;
  inset: 0;
}

.orbital-node {
  position: absolute;
  transform-origin: center;
  transition: transform 0.6s ease, opacity 0.6s ease, z-index 0.2s;
}

.orbital-node-button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  background: rgba(8, 9, 16, 0.78);
  color: #f8f8fc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.orbital-node-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.6;
}

.orbital-node-label {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(233, 236, 247, 0.7);
  white-space: nowrap;
}

.orbital-node-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 180, 255, 0.35), rgba(12, 18, 32, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.orbital-node.is-expanded .orbital-node-button {
  transform: scale(1.35);
  background: #ffffff;
  color: #1b1d28;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(3, 4, 10, 0.4);
}

.orbital-node.is-expanded .orbital-node-label {
  color: #fdfdff;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.orbital-node.is-expanded .orbital-node-glow,
.orbital-node.is-related .orbital-node-glow {
  opacity: 1;
}

.orbital-node.is-related .orbital-node-button {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.18);
}

.orbital-node.is-pulsing .orbital-node-button::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: orbitalPulse 1.6s ease-in-out infinite;
}

.orbital-panel {
  position: relative;
  margin: clamp(28px, 6vw, 56px) auto 0;
  width: min(520px, 92vw);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 16, 0.6);
  padding: clamp(24px, 4vw, 40px);
  min-height: 220px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.orbital-panel-placeholder {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(233, 236, 247, 0.74);
}

.orbital-panel-placeholder h3 {
  margin: 0;
  font-size: 20px;
  color: #f7f8ff;
}

.orbital-detail {
  display: grid;
  gap: 16px;
}

.orbital-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.orbital-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.orbital-badge--complete {
  color: #101116;
  background: #f0f4ff;
}

.orbital-badge--progress {
  color: #f0f5ff;
  background: rgba(104, 134, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.orbital-badge--pending {
  color: #f7f8ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.orbital-detail h4 {
  margin: 0;
  font-size: 18px;
  color: #fdfdff;
}

.orbital-detail p {
  margin: 0;
  color: rgba(233, 236, 247, 0.82);
  line-height: 1.6;
}

.orbital-meter {
  margin-top: 8px;
}

.orbital-meter-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(229, 232, 245, 0.72);
  margin-bottom: 6px;
}

.orbital-meter-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.orbital-meter-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #60a5fa, #a855f7);
}

.orbital-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.orbital-actions {
  display: flex;
  margin-top: 14px;
}

.orbital-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.orbital-cta:hover,
.orbital-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
}

.orbital-related-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 247, 251, 0.86);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.orbital-related-btn:hover,
.orbital-related-btn:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.orbital-related-empty {
  font-size: 13px;
  color: rgba(233, 236, 247, 0.6);
}

@keyframes pricingCardPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(77, 106, 255, 0), 0 12px 32px rgba(12, 16, 36, 0.42);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 0 0 6px rgba(77, 106, 255, 0.22), 0 24px 60px rgba(24, 28, 58, 0.62);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(77, 106, 255, 0), 0 12px 32px rgba(12, 16, 36, 0.42);
  }
}

@keyframes orbitalPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes orbitalCoreGlow {
  0% {
    transform: scale(0.92);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .orbital-stage {
    width: min(400px, 92vw);
  }

  .orbital-ring--outer {
    width: 320px;
    height: 320px;
  }

  .orbital-ring--inner {
    width: 200px;
    height: 200px;
  }

  .orbital-node-label {
    top: 52px;
    font-size: 11px;
  }
}
