* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, .10);
  --soft-line: rgba(0, 0, 0, .06);
  --blue: #0071e3;
  --dark: #000000;
  --radius-xl: 42px;
  --radius-lg: 30px;
  --shadow: 0 30px 70px rgba(0, 0, 0, .09), 0 8px 24px rgba(0, 0, 0, .05);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-width: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
}

body {
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

.notranslate {
  translate: no;
}

.ambient-glow {
  position: fixed;
  z-index: -1;
  inset: -30vh -20vw auto;
  height: 90vh;
  pointer-events: none;
  background:
    radial-gradient(circle at 45% 20%, rgba(0, 113, 227, .10), transparent 38%),
    radial-gradient(circle at 70% 10%, rgba(120, 84, 255, .08), transparent 32%);
  filter: blur(35px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 54px;
  padding: 9px max(22px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: rgba(245, 245, 247, .84);
  backdrop-filter: saturate(180%) blur(20px);
}

.wordmark {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
}

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

.nav-link {
  padding: 8px 11px;
  border-radius: 999px;
  color: #333336;
  font-size: 12px;
  font-weight: 600;
  transition: background .18s ease, color .18s ease, opacity .18s ease;
}

.nav-link:hover {
  background: rgba(0, 0, 0, .06);
}

.nav-link--dark {
  padding-inline: 14px;
  background: #1d1d1f;
  color: #fff;
}

.nav-link--dark:hover {
  background: #000;
}

.is-disabled {
  opacity: .28 !important;
  filter: grayscale(1);
  pointer-events: none !important;
}

.hero,
.specs,
.newsroom,
.mkbhd,
.connectivity,
.token {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.eyebrow--light {
  color: rgba(255, 255, 255, .55);
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2, .8, .2, 1), transform .75s cubic-bezier(.2, .8, .2, 1);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill--black {
  background: #1d1d1f;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.pill--black:hover {
  background: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.pill--glass {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .64);
  color: #1d1d1f;
  backdrop-filter: blur(16px);
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
}

.text-link--light {
  color: #7db8ff;
}

.hero {
  min-height: calc(100svh - 54px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 3vw;
  padding-block: clamp(70px, 10vh, 120px);
}

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

.hero h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(70px, 8.8vw, 136px);
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.075em;
  font-kerning: normal;
  font-variant-ligatures: none;
}

.hero-lede {
  max-width: 620px;
  margin: 34px 0 0;
  color: #424245;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.035em;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-note {
  margin: 18px 0 0;
  color: #86868b;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .14s ease-out;
}

.hero-halo {
  position: absolute;
  z-index: -1;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .95) 0%, rgba(171, 211, 255, .35) 38%, rgba(245, 245, 247, 0) 72%);
  filter: blur(22px);
}

.product-image {
  display: block;
  width: min(720px, 100%);
  height: auto;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, .12)) drop-shadow(0 6px 12px rgba(0, 0, 0, .05));
}

.spec-float {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  color: #333336;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
}

.spec-float--a {
  left: 5%;
  top: 21%;
}

.spec-float--b {
  right: 5%;
  top: 30%;
}

.spec-float--c {
  right: 16%;
  bottom: 18%;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.two-nm {
  min-height: 86vh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 4vw;
  margin-top: 20px;
  padding: clamp(70px, 10vw, 140px) max(24px, calc((100vw - 1240px) / 2));
}

.two-nm::after {
  content: "";
  position: absolute;
  inset: auto -10vw -25vh 30vw;
  height: 75vh;
  background: radial-gradient(circle, rgba(0, 113, 227, .33), rgba(98, 55, 255, .16) 35%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.two-nm-number {
  position: relative;
  z-index: 1;
  font-size: clamp(260px, 34vw, 560px);
  font-weight: 700;
  line-height: .7;
  letter-spacing: -.11em;
  color: #fff;
  text-shadow: 0 0 50px rgba(255,255,255,.08), 0 0 120px rgba(0,113,227,.16);
}

.two-nm-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.two-nm h2,
.section-heading h2,
.newsroom h2,
.mkbhd h2,
.connectivity h2,
.why-token h2,
.token h2 {
  margin: 0;
  font-size: clamp(50px, 6.8vw, 100px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.065em;
  font-kerning: normal;
  font-variant-ligatures: none;
}

.two-nm-lede {
  margin: 30px 0 0;
  color: #f5f5f7;
  font-size: clamp(23px, 2.7vw, 38px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.fine-print {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.5;
}

.specs {
  padding-block: clamp(90px, 12vw, 170px);
}

.section-heading {
  max-width: 870px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.spec-card {
  grid-column: span 4;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .03);
}

.spec-card--hero {
  grid-column: span 8;
  background: radial-gradient(circle at 80% 20%, rgba(0,113,227,.12), transparent 38%), #fff;
}

.spec-value {
  margin-bottom: auto;
  font-size: clamp(74px, 8vw, 126px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.075em;
}

.spec-card h3 {
  margin: 38px 0 8px;
  font-size: 19px;
  letter-spacing: -.025em;
}

.spec-card p {
  margin: 0;
  color: #6e6e73;
  font-size: 13px;
  line-height: 1.45;
}

.newsroom {
  padding-bottom: clamp(90px, 12vw, 170px);
}

.newsroom-card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 80px);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 85% 15%, rgba(0,113,227,.12), transparent 34%), #fff;
  box-shadow: var(--shadow);
}

.newsroom-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 48px;
  color: #86868b;
  font-size: 12px;
  font-weight: 600;
}

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

.newsroom blockquote {
  margin: 48px 0 18px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.045em;
}

.newsroom-card > p {
  max-width: 790px;
  margin: 0;
  color: #515154;
  font-size: 17px;
  line-height: 1.55;
}

.newsroom-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.mkbhd {
  padding-bottom: clamp(90px, 12vw, 170px);
}

.x-post-shell {
  width: min(660px, 100%);
  min-height: 650px;
  margin: 40px auto 0;
  display: grid;
  place-items: start center;
}

.x-post-mount {
  position: relative;
  z-index: 2;
  width: 100%;
}

.twitter-tweet,
.twitter-tweet-rendered {
  margin: 0 auto !important;
}

.x-post-fallback {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  color: #1d1d1f;
}

.x-fallback-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  font-weight: 700;
}

.x-post-fallback p {
  margin: 0;
  color: #6e6e73;
  line-height: 1.5;
}

.x-post-fallback a {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 600;
}

.x-post-shell.has-x-embed .x-post-fallback {
  display: none;
}

.embed-note {
  max-width: 560px;
  margin: 20px auto 0;
  color: #86868b;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.connectivity {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: center;
  padding-bottom: clamp(90px, 12vw, 170px);
}

.connectivity-copy p:last-child {
  max-width: 660px;
  margin: 30px 0 0;
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.55;
}

.connectivity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.connectivity-list div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
}

.connectivity-list span {
  color: #86868b;
  font-size: 12px;
  font-weight: 600;
}

.connectivity-list b {
  font-size: clamp(42px, 5vw, 76px);
  line-height: .9;
  letter-spacing: -.055em;
}

.why-token {
  padding: clamp(90px, 12vw, 160px) max(24px, calc((100vw - 1240px) / 2));
}

.why-token::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 55%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,113,227,.22), transparent 67%);
  filter: blur(28px);
}

