:root {
  --black: #06070d;
  --ink: #1d1d1f;
  --paper: #f5f5f7;
  --line: rgba(255,255,255,.12);
  --blue: #2b8fff;
  --blue-2: #5aa8ff;
  --red: #e8442b;
  --maxw: none;
  --ease: cubic-bezier(.16,.84,.44,1);
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  background: var(--black);
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a {
  color: inherit;
  text-decoration: none;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.1rem;
}
.eyebrow--accent {
  color: var(--blue-2);
}
.panel--light .eyebrow--accent {
  color: #1668c9;
}
.display {
  font-size: clamp(2.4rem,6vw,5rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.lead {
  font-size: clamp(1.05rem,1.8vw,1.5rem);
  line-height: 1.5;
  color: rgba(255,255,255,.8);
  max-width: 36ch;
}
.panel--light .lead {
  color: #3a3a3f;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.7rem;
  border-radius: 980px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  font-family: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform .25s var(--ease),background .25s,opacity .25s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--blue-2);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
}
.panel--light .btn--ghost {
  color: var(--ink);
  border-color: rgba(0,0,0,.3);
}
.btn--lg {
  padding: 1.05rem 2.3rem;
  font-size: 1.1rem;
}
.nav__cube {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(145deg,var(--blue-2),var(--blue) 55%,#1668c9);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.5),0 4px 12px rgba(43,143,255,.5);
  display: inline-block;
  transform: rotate(0deg);
}
.foot__brand .nav__cube {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(145deg,var(--blue-2),var(--blue) 55%,#1668c9);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.5),0 4px 12px rgba(43,143,255,.5);
  display: inline-block;
  transform: rotate(0deg);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  background: rgba(10,11,18,.6);
  border-bottom: 1px solid var(--line);
  transition: transform .4s var(--ease);
}
.nav.hide {
  transform: translateY(-100%);
}
.nav__inner {
  max-width: none;
  margin: 0;
  height: 56px;
  padding: 0 clamp(24px,3.5vw,56px);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}
.nav__logo {
  height: 46px;
  width: auto;
  display: block;
}
.foot__logo {
  height: 60px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 1.7rem;
  margin-left: auto;
  font-size: .86rem;
  color: rgba(255,255,255,.72);
}
.nav__links a:hover {
  color: #fff;
}
.nav__signin {
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color .2s;
}
.nav__signin:hover {
  color: #fff;
}
.nav__cta {
  background: var(--blue);
  color: #fff;
  padding: .45rem 1.1rem;
  border-radius: 980px;
  font-size: .84rem;
  font-weight: 600;
  transition: background .2s;
}
.nav__cta:hover {
  background: var(--blue-2);
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  text-align: center;
  background: #0b111a;
}
.hero--video {
  text-align: left;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) .1s forwards;
}
.hero--video .hero__copy {
  position: absolute;
  left: clamp(22px,6vw,90px);
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 3;
  text-align: left;
  max-width: 640px;
  padding: 0;
  background: none;
}
.hero--video .hero__title {
  text-align: left;
  text-shadow: 0 2px 30px rgba(0,0,0,.55),0 1px 4px rgba(0,0,0,.5);
}
.hero--video .hero__tagline {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  text-shadow: 0 1px 14px rgba(0,0,0,.6);
}
.hero--video .hero__actions {
  justify-content: flex-start;
}
.hero>.hero__glow {
  display: none;
}
.hero__product {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: fadeIn 1s var(--ease) .15s forwards;
}
@keyframes fadeIn {to{opacity:1}}
.hero__glow {
  position: absolute;
  left: 50%;
  top: 38%;
  width: min(1500px,108vw);
  height: 70vh;
  transform: translate(-50%,-50%) scale(.6);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(closest-side,rgba(43,143,255,.16),transparent 66%);
  filter: blur(40px);
  opacity: 0;
  animation: glowIn 1.8s var(--ease) .15s forwards;
}
@keyframes glowIn {to{opacity:1;transform:translate(-50%,-50%) scale(1)}}
.hero__product {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vh 14px 0;
  gap: 0;
}
.hero__copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 47%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 16px;
  pointer-events: none;
  background: none;
}
.hero__copy>* {
  pointer-events: auto;
}
.hero__copy>* {
  pointer-events: auto;
}
.hero__title {
  font-size: clamp(2.4rem,6.2vw,5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
  overflow: hidden;
  padding-bottom: .1em;
}
.hero__title span {
  display: inline-block;
  animation: titleUp 1s cubic-bezier(.2,.85,.3,1) .4s both;
}
@keyframes titleUp {from{transform:translateY(106%)}to{transform:translateY(0)}}
.hero__tagline {
  margin: 1rem auto 0;
  max-width: 52ch;
  font-size: clamp(1.05rem,2vw,1.45rem);
  color: rgba(255,255,255,.82);
  text-shadow: 0 1px 20px rgba(0,0,0,.5);
  animation: upFade .8s var(--ease) .8s both;
}
.hero__tagline em {
  font-style: normal;
  color: #fff;
  font-weight: 600;
}
.hero__actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: upFade .8s var(--ease) .95s both;
}
.hero__fine {
  margin-top: 1.1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  animation: upFade .8s var(--ease) 1.1s both;
}
.hero--bl {
  text-align: left;
}
.hero--bl::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg,rgba(0,0,0,.62) 0%,rgba(0,0,0,.38) 32%,rgba(0,0,0,0) 62%),
             linear-gradient(to top,rgba(0,0,0,.5) 0%,rgba(0,0,0,0) 42%);
}
.hero--bl .hero__copy {
  left: clamp(22px,6vw,84px);
  right: auto;
  top: auto;
  bottom: clamp(54px,11vh,120px);
  transform: none;
  max-width: 640px;
  padding: 0;
  text-align: left;
}
.hero--bl .eyebrow {
  text-align: left;
}
.hero--bl .hero__title {
  text-align: left;
  text-shadow: 0 2px 30px rgba(0,0,0,.6),0 1px 4px rgba(0,0,0,.55);
}
.hero--bl .hero__tagline {
  margin-left: 0;
  margin-right: 0;
  max-width: 46ch;
  text-align: left;
  text-shadow: 0 1px 16px rgba(0,0,0,.65);
}
.hero--bl .hero__actions {
  justify-content: flex-start;
}
.hero--bl .hero__fine {
  text-align: left;
}
@keyframes upFade {from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
.hero__shot {
  max-height: 84vh;
  max-width: 95vw;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 60px 70px rgba(0,0,0,.7));
  animation: bedRise 1.8s cubic-bezier(.16,.86,.26,1.06) .2s both;
}
@keyframes bedRise {0%{opacity:0;transform:translateY(24vh) scale(.78)}55%{opacity:1}100%{opacity:1;transform:translateY(0) scale(1)}}
.hero__box {
  width: min(760px,86vw);
  height: auto;
  max-height: 80vh;
  filter: drop-shadow(0 40px 70px rgba(43,143,255,.35));
  animation: bedRise 1.7s cubic-bezier(.16,.86,.26,1.06) .2s both;
}
.box-card {
  animation: cardFloat 6s ease-in-out infinite;
}
.box-card--2 {
  animation-delay: .8s;
}
.box-card--3 {
  animation-delay: 1.5s;
}
.box-beam {
  animation: beamPulse 4s ease-in-out infinite;
}
@keyframes cardFloat {50%{transform:translateY(-16px)}}
@keyframes beamPulse {50%{opacity:.32}}
.hero__product .laptop {
  animation: bedRise 1.7s cubic-bezier(.16,.86,.26,1.06) .2s both;
}
.hero__product .phone {
  animation: phoneRise 1.6s cubic-bezier(.16,.86,.26,1.06) .55s both;
}
@keyframes phoneRise {0%{opacity:0;transform:translateY(26vh) scale(.8)}60%{opacity:1}100%{opacity:1;transform:translateY(0) scale(1)}}
.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {0%{opacity:0;transform:translate(-50%,0)}30%{opacity:1}60%{opacity:1;transform:translate(-50%,12px)}100%{opacity:0;transform:translate(-50%,14px)}}
.laptop {
  position: relative;
  width: min(54vw,620px);
  flex: 0 0 auto;
}
.laptop__screen {
  background: #0b0e18;
  border: 10px solid #16181f;
  border-radius: 18px 18px 4px 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6),inset 0 0 0 1px rgba(255,255,255,.06);
  aspect-ratio: 16/10;
  overflow: hidden;
}
.laptop__base {
  height: 14px;
  margin: 0 -7%;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg,#2a2d36,#0e1016);
  box-shadow: 0 18px 30px rgba(0,0,0,.5);
}
.laptop__base::after {
  content: "";
  display: block;
  width: 18%;
  height: 5px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  background: #0a0b11;
}
.laptop--sm {
  width: min(60vw,460px);
}
.phone {
  position: relative;
  width: min(20vw,210px);
  flex: 0 0 auto;
  background: #16181f;
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 40px 70px rgba(0,0,0,.6),inset 0 0 0 1px rgba(255,255,255,.07);
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #0b0d14;
  z-index: 3;
}
.phone .ui {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/19;
  background: #0b0e18;
}
.phone--sm {
  width: min(26vw,180px);
}
.phone--lg {
  width: min(74vw,300px);
}
.hero__product .phone {
  margin-left: -7%;
  margin-top: 14%;
  z-index: 3;
}
.ui {
  position: relative;
  background: #0d1018;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.ui--web {
  padding: 0;
}
.ui__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #11141f;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ui__appbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 12px 8px;
}
.ui__dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(145deg,var(--blue-2),var(--blue));
  flex: 0 0 auto;
  box-shadow: 0 2px 6px rgba(43,143,255,.5);
}
.ui__pill {
  height: 8px;
  width: 64px;
  border-radius: 5px;
  background: rgba(255,255,255,.22);
}
.ui__pill--sm {
  width: 34px;
}
.ui__title {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.ui__cta {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  padding: 5px 10px;
  border-radius: 980px;
}
.ui__hero {
  height: 34%;
  margin: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg,var(--blue) 0%,#1668c9 60%,#0c3f86 100%);
  position: relative;
  overflow: hidden;
}
.ui__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 80% 10%,rgba(255,255,255,.35),transparent 55%);
}
.ui__hero--app {
  height: 30%;
  margin: 10px;
}
.ui__grid {
  display: flex;
  gap: 8px;
  padding: 0 12px;
}
.ui__grid span {
  flex: 1;
  height: 42px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
}
.ui__cards {
  display: flex;
  gap: 8px;
  padding: 0 10px;
}
.ui__cards span {
  flex: 1;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}
