@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oxanium:wght@400;500;600;700;800&display=swap');.border-glow-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 30;
  --color-sensitivity: calc(var(--edge-sensitivity) + 20);
  --border-radius: 24px;
  --glow-padding: 38px;
  --cone-spread: 25;

  position: relative;
  display: grid;
  min-width: 0;
  border: 1px solid rgba(177, 200, 255, 0.13);
  border-radius: var(--border-radius);
  isolation: isolate;
  background: var(--card-bg, #070b14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.025);
  transform: translate3d(0, 0, 0.01px);
}

.border-glow-card::before,
.border-glow-card::after,
.border-glow-card > .edge-light {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transition: opacity 250ms ease-out;
}

.border-glow-card:not(:hover):not(.sweep-active)::before,
.border-glow-card:not(:hover):not(.sweep-active)::after,
.border-glow-card:not(:hover):not(.sweep-active) > .edge-light {
  opacity: 0;
  transition: opacity 650ms ease-in-out;
}

.border-glow-card::before {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card-bg, #070b14) 0 100%) padding-box,
    linear-gradient(rgba(255, 255, 255, 0) 0 100%) border-box,
    var(--gradient-one) border-box,
    var(--gradient-two) border-box,
    var(--gradient-three) border-box,
    var(--gradient-four) border-box,
    var(--gradient-five) border-box,
    var(--gradient-six) border-box,
    var(--gradient-seven) border-box,
    var(--gradient-base) border-box;
  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  mask-image: conic-gradient(
    from var(--cursor-angle) at center,
    black calc(var(--cone-spread) * 1%),
    transparent calc((var(--cone-spread) + 15) * 1%),
    transparent calc((100 - var(--cone-spread) - 15) * 1%),
    black calc((100 - var(--cone-spread)) * 1%)
  );
  -webkit-mask-image: conic-gradient(
    from var(--cursor-angle) at center,
    black calc(var(--cone-spread) * 1%),
    transparent calc((var(--cone-spread) + 15) * 1%),
    transparent calc((100 - var(--cone-spread) - 15) * 1%),
    black calc((100 - var(--cone-spread)) * 1%)
  );
}

.border-glow-card::after {
  border: 1px solid transparent;
  background:
    var(--gradient-one) padding-box,
    var(--gradient-two) padding-box,
    var(--gradient-three) padding-box,
    var(--gradient-four) padding-box,
    var(--gradient-five) padding-box,
    var(--gradient-six) padding-box,
    var(--gradient-seven) padding-box,
    var(--gradient-base) padding-box;
  opacity: calc(var(--fill-opacity, 0.34) * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  mask-image: radial-gradient(ellipse at 50% 50%, black 8%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 8%, transparent 72%);
  mix-blend-mode: soft-light;
}

.border-glow-card > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  z-index: 1;
  pointer-events: none;
  opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
  mask-image: conic-gradient(from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%);
  -webkit-mask-image: conic-gradient(from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%);
  mix-blend-mode: plus-lighter;
}

.border-glow-card > .edge-light::before {
  content: '';
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px var(--glow-color),
    inset 0 0 4px var(--glow-color-50),
    inset 0 0 14px var(--glow-color-30),
    inset 0 0 34px var(--glow-color-10),
    0 0 3px var(--glow-color-50),
    0 0 12px var(--glow-color-30),
    0 0 36px var(--glow-color-10);
}

.border-glow-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border-radius: calc(var(--border-radius) - 1px);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .border-glow-card::before,
  .border-glow-card::after,
  .border-glow-card > .edge-light {
    display: none;
  }
}
:root {
  --page: #02040a;
  --page-soft: #050812;
  --surface: rgba(6, 10, 20, 0.78);
  --surface-strong: rgba(7, 11, 22, 0.96);
  --white: #f8faff;
  --text: #dbe2f2;
  --muted: #929db6;
  --line: rgba(144, 175, 232, 0.14);
  --line-strong: rgba(102, 178, 255, 0.38);
  --blue: #347dff;
  --cyan: #69d9ff;
  --violet: #4652ff;
  --font-tech: 'Oxanium', 'Inter', sans-serif;
}

.app {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
  color: var(--white);
  background-color: var(--page);
}

main,
.main-navigation,
.footer {
  position: relative;
  z-index: 5;
}

.page-section {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--cyan);
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-title {
  display: block;
  max-width: 960px;
  margin: 0;
  font-family: var(--font-tech);
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-description {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

.aurora-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(15, 39, 89, 0.25), transparent 42%),
    linear-gradient(180deg, #02040a 0%, #050813 58%, #02040a 100%);
}

.aurora-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 18%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.58));
}

.aurora-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  pointer-events: none;
}

.cursor-glow {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  opacity: 0.64;
  background: radial-gradient(circle, rgba(59, 151, 255, 0.3), rgba(66, 72, 210, 0.12) 40%, transparent 72%);
  filter: blur(12px);
  mix-blend-mode: screen;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 9px white, 0 0 24px rgba(52, 142, 255, 0.95);
}

.blur-text-piece {
  display: inline-block;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 780ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 780ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blur-text-piece.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.decrypted-text {
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
}

.decrypted-text:not(.is-decrypted) {
  color: #8acbff;
  text-shadow: 0 0 18px rgba(53, 145, 255, 0.4);
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #3b78ff 8%, #6cdcff 36%, #ffffff 52%, #8fa8ff 72%, #3c6aff 92%);
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradientSweep 5s linear infinite;
  filter: drop-shadow(0 0 20px rgba(58, 123, 255, 0.24));
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
}

.intro-panel {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 51%;
  overflow: hidden;
  background: rgba(1, 3, 9, 0.87);
  backdrop-filter: blur(14px);
}

.intro-panel::before {
  content: '';
  position: absolute;
  inset: -28%;
  background:
    radial-gradient(circle at 20% 70%, rgba(44, 100, 255, 0.24), transparent 34%),
    radial-gradient(circle at 68% 45%, rgba(255, 255, 255, 0.11), transparent 30%);
  filter: blur(20px);
}

.intro-panel-top { top: 0; }
.intro-panel-bottom { bottom: 0; }

.intro-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1080px, calc(100% - 38px));
  padding: 26px 20px;
  text-align: center;
  perspective: 1000px;
}

.intro-copy {
  position: relative;
  z-index: 4;
}

.intro-eyebrow {
  margin: 0 0 14px;
  color: rgba(237, 243, 255, 0.7);
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.38em;
}

.intro-title-mask {
  overflow: hidden;
  padding: 8px 0;
}

.intro-title {
  display: flex;
  justify-content: center;
  margin: 0;
  font-family: var(--font-tech);
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.075em;
}

.intro-letter {
  display: inline-block;
  transform-origin: center bottom;
}

.intro-logo-wrap {
  position: relative;
  width: min(760px, 80vw);
  height: clamp(145px, 18vw, 210px);
  margin: 12px auto 18px;
  overflow: hidden;
  isolation: isolate;
}

.intro-logo-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(53, 128, 255, 0.32));
  will-change: transform, filter;
}

.intro-logo-light {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 74%;
  height: 48%;
  border-radius: 48%;
  background: linear-gradient(90deg, rgba(23, 116, 255, 0.7), rgba(255, 255, 255, 0.4));
  filter: blur(52px);
  transform: translate(-50%, -50%);
  animation: introGlow 6s ease-in-out infinite alternate;
}

.intro-description {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(220, 226, 240, 0.7);
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  line-height: 1.72;
}

.tech-start {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 330px;
  margin-top: 30px;
  padding: 18px 34px;
  border: 0;
  color: rgba(240, 246, 255, 0.9);
  background: transparent;
  font-family: var(--font-tech);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 300ms ease, letter-spacing 300ms ease, filter 300ms ease, transform 300ms ease;
}

.tech-start::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(63, 145, 255, 0.24);
  border-bottom: 1px solid rgba(63, 145, 255, 0.24);
  background: linear-gradient(90deg, transparent, rgba(26, 108, 255, 0.08), transparent);
  backdrop-filter: blur(10px);
  transform: scaleX(0.82);
  transition: transform 400ms ease, border-color 300ms ease, background 300ms ease;
}

