:root {
  --navy: #010542;
  --navy-deep: #00032a;
  --blue: #0010a3;
  --gold: #ffc108;
  --gold-hot: #ffd54a;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.72);
  --danger: #ff5c5c;
  --font-display: "Noto Sans Display", system-ui, sans-serif;
  --font-body: "Noto Sans Display", sans-serif;
  --header-offset: 5.25rem;
  --stage-pad: 0.75rem;
  --card-radius: 1.75rem;
--size-header: 3.6rem;
--size-header-mob: 2.4rem;
--size-sub: 1.2rem;
}
@media (min-width: 768px) {
  :root {
    --header-offset: 6.25rem;
    --stage-pad: 1.25rem;
    --card-radius: 2.25rem;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
a { color: inherit; text-decoration: none; }
::selection {
  background: color-mix(in oklab, var(--gold) 55%, transparent);
  color: var(--navy);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top, rgba(0, 16, 163, 0.35), transparent 50%),
    var(--navy-deep);
  color: var(--white);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease;
}
html.is-ready .page {
  opacity: 1;
  visibility: visible;
}

.top-stage {
  position: relative;
  padding: 0 var(--stage-pad) 0;
}


.hero {
  position: relative;
  isolation: isolate;
  padding-top: 0.35rem;
}
.hero-card {
  position: relative;
  min-height: clamp(34rem, 90svh, 48rem);
  border-radius: var(--card-radius);
  overflow: visible;
  display: flex;
  align-items: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero-card-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
}
.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(1, 5, 66, 0.92));
}
.hero-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 42%, rgba(255, 193, 8, 0.14), transparent 40%),
    radial-gradient(ellipse at 28% 55%, rgba(0, 16, 163, 0.22), transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 78rem;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.75rem;
  padding: 2.25rem 1.35rem 2.5rem;
  text-align: left;
}
.hero-copy-text {
  order: 2;
  max-width: 34rem;
  justify-self: start;
  width: 100%;
}
.hero-copy-visual {
  order: 1;
  justify-self: center;
  width: 100%;
}
.hero-title {
  margin: 0;
  font-family: "Rubik Mono One", var(--font-display), sans-serif;
  font-size: clamp(3.2rem, 9vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: 12ch;

}
.hero-copy-text .eyebrow { margin: 0 0 1rem; }
.hero-copy-text .subhead {
  margin: 1.15rem 0 0;
  max-width: 32rem;
  color: var(--white-muted);
}
.hero-copy-text .cta-row {
  justify-content: center;
  margin-top: 1.85rem;
  gap: 0.85rem;
}

@media (min-width: 786px){
.hero-copy-text .cta-row {
  justify-content: start;
}
}


.hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-visual {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 22rem);
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.hero-sequence {
  position: relative;
  width: min(100%, 20rem);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.5));
  animation: drift 3.8s ease-in-out infinite;
}
.hero-sequence-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}
.hero-sequence-frame.is-active { opacity: 1; }

.hero-pedestal {
  position: relative;
  z-index: 1;
  width: min(58%, 14rem);
  height: 1.1rem;
  margin-top: -1.1rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 25, 1), rgba(0, 0, 25, 0.25) 70%, transparent 75%);
  filter: blur(1px);
  box-shadow:
    0 0 40px rgba(0, 0, 25, 0.25),
    0 10px 30px rgba(0, 0, 25, 0);
  animation: pedestal-pulse 3.8s ease-in-out infinite;
visibility: collapse;
}

.hero-cat-placeholder {
  width: min(100%, 18rem);
  aspect-ratio: 5 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1.5px dashed rgba(255, 193, 8, 0.55);
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(0, 16, 163, 0.45), transparent 65%),
    rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  animation: drift 3.8s ease-in-out infinite;
}
.hero-cat-silhouette {
  width: min(70%, 11rem);
  height: auto;
  color: rgba(255, 255, 255, 0.92);
}
.hero-rotor {
  transform-origin: 100px 45px;
  animation: rotor 1.1s linear infinite;
}
.hero-cat-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (min-width: 900px) {
  .hero-copy {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem 2rem;
    padding: 2.5rem 3rem 3rem;
  }
  .hero-copy-text {
    order: 1;
    justify-self: start;
    padding-right: 1rem;
  }
  .hero-copy-visual {
    order: 2;
    justify-self: end;
    margin-right: -1rem;
  }
  .hero-visual { width: min(100%, 34rem); }
  .hero-sequence { width: min(100%, 30rem); }
  .hero-pedestal { width: min(48%, 16rem); margin-top: -1.35rem; visibility: visible;}
  .hero-cat-placeholder { width: min(100%, 26rem); }
  .hero-title { font-size: clamp(3.2rem, 5.4vw, 5rem); max-width: 11ch; }
}

