:root {
  --ink: #f7fbff;
  --ink-soft: rgba(247, 251, 255, 0.74);
  --ink-faint: rgba(247, 251, 255, 0.48);
  --bg: #070912;
  --panel: rgba(11, 15, 28, 0.84);
  --panel-2: rgba(18, 23, 39, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #4cf0ff;
  --lime: #c3ff4f;
  --orange: #ff7749;
  --pink: #ff4aad;
  --gold: #ffe166;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1360px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(76, 240, 255, 0.16), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(255, 119, 73, 0.14), transparent 28%),
    radial-gradient(circle at 50% 95%, rgba(195, 255, 79, 0.1), transparent 30%),
    linear-gradient(180deg, #080b16 0%, #0b0d16 48%, #06070c 100%);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.skip-shape {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.hud-nav {
  position: fixed;
  z-index: 60;
  left: 18px;
  top: 18px;
  width: 210px;
  min-height: calc(100vh - 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(11, 15, 28, .92), rgba(11, 15, 28, .68));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 38px) 100%, 0 100%);
}

.hud-nav__brand {
  display: grid;
  gap: 10px;
}

.hud-nav__mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #071018;
  font-weight: 950;
  letter-spacing: -0.05em;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.hud-nav__title {
  display: grid;
  gap: 2px;
}

.hud-nav__title strong {
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.hud-nav__title span {
  color: var(--ink-faint);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hud-nav__links {
  display: grid;
  gap: 8px;
}

.hud-nav__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 850;
  letter-spacing: .02em;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .055);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.hud-nav__links a::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(195, 255, 79, .8);
}

.hud-nav__links a:hover {
  background: rgba(76, 240, 255, .1);
  color: #fff;
  transform: translateX(4px);
}

.hud-nav__download {
  padding: 16px;
  background: rgba(255, 225, 102, .08);
  border: 1px solid rgba(255, 225, 102, .18);
}

.hud-nav__download span {
  display: block;
  color: var(--ink-faint);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.hud-nav__download strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1.1;
}

.hud-nav__toggle {
  display: none;
}

.hud-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}

.page {
  margin-left: 238px;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 94px 0;
}

