:root {
  color-scheme: light;
  --bg: #fff7df;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 252, 239, 0.96);
  --ink: #10212b;
  --muted: #314b58;
  --line: rgba(16, 33, 43, 0.2);
  --teal: #007c74;
  --amber: #a66100;
  --coral: #b64225;
  --green: #3f7517;
  --forest: #174e2a;
  --leaf: #54b948;
  --blue: #174ea6;
  --shadow: 0 18px 48px rgba(38, 28, 12, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background:
    linear-gradient(135deg, rgba(255, 247, 223, 0.98), rgba(255, 252, 239, 0.97)),
    radial-gradient(circle at 82% 18%, rgba(84, 185, 72, 0.22), transparent 34%),
    var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

.home {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.home-header,
.home-main,
.home-footer {
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
}

.home-header {
  padding: 28px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 24px rgba(84, 224, 210, 0.32);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  transform: rotate(45deg);
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-link,
.launch-link,
.deck-link {
  text-decoration: none;
}

.mini-link {
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid transparent;
}

.mini-link:hover {
  border-color: currentColor;
}

.home-main {
  padding: 56px 0 46px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.home h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 850;
}

.lede {
  margin: 22px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.launch-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.launch-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -88px;
  top: -88px;
  border: 1px solid rgba(84, 224, 210, 0.34);
  border-radius: 50%;
}

.launch-card h2 {
  margin: 0;
  font-size: 32px;
}

.launch-card p {
  margin: 14px 0 0;
  max-width: 440px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.launch-link {
  width: max-content;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(244, 241, 232, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 750;
}

.launch-link:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(84, 224, 210, 0.12);
}

.comparison {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.comparison div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  line-height: 1.45;
}

.comparison strong {
  color: var(--ink);
}

.home-footer {
  padding: 18px 0 28px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.home-footer a {
  color: var(--teal);
}

.deck-link {
  position: fixed;
  z-index: 20;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 252, 239, 0.9);
  border: 2px solid rgba(16, 33, 43, 0.22);
  font-size: 16px;
  font-weight: 800;
}


.deck-link:hover {
  border-color: var(--teal);
}

.reveal {
  background: var(--bg);
}

.reveal .slides {
  text-align: left;
}

.reveal .slides section {
  color: var(--ink);
}

.reveal .slides section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 78, 42, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 78, 42, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 84% 22%, rgba(84, 185, 72, 0.18), transparent 30%);
  background-size: 82px 82px, 82px 82px, auto;
  opacity: 0.44;
}

.reveal .slides section > * {
  position: relative;
  z-index: 1;
}

.reveal .slides section {
  height: 100%;
  padding: 70px 78px 58px;
}

.slide-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
}

.slide-shell.center {
  place-items: center start;
}

.slide-kicker {
  margin: 0;
  color: var(--forest);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.foundation-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 8px 14px 8px 10px;
  color: var(--forest);
  background: rgba(255, 252, 239, 0.88);
  border: 2px solid rgba(23, 78, 42, 0.28);
  border-radius: 12px;
  font-size: 21px;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.foundation-mark img {
  width: 68px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(23, 78, 42, 0.18);
}

.slide-title {
  margin: 0;
  max-width: 980px;
  font-size: 78px;
  line-height: 1.02;
  font-weight: 850;
}

.slide-title.tight {
  max-width: 820px;
  font-size: 70px;
}

.slide-copy {
  max-width: 860px;
  color: var(--muted);
  font-size: 36px;
  line-height: 1.24;
}

.slide-author {
  margin: 18px 0 0;
  color: var(--amber);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.quote {
  max-width: 1040px;
  margin: 0;
  font-size: 62px;
  line-height: 1.1;
  font-weight: 820;
}

.quote cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
}

.pill-row,
.role-grid,
.impact-row,
.plug-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill,
.role,
.impact,
.plug {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.pill {
  padding: 14px 18px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 750;
}

.role-grid {
  max-width: 1000px;
}

.role {
  min-width: 220px;
  padding: 22px 20px;
}

.role strong {
  display: block;
  font-size: 28px;
}

.role span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
}

.timeline-item {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-item b {
  display: block;
  color: var(--amber);
  font-size: 20px;
}

.timeline-item span {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.18;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 36px;
  align-items: center;
}

.intro-split {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intro-copy {
  max-width: 620px;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 720;
}

.intro-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.personal-card {
  min-height: 390px;
}

.personal-card h3 {
  max-width: 420px;
  font-size: 62px;
}

.intro-card {
  position: relative;
  align-self: stretch;
  padding: 34px;
  border: 3px solid rgba(23, 78, 42, 0.32);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(84, 185, 72, 0.22), rgba(255, 204, 91, 0.2)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.card-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 94px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(23, 78, 42, 0.22);
}

.card-logo.personal-photo {
  width: 112px;
  height: 112px;
  border-radius: 12px;
  border: 4px solid rgba(23, 78, 42, 0.38);
  object-position: center top;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 430px;
  margin-top: 16px;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 2px solid rgba(23, 78, 42, 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 252, 239, 0.78);
  font-size: 18px;
  font-weight: 750;
  line-height: 1;
}

.contact-tag strong {
  color: var(--forest);
  font-size: 13px;
  text-transform: uppercase;
}

.intro-card h3 {
  margin: 18px 0 0;
  max-width: 360px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.05;
}

.intro-card p:not(.slide-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 29px;
  line-height: 1.2;
}

.visual-panel {
  position: relative;
  min-height: 430px;
  border: 2px solid rgba(23, 78, 42, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(84, 185, 72, 0.2), rgba(255, 204, 91, 0.12)),
    rgba(255, 255, 255, 0.05);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.visual-panel .label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 252, 239, 0.88);
  border: 1px solid rgba(16, 33, 43, 0.18);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 27px;
  line-height: 1.25;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 18px rgba(84, 185, 72, 0.52);
}

.bet {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: center;
}

.amount {
  font-size: 126px;
  line-height: 1;
  font-weight: 900;
  color: var(--amber);
}

.arrow-chain,
.impact-row {
  align-items: center;
}

.arrow-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.arrow-chain span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.065);
  font-size: 24px;
  font-weight: 750;
}

.arrow-chain i {
  color: var(--forest);
  font-style: normal;
  font-size: 28px;
}

.impact {
  min-width: 150px;
  padding: 18px 20px;
  font-size: 25px;
  font-weight: 760;
}

.impact.key {
  background: rgba(84, 185, 72, 0.18);
  border-color: rgba(23, 78, 42, 0.38);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 940px;
}

.public-logo {
  position: absolute;
  right: 92px;
  top: 104px;
  width: 132px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(23, 78, 42, 0.22);
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.stat b {
  display: block;
  font-size: 42px;
  color: var(--forest);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.35;
}

.closing {
  background:
    linear-gradient(90deg, rgba(255, 247, 223, 1), rgba(255, 247, 223, 0.96) 52%, rgba(255, 247, 223, 0.58)),
    url("assets/pdxhf-tree-circuit.png") center / cover no-repeat;
}

.quote-logo {
  display: block;
  width: 128px;
  height: 86px;
  margin: 0 0 18px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(23, 78, 42, 0.22);
}

.source {
  color: rgba(16, 33, 43, 0.68);
  font-size: 17px;
  font-weight: 700;
}

.source a {
  color: var(--teal);
}

.accent-teal {
  color: var(--teal);
}

.accent-amber {
  color: var(--amber);
}

.accent-coral {
  color: var(--coral);
}

@media (max-width: 760px) {
  .home-header,
  .home-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .launch-grid,
  .comparison,
  .split,
  .timeline,
  .stat-grid,
  .bet {
    grid-template-columns: 1fr;
  }

  .home-main {
    padding-top: 34px;
  }

  .launch-card {
    min-height: 230px;
  }

  .reveal .slides section {
    padding: 42px 34px;
  }

  .slide-title,
  .slide-title.tight {
    font-size: 42px;
  }

  .slide-copy,
  .check-list li {
    font-size: 21px;
  }

  .quote {
    font-size: 34px;
  }
}
