:root {
  color-scheme: dark;
  --bg: #030712;
  --panel: rgba(8, 17, 38, 0.86);
  --panel-strong: rgba(10, 20, 44, 0.96);
  --ink: #f7fbff;
  --muted: #b8c2d9;
  --blue: #3489ff;
  --cyan: #2ee4ff;
  --pink: #e33cff;
  --red: #ff4164;
  --line: rgba(122, 159, 255, 0.34);
  --line-hot: rgba(226, 60, 255, 0.58);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --max: 1328px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(2, 6, 16, 0.8), rgba(3, 7, 18, 0.96) 58%, #02050e),
    linear-gradient(120deg, #020716 0%, #06102a 48%, #050717 100%);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(52, 137, 255, 0.16) 62.2%, transparent 70%),
    linear-gradient(118deg, transparent 0 70%, rgba(255, 65, 100, 0.18) 70.2%, transparent 78%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 72px);
}

body::after {
  z-index: -3;
  background-image: url("assets/bl-agency-skyline-strip.png");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 260px;
  opacity: 0.34;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 90;
  padding: 10px 14px;
  border-radius: 8px;
  color: #07101f;
  background: #f7fbff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(151, 183, 255, 0.18);
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
}

.brand,
.agency-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand {
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  filter: drop-shadow(0 0 18px rgba(227, 60, 255, 0.76));
}

.brand-copy strong,
.brand-copy small,
.agency-mark strong,
.agency-mark small {
  display: block;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.35rem;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 5px;
  color: #d7dfff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agency-mark {
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.agency-mark img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.agency-mark strong {
  font-size: 1.35rem;
  font-weight: 900;
}

.agency-mark small {
  margin-top: 7px;
  color: #e9efff;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  font-weight: 800;
}

.nav-links a {
  white-space: nowrap;
}

.id-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 20px;
  border: 1px solid rgba(227, 60, 255, 0.6);
  border-radius: 8px;
  color: #f5f2ff;
  background: rgba(14, 19, 45, 0.72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 18, 42, 0.9);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 8px;
  background: var(--ink);
}

main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr) minmax(220px, 0.48fr);
  gap: 18px;
  align-items: start;
  min-height: 500px;
  padding: 0 0 18px;
}

.liberty {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  user-select: none;
  opacity: 0.68;
  mix-blend-mode: screen;
}

.liberty-left {
  left: -38px;
  bottom: 122px;
  width: 86px;
}

.liberty-right {
  right: -28px;
  bottom: 38px;
  width: 230px;
  opacity: 0.52;
}

