:root {
  --bg-main: #242734;
  --bg-deep: #1a1e2a;
  --bg-soft: #2e3242;
  --panel: #2a2f3f;
  --panel-2: #303649;
  --text: #f4f6fb;
  --muted: #c8cfdd;
  --line: rgba(255, 255, 255, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);
  --accent: #7dd8ff;
  --slider-duration: 5600ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% -10%, rgba(125, 216, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #2f3344 0%, #252a39 36%, #1d2230 100%);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0.65rem;
  z-index: 70;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background-color 250ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(115deg, rgba(32, 37, 52, 0.84), rgba(24, 29, 42, 0.84)),
    rgba(31, 36, 50, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  transform: translateY(-1px);
}

.site-header.is-scrolled::before {
  box-shadow: 0 12px 24px rgba(6, 8, 13, 0.38);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.08em;
}

.brand-chip {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #d6e7ff;
  border: 1px solid rgba(125, 216, 255, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.48rem;
  background: rgba(28, 42, 63, 0.5);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  margin-right: auto;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  transition:
    color 190ms ease,
    background-color 190ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.3rem;
  height: 1px;
  background: rgba(125, 216, 255, 0.86);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  background: rgba(125, 216, 255, 0.08);
}

.site-nav a.is-current {
  color: #e9f5ff;
  background: rgba(125, 216, 255, 0.15);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-link {
  text-decoration: none;
  color: #e4efff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(39, 45, 61, 0.55);
}

.header-cta {
  text-decoration: none;
  color: #0a1420;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #b6ebff, #7dd8ff);
  border: 1px solid rgba(8, 13, 20, 0.22);
  box-shadow: 0 6px 16px rgba(64, 164, 217, 0.26);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(34, 39, 53, 0.74);
  padding: 0.46rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 1.08rem;
  height: 2px;
  border-radius: 999px;
  background: #e9f1ff;
}

.live-ribbon {
  width: min(1200px, calc(100% - 2rem));
  margin: 0.55rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(20, 25, 38, 0.78);
}

.live-ribbon-track {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0.42rem 0.7rem;
  white-space: nowrap;
  animation: ribbon-roll 20s linear infinite;
}

.live-ribbon-track span {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #d6e4fb;
  font-weight: 700;
}

.live-ribbon-track span:first-child,
.live-ribbon-track span:nth-child(6) {
  color: #90dcff;
}

.showcase-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: min(44rem, 76vh);
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide {
  flex: 0 0 100%;
  min-height: min(44rem, 76vh);
  background: linear-gradient(115deg, #4d515e 0%, #444957 58%, #3c414f 100%);
  position: relative;
}

.slide:nth-child(2) {
  background: linear-gradient(115deg, #4a4f61 0%, #3f465b 58%, #363d50 100%);
}

.slide:nth-child(3) {
  background: linear-gradient(115deg, #4c515f 0%, #434a5f 58%, #374054 100%);
}

.slide-layout,
.slide-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: inherit;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 1rem;
}

.slide-copy > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.slide.is-active .slide-copy > * {
  opacity: 1;
  transform: none;
}

.slide.is-active .slide-copy > *:nth-child(1) {
  transition-delay: 120ms;
}

.slide.is-active .slide-copy > *:nth-child(2) {
  transition-delay: 200ms;
}

.slide.is-active .slide-copy > *:nth-child(3) {
  transition-delay: 280ms;
}

.slide.is-active .slide-copy > *:nth-child(4) {
  transition-delay: 360ms;
}

.slide-kicker {
  margin: 0 0 1rem;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dde4f3;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.03;
  max-width: 12ch;
}

.slide-copy p {
  margin: 0.95rem 0 0;
  color: #ecf1ff;
  max-width: 55ch;
  line-height: 1.7;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
}

.store-row {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.store-btn,
.store-badge {
  text-decoration: none;
  border-radius: 0.58rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: #0b111d;
  background: linear-gradient(120deg, #f3f6ff, #cfe7ff);
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0.74rem 1rem;
  min-width: 9rem;
  text-align: center;
}

.store-btn.ghost,
.store-badge.ghost {
  color: #eff5ff;
  background: rgba(34, 39, 53, 0.65);
  border-color: rgba(255, 255, 255, 0.28);
}

.slide-art {
  position: relative;
  justify-self: end;
  width: min(34rem, 46vw);
  aspect-ratio: 10 / 9;
}

.slide-art::before {
  content: "";
  position: absolute;
  width: 24%;
  height: 18%;
  left: 0;
  top: 2%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #9ef0ad 0%, #4d8e5d 58%, #2b4d35 100%);
  box-shadow: 0 14px 24px rgba(6, 11, 18, 0.45);
}

.slide-art::after {
  content: "";
  position: absolute;
  width: 22%;
  height: 22%;
  right: 1%;
  top: -1%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.7)),
    #10131a;
  box-shadow: 0 18px 30px rgba(6, 10, 15, 0.55);
}

.desk-sheet {
  position: absolute;
  width: 78%;
  height: 84%;
  right: 0;
  top: 8%;
  border-radius: 1.25rem;
  background: linear-gradient(165deg, #f3f5fb 0%, #d8deea 100%);
  transform: rotate(-12deg);
  box-shadow: 0 26px 40px rgba(9, 11, 19, 0.36);
}

.phone-mock {
  position: absolute;
  width: 40%;
  height: 82%;
  left: 21%;
  top: 7%;
  border-radius: 2rem;
  background: #101728;
  border: 8px solid #f8fafc;
  transform: rotate(9deg);
  box-shadow: 0 22px 38px rgba(8, 10, 18, 0.52);
}

.phone-mock span {
  position: absolute;
  inset: 1.1rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 70% 10%, rgba(125, 216, 255, 0.26), transparent 35%),
    linear-gradient(180deg, #1d2740 0%, #121a2d 100%);
  border: 1px solid rgba(125, 216, 255, 0.28);
}

.phone-mock span::before {
  content: "";
  position: absolute;
  inset: 15% 18% auto;
  height: 3px;
  border-radius: 999px;
  background: rgba(125, 216, 255, 0.8);
  box-shadow:
    0 18px 0 rgba(125, 216, 255, 0.55),
    0 36px 0 rgba(125, 216, 255, 0.38);
}

.phone-mock span::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 18%;
  left: 21%;
  bottom: 14%;
  border-radius: 999px;
  border: 1px solid rgba(125, 216, 255, 0.45);
}

.floating-dot {
  position: absolute;
  border-radius: 999px;
  background: rgba(216, 230, 255, 0.65);
}

.dot-a {
  width: 1.2rem;
  height: 1.2rem;
  top: 6%;
  right: 12%;
}

.dot-b {
  width: 2rem;
  height: 2rem;
  bottom: 4%;
  left: 8%;
  background: rgba(125, 216, 255, 0.55);
}

.slider-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(15, 19, 28, 0.62);
  color: #f1f5ff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 8;
  backdrop-filter: blur(8px);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.slider-nav:hover {
  background: rgba(37, 47, 67, 0.82);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(7, 10, 18, 0.45);
}

.slider-nav.prev {
  left: 0.8rem;
}

.slider-nav.next {
  right: 0.8rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  translate: -50% 0;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 2.25rem;
  height: 0.4rem;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(247, 250, 255, 0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.dot > span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: #ffffff;
  border-radius: inherit;
}

.dot.is-active > span {
  animation: dot-progress var(--slider-duration) linear forwards;
}

.dot.is-active {
  background: rgba(255, 255, 255, 0.4);
}

main,
.page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.9rem 1rem 5rem;
}

body[data-page="career"] .page-main,
body[data-page="about"] .page-main {
  padding-top: 3.2rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 2.2rem;
}

.trust-card {
  position: relative;
  border-radius: 1.05rem;
  padding: 1.05rem 1.05rem 1.15rem;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 18% 18%, rgba(125, 216, 255, 0.16), transparent 38%),
    linear-gradient(160deg, #2a3143 0%, #242b3d 100%);
  box-shadow: 0 12px 22px rgba(7, 10, 17, 0.22);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.trust-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 65%;
  height: 75%;
  background: radial-gradient(circle at center, rgba(125, 216, 255, 0.2), transparent 62%);
  pointer-events: none;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 216, 255, 0.38);
  box-shadow: 0 18px 30px rgba(7, 10, 17, 0.3);
}

.trust-a {
  background:
    radial-gradient(circle at 18% 18%, rgba(125, 216, 255, 0.2), transparent 38%),
    linear-gradient(160deg, #2a3143 0%, #242b3d 100%);
}

.trust-b {
  background:
    radial-gradient(circle at 18% 18%, rgba(129, 172, 255, 0.2), transparent 38%),
    linear-gradient(160deg, #2a3045 0%, #22283a 100%);
}

.trust-c {
  background:
    radial-gradient(circle at 18% 18%, rgba(140, 232, 214, 0.18), transparent 38%),
    linear-gradient(160deg, #253346 0%, #1f2938 100%);
}

.trust-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #d8ebff;
  background: rgba(22, 31, 46, 0.7);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.trust-card h3 {
  font-size: 1.45rem;
  margin-top: 0.45rem;
}

.trust-card > p:not(.kicker) {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-head {
  margin: 0 0 1rem;
}

.kicker {
  margin: 0 0 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #afbbd1;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.7vw, 3rem);
  line-height: 1.02;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-card {
  position: relative;
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 1.05rem;
  padding: 1.1rem 1.1rem 1.2rem;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -48% auto auto -20%;
  width: 65%;
  height: 82%;
  background: radial-gradient(circle at center, rgba(125, 216, 255, 0.2), transparent 60%);
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    118deg,
    rgba(125, 216, 255, 0.24) 0%,
    rgba(125, 216, 255, 0) 45%
  );
  opacity: 0.6;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 216, 255, 0.35);
  box-shadow: 0 18px 30px rgba(6, 10, 16, 0.32);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.33rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.24rem 0.46rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ecf6ff;
}

.card-pill.live {
  background: rgba(76, 207, 150, 0.18);
  border-color: rgba(76, 207, 150, 0.36);
}

.card-pill.prep {
  background: rgba(125, 216, 255, 0.16);
  border-color: rgba(125, 216, 255, 0.35);
}

.card-pill.core {
  background: rgba(169, 153, 255, 0.16);
  border-color: rgba(169, 153, 255, 0.35);
}

.card-version {
  font-size: 0.72rem;
  color: #c7dbf8;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-card h3 {
  font-size: 1.6rem;
}

.product-card p {
  margin: 0.7rem 0 1rem;
  color: var(--muted);
  line-height: 1.62;
}

.product-summary {
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.82rem;
  overflow: hidden;
  background: rgba(17, 24, 35, 0.44);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 0.58rem 0.72rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  font-size: 0.72rem;
  color: #b7cbe7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.summary-row strong {
  font-size: 0.78rem;
  color: #eff6ff;
  font-weight: 800;
  text-align: right;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.card-tags span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #d9e9ff;
  padding: 0.2rem 0.44rem;
  border-radius: 999px;
  background: rgba(27, 36, 53, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.app-showcase-grid {
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.app-slot-card {
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 14% 15%, rgba(125, 216, 255, 0.16), transparent 35%),
    linear-gradient(160deg, #262d3f 0%, #222838 100%);
  box-shadow: 0 16px 28px rgba(7, 10, 17, 0.26);
  padding: 0.78rem;
  display: flex;
  flex-direction: column;
}

.app-slot-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #acc1df;
  font-weight: 800;
}

.app-slot-title {
  margin: 0.24rem 0 0.55rem;
  font-size: 1.3rem;
  color: #f2f7ff;
}

.app-shot-slider {
  position: relative;
  padding: 0.6rem 2.25rem 1.85rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(32, 38, 54, 0.86), rgba(24, 30, 44, 0.9));
  overflow: hidden;
}

.app-upcoming-card {
  border-style: dashed;
  border-color: rgba(125, 216, 255, 0.32);
  background:
    radial-gradient(circle at 82% 12%, rgba(125, 216, 255, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(36, 44, 62, 0.96), rgba(28, 34, 49, 0.98));
}

.upcoming-state {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(22, 30, 45, 0.7);
  color: #dceaff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.upcoming-copy {
  margin: 0.72rem 0 0;
  color: #d2deef;
  line-height: 1.65;
}

.upcoming-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: #c8d5e9;
  display: grid;
  gap: 0.42rem;
}

.app-shot-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.app-shot-item {
  flex: 0 0 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.9rem;
}

.app-shot-frame {
  width: min(13.8rem, calc(100% - 0.8rem));
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border-radius: 1.05rem;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(5, 8, 14, 0.38);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.app-shot-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(5, 8, 14, 0.45);
}

.app-shot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.app-shot-copy {
  text-align: center;
  max-width: 28ch;
}

.app-shot-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: #cfe5ff;
}

.app-shot-caption {
  margin: 0.34rem 0 0;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.25;
  color: #f3f8ff;
  font-weight: 800;
}

.app-shot-nav {
  position: absolute;
  top: 38%;
  translate: 0 -50%;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(12, 17, 27, 0.64);
  color: #eff5ff;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.app-shot-nav:hover {
  transform: translateY(-2px);
  background: rgba(30, 39, 56, 0.8);
}

.app-shot-nav.prev {
  left: 0.3rem;
}

.app-shot-nav.next {
  right: 0.3rem;
}

.app-shot-dots {
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.app-shot-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.app-shot-dot.is-active {
  background: #9bdcff;
  transform: scale(1.22);
}

.product-card a,
.card-link {
  text-decoration: none;
  color: #dcf0ff;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-actions {
  display: flex;
  gap: 0.48rem;
  flex-wrap: wrap;
}

.card-link.is-secondary {
  color: #e9f2ff;
  background: rgba(25, 33, 48, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.52rem;
  padding: 0.42rem 0.62rem;
}

.card-link.is-disabled {
  color: rgba(221, 234, 255, 0.62);
  background: rgba(21, 28, 40, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.52rem;
  padding: 0.42rem 0.62rem;
  cursor: not-allowed;
}

.card-link::after {
  content: ">";
  font-size: 0.82rem;
  transition: transform 180ms ease;
}

.card-link.is-secondary::after,
.card-link.is-disabled::after {
  display: none;
}

.product-card:hover .card-link::after {
  transform: translateX(2px);
}

.visual-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.visual-card {
  position: relative;
  min-height: 17rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 22px rgba(7, 10, 17, 0.25);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.visual-card.v1::before {
  background:
    linear-gradient(145deg, rgba(41, 133, 196, 0.4), rgba(9, 28, 45, 0.5)),
    radial-gradient(circle at 20% 22%, rgba(125, 216, 255, 0.4), transparent 35%),
    #1f2d44;
}

.visual-card.v2::before {
  background:
    linear-gradient(145deg, rgba(110, 127, 177, 0.45), rgba(26, 34, 53, 0.5)),
    radial-gradient(circle at 65% 25%, rgba(204, 215, 255, 0.3), transparent 34%),
    #2a3346;
}

.visual-card.v3::before {
  background:
    linear-gradient(145deg, rgba(53, 132, 172, 0.45), rgba(10, 30, 42, 0.5)),
    radial-gradient(circle at 30% 70%, rgba(153, 228, 255, 0.22), transparent 38%),
    #213041;
}

.visual-card.v4::before {
  background:
    linear-gradient(145deg, rgba(63, 110, 157, 0.45), rgba(18, 26, 44, 0.5)),
    radial-gradient(circle at 74% 18%, rgba(197, 208, 255, 0.2), transparent 35%),
    #253247;
}

.visual-card:hover::before {
  transform: scale(1.06);
  filter: saturate(1.16);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10, 14, 21, 0.92), rgba(10, 14, 21, 0.1));
}

.overlay h3 {
  font-size: 1.5rem;
}

.overlay-chip {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #e5f2ff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.2rem 0.44rem;
  background: rgba(20, 31, 46, 0.58);
}

.overlay p {
  margin: 0.45rem 0 0;
  color: #d4dbeb;
  font-size: 0.95rem;
}

.release-strip {
  margin-top: 2rem;
  padding: 1.35rem;
  border-radius: 1.05rem;
  background: linear-gradient(160deg, #2d3448 0%, #262c3d 100%);
  border: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  box-shadow: 0 16px 26px rgba(7, 10, 17, 0.26);
}

.release-strip ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.contact-panel {
  margin-top: 1.2rem;
  padding: 1.3rem;
  border-radius: 1.05rem;
  background: linear-gradient(160deg, #2a3143 0%, #242a3a 100%);
  border: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 16px 26px rgba(7, 10, 17, 0.24);
}

.contact-panel p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-hero {
  padding: 1rem 0 2rem;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p:not(.kicker) {
  max-width: 64ch;
  margin: 1rem 0 0;
  color: #d5e2f4;
  line-height: 1.75;
}

.page-hero-career {
  padding-bottom: 1.5rem;
}

.career-openings {
  margin-top: 0.8rem;
  border-radius: 1.25rem;
  padding: 1.35rem;
  background:
    radial-gradient(circle at 86% -12%, rgba(255, 188, 175, 0.24), transparent 34%),
    linear-gradient(145deg, #b23e37 0%, #a13a34 55%, #963933 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 34px rgba(13, 7, 8, 0.28);
}

.career-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.career-head p {
  margin: 0;
  color: rgba(255, 239, 236, 0.9);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.career-card {
  background: rgba(27, 28, 44, 0.52);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
}

.career-visual {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  border-radius: 0.85rem;
  margin-bottom: 0.65rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-visual span {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: rgba(14, 17, 26, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.career-visual.visual-a {
  background:
    radial-gradient(circle at 30% 20%, rgba(170, 216, 255, 0.35), transparent 42%),
    linear-gradient(145deg, #162744 0%, #11203b 100%);
}

.career-visual.visual-b {
  background:
    radial-gradient(circle at 68% 20%, rgba(196, 198, 255, 0.35), transparent 42%),
    linear-gradient(145deg, #1a2343 0%, #151e38 100%);
}

.career-visual.visual-c {
  background:
    radial-gradient(circle at 58% 24%, rgba(171, 248, 243, 0.3), transparent 42%),
    linear-gradient(145deg, #172c45 0%, #13243a 100%);
}

.career-visual.visual-d {
  background:
    radial-gradient(circle at 38% 24%, rgba(205, 221, 255, 0.32), transparent 42%),
    linear-gradient(145deg, #1b2545 0%, #15203a 100%);
}

.career-card h3 {
  font-size: 1.75rem;
}

.career-card p {
  margin: 0.55rem 0 0;
  color: #f5e8e8;
  line-height: 1.56;
}

.career-city {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffe2df !important;
}

.career-btn {
  margin-top: auto;
  text-decoration: none;
  text-align: center;
  color: #eef5ff;
  background: #272847;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.66rem;
  padding: 0.62rem 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 170ms ease,
    background-color 170ms ease;
}

.career-btn:hover {
  transform: translateY(-2px);
  background: #2f3155;
}

.career-process {
  margin-top: 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 1.05rem;
  padding: 1.2rem;
  background: linear-gradient(160deg, #2a3144 0%, #242b3d 100%);
  box-shadow: 0 16px 28px rgba(8, 12, 18, 0.24);
}

.career-process ol {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
  color: #d6e0f0;
  display: grid;
  gap: 0.45rem;
}

.page-hero-about {
  padding-bottom: 1.5rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-radius: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 30px rgba(8, 12, 18, 0.28);
}

.about-split-media {
  min-height: 25rem;
  background:
    radial-gradient(circle at 30% 18%, rgba(125, 216, 255, 0.22), transparent 32%),
    linear-gradient(140deg, rgba(15, 23, 38, 0.86), rgba(28, 36, 50, 0.82)),
    linear-gradient(120deg, #293349 0%, #1d2537 100%);
  position: relative;
}

.about-split-media::before,
.about-split-media::after {
  content: "";
  position: absolute;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(33, 46, 66, 0.58);
}

.about-split-media::before {
  width: 62%;
  height: 46%;
  left: 10%;
  top: 16%;
  transform: rotate(-6deg);
}

.about-split-media::after {
  width: 56%;
  height: 42%;
  right: 11%;
  bottom: 14%;
  transform: rotate(7deg);
}

.about-split-copy {
  padding: 1.2rem 1.05rem;
  background: linear-gradient(145deg, #b5413a 0%, #a13b35 100%);
}

.about-split-copy p {
  margin: 0;
  color: #fff0ee;
  line-height: 1.75;
}

.about-split-copy p + p {
  margin-top: 0.8rem;
}

.about-values {
  margin-top: 1.2rem;
  border-radius: 1.05rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(160deg, #2a3042 0%, #232a3a 100%);
}

.about-values h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.about-values-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-value-card {
  background: #f2f4fa;
  color: #25293a;
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 12px 18px rgba(10, 12, 17, 0.16);
}

.about-value-card h3 {
  font-size: 2rem;
  color: #b5413a;
}

.about-value-card p {
  margin: 0.55rem 0 0;
  line-height: 1.58;
}

.about-value-wide {
  grid-column: 1 / -1;
}

.founders {
  margin-top: 1.2rem;
  border-radius: 1.05rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, #292148 0%, #221c3b 100%);
}

.founders h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.founder-card {
  text-align: center;
}

.founder-avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0.8rem;
  margin-bottom: 0.55rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #39435a 0%, #273044 100%);
  box-shadow: 0 14px 22px rgba(7, 10, 18, 0.28);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 260ms ease;
}

.founder-avatar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(to top, rgba(10, 12, 20, 0.5), rgba(10, 12, 20, 0));
}

.founder-card:hover .founder-avatar img {
  transform: scale(1.04);
}

.founder-card h3 {
  font-size: 1.65rem;
}

.founder-card p {
  margin: 0.35rem 0 0;
  color: #d8dff6;
  font-size: 0.92rem;
}

.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(5, 8, 13, 0.82);
  display: grid;
  place-items: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.shot-lightbox[hidden] {
  display: none !important;
}

.shot-dialog {
  width: min(980px, 96vw);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 23, 35, 0.96);
  box-shadow: 0 26px 50px rgba(4, 8, 14, 0.6);
  overflow: hidden;
}

.shot-dialog img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  background:
    radial-gradient(circle at 12% 18%, rgba(125, 216, 255, 0.22), transparent 36%),
    linear-gradient(150deg, rgba(40, 52, 74, 0.9), rgba(26, 36, 53, 0.92));
}

.shot-dialog img.is-hidden {
  display: none;
}

.shot-error {
  margin: 0;
  padding: 1.2rem 1rem;
  color: #d6e7ff;
  font-size: 0.94rem;
  line-height: 1.6;
}

.shot-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.shot-meta strong {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.shot-meta span {
  font-size: 0.8rem;
  color: #acc4e2;
}

.shot-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(16, 21, 31, 0.78);
  color: #e8f2ff;
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2.2rem;
}

.footer-tagline {
  margin: 0 0 1rem;
  text-align: center;
  color: #d4def0;
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(190, 208, 232, 0.2), rgba(190, 208, 232, 0.5), rgba(190, 208, 232, 0.2));
}

.footer-grid {
  padding: 1.55rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.footer-col h4 {
  margin: 0 0 0.7rem;
  font-size: 1.9rem;
}

.footer-col a,
.footer-col p {
  margin: 0;
  display: block;
  text-decoration: none;
  color: #bdc8dc;
  line-height: 1.75;
}

.footer-col a:hover {
  color: #eaf4ff;
}

.store-stack {
  display: grid;
  gap: 0.52rem;
}

.store-badge.dark {
  background: #101521;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f3f7ff;
}

.footer-copy {
  margin: 0.9rem 0 0;
  text-align: center;
  color: #9eabc3;
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes dot-progress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes ribbon-roll {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 980px) {
  .site-header {
    top: 0.4rem;
    width: calc(100% - 1rem);
    padding: 0.68rem 0.72rem;
    border-radius: 1rem;
    flex-wrap: wrap;
  }

  .site-header::before {
    border-radius: 1rem;
  }

  .brand-chip {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    width: 100%;
    margin: 0.35rem 0 0;
    padding: 0.32rem;
    border-radius: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(22, 27, 40, 0.8);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.18rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.56rem 0.62rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
  }

  .site-nav a::after {
    display: none;
  }

  .live-ribbon {
    width: calc(100% - 1rem);
    margin-top: 0.45rem;
  }

  .live-ribbon-track {
    animation-duration: 24s;
  }

  .header-actions {
    display: none;
  }

  .slide-layout {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .slide {
    min-height: 40rem;
  }

  .slide-art {
    justify-self: center;
    width: min(20rem, 84vw);
  }

  .slider-nav {
    top: auto;
    bottom: 0.95rem;
    translate: 0 0;
    width: 2.65rem;
    height: 2.65rem;
  }

  .slider-dots {
    bottom: 1.45rem;
  }

  .product-grid,
  .trust-band,
  .visual-grid,
  .release-strip {
    grid-template-columns: 1fr;
  }

  .app-showcase-grid {
    grid-template-columns: 1fr;
  }

  .app-slot-card {
    padding: 0.72rem;
  }

  .app-shot-slider {
    padding: 0.75rem 1.95rem 2.05rem;
  }

  .app-shot-frame {
    width: min(17rem, calc(100vw - 5rem));
  }

  .app-shot-nav {
    top: auto;
    bottom: 0.78rem;
    translate: 0 0;
    width: 2.25rem;
    height: 2.25rem;
  }

  .app-shot-nav.prev {
    left: 0.35rem;
  }

  .app-shot-nav.next {
    right: 0.35rem;
  }

  .app-shot-dots {
    bottom: 0.78rem;
  }

  .shot-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split-media {
    min-height: 16rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 1.2rem 0;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  .app-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .live-ribbon-track {
    animation: none;
  }
}