.tech-start > span:not(.tech-start-corner):not(.tech-start-scan) {
  position: relative;
  z-index: 3;
}

.tech-start-scan {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1b86ff, #9fd1ff, transparent);
  box-shadow: 0 0 10px rgba(24, 127, 255, 0.9), 0 0 24px rgba(24, 127, 255, 0.6);
  transform: translateX(-50%);
  transition: width 420ms ease;
}

.tech-start-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #66b6ff;
  box-shadow: 0 0 8px #369bff, 0 0 18px #147cff;
  animation: startDotPulse 1.5s ease-in-out infinite;
}

.tech-start-corner {
  position: absolute;
  z-index: 5;
  width: 13px;
  height: 13px;
  opacity: 0.6;
  transition: width 320ms ease, height 320ms ease, opacity 320ms ease;
}

.corner-top-left { top: 0; left: 0; border-top: 1px solid #278dff; border-left: 1px solid #278dff; }
.corner-top-right { top: 0; right: 0; border-top: 1px solid #278dff; border-right: 1px solid #278dff; }
.corner-bottom-left { bottom: 0; left: 0; border-bottom: 1px solid #278dff; border-left: 1px solid #278dff; }
.corner-bottom-right { right: 0; bottom: 0; border-right: 1px solid #278dff; border-bottom: 1px solid #278dff; }

.tech-start:hover {
  color: #fff;
  letter-spacing: 0.33em;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 14px rgba(47, 136, 255, 0.5));
}

.tech-start:hover::before {
  border-color: rgba(59, 150, 255, 0.62);
  background: linear-gradient(90deg, transparent, rgba(30, 113, 255, 0.15), transparent);
  transform: scaleX(1);
}

.tech-start:hover .tech-start-scan { width: 82%; }
.tech-start:hover .tech-start-corner { width: 19px; height: 19px; opacity: 1; }

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(24px, 4.5vw, 72px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  backdrop-filter: blur(2px);
}

.brand-logo,
.footer-logo {
  position: relative;
  display: block;
  width: clamp(180px, 17vw, 250px);
  height: 54px;
  overflow: hidden;
}

.brand-logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 12px rgba(52, 130, 255, 0.18));
}

.navigation-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.3vw, 54px);
  padding-bottom: 10px;
}

.navigation-menu a {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-tech);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 220ms ease;
}

.navigation-menu a:hover,
.navigation-menu a.is-active {
  color: white;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  opacity: 0;
  pointer-events: none;
}

.nav-indicator-glow {
  position: absolute;
  inset: -10px -14px;
  border-radius: 999px;
  background: rgba(23, 115, 255, 0.65);
  filter: blur(11px);
  animation: navGlowDrift 2.4s ease-in-out infinite alternate;
}

.nav-indicator-line {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #146dff, #64bdff);
  box-shadow: 0 0 9px rgba(48, 141, 255, 0.95), 0 0 22px rgba(30, 114, 255, 0.55);
}

.neo-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 25px;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  color: white;
  background: linear-gradient(45deg, #25ccff, #286eff, #4a46e8);
  font-family: var(--font-tech);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 240ms ease;
}

.neo-button span,
.neo-button svg {
  position: relative;
  z-index: 2;
}

.neo-button::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background: rgba(5, 8, 17, 0.96);
  transition: opacity 450ms ease, background 450ms ease;
}

.neo-button::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 18px;
  opacity: 0;
  background: linear-gradient(45deg, #25ccff, #286eff, #4a46e8);
  filter: blur(20px);
  transition: opacity 450ms ease;
}

.neo-button:hover {
  transform: translateY(-3px);
}

.neo-button:hover::before {
  opacity: 0.72;
  background: rgba(6, 12, 27, 0.88);
}

.neo-button:hover::after {
  opacity: 1;
}

.neo-button-secondary::before {
  background: rgba(6, 9, 17, 0.98);
}

.neo-button-wide {
  width: 100%;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  min-height: 100svh;
  padding-top: 128px;
  padding-bottom: 86px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: var(--font-tech);
  font-size: clamp(4rem, 7.6vw, 8.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hero-title-line,
.hero-gradient-line {
  display: block;
}

.hero-description {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

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

.phone-scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
  perspective: 1450px;
}

.phone-aura {
  position: absolute;
  width: min(520px, 90%);
  height: 580px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(77, 159, 255, 0.28), rgba(55, 78, 224, 0.12) 48%, transparent 72%);
  filter: blur(38px);
  animation: phoneAura 5s ease-in-out infinite alternate;
}

.phone-device {
  position: relative;
  width: min(390px, 76vw);
  height: min(760px, 75vh);
  padding: 11px;
  border: 1px solid rgba(180, 205, 255, 0.3);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(25, 41, 77, 0.12) 35%, rgba(0, 0, 0, 0.9) 80%),
    #080b12;
  box-shadow:
    -35px 40px 85px rgba(0, 0, 0, 0.62),
    0 0 35px rgba(70, 143, 255, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.22);
  transform: rotateY(-10deg) rotateX(3deg) rotateZ(2deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-device::before {
  content: '';
  position: absolute;
  inset: 7px;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 41px;
  pointer-events: none;
}

.phone-side {
  position: absolute;
  z-index: 7;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(#91a8ce, #25354e);
}

.phone-side-left { left: -3px; top: 150px; height: 92px; }
.phone-side-right { right: -3px; top: 190px; height: 126px; }

.phone-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 8;
  width: 74px;
  height: 5px;
  border-radius: 99px;
  background: #06080c;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 39px;
  background: #121212;
}

.phone-screen img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-glass {
  position: absolute;
  inset: 11px;
  z-index: 5;
  border-radius: 39px;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.18), transparent 22%, transparent 66%, rgba(94, 155, 255, 0.06));
  mix-blend-mode: screen;
}

.phone-caption {
  position: absolute;
  right: 2%;
  bottom: 4%;
  color: rgba(215, 228, 255, 0.44);
  font-family: var(--font-tech);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  transform: rotate(90deg);
}

.hero-scroll {
  position: absolute;
  right: clamp(26px, 5vw, 75px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-tech);
  font-size: 0.59rem;
  letter-spacing: 0.2em;
}

.hero-scroll-line {
  position: relative;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.hero-scroll-line i {
  position: absolute;
  inset: 0;
  background: #4b9bff;
  animation: scrollMove 2s ease-in-out infinite;
}

.ecosystem-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  min-height: 100svh;
  padding-top: 110px;
  padding-bottom: 110px;
}

.orbit-window {
  position: relative;
  height: min(720px, 78vh);
  min-height: 580px;
  overflow: hidden;
  border-radius: 44px;
  background:
    radial-gradient(circle at center, rgba(44, 104, 255, 0.12), transparent 52%),
    rgba(3, 6, 14, 0.28);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
}

.orbit-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 78vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(83, 154, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 40px rgba(43, 102, 255, 0.03), 0 0 34px rgba(56, 134, 255, 0.03);
}

.orbit-path-outer { width: 86%; aspect-ratio: 1; }
.orbit-path-inner { width: 57%; aspect-ratio: 1; border-style: dashed; }

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(120, 178, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 31, 69, 0.92), rgba(3, 7, 15, 0.78));
  box-shadow: 0 0 80px rgba(50, 123, 255, 0.16), inset 0 0 45px rgba(71, 137, 255, 0.08);
  transform: translate(-50%, -50%);
}

.orbit-core > span,
.orbit-core > small {
  color: rgba(222, 232, 255, 0.5);
  font-family: var(--font-tech);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.orbit-logo-crop {
  position: relative;
  width: 190px;
  height: 58px;
  margin: 8px 0 2px;
  overflow: hidden;
}

.orbit-logo-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.orbit-runner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.orbit-runner-outer {
  --orbit-radius: clamp(210px, 25vw, 292px);
  animation-name: orbitOuter;
  animation-duration: 28s;
  animation-delay: calc(var(--orbit-index) * -7s);
}

.orbit-runner-inner {
  --orbit-radius: clamp(145px, 17vw, 194px);
  animation-name: orbitInner;
  animation-duration: 20s;
  animation-delay: calc(var(--orbit-index) * -6.666s);
}

.orbit-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 58px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid rgba(120, 186, 255, 0.22);
  border-radius: 20px;
  color: #9fd7ff;
  background: rgba(6, 12, 25, 0.86);
  box-shadow: 0 13px 38px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.orbit-bubble span {
  width: 0;
  overflow: hidden;
  color: white;
  font-size: 0.73rem;
  white-space: nowrap;
  opacity: 0;
  transition: width 300ms ease, opacity 250ms ease;
}

.orbit-bubble:hover {
  z-index: 10;
  border-color: rgba(94, 189, 255, 0.62);
  box-shadow: 0 15px 50px rgba(32, 112, 255, 0.3), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%) scale(1.08);
}