.hero-copy {
  min-width: 0;
  padding-top: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 14px;
  padding: 0 18px;
  border: 1px solid rgba(227, 60, 255, 0.55);
  border-radius: 8px;
  color: #e58cff;
  background: rgba(14, 15, 42, 0.68);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(3.15rem, 4.75vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.title-line {
  display: block;
}

.agency-gradient {
  color: transparent;
  background: linear-gradient(100deg, #ff3df0, #7c64ff 48%, #39a5ff);
  background-clip: text;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 24px;
  color: #dce7ff;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.feature-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 8px;
  font-weight: 900;
}

.btn {
  min-width: 252px;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 1.13rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #df2cff 0%, #7a46ff 48%, #318dff 100%);
  box-shadow: 0 18px 50px rgba(126, 70, 255, 0.34);
}

.btn-secondary {
  color: #fff;
  background: rgba(4, 10, 24, 0.78);
  border-color: rgba(165, 185, 255, 0.52);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-strip article,
.feature-card,
.support-card,
.live-card,
.faq-card,
.final-card,
.lounge-panel,
.mini-room {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(9, 22, 50, 0.82), rgba(4, 9, 22, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow);
}

.trust-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 9px 12px;
}

.trust-strip span,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  border: 1px solid rgba(227, 60, 255, 0.52);
  border-radius: 8px;
  color: #f4b7ff;
  background: linear-gradient(135deg, rgba(227, 60, 255, 0.2), rgba(52, 137, 255, 0.14));
  font-size: 0.74rem;
  font-weight: 950;
}

.trust-strip strong {
  min-width: 0;
  color: #f3f7ff;
  font-size: 0.92rem;
}

.hero-photo {
  position: relative;
  min-width: 0;
  align-self: start;
  height: 462px;
  border: 2px solid rgba(226, 60, 255, 0.72);
  border-radius: 8px;
  background: rgba(4, 9, 22, 0.75);
  box-shadow:
    0 0 44px rgba(52, 137, 255, 0.35),
    0 0 34px rgba(226, 60, 255, 0.28);
  overflow: hidden;
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 42%;
}

.photo-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 40px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(3, 8, 19, 0.76);
  backdrop-filter: blur(12px);
}

.photo-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.photo-badge strong,
.photo-badge small {
  display: block;
  line-height: 1.05;
}

.photo-badge small {
  margin-top: 5px;
  color: #dfe7ff;
}

.flag-wave {
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -2px;
  height: 52px;
  background:
    linear-gradient(180deg, transparent 0 38%, rgba(255, 255, 255, 0.92) 38% 48%, #d9214b 48% 58%, rgba(255, 255, 255, 0.92) 58% 68%, #d9214b 68% 78%, transparent 78%),
    linear-gradient(90deg, #1c4ca3 0 25%, transparent 25%);
  clip-path: polygon(0 28%, 14% 42%, 28% 28%, 44% 50%, 62% 32%, 78% 45%, 100% 31%, 100% 100%, 0 100%);
  opacity: 0.78;
}

.lounge-panel {
  position: relative;
  align-self: start;
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  height: 512px;
  min-height: 0;
  padding: 16px 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 21, 50, 0.9), rgba(4, 8, 22, 0.94)),
    url("assets/bl-agency-skyline-strip.png") center bottom / auto 168px repeat-x;
}

.lounge-panel::before {
  position: absolute;
  inset: 54% -28px -22px 36%;
  z-index: 0;
  background: linear-gradient(140deg, transparent 0 42%, rgba(255, 65, 100, 0.32) 43% 60%, rgba(52, 137, 255, 0.16) 61% 100%);
  content: "";
  opacity: 0.74;
}

.lounge-panel > * {
  position: relative;
  z-index: 1;
}

.lounge-panel > img {
  width: min(100%, 132px);
  margin: 0 auto;
  object-fit: contain;
}

.mini-room {
  padding: 12px;
}

.mini-room strong,
.mini-room span {
  display: inline-flex;
  align-items: center;
}

.mini-room strong {
  margin-right: 8px;
  font-size: 1rem;
}

.mini-room > span {
  min-height: 22px;
  padding: 0 8px;
  border-radius: 8px;
  color: #ffbfd0;
  background: rgba(255, 65, 100, 0.16);
  font-size: 0.75rem;
  font-weight: 950;
}

.avatar-row {
  display: flex;
  gap: 7px;
  margin-top: 13px;
}

.avatar-row i {
  width: 25px;
  height: 25px;
  border: 2px solid rgba(227, 60, 255, 0.74);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(227, 60, 255, 0.76), rgba(52, 137, 255, 0.72)),
    #101a35;
  box-shadow: 0 0 12px rgba(46, 228, 255, 0.28);
}

.lounge-pass,
.lounge-city {
  border: 1px solid rgba(122, 159, 255, 0.34);
  border-radius: 8px;
  background: rgba(4, 10, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lounge-pass {
  padding: 10px 12px;
}

.lounge-pass span,
.lounge-city span {
  display: block;
  color: #ff89ed;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lounge-pass strong,
.lounge-city strong {
  display: block;
  margin-top: 4px;
  color: #f7fbff;
  font-size: 0.92rem;
}

.lounge-pass small {
  display: block;
  margin-top: 5px;
  color: #cbd7f4;
  font-size: 0.78rem;
  line-height: 1.3;
}

.lounge-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.lounge-checks span {
  min-height: 42px;
  padding: 6px;
  border: 1px solid rgba(122, 159, 255, 0.26);
  border-radius: 8px;
  color: #e9efff;
  background: rgba(8, 18, 42, 0.72);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.15;
}

.lounge-city {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  margin-top: auto;
  padding: 8px 10px;
}

.lounge-city img {
  width: 34px;
  height: 48px;
  object-fit: contain;
  opacity: 0.82;
  mix-blend-mode: screen;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  min-height: 160px;
  padding: 20px;
}

.feature-card h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.feature-card p {
  grid-column: 2;
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.48;
}

.feature-card a {
  grid-column: 2;
  justify-self: start;
  min-height: 34px;
  color: #ff72df;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 0.95fr);
  gap: 16px;
  margin: 16px 0 32px;
}

.support-card,
.live-card,
.faq-card,
.final-card {
  padding: 22px;
}

.support-card {
  min-height: 228px;
}

.support-card h2,
.live-card h2,
.faq-card h2,
.final-card h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.support-card p,
.live-card p,
.faq-card p,
.final-card p {
  color: var(--muted);
  line-height: 1.52;
}

.support-points {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

.support-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(122, 159, 255, 0.24);
  border-radius: 8px;
  color: #dfe8ff;
  background: rgba(7, 16, 38, 0.64);
}

.support-avatars {
  display: flex;
  margin-top: 8px;
}

.support-avatars img {
  width: 60px;
  height: 60px;
  margin-right: -10px;
  border: 2px solid rgba(227, 60, 255, 0.75);
  border-radius: 50%;
  object-fit: cover;
  background: #050817;
}

.support-avatars img:nth-child(2) {
  object-fit: contain;
  padding: 6px;
}

.room-screen {
  position: relative;
  min-height: 190px;
  margin-top: 18px;
  border: 1px solid rgba(52, 137, 255, 0.34);
  border-radius: 8px;
  overflow: hidden;
}

.room-screen img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(1.12) contrast(1.04);
}

.room-screen div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 9, 22, 0.72);
  backdrop-filter: blur(10px);
}

