:root {
  --wp-bg: #07101d;
  --wp-panel: #0d1929;
  --wp-panel-soft: #111f31;
  --wp-line: rgba(255, 255, 255, .1);
  --wp-text: #f8fafc;
  --wp-muted: #9cabbf;
  --wp-orange: #f59e0b;
  --wp-orange-light: #fbbf24;
  --wp-teal: #2dd4bf;
}

html {
  scroll-behavior: smooth;
}

body.whitepaper-page {
  background: var(--wp-bg);
  color: var(--wp-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wp-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--wp-line);
  background: rgba(7, 16, 29, .86);
  backdrop-filter: blur(18px);
}

.wp-header-inner,
.wp-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.wp-header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wp-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--wp-text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.wp-brand img {
  border: 1px solid var(--wp-line);
  border-radius: 12px;
  background: #ffffff;
}

.wp-topnav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.wp-topnav a {
  color: var(--wp-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.wp-topnav a:last-child {
  border: 1px solid var(--wp-line);
  border-radius: 10px;
  padding: 10px 15px;
  color: var(--wp-text);
}

.wp-topnav a:hover,
.wp-sidebar a:hover {
  color: var(--wp-orange-light);
}

.wp-hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  border-bottom: 1px solid var(--wp-line);
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, #17253a 0, var(--wp-bg) 58%);
  background-size: 52px 52px, 52px 52px, auto;
}

.wp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(920px, calc(100% - 40px));
  min-height: 730px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}

.wp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .17;
}

.wp-glow-one {
  top: 80px;
  left: 9%;
  width: 280px;
  height: 280px;
  background: var(--wp-orange);
}

.wp-glow-two {
  right: 8%;
  bottom: 60px;
  width: 250px;
  height: 250px;
  background: var(--wp-teal);
}

.wp-kicker {
  margin-bottom: 26px;
  color: var(--wp-orange-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.wp-hero-logo {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(245, 158, 11, .18);
}

.wp-hero h1 {
  max-width: 820px;
  margin: 32px auto 20px;
  font-size: clamp(56px, 9vw, 104px);
  line-height: .88;
  letter-spacing: -.065em;
}

.wp-hero h1 span {
  background: linear-gradient(100deg, var(--wp-orange-light), #fb923c 50%, var(--wp-teal));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.wp-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #b7c3d3;
  font-size: 19px;
  line-height: 1.7;
}

.wp-hero-actions,
.wp-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.wp-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wp-line);
  border-radius: 12px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

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

.wp-btn-primary {
  border-color: var(--wp-orange);
  background: var(--wp-orange);
  color: #171009;
}

.wp-btn-secondary {
  background: rgba(255, 255, 255, .05);
  color: var(--wp-text);
}

.wp-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
  color: var(--wp-muted);
  font-size: 12px;
  font-weight: 600;
}

.wp-meta span:not(:last-child)::after {
  margin-left: 22px;
  color: rgba(255, 255, 255, .25);
  content: "•";
}

.wp-layout {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 220px minmax(0, 780px);
  justify-content: space-between;
  gap: 70px;
  margin: 0 auto;
}

.wp-sidebar {
  position: relative;
}

.wp-sidebar-inner {
  position: sticky;
  top: 108px;
  padding: 72px 0;
}

.wp-sidebar p {
  margin: 0 0 18px;
  color: var(--wp-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wp-sidebar a {
  display: block;
  padding: 7px 0;
  color: #6f8198;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.wp-content {
  min-width: 0;
}

.wp-section {
  position: relative;
  padding: 105px 0;
  border-bottom: 1px solid var(--wp-line);
  scroll-margin-top: 60px;
}

.wp-number {
  position: absolute;
  top: 98px;
  right: 0;
  color: rgba(255, 255, 255, .045);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
}

.wp-label {
  margin: 0 0 18px;
  color: var(--wp-orange-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
}

.wp-section h2 {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.wp-section > p:not(.wp-label) {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--wp-muted);
  font-size: 17px;
  line-height: 1.82;
}

.wp-section p.wp-large {
  color: #dce5ef;
  font-size: 21px;
  line-height: 1.7;
}

.wp-highlight {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  margin-top: 38px;
  border: 1px solid rgba(245, 158, 11, .28);
  border-left: 4px solid var(--wp-orange);
  border-radius: 0 14px 14px 0;
  padding: 24px 26px;
  background: rgba(245, 158, 11, .065);
}

.wp-highlight strong {
  font-size: 19px;
}

.wp-highlight span {
  color: var(--wp-muted);
  font-size: 14px;
}

.wp-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.wp-principles article,
.wp-feature-grid > div,
.wp-use-grid > div {
  border: 1px solid var(--wp-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
}

.wp-principles article {
  padding: 24px 20px;
}

.wp-principles article > span,
.wp-use-grid span {
  color: var(--wp-orange-light);
  font-size: 11px;
  font-weight: 800;
}

.wp-principles h3 {
  margin: 26px 0 9px;
  font-size: 18px;
}

.wp-principles p {
  margin: 0;
  color: var(--wp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.wp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.wp-feature-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
}

.wp-feature-grid strong {
  font-size: 16px;
}

.wp-feature-grid span {
  color: var(--wp-muted);
  font-size: 13px;
}

.wp-role-list {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.wp-role-list article {
  display: grid;
  align-items: center;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border: 1px solid var(--wp-line);
  border-radius: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .025);
}

.wp-role-list article > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(45, 212, 191, .1);
  color: var(--wp-teal);
  font-size: 14px;
  font-weight: 800;
}

.wp-role-list h3,
.wp-roadmap h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.wp-role-list p,
.wp-roadmap-card > p {
  margin: 0;
  color: var(--wp-muted);
  font-size: 13px;
  line-height: 1.6;
}

.wp-token-section {
  position: relative;
}

.wp-use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 36px 0;
}

.wp-use-grid > div {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 15px;
  padding: 18px;
  color: #dce5ef;
  font-size: 14px;
  font-weight: 700;
}

.wp-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.wp-check-list li {
  position: relative;
  border: 1px solid var(--wp-line);
  border-radius: 12px;
  padding: 18px 18px 18px 48px;
  background: rgba(255, 255, 255, .025);
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.55;
}

.wp-check-list li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 212, 191, .12);
  color: var(--wp-teal);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.wp-tech-flow {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap: 8px;
  margin: 40px 0;
}

.wp-tech-flow div {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid var(--wp-line);
  border-radius: 14px;
  padding: 20px;
  background: var(--wp-panel);
}

.wp-tech-flow span {
  color: var(--wp-orange-light);
  font-size: 11px;
  font-weight: 800;
}

.wp-tech-flow strong {
  margin: auto 0 6px;
  font-size: 16px;
}

.wp-tech-flow small {
  color: var(--wp-muted);
  font-size: 11px;
  line-height: 1.5;
}

.wp-tech-flow i {
  height: 1px;
  background: linear-gradient(90deg, var(--wp-orange), var(--wp-teal));
}

.wp-roadmap {
  position: relative;
  margin-top: 48px;
}

.wp-roadmap::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 1px;
  background: var(--wp-line);
  content: "";
}

.wp-roadmap article {
  position: relative;
  display: grid;
  grid-template-columns: 49px 1fr;
  gap: 20px;
  padding-bottom: 18px;
}

.wp-roadmap-marker {
  position: relative;
  z-index: 2;
  display: flex;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wp-line);
  border-radius: 50%;
  background: var(--wp-bg);
}

.wp-roadmap-marker span {
  color: #718198;
  font-size: 11px;
  font-weight: 800;
}

.wp-roadmap-card {
  border: 1px solid var(--wp-line);
  border-radius: 15px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .025);
}

