:root {
  --to-bg: #070612;
  --to-night: #100b27;
  --to-violet: #4d14b8;
  --to-violet-2: #7b2cff;
  --to-cyan: #22d6ff;
  --to-gold: #ffd86a;
  --to-gold-2: #c98924;
  --to-rose: #ff3ea7;
  --to-ink: #131728;
  --to-muted: #647087;
  --to-paper: #fff8e7;
  --to-white: #fffdf7;
  --to-line: rgba(255, 216, 106, .24);
  --to-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --to-max: 1180px;
  font-family: Inter, Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  letter-spacing: 0;
}

body {
  min-width: 320px;
  color: var(--to-white);
  background:
    radial-gradient(circle at 18% 5%, rgba(123, 44, 255, .34), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(34, 214, 255, .18), transparent 24%),
    linear-gradient(180deg, #070612 0%, #13092c 49%, #fff8e7 49%, #fff8e7 100%);
}

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

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

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

h1,
h2,
h3,
p,
li,
a,
span,
strong {
  min-width: 0;
}

p,
li {
  line-height: 1.72;
}

.to-wrap {
  width: min(var(--to-max), calc(100% - 48px));
  margin: 0 auto;
}

.to-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 216, 106, .14);
  background: rgba(7, 6, 18, .88);
  backdrop-filter: blur(18px);
}

.to-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.to-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.to-brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 216, 106, .72);
  border-radius: 16px;
  color: #2b1440;
  background:
    radial-gradient(circle at 34% 22%, #fff8c7 0 16%, transparent 17%),
    linear-gradient(135deg, #ffe477, #c97817 56%, #7b2cff);
  box-shadow: 0 0 28px rgba(255, 216, 106, .28);
  font-size: 24px;
}

.to-brand-copy {
  display: grid;
  gap: 2px;
}

.to-brand-name {
  color: var(--to-gold);
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 216, 106, .32);
}

.to-brand-sub {
  color: rgba(255, 253, 247, .66);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.to-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 253, 247, .78);
  font-size: 14px;
  font-weight: 800;
}

.to-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.to-nav a:hover,
.to-nav .is-active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.to-header-actions,
.to-hero-actions,
.to-article-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.to-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.to-btn:hover {
  transform: translateY(-2px);
}

.to-btn-primary {
  color: #241100;
  background: linear-gradient(135deg, #fff1a6, #ffc943 52%, #c77716);
  box-shadow: 0 16px 36px rgba(255, 194, 54, .28);
}

.to-btn-ghost {
  color: var(--to-white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.to-hero {
  position: relative;
  isolation: isolate;
  padding: 74px 0 42px;
  min-height: 744px;
  overflow: hidden;
}

.to-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(90deg, #070612 0%, rgba(7, 6, 18, .92) 27%, rgba(7, 6, 18, .46) 56%, rgba(7, 6, 18, .25) 100%);
}

.to-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 170px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 6, 18, 0), #13092c 72%, #13092c);
}

.to-hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .88;
}

.to-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.to-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(320px, 1fr);
  align-items: center;
  gap: 56px;
}

.to-hero-copy {
  padding-top: 26px;
}

.to-hero-title {
  max-width: 680px;
  color: #fff;
  font-size: clamp(46px, 7vw, 88px);
  line-height: .94;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.to-hero-title span {
  color: var(--to-gold);
  text-shadow: 0 0 22px rgba(255, 216, 106, .36);
}

.to-hero-text {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 253, 247, .82);
  font-size: 18px;
}

.to-hero-actions {
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 14px;
}

.to-hero-panel {
  width: min(100%, 420px);
  justify-self: end;
  margin-top: 290px;
  border: 1px solid rgba(255, 216, 106, .28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(16, 11, 39, .82), rgba(83, 21, 172, .5)),
    rgba(255, 255, 255, .08);
  box-shadow: var(--to-shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.to-panel-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 216, 106, .18);
}

.to-panel-stat {
  padding: 20px;
  background: rgba(9, 8, 26, .76);
}

.to-panel-stat strong {
  display: block;
  color: var(--to-gold);
  font-size: 26px;
  line-height: 1;
}

.to-panel-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 247, .68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.to-panel-body {
  padding: 22px;
}

.to-panel-body h2 {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.to-panel-body p {
  margin-top: 12px;
  color: rgba(255, 253, 247, .72);
  font-size: 14px;
}

.to-trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -64px;
}