body.nav-lock { overflow: hidden; }

/* Header: logo | pill | CTA — sticky for full page */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  margin: 0;
  padding: var(--stage-pad);
  padding-bottom: 0.55rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    padding 0.35s ease;
}
.site-header.is-stuck {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  background: color-mix(in oklab, var(--navy-deep) 72%, transparent);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}
.site-header.is-stuck .nav-pill {
  background: color-mix(in oklab, var(--navy) 55%, transparent);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.nav {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0.35rem 0.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
}
@media (min-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto 1fr;
    padding: 0.45rem 0.5rem;
  }
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.brand:hover { transform: rotate(-2deg) scale(1.04); }

.nav-pill {
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-pill a {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-muted);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-pill a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 900px) {
  .nav-pill {
    display: inline-flex;
    justify-self: center;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  justify-self: end;
  min-width: 0;
}
.nav-link-quiet {
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-muted);
  padding: 0.4rem 0.55rem;
  transition: color 0.25s ease;
}
.nav-link-quiet:hover { color: var(--white); }
@media (min-width: 900px) {
  .nav-link-quiet { display: inline-flex; }
}

.nav-social {
  display: none;
  align-items: center;
  gap: 0.4rem;
}
.social-btn-nav {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}
.social-btn-nav .social-icon {
  width: 1.05rem;
  height: 1.05rem;
}
@media (min-width: 900px) {
  .nav-social { display: inline-flex; }
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-hot), var(--gold));
  box-shadow: 0 10px 28px rgba(255, 193, 8, 0.28);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.25s ease;
}
.nav-cta-arrow { font-size: 1rem; line-height: 1; }
.nav-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.03);
}
@media (min-width: 900px) {
  .nav-cta { display: inline-flex; }
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.nav-toggle:hover {
  background: rgba(255, 193, 8, 0.16);
  border-color: rgba(255, 193, 8, 0.55);
  transform: scale(1.06);
}
.nav-toggle-bars {
  display: grid;
  gap: 5px;
  width: 1.15rem;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.25s ease, width 0.25s ease;
}
.nav-toggle-bars span:nth-child(2) { width: 70%; margin-left: auto; }
.site-header.is-open .nav-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.site-header.is-open .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle-bars span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header.is-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-panel { display: none; }
.nav-links {
  display: flex;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white-muted);
}

@media (max-width: 899.98px) {
  .nav-panel {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2;
    padding: 6.5rem 1.5rem 2rem;
    background:
      radial-gradient(ellipse at top right, rgba(0, 16, 163, 0.55), transparent 55%),
      color-mix(in oklab, var(--navy) 88%, transparent);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.75rem) scale(0.985);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1), visibility 0.35s;
  }
  .site-header.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-panel .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .nav-panel .nav-links a {
    display: block;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
  }
  .nav-panel .nav-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }
  .nav-panel-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    margin-top: 1.25rem;
    padding: 1.05rem 1.25rem;
    border-radius: 1rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-hot), var(--gold));
    box-shadow: 0 12px 30px rgba(255, 193, 8, 0.28);
  }
  .nav-panel-wishlist:hover {
    filter: brightness(1.05);
  }
  .nav-panel-social {
    margin-top: 1rem;
    justify-content: center;
    gap: 0.65rem;
  }
  .nav-panel-social .social-btn {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-panel { display: none !important; }
}

