:root {
  --bg: #05070a;
  --surface: rgba(12, 17, 25, 0.82);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #f5f8ff;
  --text-soft: #aebbd0;
  --line: rgba(255, 255, 255, 0.14);
  --hero-gap: clamp(22px, 4vw, 54px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(42% 58% at 14% 12%, rgba(var(--askora-tertiary-rgb), 0.28), transparent 70%),
    radial-gradient(36% 42% at 88% 8%, rgba(var(--askora-secondary-orange-rgb), 0.2), transparent 72%),
    radial-gradient(46% 56% at 80% 100%, rgba(var(--askora-secondary-green-rgb), 0.2), transparent 72%),
    var(--bg);
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

#flux-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.68;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.6px, transparent 0.6px);
  background-size: 2px 2px;
  opacity: 0.05;
}

.cursor-glow {
  position: fixed;
  width: 620px;
  height: 620px;
  left: var(--mouse-x, -300px);
  top: var(--mouse-y, -300px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--askora-tertiary-rgb), 0.18), rgba(var(--askora-tertiary-rgb), 0.02) 40%, transparent 70%);
  filter: blur(10px);
  transition: transform 0.18s ease-out;
}

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

.prelude {
  --focus-x: 72.2%;
  --focus-y: 56.8%;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: radial-gradient(
    36% 52% at var(--focus-x) var(--focus-y),
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgba(3, 8, 14, 0.22) 34%,
    rgba(2, 6, 12, 0.68) 50%,
    rgba(2, 5, 10, 0.9) 66%,
    rgba(2, 4, 8, 0.985) 84%,
    rgba(2, 4, 8, 1) 100%
  );
  transition: opacity 0.58s ease, visibility 0.58s ease;
}

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

.prelude__ring {
  position: absolute;
  left: var(--focus-x);
  top: var(--focus-y);
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border: 1px solid rgba(var(--askora-tertiary-rgb), 0.24);
  border-radius: 50%;
  animation: preludePulse 2.4s ease-out infinite;
}

.prelude__ring--delay {
  width: 290px;
  height: 290px;
  animation-delay: 0.5s;
}

@keyframes preludePulse {
  0% {
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0.82;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

.topbar {
  width: min(1320px, calc(100% - 64px));
  margin: calc(12px + env(safe-area-inset-top)) auto 0;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  position: sticky;
  top: 8px;
  z-index: 40;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--askora-secondary-gradient);
  color: #031017;
  box-shadow: 0 10px 22px rgba(var(--askora-tertiary-rgb), 0.35);
}

.brand__logo {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.brand__text {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.topnav {
  justify-self: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 22px;
}

.topnav a {
  color: #c1cee0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.topnav a:hover {
  color: #fff;
}

.topbar__actions {
  display: inline-flex;
  gap: 10px;
}

.btn {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--askora-secondary-gradient);
  color: #041117;
  box-shadow: 0 14px 24px rgba(var(--askora-tertiary-rgb), 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.18);
  color: #e7f1ff;
}

main {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 48px 0 110px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: var(--hero-gap);
  min-height: calc(100vh - 168px);
}

.hero__copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  width: fit-content;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7bf4ff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.54s ease 0.02s, transform 0.62s ease 0.02s;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.72rem, 3.6vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  display: grid;
  gap: 6px;
}

.hero h1 span {
  white-space: nowrap;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.7s ease;
}

html.intro-ui-visible .hero h1 span {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 span:nth-child(2) {
  transition-delay: 0.08s;
}

.hero h1 span:nth-child(3) {
  transition-delay: 0.16s;
}

.hero__lede {
  margin: 0;
  max-width: 560px;
  color: var(--text-soft);
  font-size: clamp(0.85rem, 1.08vw, 1.01rem);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.56s ease 0.2s, transform 0.64s ease 0.2s;
}

.hero__lede-line {
  white-space: nowrap;
}

.hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.56s ease 0.28s, transform 0.64s ease 0.28s;
}

html.intro-ui-visible .eyebrow,
html.intro-ui-visible .hero__lede,
html.intro-ui-visible .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

.hero__metrics {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.62s ease, transform 0.72s ease;
}

html.intro-ui-visible .hero__metrics {
  opacity: 1;
  transform: translateY(0);
}

.metric {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 10px 11px;
}

.metric__value {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.9vw, 1.58rem);
  letter-spacing: -0.02em;
}

.metric__label {
  margin: 4px 0 0;
  font-size: 0.68rem;
  color: #aebcd1;
}

.metric--highlight {
  border-color: rgba(var(--askora-tertiary-rgb), 0.42);
  background: linear-gradient(165deg, rgba(var(--askora-tertiary-rgb), 0.17), rgba(var(--askora-secondary-green-rgb), 0.1) 42%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 12px 22px rgba(var(--askora-tertiary-rgb), 0.16);
}

.metric--highlight .metric__value {
  color: #e9fff7;
}

.metric--highlight .metric__label {
  color: #c7f4e4;
}

.hero__stage {
  position: relative;
  height: min(760px, 76vh);
  min-height: 560px;
  perspective: 1200px;
  isolation: isolate;
}

.stage-orbital {
  position: absolute;
  inset: 8% 8% 8% 8%;
  border-radius: 24px;
  background:
    radial-gradient(72% 84% at 50% 52%, rgba(var(--askora-tertiary-rgb), 0.16), transparent 64%),
    linear-gradient(164deg, rgba(12, 18, 30, 0.85), rgba(7, 12, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 70px rgba(1, 6, 16, 0.45);
  overflow: hidden;
}

.orbital-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62%, 390px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(var(--askora-tertiary-rgb), 0.34);
  background: radial-gradient(circle at 50% 50%, rgba(var(--askora-tertiary-rgb), 0.2), rgba(5, 10, 18, 0.9) 64%);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.9s ease 0.08s;
}

html.intro-engine-in .orbital-core {
  opacity: 1;
}

.orbital-core__glow {
  position: absolute;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--askora-tertiary-rgb), 0.45), rgba(var(--askora-secondary-green-rgb), 0.2) 48%, transparent 74%);
  filter: blur(16px);
  animation: corePulse 3.6s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.66s ease 0.36s;
}

html.intro-engine-in .orbital-core__glow {
  opacity: 1;
}