.ui__rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
}
.ui__rows span {
  height: 13px;
  border-radius: 5px;
  background: rgba(255,255,255,.07);
}
.ui__rows span:nth-child(2) {
  width: 70%;
}
.ui__tabs {
  margin-top: auto;
  display: flex;
  gap: 18px;
  justify-content: center;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ui__tabs span {
  width: 18px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,.18);
}
.ui__tabs span.is-on {
  background: var(--blue);
  width: 22px;
}
.reel {
  background: var(--black);
  padding: 10rem 0 7rem;
}
.reel__head {
  max-width: var(--maxw);
  margin: 0 auto 2.2rem;
  padding: 0 clamp(22px,6vw,90px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.reel__title {
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.reel__nav {
  display: flex;
  gap: .6rem;
}
.reel__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s,transform .15s;
}
.reel__btn:hover {
  background: rgba(255,255,255,.16);
}
.reel__btn:active {
  transform: scale(.92);
}
.reel__btn:disabled {
  opacity: .3;
  cursor: default;
}
.reel__track {
  display: flex;
  gap: clamp(16px,2vw,28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(22px,6vw,90px) 1rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.reel__track::-webkit-scrollbar {
  display: none;
}
.card {
  position: relative;
  flex: 0 0 clamp(320px,72vw,1080px);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
  opacity: .5;
  transform: scale(.95);
  transition: opacity .6s var(--ease),transform .6s var(--ease);
  background: none;
}
.card.is-focus {
  opacity: 1;
  transform: scale(1);
}
.card__art {
  position: relative;
  order: 1;
  flex: 1 1 auto;
  min-height: 0;
  background: none;
}
.card__art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}
.card__art svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}
.card__art--web {
  background: linear-gradient(135deg,#0c1020,#10224a);
}
.card__art--grid {
  background: repeating-linear-gradient(0deg,transparent 0 38px,rgba(255,255,255,.05) 38px 39px),
  repeating-linear-gradient(90deg,transparent 0 38px,rgba(255,255,255,.05) 38px 39px),#0c1020;
}
.card__art--code {
  background: linear-gradient(135deg,#0c1020,#12183a);
}
.card__art--chart {
  background: linear-gradient(135deg,#0c1020,#0a2a5c);
}
.card__art--rocket {
  background: linear-gradient(135deg,#0c1020,#1a1340);
}
.card__cap {
  position: relative;
  order: 0;
  z-index: 3;
  flex: 0 0 auto;
  text-align: left;
  background: none;
  padding: clamp(1.4rem,2.6vw,2.4rem) clamp(1.8rem,3vw,3rem) .9rem;
}
.card__cap span {
  display: block;
  font-size: clamp(1.7rem,2.8vw,2.6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: .55rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.65);
}
.card__cap p {
  color: #fff;
  opacity: .92;
  font-size: clamp(1.02rem,1.4vw,1.25rem);
  line-height: 1.45;
  max-width: 30ch;
  text-shadow: 0 1px 16px rgba(0,0,0,.65);
}
.reel__dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1.8rem;
}
.reel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  transition: background .25s,width .25s;
}
.reel__dots button.is-active {
  background: var(--blue);
  width: 22px;
  border-radius: 6px;
}
.panel {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem,5vw,5rem);
  padding: 9rem clamp(22px,6vw,90px);
  overflow: hidden;
}
.panel__text {
  max-width: 520px;
}
.panel--dark {
  background: radial-gradient(120% 100% at 80% 20%,#10224a,#06070d 70%);
}
.panel--light {
  background: var(--paper);
  color: var(--ink);
}
.panel--light .display {
  color: var(--ink);
}
.panel__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 460px;
}
.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.7rem;
  background: rgba(255,255,255,.03);
}
.step b {
  font-size: .9rem;
  color: var(--blue-2);
  letter-spacing: .1em;
}
.step span {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: .3rem 0 .4rem;
}
.step p {
  color: rgba(255,255,255,.62);
  font-size: .98rem;
}
.duo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.duo .phone {
  margin-left: -8%;
  margin-bottom: 6%;
  z-index: 3;
}
.closer {
  background: #0a0b13;
  padding: 7rem clamp(22px,6vw,90px) 8rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.closer__title {
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0 auto .6rem;
  max-width: var(--maxw);
}
.closer__sub {
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.closer__stage {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.closer__chips {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.chip {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-align: left;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.72);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s,color .25s,border-color .25s;
}
.chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--chip-accent,var(--blue));
  flex: 0 0 auto;
  transition: transform .25s;
}
.chip:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}
.chip.is-active {
  background: rgba(43,143,255,.14);
  border-color: rgba(43,143,255,.5);
  color: #fff;
}
.chip.is-active::before {
  transform: scale(1.4);
}
.closer__view {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
}
.closer__phone {
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.6));
}
.closer__cap {
  text-align: center;
  max-width: 42ch;
}
.closer__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-2);
  border: 1px solid rgba(90,168,255,.4);
  border-radius: 980px;
  padding: .25rem .8rem;
  margin-bottom: 1rem;
}
.closer__cap h3 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.closer__cap p {
  color: rgba(255,255,255,.74);
  font-size: 1.05rem;
}
.closer__view .ui__hero {
  transition: background .5s var(--ease);
}
.closer__view .ui__dot {
  transition: background .5s var(--ease);
}
.shot-img {
  width: 100%;
  max-width: 820px;
  height: auto;
  mix-blend-mode: screen;
  transition: transform 1.2s var(--ease);
}
.panel__media:hover .shot-img {
  transform: scale(1.02);
}
.lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.solutions {
  background: #06070d;
  padding: 7rem 0 8rem;
  text-align: center;
  overflow: hidden;
}
.solutions__head {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  padding: 0 22px;
}
.marquee {
  display: flex;
  flex-direction: column;
  gap: 34px;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.marquee__row {
  display: flex;
  gap: 40px;
  width: max-content;
}
.marquee__row a {
  flex: 0 0 auto;
  display: block;
  transition: transform .25s var(--ease);
}
.marquee__row a:hover {
  transform: translateY(-6px);
}
.marquee__row img {
  width: clamp(340px,38vw,540px);
  aspect-ratio: 1/.97;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  flex: 0 0 auto;
  display: block;
}
.marquee__row--a {
  animation: marqA 56s linear infinite;
}
.marquee__row--b {
  animation: marqB 64s linear infinite;
}
@keyframes marqA {to{transform:translateX(-50%)}}
@keyframes marqB {from{transform:translateX(-50%)}to{transform:translateX(0)}}
.marquee:hover .marquee__row {
  animation-play-state: paused;
}
.solutions__cta {
  margin-top: 3rem;
}
.bnb-lineup {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(230px,1fr));
  gap: 20px;
}
.bnb-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 22px;
  overflow: hidden;
  background: #0e1019;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s var(--ease),box-shadow .3s var(--ease);
}
.bnb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0,0,0,.55);
}
.bnb-card__img {
  display: block;
  aspect-ratio: 1/.78;
  overflow: hidden;
}
.bnb-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.bnb-card:hover .bnb-card__img img {
  transform: scale(1.04);
}
.bnb-card__name {
  padding: 15px 18px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  text-align: left;
}
#builtShotLink {
  display: block;
  cursor: pointer;
}
.built__more {
  margin-top: 1.3rem;
  display: inline-flex;
}
.buytime__dayseq {
  color: rgba(255,255,255,.5);
  font-weight: 400;
  font-size: .62em;
  letter-spacing: 0;
  margin-left: 8px;
  white-space: nowrap;
}
.built {
  background: #06070d;
  padding: 9rem clamp(22px,6vw,90px) 11rem;
  border-top: 1px solid var(--line);
}
.built__head {
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
}
.built__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.built__feature {
  max-width: none;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.built__feature img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  transition: opacity .35s var(--ease),transform 1.2s var(--ease);
}
.built__feature img.is-swapping {
  opacity: 0;
}
.built__feature:hover img {
  transform: scale(1.015);
}
.built__caption {
  max-width: 680px;
  margin: 1.8rem auto 0;
  text-align: center;
  transition: opacity .35s var(--ease);
}
.built__caption.is-swapping {
  opacity: 0;
}
.built__name {
  font-size: clamp(1.3rem,2.4vw,1.8rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 .55rem;
  letter-spacing: -.01em;
}
.built__desc {
  color: rgba(255,255,255,.72);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}
.built__tags {
  max-width: none;
  margin: 2.6rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.built__tag {
  border: 1px solid var(--line);
  border-radius: 980px;
  padding: .55rem 1.2rem;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  background: rgba(255,255,255,.03);
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s var(--ease),background .2s var(--ease),color .2s var(--ease),transform .2s var(--ease);
}
.built__tag:hover {
  border-color: rgba(43,143,255,.45);
  color: #fff;
  transform: translateY(-1px);
}
.built__tag:focus-visible {
  outline: 2px solid rgba(43,143,255,.6);
  outline-offset: 2px;
}
.built__tag--live {
  border-color: rgba(43,143,255,.5);
  background: rgba(43,143,255,.14);
  color: #fff;
}
.built__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem,3vw,2.4rem);
}
.prod__frame {
  border-radius: 16px;
  overflow: hidden;
  background: #0b0e18;
  border: 1px solid rgba(90,168,255,.22);
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
  transition: transform .5s var(--ease);
}
.prod:hover .prod__frame {
  transform: translateY(-6px);
}
.prod__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #11141f;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.prod__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2a3040;
}
.prod__bar span {
  margin-left: 10px;
  height: 14px;
  flex: 1;
  max-width: 200px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
}
.prod__ui {
  aspect-ratio: 16/10;
  background: #0c1020;
}
.prod__ui svg {
  width: 100%;
  height: 100%;
  display: block;
}
.prod__cap {
  padding: 1.4rem .4rem 0;
}
.prod__cap h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: .35rem;
}
.prod__cap p {
  color: rgba(255,255,255,.66);
  font-size: 1rem;
  max-width: 42ch;
}
.statement {
  padding: 12rem 22px;
  text-align: center;
  background: linear-gradient(180deg,#06070d,#0c1730,#06070d);
}
.statement p {
  font-size: clamp(2rem,5.5vw,4.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 auto;
}
.statement span {
  color: var(--blue-2);
}
.pricing {
  background: radial-gradient(120% 100% at 50% 0,#10224a,#06070d 62%);
  padding: 8rem 22px 9rem;
  text-align: center;
}
.pricing__inner {
  max-width: 640px;
  margin: 0 auto;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .5rem;
  margin: .4rem 0 1.2rem;
}
.pricing__from {
  font-size: 1.3rem;
  color: rgba(255,255,255,.6);
  align-self: center;
}
.pricing__amt {
  font-size: clamp(3.4rem,9vw,5.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.pricing__per {
  font-size: 1.3rem;
  color: rgba(255,255,255,.6);
}
.pricing__lead {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.pricing__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem 1.6rem;
  max-width: none;
  margin: 0 auto 2.4rem;
  text-align: left;
}
.pricing__list li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
}
.pricing__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.pricing__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing__fine {
  margin-top: 1.6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.foot {
  background: #06070d;
  border-top: 1px solid var(--line);
  padding: 3rem 22px;
  margin-top: auto;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}
.foot__brand {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.foot nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}
.foot nav a:hover {
  color: #fff;
}
.foot small {
  width: 100%;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.subhero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 18vh clamp(22px,6vw,90px) 8vh;
  background: radial-gradient(125% 100% at 50% 0,#10224a 0%,#0a0d1c 46%,#040507 100%);
}
.subhero--center {
  grid-template-columns: 1fr;
  text-align: center;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12vh clamp(22px,6vw,90px);
}
.subhero--center .subhero__title {
  font-size: clamp(2.4rem,5.5vw,4.4rem);
}
.subhero__copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
}
.subhero__title {
  font-size: clamp(2.6rem,7vw,5.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 1.1rem 0;
}
.subhero__tag {
  font-size: clamp(1.05rem,2vw,1.4rem);
  color: rgba(255,255,255,.8);
  max-width: 46ch;
  line-height: 1.5;
}
.subhero__art {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.panel__pic {
  width: 100%;
  max-width: 900px;
  height: auto;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(72% 82% at 50% 48%,#000 32%,rgba(0,0,0,.35) 62%,transparent 82%);
  mask-image: radial-gradient(72% 82% at 50% 48%,#000 32%,rgba(0,0,0,.35) 62%,transparent 82%);
  transition: transform .9s cubic-bezier(.16,.86,.26,1.06);
}
.panel__media:hover .panel__pic {
  transform: scale(1.03);
}
.panel--rev .panel__text {
  order: 2;
}
.panel--rev .panel__media {
  order: 1;
}
.panel--rev .panel__text {
  margin-left: auto;
}
.panel__media {
  min-height: 420px;
}
.panel__media .panel__pic {
  max-width: min(52vw,900px);
}
.subhero__car {
  width: min(46vw,560px);
  height: auto;
  filter: drop-shadow(0 50px 50px rgba(0,0,0,.6));
  animation: bedRise 1.6s cubic-bezier(.16,.86,.26,1.06) .15s both;
}
.badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-2);
  padding: 0;
}
.featgrid {
  background: #06070d;
  padding: 7rem clamp(22px,6vw,90px) 8rem;
  text-align: center;
}
.featgrid__title {
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 3rem;
}
.featgrid__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.4rem;
  text-align: left;
}
.featgrid__grid>div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem;
  background: rgba(255,255,255,.03);
}
.featgrid__grid h4 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.featgrid__grid p {
  color: rgba(255,255,255,.62);
  font-size: .98rem;
}
.logos {
  background: #0a0b13;
  padding: 5rem 22px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.logos__label {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 2rem;
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: none;
  margin: 0 auto;
}
.logos__chip {
  background: #fff;
  border-radius: 14px;
  padding: .9rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.logos__chip img {
  height: 30px;
  width: auto;
  display: block;
}
.catalog {
  background: #06070d;
  padding: 5rem clamp(22px,6vw,90px) 7rem;
}
.catalog__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 1.4rem;
}
.cat {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.7rem 1.8rem;
  background: rgba(255,255,255,.02);
}
.cat h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  color: #fff;
}
.cat ul {
  list-style: none;
}
.cat li {
  padding: .4rem 0;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.72);
  font-size: .96rem;
}
.cat li a {
  color: var(--blue-2);
}
.cat li a:hover {
  text-decoration: underline;
}
.included {
  background: radial-gradient(120% 100% at 50% 0,#10224a,#06070d 62%);
  padding: 7rem clamp(22px,6vw,90px) 8rem;
  text-align: center;
}
.included__title {
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 2.6rem;
}
.included__list {
  list-style: none;
  max-width: var(--maxw);
  margin: 0 auto 2.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: .7rem 1.6rem;
  text-align: left;
}
.included__list li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
}
.included__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.contact {
  background: #06070d;
  padding: 3rem clamp(22px,6vw,90px) 8rem;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.contact label {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.contact input {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .48rem .8rem;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s;
}
.contact textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .48rem .8rem;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s;
}
.contact input:focus {
  outline: none;
  border-color: var(--blue);
}
.contact textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.contact textarea {
  resize: vertical;
}
.contact__note {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.contact__side {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
  background: rgba(255,255,255,.03);
}
.contact__side h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.contact__side p {
  color: rgba(255,255,255,.7);
  margin-bottom: 1.2rem;
}
.contact__meta {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__meta p {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.contact__meta b {
  color: #fff;
}
.contact--hero {
  max-width: none;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(84px,11vh,120px) 0 clamp(28px,5vh,60px);
  position: relative;
  overflow-x: clip;
  background: radial-gradient(135% 115% at 50% 0%, rgba(43,143,255,.20) 0%, rgba(43,143,255,.06) 34%, #06070d 64%);
}
.contact--hero>.hero__glow {
  display: none;
}
.contact__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(22px,6vw,90px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
.contact__intro {
  position: relative;
  z-index: 1;
}
.contact__intro .subhero__title {
  text-align: left;
  margin-top: 1rem;
}
.contact__intro .subhero__tag {
  text-align: left;
  margin: 1.1rem 0 1.8rem;
  max-width: 44ch;
}
.contact__introcta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact__social {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 1.9rem;
  color: rgba(255,255,255,.55);
  font-size: .92rem;
}
.contact__social span {
  color: #fff;
  font-weight: 600;
  margin-right: 2px;
}
.contact__social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: #cfe0ff;
  transition: background .2s,border-color .2s,color .2s,transform .2s;
}
.contact__social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.contact__social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.contact__form {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.4rem,2.6vw,2.1rem);
}
.contact--hero .contact__form {
  gap: .85rem;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact__captcha .cap-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .6rem;
}
#capImg {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0c1018;
  height: 54px;
  width: 170px;
  display: block;
}
.cap-reload {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: #cfe0ff;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}
.cap-reload:hover {
  background: rgba(120,170,255,.18);
  color: #fff;
}
.contact__status {
  font-size: .9rem;
  min-height: 1.2em;
  margin: .2rem 0 0;
}
.contact__status.ok {
  color: #5fe39a;
}
.contact__status.bad {
  color: #ff9b8e;
}
@media (max-width:880px) {
.subhero {
  grid-template-columns: 1fr;
  text-align: center;
  min-height: auto;
  padding: 16vh 22px 5vh;
}
.subhero__copy {
  max-width: none;
  margin: 0 auto;
}
.subhero__tag {
  margin-left: auto;
  margin-right: auto;
}
.subhero__car {
  width: min(74vw,420px);
}
.featgrid__grid {
  grid-template-columns: 1fr;
}
.contact {
  grid-template-columns: 1fr;
  gap: 2rem;
}
.contact--hero {
  min-height: auto;
  text-align: center;
}
.contact__inner {
  grid-template-columns: 1fr;
}
.contact__intro .subhero__title {
  text-align: center;
}
.contact__intro .subhero__tag {
  text-align: center;
}
.contact__intro .subhero__tag {
  margin-left: auto;
  margin-right: auto;
}
.contact__introcta {
  justify-content: center;
}
.cap-row {
  justify-content: center;
}
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease),transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width:880px) {
.nav__links {
  display: none;
}
.panel {
  grid-template-columns: 1fr;
  text-align: center;
  min-height: auto;
  padding: 5rem 22px;
}
.panel__text {
  max-width: none;
}
.panel__media {
  order: -1;
}
.lead {
  margin-left: auto;
  margin-right: auto;
}
.card {
  flex-basis: min(86vw,560px);
}
.closer__stage {
  grid-template-columns: 1fr;
  gap: 2rem;
}
.closer__chips {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.chip {
  flex: 1 1 auto;
}
.pricing__list {
  grid-template-columns: 1fr;
  max-width: none;
}
.laptop {
  width: min(82vw,560px);
}
.hero__product .phone {
  width: min(34vw,170px);
}
.built__grid {
  grid-template-columns: 1fr;
}
}
@media (prefers-reduced-motion:reduce) {
* {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
.reveal {
  opacity: 1;
  transform: none;
}
.hero__title span {
  transform: none;
}
}
.authsec {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem,11vw,9.5rem) clamp(22px,6vw,90px) clamp(5rem,8vw,7rem);
  background: radial-gradient(120% 110% at 22% 0,#12224c 0%,#0a0d1c 50%,#040507 100%);
  border-bottom: 1px solid var(--line);
}
.authsec__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem,6vw,6rem);
  align-items: center;
}
.authsec__copy {
  max-width: 600px;
}
.authsec__title {
  font-size: clamp(2.8rem,6vw,5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 1.1rem 0 1.4rem;
}
.authsec__lead {
  color: rgba(255,255,255,.8);
  font-size: clamp(1.05rem,1.6vw,1.35rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 42ch;
}
.authsec__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 46ch;
}
.authsec__points li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.authsec__points li span {
  color: rgba(255,255,255,.84);
  font-size: 1.1rem;
  line-height: 1.4;
}
.authsec__points li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  margin-top: 1px;
  background: linear-gradient(145deg,var(--blue-2),var(--blue));
  box-shadow: 0 3px 10px rgba(43,143,255,.5);
  -webkit-mask: url(/assets/icons/0d9ccd170baba0ce1406430b.svg) center/16px no-repeat;
  mask: url(/assets/icons/0d9ccd170baba0ce1406430b.svg) center/16px no-repeat;
}
.authsec__note {
  margin-top: 1.9rem;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
}
.auth__card {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.8rem,3vw,2.7rem);
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 100px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.06);
}
.auth__card h2 {
  font-size: clamp(1.7rem,2.6vw,2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.auth__sub {
  color: rgba(255,255,255,.6);
  margin-bottom: 1.9rem;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
.auth__form label {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.72);
}
.auth__form input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .48rem .8rem;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s,background .2s;
}
.auth__form select {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .48rem .8rem;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s,background .2s;
}
.auth__form input::placeholder {
  color: rgba(255,255,255,.35);
}
.auth__form input:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(43,143,255,.06);
}
.auth__form select:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(43,143,255,.06);
}
.auth__row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: .9rem;
  margin-top: -.3rem;
}
.auth__link {
  color: var(--blue-2);
}
.auth__link:hover {
  text-decoration: underline;
}
.auth__submit {
  width: 100%;
  margin-top: .6rem;
}
.auth__alt {
  margin-top: 1.9rem;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: .98rem;
  border-top: 1px solid var(--line);
  padding-top: 1.7rem;
}
.auth__note {
  margin-top: 1.1rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
@media (max-width:860px) {
.authsec__inner {
  grid-template-columns: 1fr;
  gap: 2.6rem;
}
.auth__card {
  justify-self: stretch;
  max-width: none;
}
}
.nav__brand {
  gap: .6rem;
}
.nav__icon {
  height: 34px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.wordmark {
  font-family: 'Michroma',sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: .3px;
  line-height: 1;
  white-space: nowrap;
}
.wm-app {
  color: #ee2b24;
}
.wm-rest {
  color: #fff;
}
.wordmark--lg {
  font-size: 1.4rem;
}
.foot__icon {
  height: 40px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.foot__brandmark {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.custom {
  background: radial-gradient(120% 110% at 82% 0,#10224a 0%,#0a0d1c 48%,#06070d 100%);
  padding: clamp(6rem,10vw,9rem) clamp(22px,6vw,90px);
  border-top: 1px solid var(--line);
}
.custom__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem,5vw,5rem);
  align-items: center;
}
.custom__copy {
  max-width: 580px;
}
.custom__list {
  list-style: none;
  margin: 1.8rem 0 2.3rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.custom__list li {
  position: relative;
  padding-left: 1.9rem;
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
}
.custom__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.custom__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.custom__media {
  display: flex;
  justify-content: center;
}
.custom__media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 50px 110px rgba(0,0,0,.55),0 0 0 1px rgba(90,168,255,.18);
}
@media (max-width:880px) {
.custom__inner {
  grid-template-columns: 1fr;
  text-align: center;
}
.custom__copy {
  max-width: none;
}
.custom__list {
  align-items: center;
}
.custom__actions {
  justify-content: center;
}
.custom__media {
  order: -1;
}
}
.buytime {
  background: radial-gradient(120% 100% at 50% 0,#10224a,#06070d 64%);
  padding: 7rem clamp(22px,6vw,90px) 8rem;
  text-align: center;
}
.buytime__inner {
  max-width: 940px;
  margin: 0 auto;
}
.buytime__card {
  margin-top: 2.4rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.6rem,3vw,2.6rem);
  text-align: left;
}
.buytime__row {
  margin-bottom: 1.8rem;
}
.buytime__label {
  display: block;
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: .85rem;
  font-weight: 500;
}
.buytime__label b {
  color: #fff;
  font-size: 1.35rem;
  margin-left: .4rem;
}
.buytime__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg,var(--blue),var(--blue-2));
  outline: none;
}
.buytime__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
}
.buytime__slider::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  cursor: pointer;
}
.buytime__scale {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  margin-top: .5rem;
}
.buytime__seg {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .2rem;
}
.buytime__seg button {
  flex: 1 1 auto;
  min-width: 108px;
  padding: .7rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s,border-color .2s,color .2s;
}
.buytime__seg button:hover {
  background: rgba(255,255,255,.12);
}
.buytime__seg button.on {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.buytime__prepay {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.1rem;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  cursor: pointer;
}
.buytime__prepay input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}
.buytime__prepay input:disabled {
  opacity: .4;
  cursor: default;
}
.buytime__out {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 1rem;
  margin: 1.8rem 0 1.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.buytime__stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.buytime__stat span {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.buytime__stat b {
  color: #fff;
  font-size: clamp(1.7rem,3vw,2.3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
.buytime__stat small {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
}
.buytime__stat--big b {
  color: var(--blue-2);
}
.buytime__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}
.buytime__fine {
  margin-top: 1.4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
}
@media (max-width:720px) {
.buytime__out {
  grid-template-columns: 1fr 1fr;
}
.buytime__stat--big {
  grid-column: 1 / -1;
}
}
.auth__msg {
  margin-top: 1rem;
  text-align: center;
  font-size: .95rem;
  min-height: 1.2em;
  font-weight: 500;
}
.signup {
  background: radial-gradient(120% 100% at 50% 0,#10224a,#06070d 64%);
  padding: 7rem clamp(22px,6vw,90px) 8rem;
  position: relative;
}
.signup__intro {
  margin-bottom: 2.1rem;
  position: relative;
  z-index: 3;
}
.signup__title {
  font-size: clamp(2.2rem,4.6vw,3.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin: .85rem 0 .9rem;
  color: #fff;
}
.signup__tag {
  font-size: clamp(1rem,1.6vw,1.2rem);
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  max-width: 54ch;
  margin: 0;
}
.signup__grid {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: clamp(1.5rem,3vw,3rem);
  align-items: start;
}
.svc {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.3rem,2.4vw,2rem);
  margin-bottom: 1.4rem;
}
.svc__h {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: .3rem;
}
.svc__tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 9px;
}
.svc__tag--blue {
  color: var(--blue-2);
  border-color: rgba(90,168,255,.4);
}
.svc__sub {
  color: rgba(255,255,255,.6);
  font-size: .92rem;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}
.svc__row {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .7rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
}
.svc__row:first-of-type {
  border-top: 0;
}
.svc__row input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}
.svc__name {
  flex: 1 1 auto;
  color: rgba(255,255,255,.88);
}
.svc__price {
  font-weight: 700;
  color: #fff;
}
.svc__price small {
  color: rgba(255,255,255,.5);
  font-weight: 400;
}
.svc__hours {
  margin-left: auto;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}
.signup__side {
  position: sticky;
  top: 80px;
}
.sum {
  margin-top: .4rem;
}
.sum__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .55rem 0;
  color: rgba(255,255,255,.82);
  border-top: 1px solid rgba(255,255,255,.07);
}
.sum__row:first-child {
  border-top: 0;
}
.sum__row b {
  color: #fff;
  font-weight: 600;
}
.sum__row--disc b {
  color: var(--blue-2);
}
.sum__row--total {
  margin-top: .3rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}
.sum__row--total span {
  font-size: 1.05rem;
}
.sum__row--total b {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--blue-2);
}
.sum__note {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin: .5rem 0 0;
  text-align: right;
}
.sum__fine {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  line-height: 1.5;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: .9rem;
}
@media (max-width:880px) {
.signup__grid {
  grid-template-columns: 1fr;
}
.signup__side {
  position: static;
}
}
.sum__headline {
  margin-top: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.sum__was {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  text-decoration: line-through;
  min-height: 1.1em;
}
.sum__big-label {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  margin-top: .15rem;
}
.sum__big {
  color: var(--blue-2);
  font-size: clamp(2rem,4vw,2.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: .05rem 0 .1rem;
}
.sum__secondary {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
}
.reel__head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.1rem;
}
.reel__title {
  text-align: center;
}
.nav__cta--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
}
.nav__cta--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.06);
}
.nav__links a.is-current {
  color: #fff;
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  text-decoration-color: var(--blue);
}
.btn--sm {
  padding: .55rem 1.15rem;
  font-size: .92rem;
  font-weight: 600;
}
.btn--block {
  display: flex;
  justify-content: center;
  width: 100%;
}
.dash-hero {
  position: relative;
  z-index: 0;
  text-align: left;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7.5rem clamp(22px,6vw,90px) 5rem;
}
.dash-hero>.hero__glow {
  display: none;
}
.dash-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(1600px 560px at 50% -20%,rgba(43,143,255,.12),transparent 60%);
}
.dash-hero__title {
  font-size: clamp(1.8rem,3.8vw,2.7rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.04;
  margin: .7rem 0 .5rem;
  color: #fff;
}
.dash-hero__tag {
  font-size: clamp(.9rem,1.3vw,1.02rem);
  color: rgba(255,255,255,.75);
  max-width: 56ch;
  margin: 0;
}
.dash {
  padding: 1rem clamp(22px,6vw,90px) 5rem;
}
.dash__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: clamp(1.4rem,3vw,2.6rem);
  align-items: start;
}
.dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.dash__h {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0;
}
.dash-app {
  display: flex;
  gap: 1.3rem;
  background: #0d1018;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.1rem;
  align-items: center;
}
.dash-app__img {
  width: 160px;
  height: 115px;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.dash-app__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dash-app__body {
  flex: 1;
  min-width: 0;
}
.dash-app__status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #39d98a;
}
.dash-app__status--live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #39d98a;
  box-shadow: 0 0 0 3px rgba(57,217,138,.18);
}
.dash-app__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  margin: .35rem 0 .1rem;
}
.dash-app__url {
  color: var(--blue);
  font-size: .9rem;
  margin: 0 0 .35rem;
}
.dash-app__meta {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin: 0 0 .9rem;
}
.dash-app__actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.dash-add {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 20px;
  color: rgba(255,255,255,.8);
  transition: border-color .2s,background .2s;
}
.dash-add:hover {
  border-color: var(--blue);
  background: rgba(255,255,255,.03);
}
.dash-add__plus {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.dash-add small {
  color: rgba(255,255,255,.55);
}
.dash-card {
  background: #0d1018;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem;
  margin-bottom: 1.2rem;
  opacity: 1;
  transform: none;
  aspect-ratio: auto;
  flex: none;
}
.dash-card__h {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .9rem;
}
.dash-card__p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin: 0 0 1rem;
}
.dash-plan {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-bottom: .9rem;
}
.dash-plan__price {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.dash-plan__price small {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}
.dash-plan__sub {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.dash-plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}
.dash-plan__list li {
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dash-plan__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #39d98a;
}
.dash-acct {
  margin: 0 0 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .45rem 1rem;
}
.dash-acct dt {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}
.dash-acct dd {
  color: #fff;
  font-size: .9rem;
  margin: 0;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width:880px) {
.dash__grid {
  grid-template-columns: 1fr;
}
.dash-app {
  flex-direction: column;
  align-items: flex-start;
}
.dash-app__img {
  width: 100%;
  height: 180px;
}
}
.dash-loading {
  color: rgba(255,255,255,.5);
  padding: 1rem 0;
}
.dash-app--row {
  justify-content: space-between;
}
.dash-acct__btns {
  display: flex;
  gap: .6rem;
  margin: .2rem 0 .4rem;
}
#acct-form label {
  margin-bottom: 1rem;
}
#acct-form label:last-of-type {
  margin-bottom: .4rem;
}
.dash-back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 980px;
  padding: .45rem 1rem;
  margin-bottom: 1.2rem;
  transition: background .2s,border-color .2s,transform .15s;
}
.dash-back:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
  transform: translateX(-2px);
}
.mod-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: space-between;
  background: #0d1018;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.05rem 1.2rem;
  margin-bottom: .8rem;
  transition: border-color .2s;
}
.mod-row--on {
  border-color: rgba(57,217,138,.5);
}
.mod-row__body {
  min-width: 0;
}
.mod-row__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .25rem;
}
.mod-row__tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #39d98a;
  border: 1px solid rgba(57,217,138,.4);
  border-radius: 999px;
  padding: .1rem .5rem;
  vertical-align: middle;
  margin-left: .4rem;
}
.mod-row__desc {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin: 0;
  line-height: 1.4;
}
.mod-row__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}
.mod-row__price {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
.mod-row__price small {
  color: rgba(255,255,255,.5);
  font-weight: 400;
  font-size: .75rem;
}
.mod-sum__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mod-sum__row b {
  color: #fff;
}
.mod-sum__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .9rem 0 .2rem;
  font-size: 1rem;
  color: #fff;
}
.mod-sum__total b {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width:600px) {
.mod-row {
  flex-direction: column;
  align-items: flex-start;
}
.mod-row__right {
  width: 100%;
  justify-content: space-between;
}
}
.dash-app__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 2rem;
  margin: .75rem 0 0;
}
.dash-app__facts dt {
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
}
.dash-app__facts dd {
  color: #fff;
  font-size: .92rem;
  margin: .12rem 0 0;
  font-weight: 500;
}
.dash-app__status--warn {
  color: #f0a93a;
}
.dash-app__status--warn::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f0a93a;
  box-shadow: 0 0 0 3px rgba(240,169,58,.18);
}
.dash-app__status--bad {
  color: #ff6b6b;
}
.dash-app__status--bad::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255,107,107,.18);
}
.mod-group {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  margin: 1.7rem 0 .8rem;
}
.mod-group:first-child {
  margin-top: 0;
}
.mod-row--inc {
  border-color: rgba(57,217,138,.35);
}
.mod-row__price--free {
  color: #39d98a;
  font-weight: 600;
}
.aff {
  padding: 1rem clamp(22px,5vw,90px) 5rem;
  max-width: 1760px;
  margin: 0 auto;
}
.aff__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: .4rem 0 1.4rem;
}
.aff__h {
  font-size: clamp(1.15rem,2.4vw,1.6rem);
  font-weight: 700;
  margin: 0;
}
.aff__sub {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  margin: .25rem 0 0;
}
.aff-sec {
  margin: 2.2rem 0 0;
}
.aff-sec__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.aff-sec__hint {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  font-weight: 400;
}
.aff-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: clamp(.8rem,1.4vw,1.2rem);
}
.aff-stat {
  background: #0d1018;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.aff-stat::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--blue);
  opacity: .9;
}
.aff-stat--green::after {
  background: #39d98a;
}
.aff-stat--amber::after {
  background: #f0a93a;
}
.aff-stat--red::after {
  background: #ff6b6b;
}
.aff-stat--muted::after {
  background: rgba(255,255,255,.3);
}
.aff-stat__label {
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  margin: 0;
}
.aff-stat__value {
  font-size: clamp(1.5rem,3vw,2.05rem);
  font-weight: 800;
  margin: .35rem 0 0;
  line-height: 1;
  letter-spacing: -.02em;
}
.aff-stat--green .aff-stat__value {
  color: #39d98a;
}
.aff-stat--amber .aff-stat__value {
  color: #f0a93a;
}
.aff-stat--red .aff-stat__value {
  color: #ff6b6b;
}
.aff-stat--blue .aff-stat__value {
  color: var(--blue-2);
}
.aff-stat__sub {
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  margin: .4rem 0 0;
}
.aff-stat__ico {
  position: absolute;
  top: 1.1rem;
  right: 1.15rem;
  font-size: 1rem;
  color: rgba(255,255,255,.28);
}
.aff-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.2rem,2.4vw,2.2rem);
  align-items: start;
  margin-top: 1.6rem;
}
@media (max-width:900px) {
.aff-grid {
  grid-template-columns: 1fr;
}
}
.aff-card {
  background: #0d1018;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
  margin-bottom: 1.2rem;
}
.aff-card__h {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 .3rem;
}
.aff-card__p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin: 0 0 1rem;
}
.aff-link {
  display: flex;
  gap: .55rem;
  align-items: stretch;
  flex-wrap: wrap;
}
.aff-link__field {
  flex: 1 1 260px;
  min-width: 0;
  display: flex;
  align-items: center;
  background: #070a12;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .7rem .9rem;
  color: #dfe7f5;
  font-size: .9rem;
  font-family: ui-monospace,SFMono-Regular,Menlo,monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aff-copy {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: .7rem 1.1rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.aff-copy:hover {
  background: var(--blue-2);
}
.aff-copy.is-done {
  background: #39d98a;
}
.aff-bars {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: .2rem 0 0;
}
.aff-bar__top {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  margin-bottom: .35rem;
}
.aff-bar__lab {
  color: rgba(255,255,255,.7);
}
.aff-bar__val {
  font-weight: 700;
}
.aff-bar__track {
  height: 9px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.aff-bar__fill {
  height: 100%;
  border-radius: 6px;
  background: var(--blue);
  transition: width .5s var(--ease);
}
.aff-bar--pending .aff-bar__fill {
  background: #f0a93a;
}
.aff-bar--pending .aff-bar__val {
  color: #f0a93a;
}
.aff-bar--payable .aff-bar__fill {
  background: #39d98a;
}
.aff-bar--payable .aff-bar__val {
  color: #39d98a;
}
.aff-bar--paid .aff-bar__fill {
  background: var(--blue);
}
.aff-bar--paid .aff-bar__val {
  color: var(--blue-2);
}
.aff-tablewrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.aff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 520px;
}
.aff-table th {
  padding: .7rem .95rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.07);
  white-space: nowrap;
}
.aff-table td {
  padding: .7rem .95rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.07);
  white-space: nowrap;
}
.aff-table th {
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  background: rgba(255,255,255,.02);
  position: sticky;
  top: 0;
}
.aff-table tbody tr:hover {
  background: rgba(255,255,255,.03);
}
.aff-table td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.aff-table th.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.aff-table td.money {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.aff-table__empty {
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 1.6rem;
}
.aff-th--sort {
  cursor: pointer;
  user-select: none;
}
.aff-th--sort:hover {
  color: #fff;
}
.aff-th--sort .aff-th__arr {
  opacity: .4;
  margin-left: .3rem;
}
.aff-th--sort.is-asc .aff-th__arr {
  opacity: 1;
  color: var(--blue-2);
}
.aff-th--sort.is-desc .aff-th__arr {
  opacity: 1;
  color: var(--blue-2);
}
.aff-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: capitalize;
  padding: .28rem .6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.aff-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.aff-chip--active {
  color: #39d98a;
  background: rgba(57,217,138,.12);
  border-color: rgba(57,217,138,.25);
}
.aff-chip--payable {
  color: #39d98a;
  background: rgba(57,217,138,.12);
  border-color: rgba(57,217,138,.25);
}
.aff-chip--approved {
  color: #39d98a;
  background: rgba(57,217,138,.12);
  border-color: rgba(57,217,138,.25);
}
.aff-chip--paid {
  color: #39d98a;
  background: rgba(57,217,138,.12);
  border-color: rgba(57,217,138,.25);
}
.aff-chip--pending {
  color: #f0a93a;
  background: rgba(240,169,58,.12);
  border-color: rgba(240,169,58,.25);
}
.aff-chip--none {
  color: #ff6b6b;
  background: rgba(255,107,107,.12);
  border-color: rgba(255,107,107,.25);
}
.aff-chip--inactive {
  color: #ff6b6b;
  background: rgba(255,107,107,.12);
  border-color: rgba(255,107,107,.25);
}
.aff-chip--cancelled {
  color: #ff6b6b;
  background: rgba(255,107,107,.12);
  border-color: rgba(255,107,107,.25);
}
.aff-depth {
  display: inline-block;
  min-width: 20px;
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue-2);
  background: rgba(43,143,255,.14);
  border-radius: 6px;
  padding: .12rem .4rem;
}
.aff-form {
  display: grid;
  gap: .85rem;
}
.aff-form label {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.aff-form input {
  background: #070a12;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .6rem .8rem;
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
}
.aff-form select {
  background: #070a12;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .6rem .8rem;
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
}
.aff-form textarea {
  background: #070a12;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .6rem .8rem;
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
}
.aff-form input:focus {
  outline: none;
  border-color: var(--blue);
}
.aff-form select:focus {
  outline: none;
  border-color: var(--blue);
}
.aff-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.aff-form__msg {
  font-size: .85rem;
  margin: .2rem 0 0;
  min-height: 1.1em;
}
.aff-join {
  background: linear-gradient(150deg,rgba(43,143,255,.14),rgba(13,16,24,.4));
  border: 1px solid rgba(43,143,255,.28);
  border-radius: 20px;
  padding: 1.6rem 1.6rem;
}
.aff-join__h {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}
.aff-join__p {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  margin: 0 0 1.1rem;
  max-width: 640px;
}
.aff-stub {
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  text-align: center;
  background: rgba(255,255,255,.015);
}
.aff-stub__ico {
  font-size: 1.6rem;
  color: var(--blue-2);
  opacity: .8;
}
.aff-stub__h {
  font-size: 1.05rem;
  font-weight: 700;
  margin: .7rem 0 .3rem;
}
.aff-stub__p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin: 0 auto;
  max-width: 520px;
}
.aff-stub__soon {
  display: inline-block;
  margin-top: .9rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f0a93a;
  border: 1px solid rgba(240,169,58,.35);
  border-radius: 999px;
  padding: .3rem .8rem;
}
.aff-loading {
  color: rgba(255,255,255,.55);
  padding: 1.4rem 0;
}
.aff-note {
  font-size: .82rem;
  color: #f0a93a;
  margin: .6rem 0 0;
}
.azm[hidden] {
  display: none;
}
.azm {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.azm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,10,18,.72);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.azm__card {
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: 100%;
  background: #0d1018;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
}
.azm__x {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 0;
  color: rgba(255,255,255,.55);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.azm__h {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .3rem;
}
.azm__p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin: 0 0 1.1rem;
}
.azm__btns {
  display: flex;
  gap: .6rem;
  justify-content: flex-end;
  margin-top: 1.1rem;
}
.fa-solid {
  margin-right: .5em;
}
.fa-regular {
  margin-right: .5em;
}
.fa-brands {
  margin-right: .5em;
}
.fa-light {
  margin-right: .5em;
}
.fa-thin {
  margin-right: .5em;
}
.fa-duotone {
  margin-right: .5em;
}
.fa-sharp {
  margin-right: .5em;
}
.btn {
  gap: .5em;
}
.btn .fa-solid {
  margin-right: 0;
}
.btn .fa-regular {
  margin-right: 0;
}
.btn .fa-brands {
  margin-right: 0;
}
.aff-copy .fa-solid {
  margin-right: 0;
}
.aff-copy .fa-regular {
  margin-right: 0;
}
.aff-chip .fa-solid {
  margin-right: 0;
}
.aff-chip .fa-regular {
  margin-right: 0;
}
.aff-sec__title .fa-solid {
  margin-right: 0;
}
.aff-sec__title .fa-regular {
  margin-right: 0;
}
.aff-stat__ico {
  margin-right: 0;
}
.aff-th__arr {
  margin-right: 0;
}
.aff-person {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  min-width: 0;
}
.aff-person__name {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 36ch;
}
.aff-person__meta {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 36ch;
}
.aff-person__code {
  font-family: ui-monospace,SFMono-Regular,Menlo,monospace;
  color: #7cc0ff;
}
.aff-row {
  cursor: pointer;
}
.aff-row:focus {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
.mk-banners {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 1.1rem;
}
.mk-banner {
  background: #070a12;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .8rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.mk-banner__frame {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #06070d;
  border: 1px solid rgba(255,255,255,.06);
}
.mk-banner__frame svg {
  display: block;
  width: 100%;
  height: 100%;
}
.mk-banner__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.mk-banner__label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
}
.mk-banner__note {
  display: block;
  font-size: .76rem;
  color: rgba(255,255,255,.5);
}
.mk-copies {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mk-copy {
  background: #070a12;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem 1rem;
}
.mk-copy__text {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  margin: 0 0 .7rem;
}
.aff-copy--sm {
  padding: .45rem .85rem;
  font-size: .82rem;
  border-radius: 10px;
}
.azm__card--wide {
  max-width: 920px;
  max-height: 88vh;
  overflow: auto;
}
.dtl-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.2rem;
  padding-right: 2rem;
}
.dtl-head__right {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.dtl-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .95rem;
  margin-top: .55rem;
}
.dtl-fact {
  display: inline-flex;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.64);
}
.dtl-stats {
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  margin-bottom: .3rem;
}
.az-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.6);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.az-modal__panel {
  background: #12141a;
  color: #fff;
  max-width: 30rem;
  width: 100%;
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.az-modal__panel h3 {
  margin: 0 0 .3rem;
  color: #fff;
}
.az-modal__price {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.82);
}
.az-modal__label {
  display: block;
  margin: .55rem 0 .25rem;
  color: rgba(255,255,255,.88);
  font-size: .92rem;
}
.az-modal__input {
  width: 100%;
  padding: .6rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.20);
  background: #0c0e13;
  color: #fff;
}
.az-modal__input::placeholder {
  color: rgba(255,255,255,.45);
}
.az-modal__input:focus {
  outline: none;
  border-color: #3b82f6;
}
.az-modal__row {
  display: flex;
  gap: .6rem;
}
.az-modal__row > div {
  flex: 1;
  min-width: 0;
}
.az-modal__err {
  color: #fca5a5;
  min-height: 1.2rem;
  margin: .6rem 0 0;
}
.az-modal__actions {
  display: flex;
  gap: .6rem;
  margin-top: .9rem;
}
.az-modal__actions .btn {
  flex: 1;
}
.az-modal__actions .btn--primary {
  flex: 2;
}
.az-modal__done {
  text-align: center;
}
:where(*:has(> :is(.btn,button,input,select,textarea,.pill,.chip,.tag,.icon-btn,.linkbtn,.ax-btn,.nav-btn,.tab) + :is(.btn,button,input,select,textarea,.pill,.chip,.tag,.icon-btn,.linkbtn,.ax-btn,.nav-btn,.tab))) {
  gap: 8px;
}
:where(*:has(> svg + span), *:has(> span + svg), *:has(> .fa + span), *:has(> span + .fa)) {
  gap: 6px;
}
.btn {
  gap: 8px;
}
.aff-link__field {
  gap: 8px;
}
.built__more {
  gap: 8px;
}
.contact__social a {
  gap: 8px;
}
.logos__chip {
  gap: 8px;
}
.dtl-fact {
  gap: 8px;
}
.aff-bar__top {
  gap: 12px;
}
.sum__row {
  gap: 12px;
}
.mod-sum__row {
  gap: 12px;
}
.mod-sum__total {
  gap: 12px;
}
.auth__row {
  gap: 12px;
}
.reel__dots {
  gap: 8px;
}
.buytime__seg {
  gap: 8px;
}
.portal-box1 {
  display: inline-flex;
  text-decoration: none;
}
.portal-box2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.portal-box3 {
  grid-template-columns: 1fr;
}
.portal-box4 {
  max-height: 150px;
  overflow: auto;
}
.portal-gap1 {
  width: 100%;
  margin-top: 18px;
}
.portal-gap10 {
  margin: 0;
}
.portal-gap11 {
  margin-top: 10px;
}
.portal-gap12 {
  margin-top: 8px;
}
.portal-gap2 {
  margin-top: 26px;
}
.portal-gap3 {
  margin: 0 0 14px;
}
.portal-gap4 {
  margin: 0 0 12px;
  white-space: pre-wrap;
}
.portal-gap5 {
  margin: 10px 0 0;
}
.portal-gap6 {
  display: inline-flex;
  margin-top: 6px;
  text-decoration: none;
}
.portal-gap7 {
  margin-top: 12px;
}
.portal-gap8 {
  margin-top: 28px;
}
.portal-gap9 {
  margin-top: 22px;
}
.portal-row1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
}
.portal-row2 {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.portal-row3 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.portal-row4 {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.portal-row5 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.portal-size1 {
  width: 100%;
}
.portal-size2 {
  max-width: 100%;
}
.portal-size3 {
  max-width: 240px;
}
.portal-text1 {
  color: #4285F4;
}
.portal-text2 {
  color: #EA4335;
}
.portal-text3 {
  color: #FBBC05;
}
.portal-text4 {
  color: #34A853;
}
.portal-text5 {
  color: #fff;
}
.portal-text6 {
  color: #1a7f37;
}
.portal-text7 {
  background: #e9f6ee;
  color: #1a7f37;
}
.portal-text8 {
  display: block;
  text-decoration: none;
  color: #1d6fb8;
}
.portal-text9 {
  font-weight: 400;
  font-size: 12px;
}
.az-businessbox-1 {
  text-align: center;
  margin: 0 auto;
}
.az-businessbox-2 {
  margin-left: auto;
  margin-right: auto;
}
.az-businessbox-3 {
  padding-top: 6rem;
}
.az-businessbox-4 {
  padding-top: 2rem;
}
.az-businessbox-5 {
  text-align: center;
}
.az-businessbox-6 {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 2rem;
}
.az-businessbox-7 {
  max-width: 64rem;
  margin: 0 auto;
}
.az-businessbox-8 {
  text-align: center;
  display: none;
}
.az-businessbox-9 {
  display: none;
}
.az-businessbox-10 {
  flex: 1;
}
.az-businessbox-11 {
  flex: 2;
}
.az-businessbox-12 {
  display: none;
}
.az-businessbox-13 {
  text-align: center;
  display: none;
}
:root {
  --cr-blue: #2b8fff;
  --cr-blue2: #5aa8ff;
  --cr-red: #e8442b;
  --cr-ink: #06070d;
  --cr-ink2: #040507;
}
.cr {
  --maxw: none;
}
.cr * {
  box-sizing: border-box;
}
.cr section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cr header.cr-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cr-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px);
}
.cr h1 {
  letter-spacing: -.03em;
  line-height: 1.02;
}
.cr h2 {
  letter-spacing: -.03em;
  line-height: 1.02;
}
.cr h3 {
  letter-spacing: -.03em;
  line-height: 1.02;
}
.cr .cr-eyebrow {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--cr-blue2);
  margin: 0 0 1.1rem;
}
.cr-screen {
  mix-blend-mode: screen;
  display: block;
  width: 100%;
  height: auto;
}
.cr-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background: radial-gradient(120% 90% at 78% 18%, rgba(232,68,43,.22), transparent 46%),
    radial-gradient(135% 105% at 50% 0, #10224a, #0a0d1c 44%, #040507 100%);
  padding-top: 96px;
}
.cr-hero__grid {
  max-width: none;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(20px,5vw,64px);
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  align-items: center;
  gap: clamp(20px,3vw,56px);
}
.cr-hero__copy {
  max-width: 560px;
}
.cr-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #cfe2ff;
  background: rgba(43,143,255,.14);
  border: 1px solid rgba(90,168,255,.45);
  border-radius: 999px;
  padding: .4rem 1rem;
  margin-bottom: 1.4rem;
}
.cr-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33d27e;
  box-shadow: 0 0 0 0 rgba(51,210,126,.55);
  animation: cr-pulse 2.2s infinite;
}
@keyframes cr-pulse {0%{box-shadow:0 0 0 0 rgba(51,210,126,.55)} 70%{box-shadow:0 0 0 9px rgba(51,210,126,0)} 100%{box-shadow:0 0 0 0 rgba(51,210,126,0)}}
.cr-hero__title {
  font-size: clamp(3.2rem,8.5vw,6.2rem);
  font-weight: 700;
  margin: 0 0 1.1rem;
  background: linear-gradient(180deg,#fff 30%,#9fc0ff 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-hero__tag {
  font-size: clamp(1.08rem,1.7vw,1.4rem);
  line-height: 1.5;
  color: rgba(255,255,255,.74);
  margin: 0 0 2rem;
  max-width: 30ch;
}
.cr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cr-hero__meta {
  margin-top: 1.7rem;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .01em;
}
.cr-hero__art {
  position: relative;
}
.cr-hero__art::before {
  content: "";
  position: absolute;
  left: 6%;
  right: -6%;
  top: 54%;
  height: 42%;
  background: radial-gradient(60% 100% at 50% 50%, rgba(232,68,43,.55), rgba(43,143,255,.18) 55%, transparent 72%);
  filter: blur(46px);
  transform: translateY(-10%);
  z-index: 0;
}
.cr-hero__car {
  position: relative;
  z-index: 1;
  width: 118%;
  max-width: none;
  margin-left: -9%;
  filter: drop-shadow(0 50px 70px rgba(0,0,0,.6));
  animation: cr-drive 1.2s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes cr-drive {from{opacity:0; transform:translateX(7%) scale(1.04)} to{opacity:1; transform:none}}
.cr-streaks {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .5;
  pointer-events: none;
}
.cr-streaks i {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(90,168,255,.85));
  animation: cr-streak 2.6s linear infinite;
}
.cr-streaks i:nth-child(1) {
  top: 30%;
  left: -30%;
  width: 30%;
  animation-delay: 0s;
}
.cr-streaks i:nth-child(2) {
  top: 48%;
  left: -40%;
  width: 24%;
  animation-delay: .7s;
  background: linear-gradient(90deg,transparent,rgba(232,68,43,.7));
}
.cr-streaks i:nth-child(3) {
  top: 64%;
  left: -25%;
  width: 34%;
  animation-delay: 1.3s;
}
@keyframes cr-streak {from{transform:translateX(0); opacity:0} 10%{opacity:1} 90%{opacity:1} to{transform:translateX(190%); opacity:0}}
.cr-scrollcue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.cr-stage {
  background: #040507;
  padding: clamp(80px,11vw,150px) 0 clamp(70px,9vw,120px);
  text-align: center;
}
.cr-stage__head {
  max-width: 760px;
  margin: 0 auto clamp(40px,5vw,68px);
}
.cr-stage__head h2 {
  font-size: clamp(2.3rem,5vw,4rem);
  font-weight: 700;
  margin: .2rem 0 1rem;
  color: #fff;
}
.cr-stage__head p {
  font-size: clamp(1.05rem,1.5vw,1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,.62);
  margin: 0;
}
.cr-stage__shot {
  position: relative;
  max-width: none;
  margin: 0 auto;
  padding: 0 16px;
}
.cr-stage__shot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%,-30%);
  width: 80%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(43,143,255,.4), transparent 75%);
  filter: blur(60px);
  z-index: 0;
}
.cr-stage__shot .cr-screen {
  position: relative;
  z-index: 1;
}
.cr-stage__floor {
  height: 160px;
  margin-top: -40px;
  background: linear-gradient(180deg, rgba(43,143,255,.08), transparent 70%);
  -webkit-mask: radial-gradient(60% 100% at 50% 0, #000, transparent 72%);
  mask: radial-gradient(60% 100% at 50% 0, #000, transparent 72%);
}
.cr-state {
  padding: clamp(110px,16vw,220px) 0;
  background: radial-gradient(120% 120% at 50% 0, #12244d, #0a0f20 50%, #040507 100%);
}
.cr-state__inner {
  max-width: none;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(20px,5vw,40px);
}
.cr-state__kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cr-blue2);
  margin-bottom: 1.6rem;
}
.cr-state h2 {
  font-size: clamp(2.4rem,6.4vw,5.4rem);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  margin: 0;
}
.cr-state h2 em {
  font-style: normal;
  background: linear-gradient(120deg,var(--cr-blue2),var(--cr-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-state__sub {
  margin: 1.8rem auto 0;
  max-width: 60ch;
  font-size: clamp(1.05rem,1.6vw,1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,.6);
}
.cr-flight {
  margin: 2.6rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
}
.cr-flight span {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .5rem 1.1rem;
}
.cr-flight .cr-flight__on {
  color: #33d27e;
  border-color: rgba(51,210,126,.4);
  background: rgba(51,210,126,.08);
}
.cr-flight i {
  color: var(--cr-blue2);
  font-style: normal;
}
.cr-feat {
  background: #06070d;
  padding: clamp(80px,11vw,150px) 0;
}
.cr-feat__head {
  max-width: 760px;
  margin: 0 auto clamp(48px,6vw,90px);
  text-align: center;
}
.cr-feat__head h2 {
  font-size: clamp(2.2rem,5vw,3.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.cr-feat__rows {
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(30px,5vw,64px);
}
.cr-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px,4vw,56px);
  align-items: center;
  padding: clamp(26px,3vw,40px) clamp(24px,3vw,44px);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
}
.cr-row:nth-child(even) {
  direction: rtl;
}
.cr-row:nth-child(even) > * {
  direction: ltr;
}
.cr-row__num {
  font-size: clamp(3.4rem,7vw,5.6rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.04em;
  background: linear-gradient(160deg,var(--cr-blue2),var(--cr-blue) 60%, #1668c9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-row:nth-child(4) .cr-row__num {
  background: linear-gradient(160deg,#ff8a6b,var(--cr-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-row__body h3 {
  font-size: clamp(1.4rem,2.4vw,2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 .55rem;
}
.cr-row__body p {
  font-size: clamp(1rem,1.4vw,1.18rem);
  line-height: 1.55;
  color: rgba(255,255,255,.62);
  margin: 0;
  max-width: 54ch;
}
.cr-split {
  background: radial-gradient(130% 110% at 8% 0, #0c1a38, #070a16 52%, #040507 100%);
  padding: clamp(80px,11vw,150px) 0;
}
.cr-split__grid {
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px);
  display: grid;
  grid-template-columns: .92fr 1.25fr;
  gap: clamp(28px,4vw,72px);
  align-items: center;
}
.cr-split__copy h2 {
  font-size: clamp(2.1rem,4.4vw,3.5rem);
  font-weight: 700;
  color: #fff;
  margin: .3rem 0 1.1rem;
}
.cr-split__copy p {
  font-size: clamp(1.05rem,1.5vw,1.28rem);
  line-height: 1.55;
  color: rgba(255,255,255,.66);
  margin: 0 0 1.6rem;
}
.cr-split__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.cr-split__list li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
}
.cr-split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--cr-blue2);
  border-bottom: 2px solid var(--cr-blue2);
  transform: rotate(-45deg);
}
.cr-split__art {
  position: relative;
}
.cr-split__art::before {
  content: "";
  position: absolute;
  inset: 6% -8% 0 4%;
  background: radial-gradient(closest-side, rgba(43,143,255,.4), transparent 75%);
  filter: blur(54px);
  z-index: 0;
}
.cr-split__art .cr-screen {
  position: relative;
  z-index: 1;
  width: 116%;
  max-width: none;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55));
}
.cr-pay {
  background: #040507;
  padding: clamp(64px,8vw,104px) 0;
  text-align: center;
}
.cr-pay__label {
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 2rem;
}
.cr-pay__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: none;
  margin: 0 auto;
}
.cr-chip {
  background: #fff;
  border-radius: 14px;
  padding: .9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 64px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.cr-chip img {
  max-height: 30px;
  max-width: 120px;
  width: auto;
  height: auto;
  display: block;
}
.cr-cta {
  padding: clamp(100px,14vw,200px) 0;
  background: radial-gradient(100% 120% at 50% 0, rgba(43,143,255,.22), transparent 50%),
    radial-gradient(135% 105% at 50% 100%, #10224a, #0a0d1c 44%, #040507 100%);
  text-align: center;
}
.cr-cta__inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,40px);
}
.cr-cta__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .6rem;
  margin: .5rem 0 1.3rem;
}
.cr-cta__from {
  font-size: 1.1rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.cr-cta__amt {
  font-size: clamp(4rem,11vw,8rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.04em;
  background: linear-gradient(180deg,#fff,#8fb6ff 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-cta__per {
  font-size: 1.2rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.cr-cta__lead {
  font-size: clamp(1.1rem,1.6vw,1.35rem);
  line-height: 1.5;
  color: rgba(255,255,255,.72);
  margin: 0 auto 2.2rem;
  max-width: 54ch;
}
.cr-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cr-cta__fine {
  margin-top: 1.7rem;
  font-size: .86rem;
  color: rgba(255,255,255,.45);
}
@media (max-width:920px) {
.cr-hero {
  padding-top: 108px;
}
.cr-hero__grid {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 12px;
}
.cr-hero__copy {
  max-width: none;
  margin: 0 auto;
}
.cr-hero__tag {
  max-width: none;
}
.cr-hero__actions {
  justify-content: center;
}
.cr-hero__car {
  width: 100%;
  margin-left: 0;
}
.cr-hero__art::before {
  left: 0;
  right: 0;
}
.cr-split__grid {
  grid-template-columns: 1fr;
  text-align: center;
}
.cr-split__list {
  display: inline-flex;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.cr-split__art .cr-screen {
  width: 100%;
}
.cr-row {
  grid-template-columns: 1fr;
  text-align: center;
  gap: .6rem;
}
.cr-row:nth-child(even) {
  direction: ltr;
}
.cr-row__body p {
  margin-left: auto;
  margin-right: auto;
}
.cr-scrollcue {
  display: none;
}
}
@media (max-width:560px) {
.cr-chip {
  min-width: 120px;
  height: 58px;
}
}
.page * {
  box-sizing: border-box;
}
.page {
  max-width: none;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 2px 18px rgba(20,40,70,0.08);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1d2733;
  line-height: 1.6;
}
.page .hero {
  background: linear-gradient(135deg, #0f3d5c 0%, #14708a 100%);
  color: #ffffff;
  padding: 44px 48px 40px;
}
.page .brand {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 14px;
}
.page .hero h1 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}
.page .hero p {
  margin: 0;
  font-size: 17px;
  max-width: 640px;
  opacity: 0.95;
}
.page .body {
  padding: 40px 48px 12px;
}
.page h2 {
  font-size: 20px;
  color: #0f3d5c;
  margin: 34px 0 6px;
  border-bottom: 2px solid #e2e8ee;
  padding-bottom: 8px;
}
.page .lead {
  font-size: 17px;
  background: #f2f8fb;
  border-left: 4px solid #14708a;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin: 4px 0 8px;
}
.page ul.points {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.page ul.points li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid #eef2f6;
}
.page ul.points li:last-child {
  border-bottom: none;
}
.page ul.points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: #14708a;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
  font-weight: 700;
}
.page ul.points strong {
  color: #0f3d5c;
}
.page .diagram {
  margin: 22px 0 8px;
  background: #f7fafc;
  border: 1px solid #e2e8ee;
  border-radius: 12px;
  padding: 18px 16px 10px;
}
.page .diagram .cap {
  text-align: center;
  font-size: 13px;
  color: #5c7488;
  margin: 4px 0 0;
}
.page .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0;
}
.page .card {
  flex: 1 1 220px;
  background: #f7fafc;
  border: 1px solid #e2e8ee;
  border-radius: 10px;
  padding: 18px 18px 16px;
}
.page .card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #0f3d5c;
}
.page .card p {
  margin: 0;
  font-size: 14.5px;
}
.page .worry {
  background: #fff8ec;
  border: 1px solid #f2dca8;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 14px 0;
}
.page .worry .q {
  font-weight: 700;
  color: #8a5a00;
  margin: 0 0 4px;
}
.page .worry .a {
  margin: 0;
}
.page .footer {
  background: #0f3d5c;
  color: #d7e6ee;
  padding: 26px 48px;
  font-size: 14px;
  margin-top: 30px;
}
.page .footer strong {
  color: #fff;
}
@media (max-width: 600px) {
.hero {
  padding-left: 24px;
  padding-right: 24px;
}
.body {
  padding-left: 24px;
  padding-right: 24px;
}
.footer {
  padding-left: 24px;
  padding-right: 24px;
}
.hero h1 {
  font-size: 24px;
}
}
.az-continuity-1 {
  margin: 0 0 6px;
}
.az-continuity-2 {
  margin: 0;
}
html.me-pending .dash-hero {
  display: none !important;
}
html.me-pending .dash {
  display: none !important;
}
.supm[hidden] {
  display: none;
}
.supm {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.supm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,10,18,.72);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.supm__card {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
}
.supm__x {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  color: var(--muted,#8b93a7);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.supm textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
.hold-sum__row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.hold-sum__row small {
  color: rgba(255,255,255,.5);
}
.hold-sum__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 1rem 0 .3rem;
}
.hold-fee {
  color: #ff9d47;
}
.pay__note {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  margin: 1rem 0 0;
  text-align: center;
}
#hold-msg {
  padding: .75rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.hold-warn {
  background: rgba(255,107,99,.12);
  border: 1px solid rgba(255,107,99,.4);
  color: #ff8a83;
}
.hold-ok {
  background: rgba(43,143,255,.14);
  border: 1px solid rgba(90,168,255,.4);
  color: var(--blue-2);
}
.az-hold-1 {
  margin-top: 1rem;
}
.mod-row--cart {
  border-color: var(--blue);
}
.mod-row__tag--cart {
  background: rgba(43,143,255,.16);
  color: var(--blue-2);
}
#mod-msg {
  background: rgba(43,143,255,.14);
  border: 1px solid rgba(90,168,255,.4);
  color: var(--blue-2);
  padding: .75rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.cart-card {
  border: 1px solid var(--blue) !important;
  margin-top: 1rem;
}
.cart-card[hidden] {
  display: none !important;
}
.paymodal[hidden] {
  display: none;
}
.paymodal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.paymodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,10,18,.74);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.paymodal__card {
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: 100%;
  background: #0d1018;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.7rem 1.6rem 1.5rem;
}
.paymodal__x {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 0;
  color: rgba(255,255,255,.6);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.paymodal h2 {
  font-size: 1.4rem;
  margin: 0 0 .3rem;
  color: #fff;
}
.paymodal .sub {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin: 0 0 1.1rem;
}
.pay__row {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.pay__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 1rem 0 1.2rem;
}
.pay__field {
  margin: .9rem 0 0;
}
.pay__field label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin: 0 0 .3rem;
}
.pay__field input {
  width: 100%;
  padding: .7rem .9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #06070d;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}
.pay__note {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  margin: .9rem 0 0;
  text-align: center;
}
.az-manage-1 {
  margin: 1rem 0 0;
}
.az-manage-2 {
  margin-top: 1rem;
}
.az-manage-3 {
  margin: .7rem 0 0;
}
.az-pricing-1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.sub-sum__row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.sub-sum__row small {
  color: rgba(255,255,255,.5);
}
.sub-sum__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 1rem 0 .3rem;
}
.sub-note {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  margin: .5rem 0 0;
}
.pay__note {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  margin: 1rem 0 0;
  text-align: center;
}
#sub-msg {
  background: rgba(43,143,255,.14);
  border: 1px solid rgba(90,168,255,.4);
  color: var(--blue-2);
  padding: .75rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.az-subscribe-1 {
  margin-top: .6rem;
}
.az-subscribe-2 {
  margin-top: 1rem;
}
.az-subscribe-3 {
  color: var(--blue-2);
  font-weight: 600;
}
.az-subscribe-4 {
  margin-top: 1rem;
}
.faq {
  max-width: none;
}
.faq__item {
  background: #0d1018;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: .7rem;
  overflow: hidden;
}
.faq__item[open] {
  border-color: rgba(43,143,255,.5);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q::after {
  content: "+";
  color: var(--blue-2);
  font-size: 1.4rem;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform .2s;
}
.faq__item[open] .faq__q::after {
  content: "\2013";
}
.faq__a {
  padding: 0 1.2rem 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.sup-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media(max-width:820px) {
.sup-grid {
  grid-template-columns: 1fr;
}
}
.sup-form label {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin: .9rem 0 .35rem;
}
.sup-form input {
  width: 100%;
  padding: .75rem .9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #06070d;
  color: #fff;
  font-family: inherit;
  font-size: .98rem;
}
.sup-form textarea {
  width: 100%;
  padding: .75rem .9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #06070d;
  color: #fff;
  font-family: inherit;
  font-size: .98rem;
}
.sup-form textarea {
  min-height: 120px;
  resize: vertical;
}
#sup-msg {
  margin-top: 1rem;
  font-size: .92rem;
}
.az-support-1 {
  margin-top: 1rem;
}