.wp-roadmap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.wp-roadmap-head em {
  flex: 0 0 auto;
  border: 1px solid var(--wp-line);
  border-radius: 999px;
  padding: 6px 9px;
  color: #718198;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}

.wp-roadmap .is-active .wp-roadmap-marker,
.wp-roadmap .is-building .wp-roadmap-marker {
  border-color: rgba(245, 158, 11, .5);
  background: #2d210d;
}

.wp-roadmap .is-active .wp-roadmap-marker span,
.wp-roadmap .is-building .wp-roadmap-marker span,
.wp-roadmap .is-active em,
.wp-roadmap .is-building em {
  color: var(--wp-orange-light);
}

.wp-roadmap .is-active .wp-roadmap-card,
.wp-roadmap .is-building .wp-roadmap-card {
  border-color: rgba(245, 158, 11, .22);
}

.wp-inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.wp-inline-tags span {
  border: 1px solid var(--wp-line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .025);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
}

.wp-conclusion {
  padding-bottom: 80px;
  border-bottom: 0;
}

.wp-disclaimer {
  margin: 0 0 110px;
  border: 1px solid var(--wp-line);
  border-radius: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, .025);
}

.wp-disclaimer strong {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}

.wp-disclaimer p {
  margin: 0;
  color: #718198;
  font-size: 11px;
  line-height: 1.7;
}

.wp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--wp-line);
  padding: 38px 0 50px;
}

.wp-footer p {
  margin: 10px 0 0;
  color: var(--wp-muted);
  font-size: 12px;
}

.wp-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.wp-footer nav a {
  color: var(--wp-muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .wp-layout {
    display: block;
    width: min(760px, calc(100% - 40px));
  }

  .wp-sidebar {
    display: none;
  }

  .wp-principles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wp-header-inner,
  .wp-footer,
  .wp-layout,
  .wp-hero-inner {
    width: min(100% - 32px, 760px);
  }

  .wp-header-inner {
    min-height: 68px;
  }

  .wp-topnav a:not(:last-child) {
    display: none;
  }

  .wp-hero,
  .wp-hero-inner {
    min-height: 650px;
  }

  .wp-hero-inner {
    padding: 60px 0;
  }

  .wp-hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .wp-hero p {
    font-size: 16px;
  }

  .wp-hero-actions,
  .wp-final-actions {
    width: 100%;
    flex-direction: column;
  }

  .wp-btn {
    width: 100%;
  }

  .wp-meta {
    gap: 10px;
  }

  .wp-meta span:not(:last-child)::after {
    margin-left: 10px;
  }

  .wp-section {
    padding: 80px 0;
  }

  .wp-number {
    top: 76px;
    font-size: 64px;
  }

  .wp-section h2 {
    font-size: 35px;
  }

  .wp-section > p:not(.wp-label),
  .wp-section p.wp-large {
    font-size: 16px;
  }

  .wp-feature-grid,
  .wp-use-grid,
  .wp-check-list {
    grid-template-columns: 1fr;
  }

  .wp-tech-flow {
    grid-template-columns: 1fr;
  }

  .wp-tech-flow i {
    width: 1px;
    height: 24px;
    margin: 0 auto;
  }

  .wp-roadmap-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wp-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