.brand-text, .hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-brand { font-size: clamp(3rem, 10vw, 6rem); line-height: 0.92; display: block; }
.logo {
  display: block;
  height: auto;
  width: auto;
  object-fit: contain;
}
.logo-nav {
  height: 3.25rem;
  width: auto;
  max-width: 11.5rem;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.45s ease;
}
.site-header.is-stuck .logo-nav {
  height: 2.85rem;
  max-width: 10rem;
}
.logo-footer {
  height: 3.5rem;
  width: auto;
  max-width: 12rem;
}

.eyebrow {
  margin: 0;
margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}




.eyebrow.navy { color: var(--blue); }
.eyebrow.white { color: var(--muted-white); }
.tagline {
  font-family: "Rubik Mono One", monospace;
  font-weight: 400;
  font-style: normal;
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-size: clamp(1.5rem, 2.5vw, 1.5rem);
  color: var(--gold);
word-spacing: -1.1rem;
}

@media (min-width: 768px) {
.tagline {
font-size: clamp(4rem, 2.5vw, 1.5rem);
}
}
.lede, .muted {
  color: var(--blue);
}

.lede-white{
  color: var(--muted-white);
font-family: var(--font-display);
  letter-spacing: 0em;
  line-height: 1.1;
  font-size: var(--size-sub);
  margin: 0;
  margin-top: 8px;
}

.subhead{
 color: var(--muted-white);

}
.subhead {
  max-width: 36rem;
font-family: var(--font-display);
  letter-spacing: 0em;
  line-height: 1.1;
  font-size: 1.3rem;
  margin: 0;
  margin-top: 8px;
}

.v8-img{
border: rgba(0, 37, 255, 1) 1px solid;
width: 80%;
  height: auto;
  aspect-ratio: 1 / 1;
margin: 0 auto;
padding: 16px;
border-radius: 2.25rem;
}

@media (min-width: 768px) {
.v8-img{
width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
}



.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  background: transparent;
  color: var(--white);
  font-family: inherit;
border-radius: 16px;
}
.btn.primary { background: var(--gold); color: var(--navy); }
.btn.primary:hover { background: var(--gold-hot); }
.btn.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.85rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 1.15rem;
  box-shadow: 0 14px 36px rgba(255, 193, 8, 0.32);
  transform: translateZ(0);
}
.btn.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
}
.btn.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.btn.secondary:hover {
  border-color: rgba(255, 193, 8, 0.7);
  background: rgba(255, 193, 8, 0.1);
}
.btn.ghost {
  color: var(--white-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.btn.ghost:hover { color: var(--gold); }
.btn.disabled { opacity: 0.55; cursor: not-allowed; }
.btn.tiny { padding: 0.35rem 0.6rem; font-size: 0.75rem; border-color: rgba(255,255,255,0.2); }
.btn.danger { color: var(--danger); border-color: rgba(255, 92, 92, 0.45); }

.section {
  position: relative;
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: 5.5rem;
}

.section.about{
  padding: 6rem 1.5rem 6rem 1.5rem;
}

.section.about{
background: var(--gold);
color: var(--navy);
}
.about-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.about h2, .roadmap h2 {
    font-family: "Rubik Mono One", monospace;
  letter-spacing: 0em;
  line-height: 1.1;
  margin: 0;
font-size: var(--size-header-mob);
word-spacing: -0.5rem;
  inline-size: 20rem;
  overflow-wrap: normal;
}


@media (min-width: 768px) {
  .about-grid { grid-template-columns: 0.5fr 1fr 1fr; align-items: center; }
  .logo-nav { height: 3.75rem; max-width: 13.5rem; }
  .site-header.is-stuck .logo-nav { height: 3.15rem; max-width: 11.5rem; }
.about h2, .roadmap h2 {
    font-family: "Rubik Mono One", monospace;
  letter-spacing: 0em;
  line-height: 1.1;
  margin: 0;
font-size: var(--size-header);
word-spacing: -1.1rem;;
  inline-size: 30rem;
  overflow-wrap: normal;
}
}


.lede { margin: 0; font-size: var(--size-sub); line-height: 1.65; }

.screenshots {
  max-width: 72rem;
  margin: 3.25rem auto 0;
overflow: visible;
}

.screenshots-head {
  margin-bottom: 1.1rem;
}

.screenshots-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0.75rem;
overflow: visible;
}

.screenshots-viewport {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
  padding: 0.15rem 0.15rem 0.85rem;
}

.screenshots-viewport::-webkit-scrollbar {
  display: none;
}

.screenshots-slide {
  flex: 0 0 min(88vw, 42rem);
  margin: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.screenshots-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
border: rgba(0, 37, 255, 1) 1px solid;
margin: 0 auto;
border-radius: 2.25rem;
  background: color-mix(in oklab, var(--navy) 10%, transparent);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.screenshots-slide figcaption {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: color-mix(in oklab, var(--navy) 78%, transparent);
  text-align: center;
}

.screenshots-nav {
  display: none;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid color-mix(in oklab, var(--navy) 28%, transparent);
  background: color-mix(in oklab, var(--blue) 88%, transparent);
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, opacity 160ms ease;
border-radius: 50%;
}

.screenshots-nav:hover:not(:disabled) {
  background: var(--navy);
  border-color: var(--navy);
}

.screenshots-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.screenshots-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;

}

.screenshots-dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
border-radius: 0.15rem;
  background: color-mix(in oklab, var(--navy) 28%, transparent);
  cursor: pointer;
}