.to-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.to-trust-item {
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(255, 216, 106, .22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
  box-shadow: 0 20px 46px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.to-trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #2d1500;
  background: linear-gradient(135deg, #fff0a4, #ffb532);
  font-weight: 900;
  font-size: 18px;
}

.to-trust-item h3 {
  margin-top: 14px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.to-trust-item p {
  margin-top: 8px;
  color: rgba(255, 253, 247, .66);
  font-size: 13px;
  line-height: 1.6;
}

.to-section {
  padding: 86px 0;
}

.to-paper {
  color: var(--to-ink);
  background: var(--to-paper);
}

.to-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.to-section-head h2 {
  max-width: 650px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  font-weight: 950;
}

.to-section-head p {
  max-width: 430px;
  color: var(--to-muted);
  font-size: 16px;
}

.to-story-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: stretch;
}

.to-showcase {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #150936;
  box-shadow: 0 24px 60px rgba(39, 18, 78, .22);
}

.to-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.to-showcase-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 216, 106, .2);
  border-radius: 18px;
  color: var(--to-white);
  background: rgba(7, 6, 18, .78);
  backdrop-filter: blur(16px);
}

.to-showcase-caption h3 {
  font-size: 24px;
}

.to-showcase-caption p {
  margin-top: 8px;
  color: rgba(255, 253, 247, .74);
  font-size: 14px;
}

.to-feature-stack {
  display: grid;
  gap: 16px;
}

.to-feature-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(19, 23, 40, .09);
  border-radius: 20px;
  background: #fffdf7;
  box-shadow: 0 16px 36px rgba(39, 18, 78, .08);
}

.to-feature-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--to-violet-2), var(--to-rose));
  font-size: 26px;
  font-weight: 950;
  box-shadow: 0 16px 28px rgba(123, 44, 255, .22);
}

.to-feature-card h3 {
  font-size: 22px;
  line-height: 1.2;
}

.to-feature-card p {
  margin-top: 8px;
  color: var(--to-muted);
  font-size: 15px;
}

.to-dark-band {
  color: var(--to-white);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 62, 167, .18), transparent 28%),
    linear-gradient(135deg, #0a0718, #21104c 48%, #090817);
}

.to-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.to-step {
  position: relative;
  min-height: 255px;
  padding: 26px;
  border: 1px solid rgba(255, 216, 106, .2);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.to-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 216, 106, .95);
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.to-step::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 148px;
  height: 148px;
  border: 24px solid rgba(34, 214, 255, .12);
  border-radius: 999px;
}

.to-step h3 {
  font-size: 23px;
  line-height: 1.18;
}

.to-step p {
  margin-top: 12px;
  color: rgba(255, 253, 247, .72);
  font-size: 15px;
}

.to-news-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.to-news-intro {
  position: sticky;
  top: 104px;
  padding: 28px;
  border-radius: 22px;
  color: var(--to-white);
  background:
    radial-gradient(circle at 78% 0%, rgba(34, 214, 255, .22), transparent 35%),
    linear-gradient(135deg, #13092c, #4d14b8);
  box-shadow: 0 20px 44px rgba(39, 18, 78, .16);
}

.to-news-intro h2 {
  font-size: 36px;
  line-height: 1.04;
}

.to-news-intro p {
  margin-top: 16px;
  color: rgba(255, 253, 247, .74);
}

.to-news-list {
  display: grid;
  gap: 14px;
}

.to-news-card {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(19, 23, 40, .08);
  border-radius: 18px;
  background: #fffdf7;
  box-shadow: 0 12px 30px rgba(39, 18, 78, .06);
}

.to-news-thumb {
  aspect-ratio: 1.35;
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 25%, rgba(255, 216, 106, .82), transparent 22%),
    linear-gradient(135deg, #160a35, #762bff 55%, #22d6ff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
}

.to-news-card h3 {
  color: var(--to-ink);
  font-size: 19px;
  line-height: 1.25;
}

.to-news-card p {
  margin-top: 7px;
  color: var(--to-muted);
  font-size: 14px;
  line-height: 1.58;
}

.to-news-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #2d1500;
  background: linear-gradient(135deg, #fff0a4, #ffbf35);
  font-weight: 950;
}

.to-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.to-faq-card {
  padding: 24px;
  border: 1px solid rgba(19, 23, 40, .08);
  border-radius: 20px;
  background: #fffdf7;
}

.to-faq-card h3 {
  font-size: 20px;
  line-height: 1.22;
}

.to-faq-card p {
  margin-top: 10px;
  color: var(--to-muted);
  font-size: 15px;
}

.to-footer {
  padding: 42px 0 54px;
  color: rgba(255, 253, 247, .7);
  background: #070612;
}

.to-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 216, 106, .16);
  padding-top: 28px;
  font-size: 14px;
}

.to-article-hero {
  position: relative;
  isolation: isolate;
  padding: 96px 0 76px;
  overflow: hidden;
  background: #090716;
}

.to-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 6, 18, .96), rgba(7, 6, 18, .72), rgba(7, 6, 18, .2)),
    url("888to-hero.png") center / cover no-repeat;
  opacity: .94;
}

.to-article-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #fff8e7);
}

.to-article-hero h1 {
  max-width: 830px;
  color: #fff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  font-weight: 950;
}