@keyframes corePulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.68;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.orbital-core__label {
  position: absolute;
  top: 16%;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(194, 215, 240, 0.8);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.6s ease 0.24s;
}

html.intro-engine-in .orbital-core__label {
  opacity: 1;
}

.plasma-logo {
  position: relative;
  width: min(64%, 238px);
  aspect-ratio: 1 / 1;
  transform: translateY(6%);
  -webkit-mask: url("./askora_logo.png") center / contain no-repeat;
  mask: url("./askora_logo.png") center / contain no-repeat;
  filter:
    drop-shadow(0 0 12px rgba(var(--askora-tertiary-rgb), 0.64))
    drop-shadow(0 0 20px rgba(var(--askora-secondary-green-rgb), 0.5))
    drop-shadow(0 0 36px rgba(var(--askora-secondary-orange-rgb), 0.34));
  background: radial-gradient(circle at 50% 50%, rgba(2, 8, 16, 0.84), rgba(2, 6, 12, 0.98) 68%);
  animation: plasmaPulse 5.4s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 0.8s ease 0.28s;
}

html.intro-engine-in .plasma-logo {
  opacity: 1;
}

.plasma-logo__canvas {
  position: absolute;
  inset: -16%;
  width: 132%;
  height: 132%;
  transform: translate(-6%, -6%);
  mix-blend-mode: screen;
  filter: saturate(155%) contrast(108%);
}

.plasma-logo__veil {
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(52% 46% at 34% 32%, rgba(var(--askora-tertiary-rgb), 0.3), transparent 72%),
    radial-gradient(44% 40% at 72% 30%, rgba(var(--askora-secondary-green-rgb), 0.28), transparent 74%),
    radial-gradient(48% 44% at 48% 74%, rgba(var(--askora-secondary-orange-rgb), 0.24), transparent 76%);
  mix-blend-mode: screen;
  opacity: 0.34;
  animation: plasmaVeil 9.6s ease-in-out infinite;
}

.plasma-logo__grain {
  position: absolute;
  inset: -14%;
  background-image:
    radial-gradient(rgba(var(--askora-tertiary-rgb), 0.2) 0.8px, transparent 0.8px),
    radial-gradient(rgba(var(--askora-secondary-green-rgb), 0.16) 0.9px, transparent 0.9px);
  background-size: 2.2px 2.2px;
  opacity: 0.12;
  mix-blend-mode: screen;
  animation: plasmaGrain 2.6s steps(4) infinite;
}

@keyframes plasmaVeil {
  0%,
  100% {
    transform: translate(0, 0) scale(0.94);
    opacity: 0.3;
  }
  50% {
    transform: translate(4%, -3%) scale(1.03);
    opacity: 0.42;
  }
}

