:root {
  --ivory: #F7F5F0;
  --ivory-soft: #FAF9F6;
  --text: #171717;
  --secondary: #66635D;
  --border: #DEDCD6;
  --gold: #B99A5B;
  --nav-h: 84px;
  --max: 1440px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, a { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

.site-shell { min-height: 100vh; background: var(--ivory); }

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 50;
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}
.navbar.scrolled {
  background: rgba(247,245,240,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(222,220,214,.78);
}
.nav-inner {
  width: min(100% - 48px, var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(330px, 1fr);
  gap: 28px;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-symbol { width: 24px; height: 24px; display: inline-flex; color: var(--gold); }
.brand-symbol svg { width: 100%; height: 100%; }
.brand-symbol img { width: 100%; height: 100%; display: block; }
.brand-wordmark { font-weight: 600; letter-spacing: .24em; font-size: 21px; }

.desktop-nav { display: flex; gap: clamp(18px, 2vw, 34px); align-items: center; }
.desktop-nav a {
  position: relative;
  font-size: 14px;
  color: #302f2c;
  padding: 10px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.nav-cta, .wallet-cta, .primary-cta, .secondary-link, .scroll-cue {
  border: 0;
  background: none;
  color: inherit;
}
.nav-cta {
  height: 46px;
  padding: 0 18px;
  background: var(--text);
  color: var(--ivory);
  border-radius: 6px;
  transition: background 280ms ease, transform 160ms ease;
}
.nav-cta:hover { background: #2a2a28; }
.nav-cta:active { transform: translateY(1px); }
.wallet-cta {
  height: 46px;
  padding: 0 18px;
  border: 1px solid #aeadA6;
  border-radius: 6px;
  color: #2c2b28;
  transition: border-color 280ms ease, background 280ms ease;
}
.wallet-cta:hover { border-color: #77736b; background: rgba(255,255,255,.28); }
.wallet-cta span { color: var(--secondary); }

.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--nav-h) + 56px) 24px 72px;
  overflow: hidden;
}
.hero-grid {
  width: min(100%, var(--max));
  min-height: 664px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(32px, 4.8vw, 78px);
}
.hero-content { padding: 22px 0 38px 32px; max-width: 600px; }
.eyebrow {
  margin: 0 0 31px;
  color: #9a7739;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .32em;
  line-height: 1.4;
}
.hero-title {
  margin: 0;
  font-size: clamp(72px, 6.8vw, 104px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 500;
}
.hero-title span { display: block; }
.hero-description {
  max-width: 540px;
  margin: 34px 0 0;
  color: #45433f;
  font-size: 19px;
  line-height: 1.62;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.primary-cta {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--text);
  color: var(--ivory);
  display: inline-flex;
  gap: 22px;
  align-items: center;
  transition: background 280ms ease, transform 160ms ease;
}
.primary-cta:hover { background: #2a2a28; }
.primary-cta:active { transform: translateY(1px); }
.primary-cta .arrow { transition: transform 280ms ease; }
.primary-cta:hover .arrow { transform: translateX(5px); }
.secondary-link {
  position: relative;
  padding: 12px 0;
  color: #2f2e2b;
}
.secondary-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 1px;
  background: #a6a29a;
  transition: background 260ms ease;
}
.secondary-link:hover::after { background: var(--text); }
.secondary-link span { color: var(--secondary); }

.status-line {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
}
.status-line strong { font-weight: 600; color: #514e48; }
.status-divider { width: 1px; height: 28px; background: #c8b892; }

.hero-visual { min-width: 0; }
.visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1.02 / 1;
  overflow: hidden;
  background: var(--ivory-soft);
}
.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 54%;
  display: block;
  filter: saturate(.92) contrast(.98);
}
.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(222,220,214,.45);
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  right: max(36px, calc((100vw - var(--max)) / 2 + 28px));
  bottom: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--text);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-size: 24px;
  transition: transform 260ms ease, background 260ms ease;
}
.scroll-cue:hover { transform: translateY(3px); background: #2b2b29; }

.next-placeholder {
  min-height: 46vh;
  padding: 110px 24px;
  border-top: 1px solid var(--border);
  background: var(--ivory-soft);
  display: grid;
  place-items: center;
  text-align: center;
}
.next-placeholder p { margin: 0 0 10px; color: var(--gold); font-size: 12px; letter-spacing: .22em; }
.next-placeholder h2 { margin: 0 0 14px; font-size: clamp(34px, 4vw, 56px); font-weight: 500; letter-spacing: -.04em; }
.next-placeholder span { color: var(--secondary); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  padding: 12px 16px;
  border-radius: 6px;
  background: #171717;
  color: #F7F5F0;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 100;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(20px); animation: reveal .78s var(--ease) forwards; }
.reveal-1 { animation-delay: 60ms; transform: translateY(16px); }
.reveal-2 { animation-delay: 100ms; transform: translateY(24px); }
.reveal-3 { animation-delay: 200ms; }
.reveal-4 { animation-delay: 280ms; }
.reveal-5 { animation-delay: 360ms; }
.reveal-image { opacity: 0; transform: scale(1.035); animation: imageReveal 1.12s var(--ease) 120ms forwards; transform-origin: center; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes imageReveal { to { opacity: 1; transform: scale(1); } }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1180px) {
  .nav-inner { grid-template-columns: auto 1fr auto; width: min(100% - 40px, var(--max)); }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 13px; }
  .wallet-cta { display: none; }
  .hero-content { padding-left: 10px; }
  .hero-title { font-size: clamp(68px, 7.2vw, 88px); }
}

@media (max-width: 900px) {
  :root { --nav-h: 76px; }
  .desktop-nav, .nav-actions { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .brand-wordmark { font-size: 19px; }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .menu-toggle span { width: 18px; height: 1px; background: var(--text); transition: transform 220ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    display: block;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    padding: 22px 22px 26px;
    background: rgba(247,245,240,.98);
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { padding: 16px 2px; border-bottom: 1px solid rgba(222,220,214,.75); font-size: 18px; }
  .mobile-menu-actions { display: grid; gap: 10px; margin-top: 22px; }
  .mobile-menu .nav-cta, .mobile-menu .wallet-cta { display: inline-flex; width: 100%; align-items: center; justify-content: center; }

  .hero { min-height: auto; padding: calc(var(--nav-h) + 54px) 22px 86px; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: 720px; padding: 0; }
  .hero-title { font-size: clamp(58px, 10vw, 76px); }
  .hero-description { max-width: 650px; }
  .hero-visual { order: 2; }
  .visual-frame { aspect-ratio: 16 / 10; }
  .visual-frame img { object-position: 58% 54%; }
  .scroll-cue { right: 24px; bottom: 22px; }
}

@media (max-width: 600px) {
  .nav-inner { width: calc(100% - 40px); }
  .brand-symbol { width: 21px; height: 21px; }
  .brand-wordmark { font-size: 17px; letter-spacing: .2em; }
  .hero { padding: calc(var(--nav-h) + 42px) 20px 80px; }
  .eyebrow { margin-bottom: 24px; font-size: 10px; letter-spacing: .26em; }
  .hero-title { font-size: clamp(48px, 14vw, 56px); line-height: .96; letter-spacing: -.055em; }
  .hero-description { margin-top: 26px; font-size: 16px; line-height: 1.62; }
  .hero-actions { margin-top: 28px; gap: 16px; align-items: flex-start; flex-direction: column; }
  .primary-cta { width: 100%; justify-content: space-between; }
  .secondary-link { font-size: 14px; }
  .status-line { order: 3; margin-top: 34px; gap: 16px; flex-wrap: wrap; font-size: 10px; }
  .status-divider { height: 20px; }
  .hero-grid { gap: 42px; }
  .visual-frame { aspect-ratio: 4 / 5; }
  .visual-frame img { object-position: 62% 52%; }
  .scroll-cue { width: 46px; height: 46px; font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-image { opacity: 1; transform: none; }
}

/* Concept homepage sections */
.section { padding: clamp(86px, 11vw, 154px) max(24px, calc((100vw - var(--max)) / 2 + 32px)); }
.section h2, .closing h2 { margin: 0; font-size: clamp(44px, 5.5vw, 80px); line-height: .98; letter-spacing: -.06em; font-weight: 500; }
.section-kicker { margin: 0 0 24px; color: #9a7739; font-size: 11px; font-weight: 600; letter-spacing: .22em; }
.section-head { max-width: 790px; }
.section-lead { max-width: 570px; margin: 24px 0 0; color: #57534c; font-size: 18px; line-height: 1.65; }
.intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 12vw, 190px); background: #191917; color: var(--ivory); }
.intro .section-kicker { color: #c7a663; }
.intro-copy { padding-top: 39px; color: #d8d5ce; font-size: 18px; line-height: 1.72; }
.intro-copy p { margin: 0 0 24px; }
.text-link { display: inline-flex; gap: 14px; margin-top: 15px; padding-bottom: 7px; border-bottom: 1px solid #82785f; color: var(--ivory); font-size: 14px; }
.gda-section { background: #eeece6; }
.gda-layout { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: clamp(42px, 8vw, 130px); margin-top: 65px; align-items: center; }
.gda-mark { min-height: 350px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: #b7944e; color: #fffaf0; }
.gda-mark span { font-size: clamp(80px, 11vw, 156px); line-height: .8; letter-spacing: -.1em; font-weight: 500; }
.gda-mark small { letter-spacing: .17em; font-size: 10px; }
.large-copy { max-width: 670px; margin: 0; font-size: clamp(22px, 2.15vw, 31px); line-height: 1.35; letter-spacing: -.025em; }
.data-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 42px; border-top: 1px solid #d4d0c7; }
.data-grid div { padding: 18px 8px 18px 0; border-bottom: 1px solid #d4d0c7; display: grid; gap: 8px; }
.data-grid div:nth-child(even) { padding-left: 20px; }
.data-grid span { color: var(--secondary); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }.data-grid strong { font-size: 16px; font-weight: 500; }
.centered { text-align: center; margin: 0 auto; }.benefits { background: var(--ivory-soft); }.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 70px; background: var(--border); border: 1px solid var(--border); }.benefit-grid article { min-height: 260px; padding: 28px; background: var(--ivory-soft); }.number { color: #9a7739; font-size: 12px; letter-spacing: .12em; }.benefit-grid h3 { margin: 66px 0 12px; font-size: 23px; font-weight: 500; letter-spacing: -.035em; }.benefit-grid p { margin: 0; color: var(--secondary); font-size: 15px; line-height: 1.6; }
.framework-section { color: var(--ivory); background: #26231e; }.framework-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }.framework-top .section-kicker { grid-column: 1 / -1; color: #c8a969; }.framework-top p:last-child { max-width: 470px; margin: 8px 0 0; color: #cbc5bb; font-size: 18px; line-height: 1.65; }.framework-flow { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 20px; margin-top: 86px; }.framework-flow article { min-height: 216px; padding: 23px; border: 1px solid #5d574d; }.framework-flow article span { color: #c8a969; font-size: 11px; letter-spacing: .12em; }.framework-flow h3 { margin: 50px 0 8px; font-size: 24px; font-weight: 500; }.framework-flow p { margin: 0; color: #c7c1b7; line-height: 1.55; font-size: 14px; }.framework-flow i { display: none; }
.token-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 10vw, 160px); align-items: center; }.token-graphic { display: grid; place-items: center; min-height: 390px; }.ring { width: min(360px, 80vw); aspect-ratio: 1; border-radius: 50%; display: grid; align-content: center; justify-items: center; border: 32px solid #c4a265; outline: 1px solid #d3d0c8; outline-offset: 14px; }.ring span { font-size: 64px; line-height: 1; letter-spacing: -.07em; }.ring small { margin-top: 7px; color: var(--secondary); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }.allocation { display: grid; gap: 13px; margin-top: 35px; color: #4b4842; }.allocation div { display: flex; align-items: center; gap: 9px; }.allocation b { width: 40px; font-weight: 500; }.dot { width: 10px; height: 10px; border-radius: 50%; }.d1 { background: #b7944e; }.d2 { background: #70614a; }.d3 { background: #cfbf9c; }.d4 { background: #312d27; }
.roadmap { background: #eeece6; }.roadmap-list { margin: 65px 0 0; padding: 0; list-style: none; border-top: 1px solid #d1cdc3; }.roadmap-list li { display: grid; grid-template-columns: 100px 1fr; gap: 35px; padding: 27px 0; border-bottom: 1px solid #d1cdc3; }.roadmap-list li > span { color: #878176; font-size: 13px; }.roadmap-list small { color: #9a7739; font-size: 10px; letter-spacing: .16em; }.roadmap-list h3 { margin: 6px 0; font-size: 30px; font-weight: 500; letter-spacing: -.04em; }.roadmap-list p { max-width: 520px; margin: 0; color: var(--secondary); line-height: 1.55; }.roadmap-list .active h3::after { content: " ●"; color: #b7944e; font-size: 12px; vertical-align: middle; }
.docs-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 10vw, 150px); }.doc-list { border-top: 1px solid var(--border); }.doc-list button { width: 100%; padding: 22px 0; display: grid; grid-template-columns: 45px 1fr auto; border: 0; border-bottom: 1px solid var(--border); background: transparent; text-align: left; color: var(--text); font-size: 18px; transition: padding 200ms ease; }.doc-list button:hover { padding-left: 8px; }.doc-list span, .doc-list i { color: var(--secondary); font-size: 11px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.faq { background: #191917; color: var(--ivory); }.faq-list { max-width: 900px; margin-top: 56px; border-top: 1px solid #4e4b46; }.faq details { border-bottom: 1px solid #4e4b46; }.faq summary { padding: 23px 0; display: flex; justify-content: space-between; cursor: pointer; list-style: none; font-size: 20px; }.faq summary::-webkit-details-marker { display: none; }.faq summary span { color: #c8a969; transition: transform 200ms ease; }.faq details[open] summary span { transform: rotate(45deg); }.faq details p { max-width: 650px; margin: 0; padding: 0 0 24px; color: #cac5bc; line-height: 1.7; }
.closing { padding: clamp(100px, 13vw, 180px) 24px; display: grid; justify-items: center; text-align: center; background: #b7944e; color: #fffaf0; }.closing .section-kicker { color: #fff4dc; }.closing h2 { margin-bottom: 36px; }.closing .primary-cta { background: #1b1a18; }.closing .primary-cta:hover { background: #34302a; }
footer { padding: 37px max(24px, calc((100vw - var(--max)) / 2 + 32px)); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; background: #171716; color: #e9e5dc; }footer .brand-wordmark { font-size: 15px; } footer p { max-width: 480px; margin: 0; color: #aaa59c; font-size: 11px; line-height: 1.5; } footer div { display: flex; gap: 18px; font-size: 12px; color: #d8d2c8; }
@media (max-width: 900px) { .section { padding: 84px 24px; }.intro, .gda-layout, .token-section, .docs-section { grid-template-columns: 1fr; }.intro-copy { padding-top: 0; }.framework-top { grid-template-columns: 1fr; }.framework-flow { grid-template-columns: 1fr 1fr; margin-top: 55px; }.benefit-grid { grid-template-columns: 1fr 1fr; }.gda-mark { min-height: 250px; }.token-graphic { min-height: 280px; }.docs-section { gap: 55px; }footer { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .section { padding: 70px 20px; }.section h2, .closing h2 { font-size: 44px; }.intro-copy, .section-lead { font-size: 16px; }.data-grid { grid-template-columns: 1fr; }.data-grid div:nth-child(even) { padding-left: 0; }.benefit-grid, .framework-flow { grid-template-columns: 1fr; }.benefit-grid article { min-height: 210px; }.framework-flow article { min-height: auto; }.framework-flow h3 { margin-top: 35px; }.ring { width: 250px; border-width: 24px; }.roadmap-list li { grid-template-columns: 44px 1fr; gap: 15px; }.roadmap-list h3 { font-size: 25px; }.doc-list button { grid-template-columns: 35px 1fr; font-size: 16px; gap: 4px; }.doc-list i { grid-column: 2; }footer div { flex-wrap: wrap; } }