.orbit-bubble:hover span {
  width: 118px;
  opacity: 1;
}

.what-section {
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 130px;
}

.what-heading {
  max-width: 1100px;
}

.what-title {
  display: block;
  margin: 0;
  font-family: var(--font-tech);
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.what-intro {
  max-width: 760px;
  margin: 44px 0 80px auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
}

.operation-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(35px, 6vw, 90px);
  padding-top: 30px;
}

.operation-line {
  position: absolute;
  top: 65px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82, 152, 255, 0.62), rgba(106, 217, 255, 0.4), transparent);
  box-shadow: 0 0 16px rgba(62, 132, 255, 0.28);
}

.operation-step {
  position: relative;
  z-index: 2;
  padding: 0 8px;
}

.operation-index {
  display: block;
  margin-bottom: 20px;
  color: rgba(159, 183, 230, 0.4);
  font-family: var(--font-tech);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.operation-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border: 1px solid rgba(99, 178, 255, 0.36);
  border-radius: 50%;
  color: var(--cyan);
  background: radial-gradient(circle, rgba(49, 106, 255, 0.22), rgba(5, 9, 18, 0.92));
  box-shadow: 0 0 30px rgba(49, 114, 255, 0.16);
}

.operation-step h3 {
  margin: 0 0 12px;
  font-family: var(--font-tech);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.operation-step p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.functions-section {
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 140px;
}

.functions-heading {
  display: grid;
  grid-template-columns: 1fr minmax(270px, 430px);
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
}

.functions-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.72;
}

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

.feature-glow {
  min-height: 190px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 26px 24px;
  border-radius: 23px;
  background:
    linear-gradient(130deg, rgba(21, 40, 76, 0.28), rgba(3, 7, 14, 0.22) 55%),
    transparent;
  transition: transform 250ms ease, background 250ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(130deg, rgba(35, 75, 145, 0.32), rgba(4, 8, 17, 0.2) 60%);
}

.feature-number {
  display: block;
  margin-bottom: 14px;
  color: rgba(112, 184, 255, 0.58);
  font-family: var(--font-tech);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-tech);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(73, 149, 255, 0.28);
  border-radius: 20px;
  color: #5da7ff;
  background: rgba(10, 22, 48, 0.62);
  box-shadow: inset 0 0 20px rgba(55, 111, 255, 0.08);
}

.contact-section {
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 140px;
}

.contact-heading {
  margin-bottom: 60px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.contact-information {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-intro {
  padding: 8px 0 30px;
}

.contact-intro > span,
.form-heading > span {
  color: var(--cyan);
  font-family: var(--font-tech);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.contact-intro h3 {
  margin: 18px 0 14px;
  font-family: var(--font-tech);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.05;
}

.contact-intro p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(139, 178, 235, 0.12);
  border-radius: 18px;
  color: var(--text);
  background: rgba(5, 9, 18, 0.5);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.contact-row:hover {
  transform: translateX(5px);
  border-color: rgba(85, 164, 255, 0.38);
  background: rgba(10, 19, 39, 0.72);
}

.contact-row-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(30, 91, 209, 0.16);
}

.contact-row small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-card-shell {
  padding: 1px;
  border-radius: 28px;
  background: linear-gradient(145deg, #25ccff, #286eff, #4a46e8);
  transition: box-shadow 300ms ease;
}

.contact-card-shell:hover {
  box-shadow: 0 0 36px rgba(46, 119, 255, 0.28);
}

.contact-card-inner {
  height: 100%;
  padding: 34px;
  border-radius: 27px;
  background: rgba(7, 10, 18, 0.97);
  backdrop-filter: blur(18px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-heading {
  margin-bottom: 15px;
}

.form-heading strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-tech);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.form-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 17px;
  border: 1px solid rgba(147, 176, 225, 0.14);
  border-radius: 16px;
  color: rgba(170, 196, 240, 0.72);
  background: rgba(13, 17, 27, 0.9);
  box-shadow: inset 2px 5px 12px rgba(0, 0, 0, 0.45);
  transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.form-field:focus-within {
  border-color: rgba(78, 164, 255, 0.7);
  background: rgba(12, 21, 39, 0.94);
  box-shadow: inset 2px 5px 12px rgba(0, 0, 0, 0.42), 0 0 22px rgba(47, 124, 255, 0.14);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  font: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(154, 164, 187, 0.72);
}

.form-field-message {
  align-items: flex-start;
  min-height: 150px;
  padding-block: 16px;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(144, 156, 182, 0.58);
  font-size: 0.75rem;
  text-align: center;
}

.about-section {
  padding-top: 130px;
  padding-bottom: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: end;
}

.about-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.about-principles article {
  display: grid;
  grid-template-columns: 58px 130px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.about-principles span {
  color: rgba(100, 171, 255, 0.52);
  font-family: var(--font-tech);
  font-size: 0.66rem;
}

.about-principles strong {
  font-family: var(--font-tech);
  font-size: 1.15rem;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.privacy-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 90px;
  padding: 34px;
  border: 1px solid rgba(111, 177, 255, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(24, 57, 116, 0.32), rgba(6, 10, 20, 0.86) 54%, rgba(20, 33, 70, 0.48)),
    rgba(5, 8, 16, 0.86);
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.privacy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(88, 174, 255, 0.52);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4), 0 0 36px rgba(48, 118, 255, 0.14);
}

.privacy-card-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  color: var(--cyan);
  background: rgba(42, 100, 220, 0.16);
}

.privacy-card > div:nth-child(2) > span {
  color: var(--cyan);
  font-family: var(--font-tech);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.privacy-card h3 {
  margin: 9px 0 8px;
  font-family: var(--font-tech);
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
}

.privacy-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-button {
  white-space: nowrap;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 34px clamp(24px, 5vw, 80px) 46px;
  border-top: 1px solid var(--line);
  color: rgba(175, 187, 214, 0.62);
}

.footer-logo {
  width: 160px;
  height: 44px;
}

.footer p {
  margin: 0;
  font-size: 0.84rem;
}

.footer > div {
  display: flex;
  gap: 20px;
}

.footer button,
.footer a:not(.footer-logo) {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
}

.footer button:hover,
.footer a:not(.footer-logo):hover {
  color: white;
}

.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(39, 89, 190, 0.22), transparent 42%),
    rgba(0, 2, 8, 0.96);
  transform: translateZ(0);
}

.privacy-shell {
  position: relative;
  z-index: 1;
  width: min(1050px, 100%);
  max-height: calc(100svh - 48px);
  overflow: hidden;
  border: 1px solid rgba(111, 177, 255, 0.28);
  border-radius: 28px;
  background: #060911;
  transform: translateZ(0);
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.66), 0 0 48px rgba(47, 119, 255, 0.14);
}

.privacy-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(31, 74, 147, 0.25), rgba(6, 9, 17, 0.95));
}