@keyframes plasmaGrain {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2px, 1px);
  }
  50% {
    transform: translate(1px, -2px);
  }
  75% {
    transform: translate(2px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes plasmaPulse {
  0%,
  100% {
    opacity: 0.9;
    transform: translateY(6%) scale(0.98);
  }
  50% {
    opacity: 1;
    transform: translateY(6%) scale(1.05);
  }
}

@keyframes plasmaPulseMobile {
  0%,
  100% {
    opacity: 0.93;
    transform: translateY(6%) scale(0.99);
  }
  50% {
    opacity: 1;
    transform: translateY(6%) scale(1.02);
  }
}

@media (hover: none), (pointer: coarse) {
  .plasma-logo {
    animation: plasmaPulseMobile 6.8s ease-in-out infinite;
    filter:
      drop-shadow(0 0 9px rgba(var(--askora-tertiary-rgb), 0.58))
      drop-shadow(0 0 14px rgba(var(--askora-secondary-green-rgb), 0.42))
      drop-shadow(0 0 24px rgba(var(--askora-secondary-orange-rgb), 0.26));
  }

  .plasma-logo__canvas {
    mix-blend-mode: normal;
    opacity: 0.96;
    filter: saturate(138%) contrast(104%);
    transform: translate(-6%, -6%) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .plasma-logo__veil {
    opacity: 0.3;
    animation-duration: 12s;
  }

  .plasma-logo__grain {
    display: none;
  }
}

.orbital-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform-style: preserve-3d;
  opacity: 0;
  transition: opacity 0.62s ease 0.16s;
}

html.intro-engine-in .orbital-ring {
  opacity: 1;
}

.orbital-ring--a {
  width: 72%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(67deg);
}

.orbital-ring--b {
  width: 84%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateY(72deg);
}

.orbital-ring--c {
  width: 94%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(24deg);
  animation: spinC 22s linear infinite;
}

html.intro-engine-in .orbital-ring--a {
  animation: ringAlignA 0.96s cubic-bezier(0.2, 0.86, 0.2, 1) 0.1s both;
}

html.intro-engine-in .orbital-ring--b {
  animation: ringAlignB 1.04s cubic-bezier(0.2, 0.86, 0.2, 1) 0.16s both;
}

@keyframes ringAlignA {
  from {
    transform: translate(-50%, -50%) rotateX(48deg) rotateZ(-120deg) scale(0.86);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) rotateX(67deg) rotateZ(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes ringAlignB {
  from {
    transform: translate(-50%, -50%) rotateY(40deg) rotateZ(128deg) scale(0.84);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) rotateY(72deg) rotateZ(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes spinC {
  to {
    transform: translate(-50%, -50%) rotateX(24deg) rotateZ(360deg);
  }
}

.ios-notification {
  --ios-toast-x: -50%;
  position: absolute;
  top: calc(8% - 38px);
  left: 50%;
  transform: translateX(var(--ios-toast-x));
  width: clamp(256px, 33.6vw, 344px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(115deg, rgba(196, 210, 231, 0.36), rgba(115, 145, 188, 0.28));
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  backdrop-filter: blur(14px) saturate(145%);
  box-shadow: 0 18px 40px rgba(5, 9, 16, 0.44);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transform: translateX(var(--ios-toast-x)) translateY(-14px);
}

html.intro-ui-visible .ios-notification {
  animation:
    iosToastIn 0.68s cubic-bezier(0.2, 0.9, 0.2, 1) both,
    iosToastFloat 5.6s ease-in-out 0.74s infinite;
}

.ios-notification__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #0b0f16;
  display: grid;
  place-items: center;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(3, 8, 16, 0.24);
  overflow: hidden;
}

.ios-notification__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 11px;
}

.ios-notification__text {
  min-width: 0;
  display: grid;
  gap: 2px;
  font-family: "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Manrope", sans-serif;
  line-height: 1.08;
}

.ios-notification__text strong {
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  font-weight: 700;
  color: #eef4ff;
  letter-spacing: -0.015em;
}

.ios-notification__text span {
  font-size: clamp(0.82rem, 1.18vw, 0.94rem);
  color: #e7eefc;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ios-notification time {
  align-self: start;
  margin-top: 2px;
  font-family: "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(239, 247, 255, 0.95);
}

@keyframes iosToastIn {
  from {
    opacity: 0;
    transform: translateX(var(--ios-toast-x)) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(var(--ios-toast-x)) translateY(0);
  }
}

@keyframes iosToastFloat {
  0%,
  100% {
    transform: translateX(var(--ios-toast-x)) translateY(0);
  }
  50% {
    transform: translateX(var(--ios-toast-x)) translateY(-10px);
  }
}

.float-card {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(12, 20, 31, 0.9), rgba(8, 13, 22, 0.82));
  padding: 12px 14px;
  min-width: 186px;
  box-shadow: 0 18px 32px rgba(1, 6, 15, 0.44);
  animation: none;
  opacity: 0;
}

html.intro-ui-visible .float-card--a,
html.intro-ui-visible .float-card--c {
  animation:
    cardInFromLeft 0.64s cubic-bezier(0.2, 0.9, 0.2, 1) both,
    floatCard 5.6s ease-in-out 0.72s infinite;
}

html.intro-ui-visible .float-card--b,
html.intro-ui-visible .float-card--d {
  animation:
    cardInFromRight 0.64s cubic-bezier(0.2, 0.9, 0.2, 1) both,
    floatCard 5.6s ease-in-out 0.72s infinite;
}

.float-card__tag {
  margin: 0;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b8cae2;
}

.float-card__value {
  margin: 5px 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.float-card__meta {
  margin: 4px 0 0;
  color: #95a9c6;
  font-size: 0.72rem;
}

.float-card--a {
  top: 17%;
  left: -1%;
}

.float-card--b {
  top: 27%;
  right: -3%;
}

.float-card--c {
  left: 7%;
  bottom: 10%;
}

.float-card--d {
  right: 8%;
  bottom: 14%;
}

@keyframes cardInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cardInFromRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.momentum-stream {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.momentum-stream__row {
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.momentum-stream__track {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: momentumFlow 42s linear infinite;
  will-change: transform;
}

.momentum-stream__row--reverse .momentum-stream__track {
  animation-direction: reverse;
  animation-duration: 46s;
}

.momentum-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  box-shadow: 0 8px 18px rgba(1, 6, 14, 0.28);
}

.momentum-chip span {
  color: #97e5ef;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes momentumFlow {
  to {
    transform: translateX(-50%);
  }
}

.category-shift {
  margin-top: 46px;
  display: grid;
  gap: 24px;
}

.category-shift__head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.category-shift__head .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.category-shift__head h2 {
  margin: 12px 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.62rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.category-shift__head p {
  margin: 0;
  max-width: 820px;
  color: #aec0d7;
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
}

.category-shift__arena {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(140% 120% at 50% 0%, rgba(var(--askora-tertiary-rgb), 0.1), transparent 58%),
    linear-gradient(160deg, rgba(8, 13, 22, 0.95), rgba(4, 8, 15, 0.94));
  box-shadow: 0 28px 50px rgba(1, 6, 14, 0.44);
  padding: clamp(18px, 2.2vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  overflow: hidden;
}

.category-shift__arena::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(var(--askora-tertiary-rgb), 0), rgba(var(--askora-tertiary-rgb), 0.7), rgba(var(--askora-tertiary-rgb), 0));
  opacity: 0.8;
  z-index: 0;
}

.category-shift__arena::before {
  content: "";
  position: absolute;
  inset: -10% -18%;
  background: linear-gradient(100deg, transparent 44%, rgba(var(--askora-tertiary-rgb), 0.14) 50%, transparent 56%);
  opacity: 0;
  transform: translateX(-18%);
}

.category-shift__arena.is-live::before {
  animation: arenaSweep 3.8s ease-in-out 0.6s infinite;
}

.category-panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: clamp(14px, 1.8vw, 20px);
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
  opacity: 0;
}

.category-panel--old {
  transform: translateX(-34px);
}

.category-panel--new {
  transform: translateX(34px);
}

.category-shift__arena.is-live .category-panel {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.88, 0.2, 1);
}

.category-shift__arena.is-live .category-panel--new {
  transition-delay: 0.08s;
}

.category-panel__head {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.category-panel__head p {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  letter-spacing: -0.01em;
}

.category-panel__head span {
  color: #8fa7c5;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.category-panel--old .category-panel__head p {
  color: #dce7f8;
}

.category-panel--new {
  border-color: rgba(var(--askora-tertiary-rgb), 0.34);
  background: linear-gradient(162deg, rgba(var(--askora-tertiary-rgb), 0.16), rgba(var(--askora-secondary-green-rgb), 0.08) 52%, rgba(255, 255, 255, 0.02));
}

.category-panel--new .category-panel__head p {
  color: #e6fff8;
}

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

.category-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 11px 12px 11px 34px;
  position: relative;
  background: rgba(7, 12, 20, 0.56);
  transition: border-color 0.36s ease, background 0.36s ease, transform 0.36s ease;
}

.category-item p {
  margin: 0;
  font-size: clamp(0.83rem, 0.94vw, 0.92rem);
  line-height: 1.34;
  color: #d1deef;
}

.category-item__dot {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.22);
}

.category-panel--new .category-item__dot {
  background: linear-gradient(140deg, rgba(var(--askora-secondary-green-rgb), 0.9), rgba(var(--askora-tertiary-rgb), 0.9));
  box-shadow: 0 0 0 0 rgba(var(--askora-tertiary-rgb), 0.34);
}

.category-item.is-active {
  border-color: rgba(var(--askora-tertiary-rgb), 0.48);
  background: rgba(9, 19, 31, 0.92);
  transform: translateX(2px);
}

.category-item.is-active .category-item__dot {
  animation: activeDot 1.6s ease-in-out infinite;
}

.category-core {
  width: clamp(134px, 15vw, 190px);
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  place-items: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.92);
}

.category-shift__arena.is-live .category-core {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.64s ease 0.14s, transform 0.76s cubic-bezier(0.2, 0.88, 0.2, 1) 0.14s;
}

.category-core__pulse {
  width: 64%;
  height: 64%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--askora-tertiary-rgb), 0.55), rgba(var(--askora-secondary-green-rgb), 0.2) 50%, transparent 72%);
  filter: blur(10px);
  animation: corePulseCategory 3.2s ease-in-out infinite;
}