.screenshots-dot.is-active {
  background: var(--navy);
}

@media (min-width: 768px) {
  .screenshots {
    margin-top: 4rem;
  }

  .screenshots-shell {
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
overflow: visible;
  }

  .screenshots-nav {
    display: grid;
  }

  .screenshots-slide {
    flex-basis: min(70%, 48rem);
  }
}

.statement {
  max-width: 72rem;
  margin: 24px auto 0;
  color: var(--blue);
}

.statement{
font-family: var(--font-display);
  letter-spacing: 0em;
  line-height: 1.1;
  font-size: var(--size-sub);
  margin: 0;
  margin-top: 8px;
}

.roadmap {
  background: linear-gradient(180deg, rgba(0, 16, 163, 0.35), transparent 40%);
  --status-done: #3ddc84;
  --status-current: #ffc108;
  --status-upcoming: #ff5c5c;
}
.roadmap-inner { max-width: 48rem; margin: 0 auto; }

.roadmap-timeline {
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.roadmap-step {
  --dot: var(--status-upcoming);
  position: relative;
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 0 0 2.5rem;
}
.roadmap-step:last-child { padding-bottom: 0; }
.roadmap-step.status-done { --dot: var(--status-done); }
.roadmap-step.status-current { --dot: var(--status-current); }
.roadmap-step.status-upcoming { --dot: var(--status-upcoming); }

.roadmap-rail {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100%;
}
.roadmap-rail::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  bottom: -2.5rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--dot) 75%, white) 0%,
    rgba(255, 255, 255, 0.18) 100%
  );
}
.roadmap-step:last-child .roadmap-rail::before { display: none; }

.roadmap-dot {
  position: relative;
  z-index: 1;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: var(--dot);
  box-shadow:
    0 0 0 4px color-mix(in oklab, var(--dot) 22%, transparent),
    0 0 18px color-mix(in oklab, var(--dot) 55%, transparent);
}
.roadmap-step.status-current .roadmap-dot {
  animation: roadmap-pulse 1.8s ease-in-out infinite;
}

.roadmap-card { min-width: 0; padding-top: 0.05rem; }
.roadmap-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.9rem;
  margin-bottom: 0.65rem;
}
.roadmap-eta {
  font-size: 0.9rem;
  color: var(--white-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.badge::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
}
.badge.done {
  color: var(--status-done);
  border-color: color-mix(in oklab, var(--status-done) 45%, transparent);
  background: color-mix(in oklab, var(--status-done) 12%, transparent);
}
.badge.current {
  color: var(--status-current);
  border-color: color-mix(in oklab, var(--status-current) 45%, transparent);
  background: color-mix(in oklab, var(--status-current) 12%, transparent);
}
.badge.upcoming {
  color: var(--status-upcoming);
  border-color: color-mix(in oklab, var(--status-upcoming) 45%, transparent);
  background: color-mix(in oklab, var(--status-upcoming) 12%, transparent);
}

.roadmap-timeline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.roadmap-timeline h3 .num {
  font-family: "Rubik Mono One", monospace;
font-size: 2rem;
letter-spacing: 0.02em;
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 1);
}
.roadmap-card > p {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  color: var(--white-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .roadmap-step {
    grid-template-columns: 2rem 1fr;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }
  .roadmap-rail::before { bottom: -3rem; }
}

@keyframes roadmap-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px color-mix(in oklab, var(--dot) 22%, transparent),
      0 0 18px color-mix(in oklab, var(--dot) 55%, transparent);
  }
  50% {
    box-shadow:
      0 0 0 8px color-mix(in oklab, var(--dot) 12%, transparent),
      0 0 28px color-mix(in oklab, var(--dot) 70%, transparent);
  }
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer .muted { margin: 0.75rem 0 0; font-size: 0.9rem; }