.privacy-header span {
  color: var(--cyan);
  font-family: var(--font-tech);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.privacy-header h2 {
  margin: 8px 0 5px;
  font-family: var(--font-tech);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.privacy-header p {
  margin: 0;
  color: var(--muted);
}

.privacy-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.privacy-close:hover {
  border-color: rgba(96, 174, 255, 0.55);
  background: rgba(51, 113, 230, 0.13);
}

.privacy-body {
  max-height: calc(100svh - 190px);
  overflow: auto;
  padding: 30px;
  color: #cbd4e8;
  scrollbar-color: #347dff rgba(255, 255, 255, 0.04);
}

.privacy-intro {
  margin: 0 0 18px;
  color: #e3e9f6;
  line-height: 1.78;
}

.privacy-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.privacy-section h3 {
  margin: 0 0 14px;
  font-family: var(--font-tech);
  font-size: 1.15rem;
}

.privacy-section p,
.privacy-section li {
  color: #aeb9d0;
  line-height: 1.72;
}

.privacy-section p {
  margin: 0 0 12px;
}

.privacy-section ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.privacy-review-note {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 196, 92, 0.22);
  border-radius: 18px;
  color: #d6c49f;
  background: rgba(122, 82, 16, 0.08);
  line-height: 1.65;
}

@keyframes gradientSweep {
  to { background-position: 220% center; }
}

@keyframes introGlow {
  from { opacity: 0.7; transform: translate(-54%, -50%) scaleX(0.92); }
  to { opacity: 1; transform: translate(-46%, -50%) scaleX(1.08); }
}

@keyframes startDotPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes navGlowDrift {
  from { transform: translateX(-4px) scaleX(0.9); opacity: 0.6; }
  to { transform: translateX(4px) scaleX(1.12); opacity: 1; }
}

@keyframes phoneAura {
  from { transform: translate3d(-24px, -14px, 0) scale(0.94); opacity: 0.55; }
  to { transform: translate3d(28px, 18px, 0) scale(1.08); opacity: 0.9; }
}

@keyframes scrollMove {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@keyframes orbitOuter {
  from { transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); }
}

@keyframes orbitInner {
  from { transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); }
  to { transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); }
}

@media (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea {
    cursor: none;
  }
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
    gap: 30px;
  }

  .phone-device {
    width: 330px;
    height: 650px;
  }

  .ecosystem-section {
    grid-template-columns: 1fr;
  }

  .ecosystem-copy {
    max-width: 850px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .privacy-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .main-navigation {
    padding: 16px 20px;
  }

  .brand-logo {
    width: 170px;
    height: 48px;
  }

  .navigation-menu {
    gap: 20px;
  }

  .navigation-menu a {
    font-size: 0.64rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .phone-scene {
    min-height: 690px;
  }

  .phone-device {
    width: 350px;
    height: 680px;
    transform: rotateY(-5deg) rotateX(2deg) rotateZ(1deg);
  }

  .operation-flow {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .operation-line {
    top: 20px;
    bottom: 20px;
    left: 34px;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, rgba(82, 152, 255, 0.62), transparent);
  }

  .operation-step {
    padding-left: 98px;
  }

  .operation-index {
    position: absolute;
    top: 0;
    left: 0;
  }

  .operation-icon {
    position: absolute;
    top: 28px;
    left: 0;
  }

  .functions-heading,
  .contact-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-principles {
    margin-top: 20px;
  }

  .privacy-card {
    grid-template-columns: 1fr;
  }

  .privacy-button {
    grid-column: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo,
  .footer > div {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .page-section {
    padding-inline: 20px;
  }

  .main-navigation {
    align-items: flex-start;
  }

  .brand-logo {
    width: 150px;
    height: 42px;
  }

  .navigation-menu {
    gap: 16px;
  }

  .navigation-menu a:nth-of-type(2),
  .navigation-menu a:nth-of-type(4) {
    display: none;
  }

  .intro-content {
    width: calc(100% - 20px);
    padding-inline: 10px;
  }

  .intro-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.26em;
  }

  .intro-title {
    font-size: clamp(2rem, 10.5vw, 3.2rem);
    letter-spacing: 0.02em;
  }

  .intro-logo-wrap {
    width: 96vw;
    height: 150px;
    margin: 8px 0 18px;
  }

  .intro-description {
    max-width: 340px;
    font-size: 0.84rem;
  }

  .tech-start {
    min-width: 270px;
    padding: 16px 24px;
    font-size: 0.65rem;
    letter-spacing: 0.21em;
  }

  .hero-section {
    min-height: auto;
    padding-top: 135px;
    padding-bottom: 110px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

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

  .neo-button {
    width: 100%;
  }

  .phone-scene {
    min-height: 600px;
  }

  .phone-device {
    width: min(320px, 84vw);
    height: 590px;
    transform: none;
  }

  .phone-caption,
  .hero-scroll {
    display: none;
  }

  .ecosystem-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .orbit-window {
    height: 560px;
    min-height: 560px;
    margin-inline: -20px;
    border-radius: 0;
  }

  .orbit-stage {
    width: 610px;
  }

  .orbit-core {
    width: 210px;
  }

  .orbit-runner-outer { --orbit-radius: 235px; }
  .orbit-runner-inner { --orbit-radius: 155px; }

  .orbit-bubble span {
    display: none;
  }

  .what-section,
  .functions-section,
  .contact-section,
  .about-section {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .what-intro {
    margin: 34px 0 60px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-glow {
    min-height: 174px;
  }

  .feature-card {
    padding: 23px 20px;
  }

  .contact-card-inner {
    padding: 24px 18px;
  }

  .about-principles article {
    grid-template-columns: 46px 100px 1fr;
    gap: 10px;
  }

  .privacy-card {
    padding: 24px;
    border-radius: 24px;
  }

  .privacy-overlay {
    padding: 10px;
  }

  .privacy-shell {
    max-height: calc(100svh - 20px);
    border-radius: 22px;
  }

  .privacy-header,
  .privacy-body {
    padding: 22px 18px;
  }

  .privacy-body {
    max-height: calc(100svh - 160px);
  }
}

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

.privacy-subsection {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 1px solid rgba(94, 164, 255, 0.22);
}

.privacy-subsection h4 {
  margin: 0 0 10px;
  color: #e4ebfa;
  font-family: var(--font-tech);
  font-size: 0.96rem;
}

.aurora-layer {
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 56, 135, 0.2), transparent 40%),
    linear-gradient(180deg, #01030a 0%, #040814 58%, #02040a 100%);
}

.aurora-layer > .aurora-container {
  opacity: 1;
}

.aurora-vignette {
  background:
    radial-gradient(circle at 50% 34%, transparent 18%, rgba(0, 0, 0, 0.42) 76%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
}

.cursor-glow,
.cursor-dot {
  z-index: 10050;
}

.privacy-overlay {
  z-index: 8000;
}

.hero-section {
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.88fr);
  min-height: max(100svh, 980px);
}

.phone-scene {
  min-height: 940px;
}

.phone-aura {
  width: min(590px, 96%);
  height: 760px;
}

.phone-device {
  width: min(425px, 34vw);
  height: auto;
  aspect-ratio: 835 / 1855;
  min-height: 900px;
  max-height: 930px;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
}

.orbit-window {
  height: min(760px, 82vh);
  min-height: 640px;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at center, rgba(46, 114, 255, 0.16), transparent 46%),
    linear-gradient(145deg, rgba(7, 13, 29, 0.38), rgba(2, 5, 12, 0.12));
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.orbit-stage {
  width: min(700px, 80vw);
}

.orbit-path {
  border-color: rgba(98, 171, 255, 0.2);
  box-shadow:
    inset 0 0 42px rgba(43, 102, 255, 0.04),
    0 0 42px rgba(56, 134, 255, 0.04);
}

.orbit-path-outer {
  width: 82%;
}

.orbit-path-inner {
  width: 54%;
}

.orbit-core {
  z-index: 4;
  width: 230px;
  border: 0;
  border-radius: 42%;
  background: transparent;
  box-shadow: none;
}

.orbit-core img {
  position: relative;
  z-index: 2;
  display: block;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(73, 143, 255, 0.56))
    drop-shadow(0 0 42px rgba(36, 87, 212, 0.34));
  animation: dinoFloat 4.6s ease-in-out infinite alternate;
}

.orbit-core-glow {
  position: absolute;
  inset: 18%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 143, 255, 0.34), rgba(56, 66, 214, 0.12) 48%, transparent 72%);
  filter: blur(24px);
  animation: dinoGlow 4.6s ease-in-out infinite alternate;
}

.orbit-runner {
  z-index: 3;
  will-change: transform;
}

.orbit-runner-outer {
  --orbit-radius: clamp(225px, 24vw, 280px);
  animation-duration: 26s;
}

.orbit-runner-inner {
  --orbit-radius: clamp(145px, 16vw, 180px);
  animation-duration: 18s;
}

.orbit-bubble {
  min-width: 64px;
  min-height: 64px;
  border-radius: 22px;
  border-color: rgba(114, 189, 255, 0.34);
  color: #a8dcff;
  background:
    linear-gradient(145deg, rgba(20, 42, 86, 0.74), rgba(4, 9, 19, 0.92));
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(48, 118, 255, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.06);
}

.orbit-bubble:hover {
  border-color: rgba(106, 205, 255, 0.8);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.52),
    0 0 34px rgba(43, 129, 255, 0.38),
    inset 0 1px rgba(255, 255, 255, 0.1);
}