.eyebrow {
  color: var(--lime);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-title {
  max-width: 860px;
  margin-top: 12px;
  font-size: clamp(1.85rem, 3.4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.section-text {
  max-width: 720px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(76, 240, 255, .16);
}

.button--primary {
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #071018;
}

.button--dark {
  background: rgba(255, 255, 255, .07);
}

.hero {
  width: calc(100% - 18px);
  min-height: 100vh;
  margin: 9px 9px 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 0 0 0 70px;
  background: #06070c;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 12, .1), rgba(6, 7, 12, .38) 45%, rgba(6, 7, 12, .88) 100%);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__hud {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  grid-template-rows: 1fr auto;
  gap: 20px;
  padding: clamp(78px, 8vw, 120px) clamp(22px, 5vw, 70px) clamp(24px, 4vw, 60px);
}

.hero__copy {
  align-self: end;
  max-width: 820px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(4, 7, 14, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.hero__copy h1 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.07em;
}

.hero__copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__queue {
  align-self: start;
  justify-self: end;
  display: grid;
  gap: 12px;
  width: min(100%, 380px);
}

.hero__queue article {
  padding: 20px;
  background: rgba(7, 11, 21, .76);
  border: 1px solid rgba(255, 255, 255, .11);
  backdrop-filter: blur(12px);
}

.hero__queue strong {
  display: block;
  color: var(--gold);
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.hero__queue span {
  display: block;
  margin-top: 8px;
  color: var(--ink-faint);
  font-size: .9rem;
}

.hero__ticker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero__ticker div {
  min-height: 76px;
  padding: 16px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
}

.hero__ticker b {
  display: block;
  color: #fff;
  font-size: .92rem;
}

.hero__ticker span {
  color: var(--ink-faint);
  font-size: .84rem;
}

.features {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 24px;
  align-items: start;
}

.features__intro {
  position: sticky;
  top: 26px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(16, 22, 36, .92), rgba(13, 17, 28, .82));
  border: 1px solid var(--line);
}

.features__wheel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}

.feature-card {
  padding: 22px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card--image {
  grid-column: span 4;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.feature-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card--tall {
  grid-column: span 2;
  grid-row: span 2;
  background: rgba(255, 119, 73, .08);
}

.feature-card--wide {
  grid-column: span 3;
}

.feature-card--dark {
  background: rgba(76, 240, 255, .08);
}

.feature-card--lime {
  background: rgba(195, 255, 79, .08);
}

.feature-card--pink {
  background: rgba(255, 74, 173, .08);
}

.feature-card span {
  color: var(--lime);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.feature-card h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: .95rem;
}

.flow {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.flow__grid {
  width: var(--container);
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.flow__map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flow__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow__phases {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

.flow__phase {
  padding: 22px;
  min-height: 190px;
  background: rgba(7, 11, 21, .82);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.flow__phase:nth-child(even) {
  transform: translateY(36px);
}

.flow__phase span {
  color: var(--gold);
  font-weight: 950;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.flow__phase h3 {
  margin-top: 16px;
  font-size: 1.18rem;
}

.flow__phase p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: .95rem;
}

.screens__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.screens__deck {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.screen-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow);
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(3, 6, 13, .7);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  font-size: .9rem;
}

.screen-card--large {
  grid-column: span 7;
  height: 520px;
}

.screen-card--small {
  grid-column: span 5;
  height: 300px;
}

.screen-card--wide {
  grid-column: span 5;
  height: 340px;
}

.screen-card--phone {
  grid-column: span 7;
  height: 340px;
}

.reviews {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
}

.reviews__panel {
  padding: 34px;
  min-height: 520px;
  background: linear-gradient(180deg, rgba(195, 255, 79, .12), rgba(76, 240, 255, .06));
  border: 1px solid rgba(195, 255, 79, .18);
}

.reviews__panel h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  line-height: 1.08;
}

.reviews__panel p {
  margin-top: 18px;
  color: var(--ink-soft);
}

.reviews__chat {
  display: grid;
  gap: 14px;
}

.review {
  padding: 22px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
}

.review:nth-child(2) {
  margin-left: 44px;
  background: rgba(255, 119, 73, .08);
}

.review:nth-child(3) {
  margin-right: 52px;
  background: rgba(76, 240, 255, .08);
}

.review:nth-child(4) {
  margin-left: 22px;
  background: rgba(255, 74, 173, .08);
}

.review p {
  color: var(--ink-soft);
}

.review strong {
  display: block;
  margin-top: 14px;
  color: #fff;
}

.download {
  padding-bottom: 120px;
}

.download__stage {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  min-height: 560px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.download__visual {
  min-height: 560px;
}

.download__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download__content {
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download__content h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.06em;
}

.download__content p {
  margin-top: 18px;
  color: var(--ink-soft);
}

.download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  width: calc(100% - 18px);
  margin: 0 9px 9px auto;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 24px;
  background: #05070d;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 70px 0 0 0;
  overflow: hidden;
}

.site-footer__brand {
  padding: clamp(28px, 4vw, 58px);
  background: linear-gradient(135deg, rgba(76, 240, 255, .11), rgba(195, 255, 79, .07));
  border: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__brand h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.site-footer__brand p {
  margin-top: 18px;
  color: var(--ink-faint);
}

.site-footer__links {
  display: grid;
  gap: 12px;
}

.site-footer__links a {
  display: grid;
  align-content: center;
  min-height: 98px;
  padding: 20px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
}

.site-footer__links strong {
  color: #fff;
}

.site-footer__links span {
  color: var(--ink-faint);
  font-size: .92rem;
}

.legal-page {
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 90px;
}

.legal-hero {
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -.05em;
}

.legal-hero p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.legal-content {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.legal-section {
  padding: 26px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-section p+p {
  margin-top: 12px;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
}

.legal-section ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal-section a {
  color: var(--cyan);
  text-decoration: underline;
}

.cookie {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  width: min(620px, calc(100% - 36px));
  display: none;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(8, 12, 22, .94);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cookie.is-visible {
  display: grid;
}

.cookie p {
  color: var(--ink-soft);
  font-size: .94rem;
}

.cookie a {
  color: var(--cyan);
  text-decoration: underline;
}

.cookie__actions {
  display: flex;
  gap: 10px;
}

.cookie button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--ink);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-weight: 900;
}

.cookie button:first-child {
  color: #071018;
  background: var(--lime);
}

@media (max-width: 1180px) {
  .hud-nav {
    inset: 10px 10px auto 10px;
    width: auto;
    min-height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 10px 12px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  }

  .hud-nav__brand {
    grid-template-columns: 46px auto;
    align-items: center;
    gap: 10px;
  }

  .hud-nav__mark {
    width: 46px;
    height: 46px;
  }

  .hud-nav__download {
    display: none;
  }

  .hud-nav__toggle {
    display: block;
    justify-self: end;
    border: 0;
    background: transparent;
    padding: 8px;
  }

  .hud-nav__links {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 88px;
    display: none;
    padding: 14px;
    background: rgba(8, 12, 22, .98);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow);
  }

  .hud-nav__links.is-open {
    display: grid;
  }

  .page {
    margin-left: 0;
  }

  .hero {
    width: calc(100% - 12px);
    margin: 6px auto 0;
  }

  .hero__hud {
    padding-top: 118px;
    grid-template-columns: 1fr;
  }

  .hero__queue {
    justify-self: start;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .features,
  .reviews,
  .download__stage,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .features__intro {
    position: static;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 70px 0;
  }

  .hero__copy h1 {
    font-size: clamp(2.35rem, 11vw, 4.1rem);
  }

  .hero__queue,
  .hero__ticker,
  .flow__phases,
  .screens__deck {
    grid-template-columns: 1fr;
  }

  .flow__phase:nth-child(even) {
    transform: none;
  }

  .flow__phases {
    margin-top: 0;
  }

  .features__wheel {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .feature-card,
  .feature-card--image,
  .feature-card--tall,
  .feature-card--wide,
  .feature-card--dark,
  .feature-card--lime,
  .feature-card--pink {
    grid-column: auto;
    grid-row: auto;
    min-height: 190px;
  }

  .feature-card--image {
    min-height: 360px;
  }

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

  .screen-card--large,
  .screen-card--small,
  .screen-card--wide,
  .screen-card--phone {
    grid-column: auto;
    height: 360px;
  }

  .review:nth-child(2),
  .review:nth-child(3),
  .review:nth-child(4) {
    margin-left: 0;
    margin-right: 0;
  }

  .site-footer {
    width: calc(100% - 12px);
    padding: 18px;
  }

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

  .cookie__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .hud-nav__title span {
    display: none;
  }

  .hero__actions,
  .download__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__copy {
    padding: 22px;
  }

  .hero__ticker div,
  .feature-card,
  .flow__phase,
  .reviews__panel,
  .review,
  .download__content,
  .site-footer__brand,
  .legal-section {
    padding: 20px;
  }

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


/* Bright Deck update: new reviews visual and fixed desktop footer clearance */
@media (min-width: 1181px) {
  .site-footer {
    width: calc(100% - 256px);
    margin: 0 9px 9px 238px;
  }
}

.reviews {
  grid-template-columns: .9fr 1.1fr;
}

.reviews__visual {
  grid-column: 1;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
}

.reviews__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews__chat {
  grid-column: 2;
  grid-row: 1 / span 2;
}

@media (max-width: 1180px) {
  .reviews {
    grid-template-columns: 1fr;
  }

  .reviews__visual,
  .reviews__chat {
    grid-column: auto;
    grid-row: auto;
  }
}


/* Bright Deck legal pages: keep fixed desktop sidebar away from policy text */
@media (min-width: 1181px) {
  .legal-page {
    width: auto;
    max-width: none;
    margin-left: 238px;
    margin-right: 9px;
    padding-left: 0;
    padding-right: 0;
  }

  .legal-hero,
  .legal-content {
    width: min(1220px, calc(100% - 56px));
    margin-left: auto;
    margin-right: auto;
  }
}