:root {
  color-scheme: light;
  --ink: #12151c;
  --muted: #5d6675;
  --paper: #f5f2ea;
  --white: #ffffff;
  --line: #d7d2c5;
  --night: #0e1524;
  --navy: #14213d;
  --red: #b5282e;
  --teal: #177e89;
  --gold: #b98b2f;
  --soft-blue: #eaf0f4;
  --soft-red: #f8e8e5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  color: var(--white);
  background: rgba(14, 21, 36, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
}

nav a:hover { color: var(--white); }

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 21, 0.93) 0%, rgba(8, 12, 21, 0.72) 43%, rgba(8, 12, 21, 0.20) 82%),
    linear-gradient(0deg, rgba(8, 12, 21, 0.48) 0%, rgba(8, 12, 21, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
  padding: 102px 0 54px;
}

.kicker,
.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--teal);
}

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

h1 {
  margin-bottom: 14px;
  font-size: 118px;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.section {
  padding: 58px 28px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro {
  padding: 34px 28px;
}

.intro-grid,
.split,
.token-layout,
.mvp-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.84fr) minmax(0, 1.16fr);
  gap: 36px;
  align-items: start;
}

.intro p,
.copy p,
.section-note,
.tile p,
.matrix p,
.workflow span,
.launch-list {
  color: var(--muted);
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-note {
  max-width: 370px;
  margin-bottom: 0;
  font-size: 15px;
}

.section-note.wide {
  max-width: 460px;
  margin-top: 14px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tile {
  min-height: 236px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.tile-label {
  display: block;
  margin-bottom: 30px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.japan-band {
  background: linear-gradient(90deg, var(--soft-red), #f9f8f3);
  border-block: 1px solid var(--line);
}

.mvp-band {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

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

.mvp-list article {
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8fafb;
}

.mvp-list strong,
.mvp-list span {
  display: block;
}

.mvp-list strong {
  margin-bottom: 8px;
}

.mvp-list span {
  color: var(--muted);
}

.copy p {
  font-size: 16px;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.signal-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(181, 40, 46, 0.2);
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.64);
  color: #70303a;
  font-size: 13px;
  font-weight: 700;
}

.matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.matrix article {
  min-height: 214px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.deal-band {
  color: var(--white);
  background: var(--navy);
}

.deal-band .eyebrow,
.token-band .eyebrow {
  color: #8de1db;
}

.deal-band .section-note,
.deal-band .workflow span {
  color: rgba(255, 255, 255, 0.72);
}

.deal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
}

.workflow {
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.step strong {
  color: var(--white);
}

.token-band {
  color: var(--white);
  background: #101820;
}

.token-band .copy p {
  color: rgba(255, 255, 255, 0.76);
}

.wallet-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.wallet-panel h3,
.wallet-panel p {
  margin-bottom: 7px;
}

.muted-copy,
.wallet-status {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.mono {
  font-family: Consolas, Menlo, Monaco, monospace;
  word-break: break-all;
}

.wallet-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.wallet-actions button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.wallet-actions button:first-child {
  background: var(--red);
  border-color: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.token-band .text-link {
  color: #f5c56c;
}

.launch-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-list li {
  min-height: 188px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.launch-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

footer {
  padding: 24px 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.footer-inner strong {
  color: var(--white);
}

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

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  h1 { font-size: 84px; }
  h2 { font-size: 28px; }
  .lead { font-size: 19px; }

  .intro-grid,
  .split,
  .token-layout,
  .mvp-grid,
  .deal-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-title {
    display: block;
  }

  .wallet-panel {
    grid-template-columns: 1fr;
  }

  .wallet-actions {
    justify-content: flex-start;
  }

  .section-note {
    max-width: none;
    margin-top: 14px;
  }

  .tiles,
  .matrix,
  .mvp-list,
  .launch-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    padding: 14px 18px;
  }

  nav {
    font-size: 12px;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-content {
    width: min(100% - 32px, 1080px);
    padding-top: 124px;
  }

  h1 { font-size: 64px; }
  h2 { font-size: 25px; }
  h3 { font-size: 18px; }
  .lead { font-size: 18px; }

  .section,
  .intro,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tiles,
  .matrix,
  .mvp-list,
  .launch-list {
    grid-template-columns: 1fr;
  }

  .tile,
  .matrix article,
  .mvp-list article,
  .launch-list li {
    min-height: 0;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