.operation-flow {
  gap: clamp(20px, 3vw, 34px);
  padding-top: 0;
}

.operation-line {
  display: none;
}

.operation-step {
  position: relative;
  min-height: 300px;
  padding: 2px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, #36d4ff 0%, #347dff 46%, #4648e7 100%);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.34);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.operation-step::before {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 130, 255, 0.15), transparent 42%),
    #070b14;
  transition: transform 250ms ease, border-radius 250ms ease, background 250ms ease;
}

.operation-step:hover {
  transform: translateY(-7px);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(53, 132, 255, 0.3);
}

.operation-step:hover::before {
  transform: scale(0.985);
  border-radius: 25px;
  background:
    radial-gradient(circle at 82% 12%, rgba(68, 158, 255, 0.22), transparent 44%),
    #070b14;
}

.operation-step > * {
  position: relative;
  z-index: 1;
}

.operation-index {
  margin: 28px 28px 18px;
}

.operation-icon {
  width: 66px;
  height: 66px;
  margin: 0 28px 24px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(54, 132, 255, 0.22), rgba(41, 69, 180, 0.08));
  box-shadow: 0 0 30px rgba(49, 114, 255, 0.18);
}

.operation-step h3 {
  margin: 0 28px 12px;
}

.operation-step p {
  margin: 0 28px 30px;
}

.feature-icon {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #5da7ff;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 0 13px rgba(61, 135, 255, 0.32));
}

.what-heading {
  margin-left: auto;
  text-align: right;
}

.what-intro {
  margin-right: auto;
  margin-left: 0;
}

.contact-heading {
  text-align: center;
}

.contact-heading .section-title {
  margin-inline: auto;
}

.contact-information {
  justify-content: center;
}

.contact-row {
  min-height: 82px;
  border-radius: 22px;
}

.form-field {
  border-radius: 14px;
}

.contact-card-shell {
  border-radius: 30px;
}

.contact-card-inner {
  border-radius: 29px;
}

.privacy-shell {
  isolation: isolate;
}

.privacy-body {
  overscroll-behavior: contain;
}

@keyframes dinoFloat {
  from { transform: translateY(-7px) rotate(-1deg) scale(0.98); }
  to { transform: translateY(8px) rotate(1deg) scale(1.03); }
}

@keyframes dinoGlow {
  from { opacity: 0.58; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 1120px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    min-height: max(100svh, 900px);
  }

  .phone-scene {
    min-height: 860px;
  }

  .phone-device {
    width: 390px;
    min-height: 865px;
    max-height: 880px;
  }
}

@media (max-width: 860px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .phone-scene {
    min-height: 900px;
  }

  .phone-device {
    width: min(405px, 76vw);
    min-height: 900px;
    max-height: 920px;
  }

  .what-heading {
    margin-left: 0;
    text-align: left;
  }

  .operation-flow {
    grid-template-columns: 1fr;
  }

  .operation-step {
    min-height: 260px;
    padding-left: 2px;
  }

  .operation-index,
  .operation-icon {
    position: relative;
    top: auto;
    left: auto;
  }
}

@media (max-width: 640px) {
  .phone-scene {
    min-height: 760px;
  }

  .phone-device {
    width: min(340px, 86vw);
    min-height: 755px;
    max-height: 770px;
  }

  .orbit-window {
    height: 590px;
    min-height: 590px;
  }

  .orbit-stage {
    width: 620px;
  }

  .orbit-core {
    width: 190px;
  }

  .orbit-runner-outer {
    --orbit-radius: 238px;
  }

  .orbit-runner-inner {
    --orbit-radius: 154px;
  }
}

.intro-panel {
  background: rgba(1, 3, 9, 0.68);
  backdrop-filter: blur(8px);
}

.intro-panel::before {
  opacity: 0.46;
}

.aurora-layer {
  background: #01030a;
}

.aurora-layer > .aurora-container {
  opacity: 1;
}

.aurora-vignette {
  opacity: 0.5;
  background:
    radial-gradient(circle at 50% 36%, transparent 22%, rgba(0, 0, 0, 0.24) 72%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
}

.intro-panel {
  background: linear-gradient(180deg, rgba(1, 3, 9, 0.22), rgba(1, 3, 9, 0.42));
  backdrop-filter: none;
}

.intro-panel::before {
  opacity: 0.18;
}

.intro-logo-wrap {
  overflow: visible;
  isolation: auto;
}

.intro-logo-image,
.brand-logo img,
.footer-logo img {
  object-fit: contain;
  mix-blend-mode: screen;
}

.intro-logo-light {
  width: 108%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(57, 137, 255, 0.5), rgba(48, 80, 223, 0.18) 46%, transparent 72%);
  filter: blur(46px);
}

.hero-section,
.ecosystem-section,
.what-section,
.functions-section,
.contact-section,
.about-section {
  background: transparent;
}