.why-token-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.why-token h2 {
  max-width: 970px;
}

.why-token-lede,
.why-token-inner > p:last-child {
  max-width: 840px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(19px, 2.1vw, 29px);
  line-height: 1.28;
  letter-spacing: -.025em;
}

.why-token-inner > p:last-child {
  font-size: 17px;
  line-height: 1.5;
}

.token {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: start;
  padding-block: clamp(90px, 12vw, 160px);
}

.token h2 span {
  color: #86868b;
}

.contract-card {
  width: min(620px, 100%);
  display: grid;
  gap: 7px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.contract-card:disabled {
  opacity: .38;
  cursor: default;
}

.contract-card span,
.contract-card small {
  color: #86868b;
  font-size: 11px;
}

.contract-card b {
  overflow: hidden;
  min-height: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.token-disclaimer {
  max-width: 720px;
  margin: 28px 0 0;
  color: #86868b;
  font-size: 11px;
  line-height: 1.5;
}

.token-actions {
  display: grid;
  gap: 10px;
}

.token-button {
  display: grid;
  gap: 5px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}

.token-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.token-button span {
  color: #86868b;
  font-size: 11px;
  font-weight: 500;
}

.token-button--primary {
  background: #1d1d1f;
  color: #fff;
}

.token-button--primary span {
  color: rgba(255,255,255,.58);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px max(22px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  color: #86868b;
  font-size: 11px;
}

.site-footer a {
  color: #515154;
  font-weight: 600;
}

.toast {
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: .18s ease;
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 82px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .two-nm {
    grid-template-columns: 1fr;
  }

  .two-nm-number {
    position: absolute;
    left: -4vw;
    top: 12vh;
    opacity: .14;
  }

  .two-nm-copy {
    margin-left: auto;
  }

  .spec-card,
  .spec-card--hero {
    grid-column: span 6;
  }

  .connectivity,
  .token {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    max-width: 70vw;
  }

  .nav-link {
    padding: 7px 9px;
    font-size: 10px;
  }

  .hero,
  .specs,
  .newsroom,
  .mkbhd,
  .connectivity,
  .token {
    width: min(100% - 28px, 1240px);
  }

  .hero h1 {
    font-size: 18vw;
    line-height: .86;
    letter-spacing: -.065em;
  }

  .hero-lede {
    font-size: 21px;
  }

  .spec-float {
    font-size: 9px;
  }

  .two-nm {
    min-height: 74vh;
    padding-inline: 18px;
  }

  .two-nm h2,
  .section-heading h2,
  .newsroom h2,
  .mkbhd h2,
  .connectivity h2,
  .why-token h2,
  .token h2 {
    font-size: 14vw;
    line-height: .94;
  }

  .two-nm-lede {
    font-size: 23px;
  }

  .spec-card,
  .spec-card--hero {
    grid-column: 1 / -1;
    min-height: 290px;
  }

  .newsroom-card {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .newsroom-meta {
    flex-direction: column;
    margin-bottom: 34px;
  }

  .newsroom blockquote {
    font-size: 34px;
  }

  .x-post-shell {
    min-height: 580px;
  }

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

  .connectivity-list div {
    min-height: 145px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .site-header {
    gap: 12px;
    padding-inline: 10px;
  }

  .wordmark {
    font-size: 13px;
  }

  .nav {
    max-width: 72vw;
  }

  .nav-link {
    padding: 6px 8px;
    font-size: 9px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-actions {
    display: grid;
  }

  .pill {
    width: 100%;
  }

  .spec-float--b {
    right: 0;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
