:root {
  color-scheme: dark;
  --bg: #050607;
  --ink: #f7f1e4;
  --muted: #b5b0a6;
  --faint: #817c73;
  --gold: #e6b84a;
  --gold-2: #f6d372;
  --blue: #6fa8d6;
  --line: rgba(246, 211, 114, 0.22);
  --panel: rgba(9, 12, 13, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 23% 18%, rgba(246, 211, 114, 0.15), transparent 23rem),
    radial-gradient(circle at 78% 10%, rgba(111, 168, 214, 0.12), transparent 28rem),
    linear-gradient(180deg, #050607 0%, #080b0d 52%, #020303 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

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

a {
  color: inherit;
}

.simple-shell {
  display: grid;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  gap: 38px;
  padding: clamp(32px, 5vw, 72px) 0 40px;
}

.simple-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.coin-stage {
  display: grid;
  place-items: center;
  min-height: clamp(280px, 42vw, 520px);
}

.coin-logo {
  width: min(420px, 84vw);
  border-radius: 50%;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.58));
}

.simple-copy {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.brand-line,
.read-label {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: 0;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4.4rem, 10vw, 9rem);
  line-height: 0.88;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5.4vw, 5.2rem);
  line-height: 0.94;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.simple-lede {
  max-width: 38rem;
  margin: 0;
  color: #d9d5c8;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  min-width: 142px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 22px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  border-color: rgba(246, 211, 114, 0.9);
  background: linear-gradient(180deg, #f9dc7c, #d59a32);
  color: #08090a;
  box-shadow: 0 16px 38px rgba(230, 184, 74, 0.2);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.03);
}

.desk-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.desk-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 211, 114, 0.18);
  border-radius: 8px;
  background: #080b0d;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.desk-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.05), transparent 48%, rgba(5, 6, 7, 0.28)),
    linear-gradient(180deg, transparent 64%, rgba(5, 6, 7, 0.22));
  pointer-events: none;
}

.desk-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-copy {
  display: grid;
  gap: 22px;
}

.story-copy h2 {
  max-width: 11ch;
}

.story-copy > p {
  max-width: 42rem;
  margin: 0;
  color: #d0cabd;
  font-size: 1.05rem;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.story-steps article {
  min-height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
  padding: 16px;
}

.story-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.story-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.story-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.featured-read {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(340px, 1fr);
  gap: clamp(20px, 5vw, 56px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.featured-read h2 {
  margin-top: 10px;
}

.read-panel {
  border-left: 1px solid rgba(246, 211, 114, 0.34);
  padding-left: clamp(18px, 3vw, 34px);
}

.read-panel p {
  max-width: 44rem;
  margin: 0;
  color: #c9c4b7;
  font-size: 1rem;
}

.read-panel p + p {
  margin-top: 16px;
}

.simple-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 22px;
}

.simple-footer p {
  margin: 0;
  color: var(--faint);
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .simple-shell {
    width: min(100% - 30px, 1120px);
    gap: 28px;
    padding: 26px 0 30px;
  }

  .simple-hero,
  .desk-story,
  .featured-read {
    grid-template-columns: 1fr;
  }

  .coin-stage {
    min-height: auto;
  }

  .coin-logo {
    width: min(300px, 76vw);
  }

  .simple-copy {
    justify-items: center;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.9rem, 18vw, 6rem);
  }

  .simple-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 150px;
  }

  .contract-line {
    text-align: center;
  }

  .desk-story,
  .featured-read {
    padding-top: 24px;
  }

  h2 {
    max-width: 13ch;
  }

  .story-steps {
    grid-template-columns: 1fr;
  }

  .read-panel {
    border-top: 1px solid rgba(246, 211, 114, 0.34);
    border-left: 0;
    padding-top: 18px;
    padding-left: 0;
  }
}