.orbit-window {
  overflow: visible;
  background: radial-gradient(circle at center, rgba(46, 114, 255, 0.13), transparent 48%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
}

.orbit-path {
  border-color: rgba(104, 179, 255, 0.18);
  mask-image: conic-gradient(transparent 0deg 24deg, black 42deg 150deg, transparent 168deg 204deg, black 220deg 326deg, transparent 344deg 360deg);
  -webkit-mask-image: conic-gradient(transparent 0deg 24deg, black 42deg 150deg, transparent 168deg 204deg, black 220deg 326deg, transparent 344deg 360deg);
}

.orbit-runner {
  z-index: 7;
}

.orbit-bubble {
  display: grid;
  place-items: center;
  width: 72px;
  min-width: 72px;
  height: 72px;
  min-height: 72px;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(118, 195, 255, 0.42);
  border-radius: 50%;
  color: #b7e4ff;
  background:
    radial-gradient(circle at 34% 25%, rgba(116, 196, 255, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(22, 51, 104, 0.76), rgba(4, 9, 20, 0.94));
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(48, 128, 255, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.orbit-bubble-icon {
  display: grid;
  place-items: center;
}

.orbit-bubble-label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: max-content;
  max-width: 150px;
  padding: 7px 10px;
  overflow: visible;
  border: 1px solid rgba(111, 183, 255, 0.22);
  border-radius: 12px;
  color: #eef7ff;
  background: rgba(5, 10, 22, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -5px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.orbit-bubble:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.orbit-bubble:hover .orbit-bubble-label {
  width: max-content;
  opacity: 1;
  transform: translate(-50%, 0);
}

.privacy-overlay {
  align-items: center;
  padding: 16px;
  overflow: hidden;
}

.privacy-shell {
  display: flex;
  flex-direction: column;
  width: min(1120px, 100%);
  height: min(920px, calc(100dvh - 32px));
  max-height: none;
  overflow: hidden;
}

.privacy-header {
  flex: 0 0 auto;
}

.privacy-body {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding-bottom: 64px;
  overscroll-behavior: contain;
}

.privacy-section:last-child {
  padding-bottom: 44px;
}

.cursor-glow,
.cursor-dot {
  z-index: 12000;
}

@media (max-width: 640px) {
  .orbit-window {
    overflow: hidden;
  }

  .orbit-bubble {
    width: 62px;
    min-width: 62px;
    height: 62px;
    min-height: 62px;
  }

  .privacy-overlay {
    padding: 8px;
  }

  .privacy-shell {
    height: calc(100dvh - 16px);
    border-radius: 20px;
  }

  .privacy-body {
    padding-bottom: 72px;
  }
}

.orbit-bubble .orbit-bubble-icon {
  width: auto;
  overflow: visible;
  color: inherit;
  font-size: inherit;
  white-space: normal;
  opacity: 1;
  transition: none;
}

.orbit-bubble .orbit-bubble-label {
  width: max-content;
  overflow: visible;
}

.orbit-bubble:hover .orbit-bubble-icon {
  width: auto;
  opacity: 1;
}

/* Orbital NeoRex: posiciones estáticas + rotación de pistas.
   Las burbujas permanecen distribuidas incluso con movimiento reducido. */
.neo-orbit-window {
  position: relative;
  width: 100%;
  min-height: 660px;
  overflow: hidden;
  border-radius: 48px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 102, 255, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(7, 13, 29, 0.24), rgba(2, 5, 12, 0.06));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.neo-orbit-ambient {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(55, 126, 255, 0.16), transparent 40%),
    conic-gradient(from 100deg, transparent, rgba(35, 107, 255, 0.08), transparent 28%, rgba(55, 180, 255, 0.06), transparent 60%);
  filter: blur(34px);
  animation: neoOrbitAmbient 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.neo-orbit-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(650px, 46vw);
  min-width: 560px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.neo-orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(105, 177, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 0 42px rgba(43, 102, 255, 0.035),
    0 0 42px rgba(56, 134, 255, 0.035);
  pointer-events: none;
  -webkit-mask-image: conic-gradient(
    transparent 0deg 22deg,
    #000 40deg 146deg,
    transparent 164deg 204deg,
    #000 222deg 326deg,
    transparent 344deg 360deg
  );
  mask-image: conic-gradient(
    transparent 0deg 22deg,
    #000 40deg 146deg,
    transparent 164deg 204deg,
    #000 222deg 326deg,
    transparent 344deg 360deg
  );
}

.neo-orbit-path-outer {
  width: 92%;
  aspect-ratio: 1;
}

.neo-orbit-path-inner {
  width: 61%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.85;
}

.neo-orbit-track {
  position: absolute;
  inset: 0;
  z-index: 5;
  transform-origin: 50% 50%;
  will-change: transform;
  pointer-events: none;
}

.neo-orbit-track-outer {
  --orbit-radius: clamp(238px, 18vw, 298px);
  animation: neoOrbitSpin 27s linear infinite;
}

.neo-orbit-track-inner {
  --orbit-radius: clamp(155px, 12vw, 198px);
  animation: neoOrbitSpinReverse 19s linear infinite;
}

.neo-orbit-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--slot-angle)) translateX(var(--orbit-radius));
  transform-origin: 0 0;
  pointer-events: auto;
}

.neo-orbit-counter {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  transform-origin: 0 0;
}

.neo-orbit-counter-outer {
  animation: neoOrbitCounter 27s linear infinite;
}

.neo-orbit-counter-inner {
  animation: neoOrbitCounterReverse 19s linear infinite;
}

.neo-orbit-bubble {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(112, 193, 255, 0.48);
  border-radius: 50%;
  color: #bde8ff;
  background:
    radial-gradient(circle at 32% 22%, rgba(143, 214, 255, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(22, 54, 112, 0.88), rgba(3, 8, 20, 0.96));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.54),
    0 0 28px rgba(48, 128, 255, 0.27),
    inset 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 22px rgba(55, 132, 255, 0.09);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease;
}

.neo-orbit-track-inner .neo-orbit-bubble {
  width: 64px;
  height: 64px;
  background:
    radial-gradient(circle at 32% 22%, rgba(123, 200, 255, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(16, 39, 85, 0.9), rgba(3, 8, 20, 0.97));
}

.neo-orbit-icon {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 10px rgba(76, 169, 255, 0.58));
}

.neo-orbit-label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: max-content;
  max-width: 160px;
  padding: 7px 11px;
  border: 1px solid rgba(111, 183, 255, 0.27);
  border-radius: 12px;
  color: #eef8ff;
  background: rgba(4, 10, 24, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
  font-family: var(--font-body);
  font-size: 0.69rem;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -5px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.neo-orbit-bubble:hover {
  z-index: 20;
  color: #fff;
  border-color: rgba(118, 218, 255, 0.92);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.58),
    0 0 38px rgba(42, 139, 255, 0.48),
    0 0 72px rgba(54, 92, 255, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(1.13);
}

.neo-orbit-bubble:hover .neo-orbit-label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.neo-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 205px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.neo-orbit-core img {
  position: relative;
  z-index: 2;
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(73, 143, 255, 0.62))
    drop-shadow(0 0 52px rgba(36, 87, 212, 0.38));
  animation: neoDinoFloat 4.8s ease-in-out infinite alternate;
}

.neo-orbit-core-glow {
  position: absolute;
  inset: 17%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 148, 255, 0.42), rgba(54, 72, 214, 0.16) 48%, transparent 72%);
  filter: blur(26px);
  animation: neoDinoGlow 4.8s ease-in-out infinite alternate;
}

@keyframes neoOrbitSpin {
  to { transform: rotate(360deg); }
}

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

@keyframes neoOrbitCounter {
  from { transform: rotate(var(--slot-angle-inverse)) rotate(0deg); }
  to { transform: rotate(var(--slot-angle-inverse)) rotate(-360deg); }
}

@keyframes neoOrbitCounterReverse {
  from { transform: rotate(var(--slot-angle-inverse)) rotate(0deg); }
  to { transform: rotate(var(--slot-angle-inverse)) rotate(360deg); }
}

@keyframes neoOrbitAmbient {
  from { transform: translate3d(-2%, -1%, 0) scale(0.96); opacity: 0.65; }
  to { transform: translate3d(3%, 2%, 0) scale(1.06); opacity: 1; }
}

@keyframes neoDinoFloat {
  from { transform: translateY(-4px) scale(0.98); }
  to { transform: translateY(6px) scale(1.03); }
}