.footer .cta-row {
  margin-top: 0;
  gap: 0.85rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.social-btn {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: var(--blue);
border-radius: 16px;
  background: color-mix(in oklab, var(--navy) 55%, transparent);
  color: var(--white);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.social-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  display: block;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rotor {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-2.75rem) rotate(1.5deg); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}
@keyframes header-settle {
  from { transform: translateY(-0.35rem); }
  to { transform: translateY(0); }
}
@keyframes pedestal-pulse {
  0%, 100% { opacity: 0.7; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.08); }
}
.animate-rise { animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-rise, .delay-1, .delay-2, .delay-3,
  .hero-sequence, .hero-cat-placeholder, .hero-rotor, .hero-pedestal,
  .roadmap-step.status-current .roadmap-dot,
  .site-header, .site-header.is-stuck, .brand, .nav-pill, .nav-links a, .nav-toggle, .nav-panel, .nav-cta, .btn.btn-hero {
    animation: none !important;
    transition: none !important;
  }
}

/* Admin / install */
.admin-body {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
}
.admin-shell {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.admin-shell.narrow { max-width: 28rem; padding-top: 4rem; }
.admin-shell h1, .admin-shell h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
.admin-shell h1 { font-size: 2.4rem; margin: 0.75rem 0 0.5rem; }
.admin-shell h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
}
.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.admin-form {
  display: grid;
  gap: 0.9rem;
}
.admin-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--white-muted);
}
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  padding: 0.85rem 0.9rem;
  font: inherit;
}
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.admin-form button[type="submit"],
.admin-actions .btn.primary {
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  border: 0;
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}
.item-card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1rem;
  margin: 0;
}
.item-card .row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .item-card .row { grid-template-columns: 1fr 1fr; }
}
.admin-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.admin-inline-actions form.inline { display: inline; }
.gallery-admin-row {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}
@media (min-width: 640px) {
  .gallery-admin-row {
    grid-template-columns: 9rem 1fr;
    align-items: center;
  }
}
.gallery-admin-thumb {
  width: 100%;
  max-width: 9rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
}
.gallery-admin-tools {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.gallery-admin-tool-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.gallery-admin-tool-row form.inline { display: inline; }
.icon-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.6rem, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.icon-pick {
  position: relative;
  margin: 0;
  cursor: pointer;
}
.icon-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.icon-pick-face {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.4rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: var(--white);
  text-align: center;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}
.icon-pick-face .social-icon {
  width: 1.35rem;
  height: 1.35rem;
}
.icon-pick-name {
  font-size: 0.68rem;
  line-height: 1.2;
  color: var(--white-muted);
}
.icon-pick.is-selected .icon-pick-face,
.icon-pick:has(input:checked) .icon-pick-face {
  border-color: var(--gold);
  background: color-mix(in oklab, var(--gold) 16%, transparent);
  color: var(--gold);
}
.icon-pick.is-selected .icon-pick-name,
.icon-pick:has(input:checked) .icon-pick-name {
  color: var(--gold);
}
.btn.tiny {
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
}
.btn.tiny:disabled {
  opacity: 0.35;
  cursor: default;
}
.btn.tiny.danger {
  border-color: color-mix(in oklab, var(--danger) 55%, transparent);
  color: #ffb4b4;
}
.back { color: var(--white-muted); font-size: 0.9rem; }
.back:hover { color: var(--gold); }
.ok { color: var(--gold); }
.error { color: var(--danger); }
.muted { color: var(--white-muted); }
code { color: var(--gold); }