@font-face {
  font-family: "Mitr";
  src: url("/assets/mitr-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mitr";
  src: url("/assets/mitr-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page: #232626;
  --surface: #292d2e;
  --surface-soft: #303536;
  --text: #f5f7f6;
  --muted: #b6c0bd;
  --line: rgba(255, 255, 255, 0.12);
  --green: #24ee89;
  --lime: #9fe871;
  --ink: #151817;
  --header: rgba(35, 38, 38, 0.9);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  --shell: min(1180px, calc(100% - 40px));
}

html[data-theme="light"] {
  color-scheme: light;
  --page: #f4f7f5;
  --surface: #ffffff;
  --surface-soft: #eaf1ed;
  --text: #202423;
  --muted: #5d6965;
  --line: rgba(24, 31, 28, 0.14);
  --header: rgba(244, 247, 245, 0.9);
  --shadow: 0 22px 70px rgba(24, 31, 28, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: "Mitr", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  transition: background-color 180ms ease, color 180ms ease;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

.gtm-noscript {
  display: none;
  visibility: hidden;
}

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

h1,
h2,
h3,
.button,
.primary-nav,
.eyebrow {
  font-weight: 500;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 4.9rem);
}

h1 > span:last-child,
.eyebrow {
  color: var(--green);
}

.hero-line {
  color: var(--text);
  white-space: nowrap;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  color: var(--text);
  text-decoration: none;
}

.brand-badge {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  box-shadow: 0 0 12px rgba(35, 238, 136, 0.3), 0 -2px #47d84e inset;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.brand-word {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.footer-brand {
  margin-right: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav a,
.faq-list a {
  text-underline-offset: 5px;
}

.primary-nav a {
  text-decoration: none;
  color: var(--muted);
}

.primary-nav a:hover {
  color: var(--green);
}

.theme-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  padding-block: 80px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

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

.button-primary {
  background: linear-gradient(120deg, var(--green), var(--lime));
  box-shadow: 0 10px 28px rgba(36, 238, 137, 0.18);
}

.button-secondary {
  border-color: var(--green);
  background: #c6f5dd;
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
}

.hero-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(36, 238, 137, 0.3);
  border-radius: 50% 42% 48% 44%;
  background:
    radial-gradient(circle at 53% 43%, rgba(36, 238, 137, 0.24), transparent 26%),
    radial-gradient(circle at 74% 18%, rgba(159, 232, 113, 0.18), transparent 30%),
    linear-gradient(145deg, var(--surface), var(--page));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, transparent 0 32px, rgba(255, 255, 255, 0.035) 32px 33px);
  transform: rotate(-18deg);
}

.orbit {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(36, 238, 137, 0.27);
  border-radius: 50%;
  transform: rotate(24deg);
}

.orbit-two {
  inset: 29% 10%;
  transform: rotate(-36deg);
}

.ono-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--green);
  font-size: clamp(5.2rem, 11vw, 8.6rem);
  font-weight: 500;
  letter-spacing: -0.11em;
  line-height: 1;
  transform: translate(-53%, -50%);
  text-shadow: 0 0 50px rgba(36, 238, 137, 0.25);
}

.service-token,
.status-pill {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(36, 238, 137, 0.45);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.72rem;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.token-game { top: 15%; left: 12%; }
.token-stream { top: 25%; right: 7%; }
.token-ai { bottom: 22%; left: 8%; }
.token-account { right: 9%; bottom: 17%; }

.status-pill {
  left: 50%;
  bottom: 8%;
  border-color: transparent;
  background: var(--green);
  color: var(--ink);
  transform: translateX(-50%);
}

.answer-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.75fr 2fr;
  gap: 50px;
  align-items: start;
  padding-block: 34px;
}

.answer-grid .eyebrow,
.answer-grid p {
  margin-bottom: 0;
}

.answer-grid > p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding-block: clamp(78px, 10vw, 128px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 25px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 160ms ease, background-color 160ms ease;
}

.service-row:hover {
  padding-inline: 18px;
  background: rgba(36, 238, 137, 0.055);
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-index {
  color: var(--green);
  font-size: 0.8rem;
}

.service-arrow {
  color: var(--green);
  font-size: 1.55rem;
}

.section-soft {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.compact-heading {
  grid-template-columns: 1fr;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 210px;
  padding: 30px 30px 20px 0;
  display: flex;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.process-list span {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-weight: 500;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(42px, 8vw, 100px);
}

.faq-heading {
  display: block;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
}

.faq-list details p {
  margin: 14px 34px 0 0;
  color: var(--muted);
}

.faq-list a {
  color: var(--green);
}

.closing {
  margin-bottom: 110px;
  padding: clamp(48px, 8vw, 92px);
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(36, 238, 137, 0.3), transparent 34%),
    linear-gradient(135deg, var(--surface-soft), var(--surface));
  border: 1px solid rgba(36, 238, 137, 0.28);
}

.closing h2 {
  max-width: 900px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-inner p {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 680px);
  }

  .primary-nav {
    display: none;
  }

  .theme-label {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 62px;
  }

  .hero-art {
    min-height: 440px;
  }

  .answer-grid,
  .section-heading,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
    padding: 26px 0;
  }

  .process-list li + li {
    padding-left: 0;
    border-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 35px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.75rem);
  }

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

  .hero {
    padding-top: 48px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 360px;
  }

  .service-token {
    padding: 7px 9px;
    font-size: 0.62rem;
  }

  .service-row {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .service-row p {
    font-size: 0.86rem;
  }

  .closing {
    width: calc(100% - 30px);
    margin-bottom: 70px;
    padding: 42px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