@keyframes neoDinoGlow {
  from { opacity: 0.65; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 1100px) {
  .neo-orbit-window {
    min-height: 620px;
  }

  .neo-orbit-stage {
    width: min(610px, 82vw);
    min-width: 540px;
  }

  .neo-orbit-track-outer { --orbit-radius: 255px; }
  .neo-orbit-track-inner { --orbit-radius: 165px; }
}

@media (max-width: 760px) {
  .neo-orbit-window {
    min-height: 540px;
    border-radius: 30px;
  }

  .neo-orbit-stage {
    width: 520px;
    min-width: 520px;
  }

  .neo-orbit-track-outer { --orbit-radius: 218px; }
  .neo-orbit-track-inner { --orbit-radius: 142px; }

  .neo-orbit-bubble {
    width: 62px;
    height: 62px;
  }

  .neo-orbit-track-inner .neo-orbit-bubble {
    width: 56px;
    height: 56px;
  }

  .neo-orbit-core {
    width: 170px;
  }
}

@media (max-width: 520px) {
  .neo-orbit-window {
    min-height: 470px;
  }

  .neo-orbit-stage {
    width: 430px;
    min-width: 430px;
  }

  .neo-orbit-track-outer { --orbit-radius: 177px; }
  .neo-orbit-track-inner { --orbit-radius: 114px; }

  .neo-orbit-bubble {
    width: 54px;
    height: 54px;
  }

  .neo-orbit-track-inner .neo-orbit-bubble {
    width: 49px;
    height: 49px;
  }

  .neo-orbit-icon svg {
    width: 20px;
    height: 20px;
  }

  .neo-orbit-core {
    width: 145px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neo-orbit-track,
  .neo-orbit-counter,
  .neo-orbit-ambient,
  .neo-orbit-core img,
  .neo-orbit-core-glow {
    animation: none !important;
  }

  .neo-orbit-counter {
    transform: rotate(var(--slot-angle-inverse));
  }
}

/* Orbital final: movimiento continuo, burbujas sin marco y glow sin recortes. */
.neo-orbit-window {
  min-height: 660px;
  overflow: visible;
  border-radius: 0;
  background: transparent !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.neo-orbit-ambient {
  inset: 10% 4%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(46, 126, 255, 0.22) 0%, rgba(42, 86, 220, 0.12) 35%, transparent 72%),
    radial-gradient(ellipse at 65% 40%, rgba(43, 194, 255, 0.12), transparent 60%);
  filter: blur(52px);
  transform: scale(1.08);
  animation: neoOrbitAmbientSoft 8s ease-in-out infinite alternate !important;
}

.neo-orbit-stage {
  --neo-orbit-radius-outer: clamp(238px, 18vw, 298px);
  --neo-orbit-radius-inner: clamp(155px, 12vw, 198px);
  overflow: visible;
}

.neo-orbit-ring {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.neo-orbit-runner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  animation: neoOrbitRunner var(--orbit-duration) linear infinite !important;
  animation-delay: var(--orbit-delay) !important;
  animation-play-state: running !important;
  will-change: transform;
  pointer-events: none;
}

.neo-orbit-ring-inner .neo-orbit-runner {
  animation-name: neoOrbitRunnerReverse !important;
}

.neo-orbit-arm {
  transform: translateX(var(--orbit-radius));
}

.neo-orbit-upright {
  animation: neoOrbitUpright var(--orbit-duration) linear infinite !important;
  animation-delay: var(--orbit-delay) !important;
  animation-play-state: running !important;
  pointer-events: auto;
}

.neo-orbit-ring-inner .neo-orbit-upright {
  animation-name: neoOrbitUprightReverse !important;
}

.neo-orbit-bubble,
.neo-orbit-track-inner .neo-orbit-bubble {
  border: 0 !important;
  outline: 0 !important;
  background:
    radial-gradient(circle at 34% 24%, rgba(157, 222, 255, 0.34), transparent 34%),
    radial-gradient(circle at 50% 60%, rgba(40, 103, 220, 0.28), rgba(5, 13, 31, 0.88) 70%);
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(46, 133, 255, 0.28),
    inset 0 0 24px rgba(92, 176, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.neo-orbit-bubble:hover {
  border: 0 !important;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.54),
    0 0 40px rgba(48, 146, 255, 0.52),
    0 0 78px rgba(51, 94, 255, 0.22),
    inset 0 0 28px rgba(105, 196, 255, 0.18);
}

.neo-orbit-path {
  opacity: 0.42;
  border-color: rgba(102, 174, 255, 0.16);
}

@keyframes neoOrbitRunner {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes neoOrbitRunnerReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes neoOrbitUpright {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes neoOrbitUprightReverse {
  from { transform: rotate(-360deg); }
  to { transform: rotate(0deg); }
}

@keyframes neoOrbitAmbientSoft {
  from { opacity: 0.58; transform: translate3d(-2%, -1%, 0) scale(1.02); }
  to { opacity: 0.92; transform: translate3d(3%, 2%, 0) scale(1.12); }
}

@media (max-width: 1100px) {
  .neo-orbit-stage {
    --neo-orbit-radius-outer: 255px;
    --neo-orbit-radius-inner: 165px;
  }
}

@media (max-width: 760px) {
  .neo-orbit-stage {
    --neo-orbit-radius-outer: 218px;
    --neo-orbit-radius-inner: 142px;
  }
}

@media (max-width: 520px) {
  .neo-orbit-stage {
    --neo-orbit-radius-outer: 177px;
    --neo-orbit-radius-inner: 114px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neo-orbit-runner,
  .neo-orbit-upright,
  .neo-orbit-ambient {
    animation-duration: 36s !important;
    animation-iteration-count: infinite !important;
  }
}

.app > main,
.app > .footer {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app.is-site-active > main,
.app.is-site-active > .footer {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.app.is-intro-active > .main-navigation {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.intro {
  background: rgba(1, 3, 9, 0.74);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.intro-logo-wrap {
  overflow: visible;
}

.intro-logo-image {
  object-fit: contain;
}

.intro-logo-light {
  width: 88%;
  height: 92%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(45, 126, 255, 0.38) 0%,
    rgba(61, 102, 224, 0.18) 42%,
    transparent 72%
  );
  filter: blur(46px);
}


html.privacy-scroll-lock,
body.privacy-scroll-lock {
  overflow: hidden !important;
  overscroll-behavior: none;
  background-color: #02040a !important;
}

main,
.page-section,
.functions-section,
.contact-section,
.about-section,
.what-section,
.ecosystem-section {
  background-color: transparent;
}

.app,
.app main,
.app .footer {
  background-color: #02040a;
}

.app main {
  background-image:
    radial-gradient(circle at 18% 28%, rgba(28, 64, 145, 0.08), transparent 34%),
    radial-gradient(circle at 86% 68%, rgba(45, 70, 190, 0.07), transparent 38%);
}

html,
body,
#root {
  background: #02040a;
}

.app {
  background: transparent !important;
}

.aurora-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  background: #02040a;
}

.aurora-layer > .aurora-container {
  position: absolute;
  inset: -12% -8%;
  width: 116%;
  height: 124%;
  opacity: 1;
}

.aurora-layer .aurora-container canvas {
  opacity: 1;
  filter: saturate(1.8) brightness(1.5) contrast(1.06);
}

.aurora-vignette {
  opacity: 0.38;
  background:
    radial-gradient(circle at 50% 42%, transparent 8%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2));
}

main,
.footer,
.page-section,
.hero-section,
.ecosystem-section,
.what-section,
.functions-section,
.contact-section,
.about-section {
  background-color: transparent !important;
  background-image: none !important;
}

.app main,
.app .footer {
  background: transparent !important;
}

.hero-section::before,
.ecosystem-section::before,
.what-section::before,
.functions-section::before,
.contact-section::before,
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.1), rgba(2, 4, 10, 0.32));
}

.functions-section::before,
.about-section::before {
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.18), rgba(2, 4, 10, 0.4));
}

html,
body,
#root {
  background: #02040a !important;
}

.app {
  background: transparent !important;
}

.aurora-layer {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 1 !important;
  background: #02040a !important;
}

.aurora-layer > .aurora-container {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
}

.aurora-vignette {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  opacity: 0.26 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 50% 45%, transparent 20%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14)) !important;
}

.aurora-noise {
  z-index: 3 !important;
  opacity: 0.025 !important;
}

main,
.footer,
.page-section,
.hero-section,
.ecosystem-section,
.what-section,
.functions-section,
.contact-section,
.about-section {
  position: relative;
  z-index: 5;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.hero-section::before,
.ecosystem-section::before,
.what-section::before,
.functions-section::before,
.contact-section::before,
.about-section::before {
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.04), rgba(2, 4, 10, 0.18)) !important;
}

.aurora-layer {
  background: #020817 !important;
}

.aurora-layer > .aurora-container {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

.aurora-layer .aurora-container canvas {
  opacity: 0.82 !important;
  filter: saturate(1.12) brightness(0.78) contrast(1.03) !important;
}

.aurora-vignette {
  opacity: 0.72 !important;
  background:
    radial-gradient(ellipse 92% 76% at 50% 48%, transparent 8%, rgba(1, 5, 16, 0.16) 66%, rgba(1, 4, 13, 0.58) 100%),
    linear-gradient(180deg, rgba(1, 5, 16, 0.16), rgba(1, 5, 16, 0.36)) !important;
}

.hero-section::before,
.ecosystem-section::before,
.what-section::before,
.functions-section::before,
.contact-section::before,
.about-section::before {
  background: linear-gradient(180deg, rgba(2, 8, 23, 0.16), rgba(2, 8, 23, 0.34)) !important;
}


html,
body,
#root {
  background: #010610 !important;
}

.app,
.app main,
.app .footer {
  background: transparent !important;
}

.aurora-layer {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  background: #010610 !important;
}

.aurora-layer > .aurora-container {
  position: absolute !important;
  inset: -4% !important;
  width: 108% !important;
  height: 108% !important;
  transform: none !important;
}

.aurora-layer .aurora-container canvas {
  opacity: 0.68 !important;
  filter: saturate(0.88) brightness(0.64) contrast(1.02) !important;
}

.aurora-vignette {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  opacity: 1 !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse 110% 92% at 50% 48%, transparent 24%, rgba(1, 5, 15, 0.12) 68%, rgba(1, 4, 12, 0.38) 100%),
    linear-gradient(180deg, rgba(1, 5, 15, 0.12), rgba(1, 5, 15, 0.28)) !important;
}

