@font-face {
  font-family: "Sora";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/sora-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/fonts/sora-latin-600-normal.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  font-family: Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f7faff;
  background: #020817;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --bg: #020817;
  --surface: rgba(10, 24, 52, .78);
  --surface-strong: rgba(16, 35, 72, .92);
  --line: rgba(118, 157, 232, .18);
  --line-strong: rgba(131, 176, 255, .34);
  --text: #f7faff;
  --muted: #9caecc;
  --blue: #75a7ff;
  --indigo: #646cff;
  --mint: #46e3b7;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html,
body {
  min-width: 320px;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
}

body {
  background:
    radial-gradient(circle at 79% 20%, rgba(65, 119, 255, .17), transparent 34rem),
    radial-gradient(circle at 12% 78%, rgba(67, 77, 221, .12), transparent 28rem),
    linear-gradient(150deg, #020817 0%, #071226 58%, #030919 100%);
}

button { color: inherit; font: inherit; }

.shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 1480px);
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  margin: 0 auto;
  padding: env(safe-area-inset-top) clamp(24px, 5vw, 76px) env(safe-area-inset-bottom);
  display: grid;
  grid-template-rows: clamp(66px, 10vh, 94px) minmax(0, 1fr) clamp(42px, 7vh, 64px);
  overflow: hidden;
}

.shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(115, 184, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 184, 255, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 3%, #000 43%, transparent 96%);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
}

.ambient-one {
  width: 28rem;
  height: 28rem;
  top: 3%;
  right: -4%;
  background: rgba(67, 127, 255, .11);
}

.ambient-two {
  width: 22rem;
  height: 22rem;
  bottom: 0;
  left: 4%;
  background: rgba(78, 83, 221, .09);
}

.masthead {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.brand-mark img { display: block; width: 34px; height: 34px; }

.wordmark {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.045em;
}

.status,
.signal-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.masthead-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
}

.language-switcher::after {
  content: "⌄";
  position: absolute;
  top: 50%;
  right: 9px;
  color: #91a9cf;
  font-size: .66rem;
  pointer-events: none;
  transform: translateY(-58%);
}