.to-article-hero p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 253, 247, .8);
  font-size: 18px;
}

.to-article-shell {
  color: var(--to-ink);
  background: var(--to-paper);
  padding: 72px 0 92px;
}

.to-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.to-article-main,
.to-article-side-card {
  border: 1px solid rgba(19, 23, 40, .08);
  border-radius: 24px;
  background: #fffdf7;
  box-shadow: 0 18px 44px rgba(39, 18, 78, .08);
}

.to-article-main {
  padding: clamp(24px, 4vw, 48px);
}

.to-article-main h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 950;
}

.to-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
  color: #51356b;
  font-size: 13px;
  font-weight: 800;
}

.to-article-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  background: #f2e8ff;
}

.to-article-visual {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 32px;
  background: #13092c;
}

.to-article-visual img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
}

.to-article-body {
  color: #272b3e;
  font-size: 17px;
}

.to-article-body h2,
.to-article-body h3 {
  margin: 34px 0 12px;
  color: var(--to-ink);
  line-height: 1.18;
}

.to-article-body h2 {
  font-size: 30px;
}

.to-article-body h3 {
  font-size: 23px;
}

.to-article-body p,
.to-article-body ul,
.to-article-body ol {
  margin-top: 16px;
}

.to-article-body a {
  color: #4d14b8;
  font-weight: 800;
}

.to-article-updated {
  padding: 16px 18px;
  border-radius: 16px;
  color: #51356b;
  background: #f2e8ff;
  font-weight: 800;
}

.to-article-actions-list {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.to-article-actions-list a,
.to-article-actions-list li {
  color: #51356b;
  font-weight: 800;
}

.to-article-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.to-article-side-card {
  overflow: hidden;
}

.to-side-visual {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(7, 6, 18, .08), rgba(7, 6, 18, .62)),
    url("888to-hero.png") center / cover no-repeat;
}

.to-side-body {
  padding: 24px;
}

.to-side-body h2,
.to-side-body h3 {
  font-size: 23px;
  line-height: 1.18;
}

.to-side-body p,
.to-side-body li {
  color: var(--to-muted);
  font-size: 15px;
}

.to-side-body p,
.to-side-body ul {
  margin-top: 12px;
}

.to-side-body ul {
  padding-left: 20px;
}

@media (max-width: 980px) {
  .to-nav {
    display: none;
  }

  .to-hero {
    padding-top: 46px;
    min-height: 720px;
  }

  .to-hero-grid,
  .to-story-grid,
  .to-news-layout,
  .to-article-layout {
    grid-template-columns: 1fr;
  }

  .to-hero-panel {
    justify-self: start;
    margin-top: 48px;
  }

  .to-trust-grid,
  .to-steps,
  .to-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .to-section-head {
    display: grid;
  }

  .to-news-intro,
  .to-article-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .to-wrap {
    width: min(100% - 28px, var(--to-max));
  }

  .to-header-inner {
    min-height: 70px;
  }

  .to-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
  }

  .to-brand-name {
    font-size: 22px;
  }

  .to-brand-sub,
  .to-header-actions .to-btn-ghost {
    display: none;
  }

  .to-btn {
    min-height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }

  .to-hero {
    min-height: 680px;
    padding: 42px 0 34px;
  }

  .to-hero::before {
    background: linear-gradient(180deg, rgba(7, 6, 18, .94), rgba(7, 6, 18, .66) 58%, rgba(7, 6, 18, .38));
  }

  .to-hero-art img {
    object-position: 62% center;
  }

  .to-hero-title {
    font-size: clamp(42px, 16vw, 62px);
  }

  .to-hero-text,
  .to-article-hero p {
    font-size: 16px;
  }

  .to-hero-panel {
    display: none;
  }

  .to-trust-strip {
    margin-top: -28px;
  }

  .to-trust-grid,
  .to-steps,
  .to-faq-grid {
    grid-template-columns: 1fr;
  }

  .to-trust-item,
  .to-step,
  .to-feature-card,
  .to-news-intro,
  .to-faq-card,
  .to-article-main,
  .to-article-side-card {
    border-radius: 16px;
  }

  .to-section {
    padding: 58px 0;
  }

  .to-showcase {
    min-height: 390px;
    border-radius: 18px;
  }

  .to-showcase-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .to-feature-card {
    grid-template-columns: 1fr;
  }

  .to-feature-badge {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .to-news-card {
    grid-template-columns: 82px 1fr;
    gap: 13px;
  }

  .to-news-arrow {
    display: none;
  }

  .to-article-hero {
    padding: 64px 0 52px;
  }

  .to-article-shell {
    padding: 46px 0 64px;
  }

  .to-article-visual img {
    aspect-ratio: 1.25;
  }

  .to-footer-inner {
    display: grid;
  }
}