main,
.footer,
.page-section,
.hero-section,
.ecosystem-section,
.what-section,
.functions-section,
.contact-section,
.about-section {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.hero-section::before,
.ecosystem-section::before,
.what-section::before,
.functions-section::before,
.contact-section::before,
.about-section::before {
  background: linear-gradient(180deg, rgba(1, 6, 16, 0.12), rgba(1, 6, 16, 0.24)) !important;
}

.functions-section::before,
.about-section::before {
  background: linear-gradient(180deg, rgba(1, 6, 16, 0.18), rgba(1, 6, 16, 0.32)) !important;
}

/* Lightweight static background: keeps the dark navy visual without WebGL. */
.aurora-layer {
  background:
    radial-gradient(ellipse 88% 60% at 14% 8%, rgba(20, 72, 154, 0.24), transparent 68%),
    radial-gradient(ellipse 76% 58% at 86% 24%, rgba(31, 61, 139, 0.18), transparent 70%),
    radial-gradient(ellipse 95% 72% at 50% 84%, rgba(10, 37, 88, 0.17), transparent 72%),
    linear-gradient(180deg, #020817 0%, #031027 45%, #010610 100%) !important;
  contain: strict;
}

.aurora-vignette {
  background:
    radial-gradient(ellipse 110% 92% at 50% 48%, transparent 24%, rgba(1, 5, 15, 0.12) 68%, rgba(1, 4, 12, 0.38) 100%),
    linear-gradient(180deg, rgba(1, 5, 15, 0.12), rgba(1, 5, 15, 0.28)) !important;
}

@media (prefers-reduced-motion: reduce) {
  .app > main,
  .app > .footer {
    transition-duration: 1ms;
  }
}

/* Guía rápida y eliminación de cuenta */
.guide-section {
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 140px;
}

.guide-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 450px);
  align-items: end;
  gap: 40px;
  margin-bottom: 58px;
}

.guide-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.72;
}

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

.guide-quick-card {
  position: relative;
  min-height: 255px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(106, 174, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 12%, rgba(59, 130, 255, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(12, 24, 48, 0.74), rgba(4, 8, 18, 0.72));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 22px 60px rgba(0, 0, 0, 0.18);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.guide-quick-card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 180, 255, 0.46);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 30px rgba(48, 126, 255, 0.1);
}

.guide-quick-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border: 1px solid rgba(86, 175, 255, 0.28);
  border-radius: 18px;
  color: var(--cyan);
  background: rgba(24, 74, 168, 0.16);
  box-shadow: 0 0 28px rgba(46, 129, 255, 0.1);
}

.guide-card-number {
  position: absolute;
  top: 30px;
  right: 28px;
  color: rgba(118, 179, 255, 0.34);
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.guide-quick-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-tech);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

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

.account-delete-panel {
  position: relative;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(111, 177, 255, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 10%, rgba(48, 130, 255, 0.15), transparent 30%),
    linear-gradient(120deg, rgba(10, 23, 49, 0.9), rgba(4, 8, 18, 0.86) 62%, rgba(11, 18, 39, 0.88));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.04);
}

.account-delete-panel::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(45, 93, 255, 0.08);
  filter: blur(50px);
  pointer-events: none;
}

.account-delete-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 980px;
}

.account-delete-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(102, 177, 255, 0.3);
  border-radius: 20px;
  color: #83cfff;
  background: rgba(35, 92, 207, 0.15);
}

.account-delete-label {
  margin: 1px 0 9px !important;
  color: var(--cyan) !important;
  font-family: var(--font-tech);
  font-size: 0.63rem !important;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.account-delete-intro h3 {
  margin: 0 0 12px;
  font-family: var(--font-tech);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

.account-delete-intro p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.delete-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.delete-steps li {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(128, 169, 232, 0.12);
  border-radius: 20px;
  background: rgba(3, 8, 18, 0.5);
}

.delete-steps li > span {
  display: block;
  margin-bottom: 28px;
  color: #6fc9ff;
  font-family: var(--font-tech);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
}

.delete-steps strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-tech);
  font-size: 1rem;
}

.delete-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.62;
}

.account-delete-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(100, 181, 255, 0.13);
  border-radius: 16px;
  color: rgba(197, 215, 242, 0.72);
  background: rgba(18, 54, 112, 0.1);
  font-size: 0.82rem;
  line-height: 1.55;
}

.account-delete-note svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--cyan);
}

.guide-section {
  position: relative;
  z-index: 5;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.guide-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(1, 6, 16, 0.15), rgba(1, 6, 16, 0.3));
}

@media (max-width: 1100px) {
  .guide-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-quick-card:last-child {
    grid-column: span 2;
  }

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

@media (max-width: 860px) {
  .guide-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .guide-section {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .guide-heading {
    margin-bottom: 40px;
  }

  .guide-quick-grid,
  .delete-steps {
    grid-template-columns: 1fr;
  }

  .guide-quick-card:last-child {
    grid-column: auto;
  }

  .guide-quick-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .guide-quick-icon {
    margin-bottom: 26px;
  }

  .account-delete-panel {
    margin-top: 18px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .account-delete-intro {
    grid-template-columns: 1fr;
  }

  .delete-steps {
    margin-top: 30px;
  }

  .delete-steps li {
    min-height: auto;
  }
}

/* Evidencia real de la app en la guía de eliminación de cuenta */
.account-delete-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 350px) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: start;
}

.account-delete-evidence {
  margin: 0;
}

.account-phone-frame {
  position: relative;
  width: min(100%, 350px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(111, 177, 255, 0.28);
  border-radius: 48px;
  background: linear-gradient(145deg, rgba(21, 27, 39, 0.98), rgba(3, 6, 12, 0.98));
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.48),
    0 0 38px rgba(52, 125, 255, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.account-phone-frame::before,
.account-phone-frame::after {
  content: '';
  position: absolute;
  left: -4px;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: rgba(97, 122, 164, 0.55);
}

.account-phone-frame::before {
  top: 145px;
  height: 68px;
}

.account-phone-frame::after {
  top: 230px;
  height: 92px;
}

.account-phone-speaker {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 74px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
  pointer-events: none;
}

.account-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 39px;
}

.account-delete-evidence figcaption {
  width: min(100%, 350px);
  margin: 14px auto 0;
  color: rgba(169, 187, 216, 0.6);
  font-size: 0.74rem;
  line-height: 1.55;
  text-align: center;
}

.account-delete-content {
  min-width: 0;
}

.account-delete-content .account-delete-intro {
  max-width: none;
}

.account-delete-content .delete-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-delete-content .delete-steps li {
  min-height: 168px;
}

.account-support-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(105, 217, 255, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(52, 125, 255, 0.12), transparent 42%),
    rgba(5, 13, 28, 0.72);
}

.account-support-box > div:first-child > span {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: var(--font-tech);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.account-support-box strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-tech);
  font-size: 1.05rem;
}

.account-support-box p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.account-support-links {
  display: grid;
  gap: 9px;
  min-width: 250px;
}

.account-support-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(105, 217, 255, 0.16);
  border-radius: 12px;
  color: #cfe9ff;
  background: rgba(20, 64, 137, 0.12);
  font-size: 0.78rem;
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.account-support-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(105, 217, 255, 0.42);
  background: rgba(20, 64, 137, 0.2);
}

@media (max-width: 1050px) {
  .account-delete-layout {
    grid-template-columns: minmax(235px, 300px) minmax(0, 1fr);
    gap: 28px;
  }

  .account-support-box {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .account-support-links {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .account-delete-layout {
    grid-template-columns: 1fr;
  }

  .account-phone-frame,
  .account-delete-evidence figcaption {
    width: min(100%, 330px);
  }

  .account-delete-content .delete-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .account-phone-frame {
    border-radius: 40px;
    padding: 8px;
  }

  .account-phone-frame img {
    border-radius: 33px;
  }

  .account-delete-content .delete-steps {
    grid-template-columns: 1fr;
  }

  .account-support-box {
    padding: 17px;
  }

  .account-support-links a {
    font-size: 0.74rem;
  }
}


:root {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #f7f9ff;
  background: #02040a;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background-color: #02040a;
  overscroll-behavior-y: none;
}

body {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: #f7f9ff;
  background-color: #02040a;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

#root {
  width: 100%;
  min-height: 100vh;
  background-color: #02040a;
}

::selection {
  color: #03050c;
  background: #76d9ff;
}

@media (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea {
    cursor: none;
  }
}