.category-core__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(var(--askora-tertiary-rgb), 0.36);
  opacity: 0;
}

.category-core__ring--a {
  transform: rotateX(68deg);
}

.category-core__ring--b {
  transform: rotateY(72deg);
}

.category-shift__arena.is-live .category-core__ring--a {
  animation: ringOrbitInA 1s cubic-bezier(0.2, 0.88, 0.2, 1) both;
}

.category-shift__arena.is-live .category-core__ring--b {
  animation: ringOrbitInB 1.06s cubic-bezier(0.2, 0.88, 0.2, 1) 0.06s both;
}

.category-core p {
  position: absolute;
  margin: 0;
  bottom: -16px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(190, 214, 240, 0.72);
  white-space: nowrap;
}

@keyframes arenaSweep {
  0% {
    opacity: 0;
    transform: translateX(-18%);
  }
  24% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(18%);
  }
}

@keyframes activeDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--askora-tertiary-rgb), 0.35);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(var(--askora-tertiary-rgb), 0);
  }
}

@keyframes corePulseCategory {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes ringOrbitInA {
  from {
    transform: rotateX(42deg) rotateZ(-120deg) scale(0.82);
    opacity: 0;
  }
  to {
    transform: rotateX(68deg) rotateZ(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes ringOrbitInB {
  from {
    transform: rotateY(42deg) rotateZ(120deg) scale(0.82);
    opacity: 0;
  }
  to {
    transform: rotateY(72deg) rotateZ(0deg) scale(1);
    opacity: 1;
  }
}

.platform-performance {
  margin-top: 62px;
}

.platform-performance__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}

.platform-performance__pin {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  max-width: 560px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.platform-performance__pin .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.platform-performance__pin h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.52rem, 2.65vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.platform-performance__pin h2 .title-mobile {
  display: none;
}

.platform-performance__rail {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  max-width: 760px;
  margin: 0 auto;
}

.platform-performance__rail::before {
  display: none;
}

.platform-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  padding: 13px 15px;
  position: relative;
  box-shadow: 0 12px 24px rgba(2, 8, 16, 0.34);
  opacity: 1;
  transform: none;
  transition: border-color 0.34s ease, box-shadow 0.34s ease, background 0.34s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
}

.platform-card::before {
  display: none;
}

.platform-card__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.platform-card__index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(var(--askora-tertiary-rgb), 0.3);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  color: #dbf9ff;
  background: linear-gradient(150deg, rgba(var(--askora-tertiary-rgb), 0.32), rgba(var(--askora-secondary-green-rgb), 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.platform-card h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.16vw, 1.12rem);
  letter-spacing: -0.01em;
}

.platform-card p {
  margin: 0;
  color: #b6c8de;
  font-size: 0.9rem;
  line-height: 1.45;
}

.value-operation {
  margin-top: 74px;
  display: grid;
  gap: 18px;
}

.value-operation__content {
  display: grid;
  gap: 12px;
}

.value-operation__head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.value-operation__head .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.value-operation__head h2 {
  margin: 12px 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.46rem, 2.5vw, 2.28rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.value-operation__head h2 .title-mobile {
  display: none;
}

.value-operation__switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px auto 0;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.value-operation__mode {
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: #b9cce2;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 14px;
  cursor: pointer;
  transition: color 0.28s ease, border-color 0.28s ease, background 0.28s ease, transform 0.24s ease;
}

.value-operation__mode:hover {
  transform: translateY(-1px);
}

.value-operation__mode.is-active {
  color: #04212a;
  border-color: transparent;
  background: var(--askora-secondary-gradient);
  box-shadow: 0 10px 22px rgba(var(--askora-tertiary-rgb), 0.28);
}

.value-operation__composition {
  --value-stage-width: 620;
  --value-stage-height: 640;
  --value-stage-scale: 1;
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

.value-scenes {
  position: relative;
  min-height: calc(var(--value-stage-height) * 1px * var(--value-stage-scale));
}

.value-scene {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(var(--value-stage-width) * 1px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px) scale(var(--value-stage-scale));
  transform-origin: top center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.value-scene.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(var(--value-stage-scale));
}

.value-hero-visual {
  position: relative;
  width: calc(var(--value-stage-width) * 1px);
  min-height: calc(var(--value-stage-height) * 1px);
  padding-top: 8px;
}

.value-hero-visual .visual-glow {
  position: absolute;
  inset: 72px 28px 238px;
  border-radius: 34px;
  background: linear-gradient(130deg, rgba(var(--askora-tertiary-rgb), 0.3), rgba(var(--askora-secondary-green-rgb), 0.14), rgba(var(--askora-secondary-orange-rgb), 0.08));
  filter: blur(0);
}

.value-hero-visual .web-shot,
.value-hero-visual .mobile-shot {
  position: absolute;
  margin: 0;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.value-hero-visual .web-shot {
  top: clamp(128px, 11vw, 158px);
  left: 0;
  right: 68px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--card-shadow);
}

.value-hero-visual .shot-bar {
  height: 30px;
  padding: 11px 14px;
  display: flex;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(3, 7, 14, 0.8);
}

.value-hero-visual .shot-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.value-hero-visual .web-shot img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top center;
}

.value-hero-visual .mobile-shot {
  width: clamp(150px, 27%, 190px);
  right: 0;
  top: clamp(104px, 9.6vw, 138px);
  bottom: auto;
  border-radius: 30px;
  padding: 3px;
  background: #05070A;
  border: 1px solid rgba(0, 0, 0, 0.88);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.48);
}

.value-hero-visual .mobile-shot img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.value-operation__composition .ios-floating-notification {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: 0 auto;
  width: clamp(256px, 33.6vw, 344px);
  max-width: calc(100% - 92px);
  min-height: 62px;
  padding: 10px 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(115deg, rgba(196, 210, 231, 0.36), rgba(115, 145, 188, 0.28));
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  backdrop-filter: blur(14px) saturate(145%);
  box-shadow: 0 18px 40px rgba(5, 9, 16, 0.44);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.value-operation__composition .ios-floating-notification::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 56%);
  pointer-events: none;
}

.value-operation__composition .ios-floating-notification__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  color: #0b0f16;
  box-shadow: 0 6px 14px rgba(3, 8, 16, 0.24);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.value-operation__composition .ios-floating-notification__icon-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 11px;
}

.value-operation__composition .ios-floating-notification__icon-wrap span {
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

.value-operation__composition .ios-floating-notification__text {
  min-width: 0;
  display: grid;
  gap: 2px;
  color: rgba(245, 250, 255, 0.98);
  line-height: 1.08;
  font-family: "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Manrope", sans-serif;
  position: relative;
  z-index: 1;
}

.value-operation__composition .ios-floating-notification__text strong {
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.value-operation__composition .ios-floating-notification__text span {
  font-size: clamp(0.82rem, 1.18vw, 0.94rem);
  letter-spacing: -0.01em;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.value-operation__composition .ios-floating-notification__time {
  align-self: start;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(239, 247, 255, 0.95);
  font-family: "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Manrope", sans-serif;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.value-operation:not(.is-live) .value-scene {
  opacity: 0;
  transform: translateX(-50%) translateY(16px) scale(var(--value-stage-scale));
}

.value-operation__copy {
  max-width: 1120px;
  margin: -2px auto 0;
  text-align: center;
  padding: 0;
}

.value-operation__copy p {
  margin: 0 auto;
  color: #cde0f7;
  font-size: clamp(0.84rem, 1.02vw, 0.94rem);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.value-operation__insights {
  display: none;
}

@media (min-width: 1080px) {
  .value-operation {
    grid-template-columns: minmax(0, 620px) minmax(0, 560px);
    column-gap: clamp(26px, 4vw, 56px);
    align-items: center;
    justify-content: center;
  }

  .value-operation__content {
    order: 2;
    max-width: 560px;
    width: 100%;
    margin: 0;
    gap: 12px;
    align-content: start;
    align-self: center;
    margin-top: -12px;
  }

  .value-operation__composition {
    order: 1;
    justify-self: start;
    align-self: start;
    margin: 0;
  }

  .value-operation__head {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .value-operation__head .eyebrow {
    margin-left: 0;
    margin-right: 0;
  }

  .value-operation__switch {
    justify-self: start;
    margin: 2px 0 0;
  }

  .value-operation__copy {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .value-operation__copy p {
    margin: 0;
    max-width: 46ch;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .value-operation__insights {
    display: block;
    margin-top: 2px;
  }

  .value-operation__insight-set {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .value-operation__insight-set.is-active {
    display: grid;
  }

  .value-operation__insight-card {
    min-height: 118px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
      linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
      radial-gradient(80% 120% at 6% 0%, rgba(var(--askora-tertiary-rgb), 0.16), transparent 72%);
    box-shadow: 0 14px 32px rgba(3, 9, 18, 0.24);
    padding: 12px 14px;
    display: grid;
    align-content: start;
    gap: 4px;
  }

  .value-operation__insight-label {
    color: #9db4cf;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .value-operation__insight-value {
    color: #eff8ff;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .value-operation__insight-text {
    margin: 0;
    color: #b9cee6;
    font-size: 0.84rem;
    line-height: 1.32;
  }
}

.contact {
  padding-top: 72px;
}

.contact-grid {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px;
  background:
    radial-gradient(68% 92% at 8% 0%, rgba(var(--askora-tertiary-rgb), 0.16), transparent 70%),
    linear-gradient(165deg, rgba(7, 13, 21, 0.95), rgba(10, 17, 28, 0.9));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
}

.contact-copy h2 {
  margin: 12px 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.contact-copy p {
  margin: 0;
  color: var(--text-soft);
}

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

.contact-points li {
  position: relative;
  padding-left: 24px;
  color: #D6DEEB;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--askora-secondary-gradient);
}

.contact-form {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #CFDAEB;
}

.contact-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 9, 16, 0.88);
  color: #F6F9FF;
  border-radius: 12px;
  min-height: 48px;
  padding: 0 14px;
  font-size: 0.98rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder {
  color: #7E8BA0;
}

.contact-form input:focus {
  border-color: rgba(var(--askora-tertiary-rgb), 0.7);
  box-shadow: 0 0 0 4px rgba(var(--askora-tertiary-rgb), 0.16);
}

.form-actions {
  margin-top: 4px;
  display: grid;
  gap: 10px;
}

.form-status {
  min-height: 21px;
  margin: 0;
  font-size: 0.9rem;
  color: #D9E2F0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
  padding: 36px 0 44px;
}

.footer-inner {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #D2DCEC;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  color: #FFFFFF;
}

html.perf-lite .cursor-glow {
  display: none;
}

html.perf-lite .topbar {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

html.perf-lite .stage-orbital {
  box-shadow: 0 24px 46px rgba(1, 6, 16, 0.38);
}

html.perf-lite .plasma-logo {
  filter:
    drop-shadow(0 0 8px rgba(var(--askora-tertiary-rgb), 0.52))
    drop-shadow(0 0 14px rgba(var(--askora-secondary-green-rgb), 0.44))
    drop-shadow(0 0 24px rgba(var(--askora-secondary-orange-rgb), 0.28));
}

html.perf-lite .plasma-logo__veil {
  opacity: 0.24;
}

html.perf-lite .plasma-logo__grain {
  opacity: 0.08;
}

html.perf-lite .ios-notification,
html.perf-lite .value-operation__composition .ios-floating-notification {
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
}

html.perf-lite .momentum-stream__track {
  animation-duration: 56s;
}

html.perf-lite .momentum-stream__row--reverse .momentum-stream__track {
  animation-duration: 60s;
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  .prelude__ring,
  .orbital-core__glow,
  .orbital-ring--c,
  .plasma-logo,
  .plasma-logo__veil,
  .plasma-logo__grain,
  .ios-notification,
  .float-card,
  .momentum-stream__track,
  .category-shift__arena.is-live::before,
  .category-item.is-active::before,
  .category-core,
  .category-core__ring,
  .value-operation__composition .ios-floating-notification {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (min-width: 1201px) {
  .value-operation__composition .ios-floating-notification {
    width: clamp(338px, 44.4vw, 454px);
    min-height: 71px;
    padding: 12px 16px;
    border-radius: 27px;
    gap: 13px;
  }

  .value-operation__composition .ios-floating-notification__icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .value-operation__composition .ios-floating-notification__icon-wrap img {
    border-radius: 13px;
  }

  .value-operation__composition .ios-floating-notification__text strong {
    font-size: clamp(0.924rem, 1.432vw, 1.035rem);
  }

  .value-operation__composition .ios-floating-notification__text span {
    font-size: clamp(0.758rem, 1.09vw, 0.869rem);
  }

  .value-operation__composition .ios-floating-notification__time {
    font-size: 0.758rem;
  }
}

@media (max-width: 1200px) {
  .topbar,
  main {
    width: min(1320px, calc(100% - 38px));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .hero__stage {
    height: 620px;
  }

  .platform-performance {
    margin-top: 52px;
  }

  .platform-performance__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-performance__pin {
    position: relative;
    top: auto;
    transform: none;
    max-width: 860px;
  }

  .platform-performance__rail {
    padding-left: 16px;
  }

  .value-operation {
    margin-top: 58px;
  }

  .value-operation__composition {
    max-width: 620px;
  }

  .category-shift__arena {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-shift__arena::after {
    display: none;
  }

  .category-core {
    margin: 2px auto 10px;
  }

  .contact-grid {
    padding: 24px;
  }

  .footer-inner {
    width: min(1320px, calc(100% - 38px));
  }
}

@media (max-width: 860px) {
  body {
    background:
      linear-gradient(180deg, #000000 0px, #000000 58px, rgba(0, 0, 0, 0.94) 84px, rgba(0, 0, 0, 0) 122px),
      linear-gradient(0deg, #000000 0px, #000000 58px, rgba(0, 0, 0, 0.94) 84px, rgba(0, 0, 0, 0) 122px),
      radial-gradient(64% 60% at 16% 40%, rgba(var(--askora-tertiary-rgb), 0.26), transparent 72%),
      radial-gradient(58% 54% at 86% 38%, rgba(var(--askora-secondary-orange-rgb), 0.18), transparent 74%),
      radial-gradient(58% 64% at 80% 102%, rgba(var(--askora-secondary-green-rgb), 0.18), transparent 74%),
      var(--bg);
  }

  #flux-canvas {
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0px,
      rgba(0, 0, 0, 0.12) 48px,
      rgba(0, 0, 0, 0.72) 86px,
      #000000 124px,
      #000000 calc(100% - 124px),
      rgba(0, 0, 0, 0.72) calc(100% - 86px),
      rgba(0, 0, 0, 0.12) calc(100% - 48px),
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0px,
      rgba(0, 0, 0, 0.12) 48px,
      rgba(0, 0, 0, 0.72) 86px,
      #000000 124px,
      #000000 calc(100% - 124px),
      rgba(0, 0, 0, 0.72) calc(100% - 86px),
      rgba(0, 0, 0, 0.12) calc(100% - 48px),
      transparent 100%
    );
  }

  .prelude {
    --focus-x: 50%;
    --focus-y: 50%;
  }

  .topbar {
    grid-template-columns: auto auto;
    gap: 14px;
  }

  .topnav {
    display: none;
  }

  .topbar__actions {
    justify-self: end;
  }

  .topbar__login {
    display: none;
  }

  .hero {
    padding-top: 8px;
  }

  body:not(.inner-page) .hero__stage {
    order: -1;
    width: 100%;
  }

  body:not(.inner-page) .hero__copy {
    order: 1;
    justify-items: center;
    text-align: center;
  }

  body:not(.inner-page) .hero h1,
  body:not(.inner-page) .hero__lede,
  body:not(.inner-page) .hero__metrics,
  body:not(.inner-page) .metric,
  body:not(.inner-page) .metric__label,
  body:not(.inner-page) .category-shift__head,
  body:not(.inner-page) .platform-performance__pin,
  body:not(.inner-page) .value-operation__copy,
  body:not(.inner-page) .contact-copy,
  body:not(.inner-page) .contact-points li {
    text-align: center;
  }

  body:not(.inner-page) .hero__actions {
    justify-content: center;
    width: 100%;
  }

  body:not(.inner-page) .platform-performance__rail {
    padding-left: 0;
  }

  body:not(.inner-page) .platform-performance__rail::before,
  body:not(.inner-page) .platform-card::before,
  body:not(.inner-page) .category-item__dot,
  body:not(.inner-page) .contact-points li::before {
    display: none;
  }

  body:not(.inner-page) .platform-card {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  body:not(.inner-page) .platform-card__body {
    justify-items: start;
    text-align: left;
  }

  body:not(.inner-page) .category-item {
    padding: 10px;
    text-align: center;
  }

  body:not(.inner-page) .contact-points li {
    padding-left: 0;
  }

  body:not(.inner-page) .contact-form label,
  body:not(.inner-page) .contact-form input {
    text-align: center;
  }

  body:not(.inner-page) .form-actions {
    justify-items: center;
  }

  body:not(.inner-page) .footer-inner {
    align-items: center;
  }

  body:not(.inner-page) .footer-brand,
  body:not(.inner-page) .footer-links {
    justify-content: center;
    text-align: center;
  }

  .hero h1 span {
    white-space: normal;
  }

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

  .hero__lede-line {
    white-space: normal;
  }

  .hero__stage {
    min-height: clamp(470px, 90vw, 580px);
    height: auto;
    margin-inline: auto;
    max-width: 560px;
  }

  .stage-orbital {
    inset: clamp(14px, 4.5vw, 24px);
  }

  .orbital-core,
  .orbital-ring {
    top: 42%;
  }

  .orbital-core__label {
    font-size: 0.518rem;
    letter-spacing: 0.12em;
  }

  .platform-performance {
    margin-top: 40px;
  }

  .platform-performance__pin h2 {
    font-size: clamp(1.36rem, 5.6vw, 1.94rem);
  }

  .platform-performance__pin h2 .title-desktop {
    display: none;
  }

  .platform-performance__pin h2 .title-mobile {
    display: inline;
  }

  .platform-performance__rail {
    gap: 11px;
    padding: 0;
  }

  .platform-card {
    border-radius: 14px;
    padding: 13px 13px 12px;
  }

  .platform-card::before {
    left: -14px;
    width: 7px;
    height: 7px;
  }

  .platform-card h3 {
    font-size: 0.95rem;
  }

  .platform-card p {
    font-size: 0.84rem;
  }

  .platform-card__index {
    width: 31px;
    height: 31px;
    font-size: 0.72rem;
  }

  .value-operation {
    margin-top: 42px;
    gap: 14px;
  }

  .value-operation__head h2 {
    font-size: clamp(1.26rem, 5.2vw, 1.84rem);
  }

  .value-operation__head h2 .title-desktop {
    display: none;
  }

  .value-operation__head h2 .title-mobile {
    display: inline;
  }

  .value-operation__mode {
    min-height: 34px;
    font-size: 0.72rem;
    padding: 0 12px;
  }

  .value-operation__composition {
    max-width: 100%;
  }

  .value-scenes {
    min-height: 0;
  }

  .value-scene {
    width: 100%;
    max-width: 620px;
    transform: translateX(-50%) translateY(10px);
  }

  .value-scene.is-active {
    transform: translateX(-50%) translateY(0);
  }

  .value-operation:not(.is-live) .value-scene {
    transform: translateX(-50%) translateY(16px);
  }

  .value-hero-visual {
    width: 100%;
    min-height: clamp(420px, 96vw, 580px);
  }

  .value-hero-visual .visual-glow {
    inset: clamp(58px, 12vw, 84px) clamp(24px, 6vw, 38px) clamp(140px, 30vw, 206px);
  }

  .value-hero-visual .web-shot {
    top: clamp(102px, 21vw, 144px);
    right: clamp(40px, 10vw, 64px);
  }

  .value-hero-visual .mobile-shot {
    width: clamp(122px, 31vw, 176px);
    top: clamp(88px, 18vw, 126px);
  }

  .value-operation__composition .ios-floating-notification {
    top: clamp(36px, 7vw, 58px);
    width: clamp(234px, 70vw, 334px);
    max-width: calc(100% - clamp(34px, 8vw, 84px));
  }

  .value-operation__copy {
    max-width: 100%;
    padding: 0;
  }

  .value-operation__copy p {
    font-size: 0.82rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .momentum-stream {
    margin-top: 24px;
    gap: 10px;
  }

  .momentum-stream__row {
    padding: 10px 0;
  }

  .momentum-stream__track {
    gap: 10px;
    animation-duration: 48s;
  }

  .momentum-stream__row--reverse .momentum-stream__track {
    animation-duration: 52s;
  }

  .momentum-chip {
    min-height: 32px;
    padding: 8px 12px;
  }

  .momentum-chip span {
    font-size: 0.66rem;
  }

  .category-shift {
    margin-top: 34px;
    gap: 18px;
  }

  .category-shift__head h2 {
    margin: 10px 0 12px;
    font-size: clamp(1.42rem, 6vw, 2rem);
  }

  .category-shift__head p {
    font-size: 0.9rem;
  }

  .category-shift__arena {
    border-radius: 18px;
    padding: 14px;
  }

  .category-core {
    width: 132px;
    margin-bottom: 4px;
  }

  .category-core p {
    bottom: -14px;
    font-size: 0.64rem;
  }

  .category-panel {
    padding: 12px;
  }

  .category-item {
    padding: 10px 10px 10px 32px;
  }

  .category-item p {
    font-size: 0.82rem;
  }

  .float-card {
    min-width: 158px;
  }

  .ios-notification {
    --ios-toast-x: -50%;
    width: clamp(248px, 64vw, 322px);
    max-width: calc(100% - 24px);
    left: 50%;
    top: 14px;
    transform: translateX(var(--ios-toast-x));
    gap: 8px;
    padding: 8px 10px;
    border-radius: 22px;
  }

  .ios-notification__icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .ios-notification time {
    font-size: 0.76rem;
  }

  .ios-notification__text span {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .float-card {
    min-width: clamp(116px, 30vw, 146px);
    max-width: 40%;
    padding: 9px 10px;
  }

  .float-card__tag {
    font-size: 0.6rem;
  }

  .float-card__value {
    font-size: clamp(0.9rem, 2.9vw, 1rem);
  }

  .float-card__meta {
    font-size: 0.68rem;
  }

  .float-card--a {
    left: 0.5%;
    top: 57%;
  }

  .float-card--b {
    right: 0.5%;
    top: 59.2%;
  }

  .float-card--c {
    left: 3.8%;
    bottom: 2.4%;
  }

  .float-card--d {
    right: 10.6%;
    bottom: 0%;
    min-width: clamp(118px, 32.5vw, 156px);
    max-width: 42%;
    padding: 7px 10px;
  }

  .float-card--d .float-card__tag {
    font-size: 0.52rem;
  }

  .float-card--d .float-card__value {
    font-size: clamp(0.78rem, 2.35vw, 0.86rem);
  }

  .float-card--d .float-card__meta {
    font-size: 0.58rem;
    white-space: nowrap;
  }

  .contact {
    padding-top: 52px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-copy h2 {
    font-size: clamp(1.34rem, 5.6vw, 1.9rem);
  }

  .footer-inner {
    width: min(1320px, calc(100% - 38px));
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    background:
      linear-gradient(180deg, #000000 0px, #000000 52px, rgba(0, 0, 0, 0.94) 78px, rgba(0, 0, 0, 0) 114px),
      linear-gradient(0deg, #000000 0px, #000000 52px, rgba(0, 0, 0, 0.94) 78px, rgba(0, 0, 0, 0) 114px),
      radial-gradient(68% 64% at 15% 42%, rgba(var(--askora-tertiary-rgb), 0.24), transparent 74%),
      radial-gradient(62% 58% at 87% 40%, rgba(var(--askora-secondary-orange-rgb), 0.17), transparent 76%),
      radial-gradient(60% 66% at 80% 103%, rgba(var(--askora-secondary-green-rgb), 0.17), transparent 76%),
      var(--bg);
  }

  #flux-canvas {
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0px,
      rgba(0, 0, 0, 0.1) 42px,
      rgba(0, 0, 0, 0.68) 80px,
      #000000 116px,
      #000000 calc(100% - 116px),
      rgba(0, 0, 0, 0.68) calc(100% - 80px),
      rgba(0, 0, 0, 0.1) calc(100% - 42px),
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0px,
      rgba(0, 0, 0, 0.1) 42px,
      rgba(0, 0, 0, 0.68) 80px,
      #000000 116px,
      #000000 calc(100% - 116px),
      rgba(0, 0, 0, 0.68) calc(100% - 80px),
      rgba(0, 0, 0, 0.1) calc(100% - 42px),
      transparent 100%
    );
  }

  .topbar,
  main {
    width: min(1320px, calc(100% - 22px));
  }

  .topbar {
    top: 8px;
    padding: 8px;
    border-radius: 12px;
  }

  .brand__text {
    display: inline;
    font-size: 0.84rem;
  }

  .btn {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7.2vw, 2.16rem);
    gap: 4px;
  }

  .hero__lede {
    font-size: 0.88rem;
  }

  .hero__stage {
    min-height: clamp(430px, 106vw, 510px);
    max-width: 440px;
  }

  .platform-performance {
    margin-top: 34px;
  }

  .platform-performance__layout {
    gap: 14px;
  }

  .platform-performance__pin h2 {
    font-size: clamp(1.24rem, 7vw, 1.62rem);
  }

  .platform-performance__rail {
    padding: 0;
    gap: 10px;
  }

  .platform-card {
    padding: 12px 11px;
  }

  .platform-card h3 {
    font-size: 0.89rem;
  }

  .platform-card p {
    margin-top: 8px;
    font-size: 0.8rem;
  }

  .value-operation {
    margin-top: 34px;
    gap: 12px;
  }

  .value-operation__head h2 {
    font-size: clamp(1.14rem, 6.8vw, 1.54rem);
  }

  .value-operation__switch {
    gap: 6px;
    padding: 5px;
  }

  .value-operation__mode {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .value-operation__copy {
    max-width: 100%;
    padding: 0;
  }

  .value-operation__copy p {
    font-size: 0.76rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .value-hero-visual {
    min-height: clamp(350px, 104vw, 470px);
  }

  .value-hero-visual .visual-glow {
    inset: clamp(50px, 14vw, 76px) clamp(16px, 5vw, 28px) clamp(120px, 34vw, 176px);
  }

  .value-hero-visual .web-shot {
    top: clamp(84px, 24vw, 118px);
    right: clamp(24px, 8vw, 40px);
    border-radius: 20px;
  }

  .value-hero-visual .mobile-shot {
    width: clamp(102px, 33vw, 142px);
    top: clamp(74px, 21vw, 108px);
    border-radius: 24px;
  }

  .value-operation__composition .ios-floating-notification {
    top: clamp(24px, 8vw, 36px);
    width: min(294px, calc(100% - 20px));
    max-width: calc(100% - 20px);
    min-height: 56px;
    padding: 8px 10px;
    border-radius: 20px;
  }

  .value-operation__composition .ios-floating-notification__icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .value-operation__composition .ios-floating-notification__icon-wrap img {
    border-radius: 9px;
  }

  .value-operation__composition .ios-floating-notification__text strong {
    font-size: 0.92rem;
  }

  .value-operation__composition .ios-floating-notification__text span {
    font-size: 0.76rem;
  }

  .value-operation__composition .ios-floating-notification__time {
    font-size: 0.7rem;
  }

  .momentum-stream {
    margin-top: 20px;
  }

  .momentum-stream__track {
    animation-duration: 54s;
  }

  .momentum-stream__row--reverse .momentum-stream__track {
    animation-duration: 58s;
  }

  .category-shift {
    margin-top: 28px;
    gap: 16px;
  }

  .category-shift__head h2 {
    font-size: clamp(1.28rem, 7vw, 1.72rem);
  }

  .category-shift__head p {
    font-size: 0.84rem;
  }

  .category-shift__arena {
    padding: 12px;
    border-radius: 16px;
  }

  .category-panel__head p {
    font-size: 0.94rem;
  }

  .category-panel__head span {
    font-size: 0.76rem;
  }

  .category-item p {
    font-size: 0.79rem;
  }

  .stage-orbital {
    inset: 4%;
  }

  .orbital-core,
  .orbital-ring {
    top: 41.5%;
  }

  .orbital-core__label {
    font-size: 0.5rem;
    letter-spacing: 0.11em;
  }

  .ios-notification {
    width: clamp(230px, 69vw, 305px);
    max-width: calc(100% - 14px);
    top: 10px;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 20px;
  }

  .ios-notification__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .ios-notification__text strong {
    font-size: 0.9rem;
  }

  .ios-notification__text span {
    font-size: 0.74rem;
  }

  .ios-notification time {
    font-size: 0.7rem;
  }

  .float-card {
    padding: 8px 8px;
    min-width: clamp(104px, 34vw, 128px);
    max-width: 42%;
  }

  .float-card__tag {
    font-size: 0.56rem;
  }

  .float-card__value {
    font-size: 0.86rem;
  }

  .float-card__meta {
    font-size: 0.64rem;
  }

  .float-card--a {
    left: 0.8%;
    top: 58%;
  }

  .float-card--b {
    right: 0.8%;
    top: 61%;
  }

  .float-card--c {
    left: 3%;
    bottom: 1.8%;
  }

  .float-card--d {
    right: 9.4%;
    bottom: -0.6%;
    min-width: clamp(104px, 35vw, 134px);
    max-width: 39%;
    padding: 6px 9px;
  }

  .float-card--d .float-card__tag {
    font-size: 0.48rem;
  }

  .float-card--d .float-card__value {
    font-size: 0.73rem;
  }

  .float-card--d .float-card__meta {
    font-size: 0.54rem;
    white-space: nowrap;
  }

  .contact {
    padding-top: 40px;
  }

  .contact-grid {
    padding: 16px;
    border-radius: 18px;
    gap: 14px;
  }

  .contact-form {
    padding: 14px;
    gap: 10px;
  }

  .contact-form label {
    font-size: 0.74rem;
    gap: 6px;
  }

  .contact-form input {
    min-height: 42px;
    font-size: 0.9rem;
  }

  .contact-copy h2 {
    font-size: clamp(1.18rem, 7vw, 1.5rem);
  }

  .contact-copy p,
  .contact-points li {
    font-size: 0.84rem;
  }

  .footer-inner {
    width: min(1320px, calc(100% - 22px));
    gap: 14px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.82rem;
  }
}