.language-switcher select {
  width: 57px;
  height: 36px;
  appearance: none;
  padding: 0 22px 0 10px;
  border: 1px solid rgba(143, 181, 255, .3);
  border-radius: 10px;
  outline: none;
  color: #eaf2ff;
  background: linear-gradient(145deg, rgba(119, 159, 232, .17), rgba(10, 28, 59, .48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 9px 28px rgba(0, 4, 16, .22);
  backdrop-filter: blur(18px) saturate(130%);
  cursor: pointer;
  font: inherit;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.language-switcher select:hover,
.language-switcher select:focus-visible {
  border-color: rgba(143, 181, 255, .62);
  background: linear-gradient(145deg, rgba(119, 159, 232, .25), rgba(10, 28, 59, .62));
}

.language-switcher option { color: #eaf2ff; background: #0a182a; }

.status {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.status > span,
.live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(70, 227, 183, .72);
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(370px, 1.06fr);
  align-items: center;
  gap: clamp(40px, 7vw, 108px);
  padding: clamp(22px, 4.5vh, 54px) 0;
}

.copy { max-width: 670px; }

.eyebrow {
  margin: 0 0 clamp(14px, 2.2vh, 23px);
  color: var(--blue);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.7rem, 5.35vw, 6.1rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .96;
  text-wrap: balance;
}

.lede {
  max-width: 610px;
  margin: clamp(18px, 3.2vh, 31px) 0 0;
  color: var(--muted);
  font-size: clamp(.9rem, 1.3vw, 1.12rem);
  line-height: 1.62;
}

.coming-soon {
  margin-top: clamp(20px, 3.5vh, 34px);
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.coming-soon span:last-child { color: #8093b5; }

.rule {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.signal-card {
  position: relative;
  width: 100%;
  height: clamp(310px, 51vh, 490px);
  min-height: 0;
  padding: clamp(18px, 2.1vw, 26px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 1px solid var(--line-strong);
  border-radius: clamp(22px, 2.5vw, 32px);
  background:
    linear-gradient(145deg, rgba(19, 43, 91, .54), rgba(5, 14, 32, .78)),
    var(--surface);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(24px) saturate(125%);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1.5deg);
  overflow: hidden;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 10%, rgba(112, 158, 255, .12), transparent 34%);
}

.card-head,
.card-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-head { justify-content: space-between; padding: 0 3px 14px; }
.signal-state { color: #90a5c6; }

.chart-wrap {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(118, 157, 232, .1);
  border-bottom: 1px solid rgba(118, 157, 232, .1);
}

.signal-card svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: visible;
}

.grid path { fill: none; stroke: rgba(139, 171, 229, .09); stroke-width: 1; }
.area { fill: url(#area); }
.line { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; filter: url(#glow); }
.point { fill: #b8d7ff; }
.pulse { fill: none; stroke: var(--blue); stroke-width: 1.5; opacity: .45; }

.metric {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(132, 173, 255, .18);
  border-radius: 12px;
  background: rgba(3, 12, 30, .68);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
}

.metric b { color: #dceaff; font-size: .62rem; font-weight: 600; letter-spacing: .04em; }
.metric small { color: #7f93b4; font-size: .54rem; letter-spacing: .05em; text-transform: uppercase; }
.metric-one { left: 7%; bottom: 12%; }
.metric-two { right: 5%; top: 15%; }

.card-foot {
  gap: clamp(13px, 2.3vw, 25px);
  justify-content: flex-start;
  padding: 14px 3px 0;
  white-space: nowrap;
}

footer {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #7183a2;
  font-size: .6rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Shared Crynal welcome presentation: five seconds of motion, two seconds still. */
.welcome-experience {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 88%, rgba(52, 104, 255, .19), transparent 34%),
    linear-gradient(180deg, #020817 0%, #071226 58%, #050b14 100%);
}

.welcome-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .32;
  background-image:
    linear-gradient(rgba(115, 184, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 184, 255, .055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent 8%, #000 54%, transparent 95%);
  animation: welcome-grid 5s ease-out both;
}

.welcome-skip {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(168, 204, 255, .2);
  border-radius: 999px;
  color: rgba(224, 236, 255, .66);
  background: rgba(8, 20, 44, .32);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.welcome-skip:hover,
.welcome-skip:focus-visible {
  color: #fff;
  border-color: rgba(115, 184, 255, .62);
  background: rgba(45, 86, 173, .28);
  outline: none;
}

.welcome-light {
  position: absolute;
  left: 50%;
  top: -22vh;
  width: min(58rem, 96vw);
  height: 112vh;
  z-index: -1;
  transform: translateX(-50%);
  opacity: 0;
  background: conic-gradient(from 160deg at 50% 0%, transparent 0deg, rgba(65, 119, 255, .02) 9deg, rgba(78, 142, 255, .31) 22deg, rgba(119, 191, 255, .08) 35deg, transparent 47deg);
  filter: blur(8px);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .88) 64%, transparent 100%);
  animation: welcome-beam 4.4s cubic-bezier(.2, .75, .25, 1) .15s both;
}

.welcome-stage {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(760px, calc(100vw - 40px));
  margin-top: -4vh;
  text-align: center;
}

.welcome-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 310px;
  height: 230px;
  opacity: 0;
  transform: translateY(-52px) scale(.76) rotateX(18deg);
  animation: welcome-logo-arrive 3.375s cubic-bezier(.16, 1, .3, 1) 1.05s forwards;
}

.welcome-logo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    brightness(1.14)
    saturate(1.12)
    drop-shadow(0 18px 28px rgba(0, 13, 44, .52))
    drop-shadow(0 0 34px rgba(83, 151, 255, .32));
}

.welcome-kicker {
  margin: 2px 0 10px;
  color: #85b7ff;
  opacity: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  transform: translateY(12px);
  animation: welcome-copy-in 1.625s ease-out 2.95s forwards;
}

.welcome-stage h1 {
  margin: 0;
  color: #f7faff;
  opacity: 0;
  font-size: clamp(2.25rem, 5.4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: 1.03;
  text-shadow: 0 8px 35px rgba(0, 0, 0, .42);
  transform: translateY(18px);
  animation: welcome-copy-in 1.45s cubic-bezier(.2, .8, .2, 1) 2.85s forwards;
}

.welcome-stage h1 span {
  color: #8abaff;
  background: linear-gradient(92deg, #6f9fff 0%, #c5e2ff 50%, #6f9fff 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: welcome-title-shimmer 1.55s ease-in-out 2.85s both;
}

.welcome-tagline {
  margin: 18px 0 0;
  color: rgba(191, 210, 236, .62);
  opacity: 0;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateY(12px);
  animation: welcome-copy-in .9s ease-out 3.5s forwards;
}

.welcome-platform {
  position: absolute;
  left: 50%;
  bottom: 5vh;
  width: min(780px, 92vw);
  height: 120px;
  border: 1px solid rgba(105, 165, 255, .2);
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(72, 133, 255, .26) 0%, rgba(38, 77, 161, .1) 38%, rgba(5, 12, 24, .08) 67%, transparent 72%);
  box-shadow: inset 0 0 60px rgba(61, 125, 255, .15), 0 -8px 90px rgba(46, 112, 255, .13);
  transform: translateX(-50%) scaleX(.35);
  animation: welcome-platform-open 3.75s cubic-bezier(.16, 1, .3, 1) .625s forwards;
}

.welcome-platform span {
  position: absolute;
  inset: 24% 11%;
  border-top: 1px solid rgba(134, 190, 255, .58);
  border-radius: 50%;
  filter: drop-shadow(0 0 9px rgba(84, 157, 255, .9));
}

@keyframes welcome-beam {
  0% { opacity: 0; transform: translateX(-50%) scaleX(.3); }
  42% { opacity: 1; }
  100% { opacity: .72; transform: translateX(-50%) scaleX(1); }
}

@keyframes welcome-platform-open {
  0% { opacity: 0; transform: translateX(-50%) scaleX(.25); }
  100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
}

@keyframes welcome-logo-arrive {
  0% { opacity: 0; transform: translateY(-52px) scale(.76) rotateX(18deg); filter: blur(8px); }
  64% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1) rotateX(0); filter: blur(0); }
}

@keyframes welcome-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes welcome-title-shimmer {
  from { background-position: 100% 0; }
  to { background-position: 0 0; }
}

@keyframes welcome-grid {
  from { transform: perspective(600px) rotateX(12deg) scale(1.08); opacity: 0; }
  to { transform: perspective(600px) rotateX(0) scale(1); opacity: .32; }
}

@media (max-width: 800px) {
  .shell {
    padding-right: clamp(18px, 5vw, 34px);
    padding-left: clamp(18px, 5vw, 34px);
    grid-template-rows: clamp(62px, 9vh, 76px) minmax(0, 1fr) clamp(38px, 6vh, 50px);
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(160px, 1fr);
    justify-items: center;
    gap: clamp(12px, 2.6vh, 24px);
    padding: clamp(10px, 2vh, 20px) 0;
  }

  .copy { max-width: 700px; text-align: center; }
  .copy h2 { font-size: clamp(2.25rem, 8vw, 4.3rem); }
  .lede { max-width: 660px; margin-right: auto; margin-left: auto; }
  .coming-soon { justify-content: center; }

  .signal-card {
    width: min(100%, 680px);
    height: 100%;
    max-height: 300px;
    transform: none;
  }
}

@media (max-width: 560px) {
  .shell {
    padding-right: 16px;
    padding-left: 16px;
    grid-template-rows: clamp(56px, 9vh, 64px) minmax(0, 1fr) clamp(34px, 5.5vh, 42px);
  }

  .brand { gap: 8px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-mark img { width: 29px; height: 29px; }
  .wordmark { font-size: 1.06rem; }
  .status { gap: 7px; font-size: .55rem; letter-spacing: .08em; }
  .status { display: none; }

  .hero {
    grid-template-rows: auto minmax(145px, 1fr);
    gap: 10px;
    padding: 7px 0;
  }

  .eyebrow { margin-bottom: 9px; font-size: .56rem; letter-spacing: .15em; }
  .copy h2 { font-size: clamp(1.95rem, 10vw, 3rem); line-height: .98; }
  .lede { margin-top: 12px; font-size: clamp(.73rem, 3.25vw, .86rem); line-height: 1.48; }
  .coming-soon { margin-top: 12px; gap: 8px; font-size: .51rem; letter-spacing: .08em; }
  .rule { width: 16px; }

  .signal-card {
    min-height: 145px;
    max-height: 225px;
    padding: 12px 13px;
    border-radius: 19px;
  }

  .card-head,
  .card-foot { font-size: .5rem; letter-spacing: .07em; }
  .card-head { padding-bottom: 8px; }
  .card-foot { justify-content: space-between; gap: 7px; padding-top: 8px; }
  .metric { display: none; }
  footer { gap: 12px; font-size: .5rem; letter-spacing: .06em; }

  .welcome-logo { width: 255px; height: 190px; }
  .welcome-stage { margin-top: -8vh; }
  .welcome-stage h1 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
  .welcome-platform { bottom: 8vh; height: 82px; }
}

@media (max-height: 620px) and (min-width: 700px) {
  .shell {
    padding-right: clamp(24px, 4vw, 54px);
    padding-left: clamp(24px, 4vw, 54px);
    grid-template-rows: 54px minmax(0, 1fr) 34px;
  }

  .hero { gap: clamp(28px, 5vw, 70px); padding: 12px 0; }
  .eyebrow { margin-bottom: 12px; }
  .copy h2 { font-size: clamp(2.45rem, 4.8vw, 4.2rem); }
  .lede { margin-top: 14px; font-size: .82rem; line-height: 1.5; }
  .coming-soon { margin-top: 16px; }
  .signal-card { height: calc(100svh - 126px); max-height: 390px; }
}

@media (max-height: 610px) and (max-width: 560px) {
  .lede { display: none; }
  .coming-soon { margin-top: 10px; }
  .signal-card { min-height: 130px; max-height: 185px; }
  footer span:last-child { display: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: pulse 2.4s ease-out infinite; transform-origin: 620px 86px; }

  @keyframes pulse {
    0% { transform: scale(.55); opacity: .65; }
    100% { transform: scale(1.8); opacity: 0; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-experience::before,
  .welcome-light,
  .welcome-logo,
  .welcome-kicker,
  .welcome-stage h1,
  .welcome-stage h1 span,
  .welcome-tagline,
  .welcome-platform,
  .pulse {
    animation: none !important;
  }

  .welcome-light { opacity: .5; }
  .welcome-logo,
  .welcome-kicker,
  .welcome-stage h1,
  .welcome-tagline,
  .welcome-platform { opacity: 1; transform: none; }
  .welcome-platform { transform: translateX(-50%); }
}