.room-screen span,
.room-screen strong,
.room-screen small {
  display: block;
}

.room-screen span {
  color: #ff7595;
  font-size: 0.75rem;
  font-weight: 950;
}

.room-screen small {
  color: #d7e1ff;
}

.faq-card details {
  border: 1px solid rgba(122, 159, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 10, 24, 0.62);
}

.faq-card details + details {
  margin-top: 10px;
}

.faq-card summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 850;
}

.faq-card details p {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 0.92rem;
}

.final-card {
  display: grid;
  align-content: center;
  text-align: center;
}

.final-card .btn {
  width: 100%;
  min-width: 0;
}

.final-actions {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 10px;
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

  .lounge-panel {
    display: none;
  }

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

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

  .final-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 74px;
  }

  .brand-copy small {
    display: none;
  }

  .agency-mark {
    justify-self: center;
    padding-left: 14px;
  }

  .agency-mark img {
    width: 56px;
    height: 56px;
  }

  .agency-mark strong {
    font-size: 1rem;
  }

  .agency-mark small {
    font-size: 0.78rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(3, 7, 18, 0.98);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a,
  .nav-links .id-pill {
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 12px;
  }
}

@media (max-width: 760px) {
  main {
    width: min(100% - 24px, var(--max));
  }

  .nav-shell {
    width: min(100% - 24px, var(--max));
    gap: 8px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .agency-mark {
    gap: 8px;
    border-left-color: rgba(255, 255, 255, 0.16);
  }

  .agency-mark img {
    width: 50px;
    height: 50px;
  }

  .agency-mark strong {
    font-size: 0.92rem;
  }

  .agency-mark small {
    margin-top: 4px;
    font-size: 0.72rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 172px;
    gap: 10px;
    align-items: start;
    min-height: 0;
    padding: 14px 0 20px;
  }

  .liberty-left {
    left: -16px;
    top: 208px;
    bottom: auto;
    width: 54px;
    opacity: 0.58;
  }

  .liberty-right {
    display: none;
  }

  .hero-copy {
    padding-top: 4px;
  }

  .eyebrow {
    min-height: 0;
    margin-bottom: 10px;
    padding: 0;
    border: 0;
    color: #a4ccff;
    background: transparent;
    font-size: 0.73rem;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 1.82rem;
    line-height: 1.04;
  }

  .hero h1 .title-line:nth-child(2) {
    white-space: nowrap;
  }

  .hero-text {
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    max-width: 206px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 14px;
    gap: 12px;
    font-size: 0.95rem;
  }

  .trust-strip {
    gap: 8px;
    margin: 14px 0 10px;
  }

  .trust-strip article {
    display: block;
    min-height: 74px;
    padding: 8px;
  }

  .trust-strip span {
    min-width: 34px;
    min-height: 26px;
    margin-bottom: 6px;
    padding: 0 6px;
    font-size: 0.62rem;
  }

  .trust-strip strong {
    display: block;
    font-size: 0.68rem;
    line-height: 1.22;
  }

  .hero-photo {
    height: 404px;
    min-height: 0;
  }

  .hero-photo > img {
    min-height: 0;
    object-position: center top;
  }

  .photo-badge {
    display: none;
  }

  .flag-wave {
    height: 44px;
  }

  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
  }

  .feature-card {
    display: block;
    min-height: 116px;
    padding: 14px;
  }

  .feature-card .card-icon {
    margin-bottom: 10px;
  }

  .feature-card h2 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.78rem;
  }

  .feature-card a {
    font-size: 0.8rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-card,
  .live-card,
  .faq-card,
  .final-card {
    padding: 16px;
  }

  .support-card h2,
  .live-card h2,
  .faq-card h2,
  .final-card h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 430px) {
  main {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .hero h1 {
    font-size: 1.58rem;
  }

  .hero-text {
    font-size: 0.86rem;
  }

  .hero-actions {
    max-width: 100%;
  }

  .agency-mark strong {
    max-width: 92px;
  }

  .hero-photo,
  .hero-photo > img {
    height: 416px;
    min-height: 0;
  }
}
