:root {
  --bg: #06111b;
  --bg-deep: #040c14;
  --panel: #0c1a28;
  --panel-2: #0a1724;
  --line: #20364a;
  --line-soft: #172b3d;
  --text: #eef5fb;
  --muted: #96a9bd;
  --muted-2: #7f95aa;
  --cyan: #29ccd3;
  --blue: #3188ff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 8%, rgba(34, 101, 139, .09), transparent 31rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg));
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  width: min(1360px, calc(100% - 96px));
  margin-inline: auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 14, 23, .94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .22em;
  white-space: nowrap;
}

.links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.links a,
.footer-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  transition: color .18s ease;
}

.links a:hover,
.links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--cyan); }

.hero {
  min-height: 650px;
  padding-block: 88px 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: center;
  gap: 72px;
}

.kicker,
.state {
  color: #8ea8c0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.first-only {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(41, 204, 211, .38);
  border-radius: 999px;
  background: rgba(41, 204, 211, .08);
  color: #baf8fb;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 24px;
  font-size: clamp(54px, 5.6vw, 82px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero p,
.heading p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid #294158;
  border-radius: 14px;
  background: #0e1d2c;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: #3f607e;
  filter: brightness(1.08);
}

.btn.hub {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #031318;
}

.btn.secondary {
  border-color: #35516a;
  background: rgba(8, 22, 34, .62);
  color: #b8ccdc;
}

.btn.compact {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 780;
}

.hero-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.hero-icons img {
  width: min(48%, 250px);
  height: auto;
  border-radius: 26%;
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, .35));
}

.hero-icons img:first-child { transform: translateY(20px); }

section[id] { scroll-margin-top: 105px; }

#products,
#trigger,
#commercial,
main > .wrap:not(.hero) { padding-block: 78px; }

.heading { margin-bottom: 34px; }

.heading h2,
.upgrade h2 {
  margin: 14px 0 16px;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card,
.step,
.buybox,
.tier,
.upgrade {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(14, 31, 46, .98), rgba(10, 23, 35, .98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .1);
}

.card {
  min-width: 0;
  padding: 32px;
  border-radius: 28px;
}

.product-head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-head img {
  width: 112px;
  height: 112px;
  border-radius: 24px;
  object-fit: cover;
  flex: 0 0 auto;
}

.product-head h3,
.buybox h3,
.tier h3,
.step h3 {
  margin: 8px 0 4px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.product-head .price,
.buybox .price,
.tier-price {
  color: var(--text);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.22;
}

.hubstate { color: #52dfe3; }
.controlstate { color: #76a9ff; }

.summary {
  margin: 26px 0 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.detail {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.detail strong,
.detail span { display: block; }

.detail strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.detail span,
.small,
.tier p,
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.soon-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: rgba(26, 63, 104, .14);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.transfer {
  padding-block: 78px;
  border-block: 1px solid var(--line-soft);
  background: rgba(8, 21, 33, .72);
}

.transfer-heading {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.transfer-logo {
  width: 124px;
  height: 124px;
  border-radius: 27px;
  object-fit: cover;
  filter: drop-shadow(0 18px 30px rgba(74, 20, 120, .34));
}

.steps,
.buy-row,
.commercial {
  display: grid;
  gap: 22px;
}

.steps,
.commercial { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.step,
.tier {
  padding: 26px;
  border-radius: 21px;
}

.step-num {
  color: #8ca3bb;
  font-size: 13px;
  font-weight: 750;
}

.buy-row { margin-top: 24px; }

.buybox {
  min-width: 0;
  min-height: 150px;
  padding: 26px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.buybox .btn {
  min-width: max-content;
  margin-top: 0;
}

#trigger { padding-top: 88px; }

.trigger-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: center;
  gap: 44px;
  margin-bottom: 34px;
}

.trigger-intro .heading { margin-bottom: 0; }

.trigger-shadow {
  position: relative;
  min-height: 238px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(49, 136, 255, .22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 52% 50%, rgba(36, 80, 117, .2), transparent 68%),
    #07111a;
  box-shadow: inset 0 0 34px rgba(0, 0, 0, .48), 0 22px 45px rgba(0, 0, 0, .18);
}

.trigger-shadow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: .82;
  filter: grayscale(.55) saturate(.48) brightness(.62) contrast(1.24);
}

.trigger-shadow::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -12%;
  background:
    radial-gradient(ellipse at 12% 38%, rgba(0, 4, 7, .72) 0 7%, rgba(2, 8, 13, .5) 22%, transparent 45%),
    radial-gradient(ellipse at 47% 72%, rgba(0, 4, 7, .62) 0 8%, rgba(2, 8, 13, .42) 24%, transparent 47%),
    radial-gradient(ellipse at 82% 30%, rgba(0, 4, 7, .68) 0 6%, rgba(2, 8, 13, .46) 21%, transparent 43%);
  filter: blur(15px);
  opacity: .78;
  pointer-events: none;
}

.trigger-shadow::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 16, .4), transparent 18%, transparent 82%, rgba(4, 10, 16, .4)),
    linear-gradient(180deg, rgba(4, 10, 16, .2), transparent 34%, rgba(4, 10, 16, .42));
  pointer-events: none;
}

.commercial { margin-top: 28px; }

.tier p { font-size: 16px; }
.tier-price { margin-top: 22px; }

.upgrade {
  padding: 34px;
  border-radius: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.upgrade h2 { margin-block: 6px 12px; font-size: 38px; }
.upgrade p { margin: 0; color: var(--muted); line-height: 1.68; }

.upgrade-price {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 950;
  white-space: nowrap;
}

.legal {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.68;
}

.footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(4, 13, 21, .76);
}

.footer-inner {
  min-height: 135px;
  padding-block: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

@media (max-width: 1100px) {
  .wrap { width: min(100% - 48px, 1360px); }
  .hero { grid-template-columns: 1fr .72fr; gap: 36px; }
  .links { gap: 16px; }
  .buybox { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 820px) {
  .wrap { width: min(100% - 32px, 1360px); }
  .top { position: static; }
  .nav { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .links { justify-content: flex-start; gap: 12px 18px; }
  .hero { min-height: 0; padding-block: 64px 78px; grid-template-columns: 1fr; }
  .hero-icons { justify-content: flex-start; max-width: 500px; }
  .hero-icons img:first-child { transform: none; }
  .product-grid,
  .steps,
  .buy-row,
  .commercial { grid-template-columns: 1fr !important; }
  .trigger-intro { grid-template-columns: 1fr; gap: 24px; }
  .trigger-shadow { min-height: 210px; }
  .upgrade,
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 48px; }
  .heading h2 { font-size: 38px; }
  .card { padding: 24px; }
  .product-head { align-items: flex-start; }
  .product-head img { width: 86px; height: 86px; border-radius: 19px; }
  .product-head h3 { font-size: 22px; }
  .product-head .price { font-size: 22px; }
  .transfer-heading { grid-template-columns: 86px minmax(0, 1fr); gap: 18px; }
  .transfer-logo { width: 86px; height: 86px; border-radius: 20px; }
  .transfer-heading h2 { font-size: 34px; }
}
