/* Orchard ($ORCHARD) — landing styles */
:root {
  --bg: #050505;
  --bg-alt: #0E0B06;
  --surface: #0A0805;
  --surface-2: #0D0B08;
  --surface-3: #14110B;
  --line: #1C1811;
  --line-2: #2B2418;
  --gold: #D4A03A;
  --gold-dark: #6E5220;
  --zec: #F4B728;
  --text: #F3EEE5;
  --muted: #A39C90;
  --dim: #8A847A;
  --font-display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Rajdhani', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --pad-x: clamp(16px, 8vw, 120px);
  --pad-y: clamp(80px, 10vw, 140px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--zec); text-decoration: none; }
a:hover { color: #FFD36B; }
button { font-family: inherit; cursor: pointer; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--zec); outline-offset: 3px; }
h1, h2, h3, p { margin: 0; }
.mono { font-family: var(--font-mono); }
.hi { color: var(--text); }
.zec { color: var(--zec); }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad-x); }

.grid-bg {
  background-image:
    linear-gradient(rgba(212,160,58,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,58,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand span { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 48px; font-size: 19px; font-weight: 500; letter-spacing: 0.08em; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 28px; }
.ticker { display: flex; flex-direction: column; padding-left: 24px; border-left: 1px solid var(--line-2); }
.ticker b { font-size: 15px; font-weight: 600; letter-spacing: 0.06em; }
.ticker small { font-size: 14px; color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 64px; padding: 0 40px;
  font-size: 20px; font-weight: 600; letter-spacing: 0.14em;
  border: 1px solid transparent; background: transparent;
}
.btn-solid { height: 52px; padding: 0 28px; background: var(--gold); color: #0A0804; font-weight: 700; font-size: 18px; letter-spacing: 0.08em; }
.btn-solid:hover { background: var(--zec); color: #0A0804; }
.btn-light { border-color: var(--text); color: var(--text); }
.btn-light:hover { background: var(--text); color: #0A0804; }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: #0A0804; }

/* ---------- Honesty strip ---------- */
.strip {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 14px var(--pad-x);
  background: var(--surface-3); border-bottom: 1px solid var(--line-2);
  font-size: 17px; font-weight: 600; letter-spacing: 0.06em; text-align: center;
}
.strip svg { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero .wrap {
  padding-top: clamp(64px, 9vw, 120px); padding-bottom: var(--pad-y);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.hero-copy { display: flex; flex-direction: column; gap: 36px; max-width: 720px; }
.pill {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 10px;
  min-height: 36px; padding: 6px 14px;
  border: 1px solid var(--line-2); background: var(--surface-2);
  font-family: var(--font-mono); font-size: 14px; color: var(--muted); letter-spacing: 0.04em;
}
.pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--zec); flex-shrink: 0; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(56px, 9vw, 128px); line-height: 0.92; letter-spacing: -0.01em; text-transform: uppercase;
}
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: clamp(20px, 2vw, 26px); line-height: 1.5; color: var(--muted); max-width: 660px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-art { position: relative; width: min(500px, 100%); flex-shrink: 0; }
.hero-art svg { display: block; width: 100%; height: auto; }
.art-label { position: absolute; bottom: 8px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; }
.art-label.left { left: 0; color: var(--muted); }
.art-label.right { right: 0; color: var(--zec); }

/* ---------- Sections ---------- */
.section { padding: var(--pad-y) 0; border-bottom: 1px solid var(--line); }
.section.alt { background: var(--bg-alt); }
.section .wrap { display: flex; flex-direction: column; gap: 36px; }
.label { display: flex; align-items: center; gap: 22px; }
.label-tile {
  width: 64px; height: 64px; flex-shrink: 0;
  border: 1px solid var(--line-2); background: var(--surface-3); border-radius: 12px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 15px;
}
.label-tile span { border-radius: 50%; background: var(--gold-dark); }
.label-tile span:first-child { background: var(--gold); }
.label-tile span:last-child { background: none; border: 2px solid var(--gold); }
.label h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 500; letter-spacing: 0.06em; color: var(--gold); }
.statement { max-width: 1080px; font-size: clamp(32px, 3.8vw, 54px); font-weight: 500; line-height: 1.3; color: var(--muted); }

.grid { display: grid; gap: 40px; margin-top: 44px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card { position: relative; padding: 44px; border: 1px solid var(--line); background: var(--surface-2); display: flex; flex-direction: column; gap: 18px; }
.card.featured { border-color: var(--gold); background: var(--surface-3); }
.card.tall { min-height: 380px; padding: 40px; background: var(--surface); justify-content: space-between; }
.card .kicker { font-family: var(--font-mono); font-size: 15px; color: var(--gold); letter-spacing: 0.1em; }
.card h3 { font-size: 32px; font-weight: 700; line-height: 1.2; }
.card.tall h3 { font-size: 30px; }
.card p { font-size: 21px; line-height: 1.6; color: var(--muted); }
.card.tall p { font-size: 20px; }
.card-top { display: flex; justify-content: space-between; align-items: center; }
.card-top .num { font-size: 26px; color: var(--gold); }
.card-body { display: flex; flex-direction: column; gap: 14px; }

.brk { position: absolute; width: 18px; height: 18px; border: 0 solid var(--gold); }
.brk.tl { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.brk.tr { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
.brk.bl { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
.brk.br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

/* ---------- Verify steps ---------- */
.step { display: flex; flex-direction: column; gap: 22px; }
.step-head { display: flex; align-items: center; }
.step-icon {
  position: relative; width: 92px; height: 92px; flex-shrink: 0;
  border: 2px solid var(--gold); border-radius: 16px; background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
}
.step-icon b {
  position: absolute; top: -14px; right: -14px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.step-line { flex-grow: 1; height: 2px; margin-left: 40px; background: #3A2F1C; }
.step h3 { font-size: 28px; font-weight: 700; }
.step p { font-size: 20px; line-height: 1.6; color: var(--muted); }

.keybox {
  margin-top: 20px; padding: 28px 32px; border: 1px solid var(--gold); background: var(--surface-2);
  display: flex; align-items: center; gap: 28px;
}
.keybox-text { display: flex; flex-direction: column; gap: 8px; flex-grow: 1; min-width: 0; }
.keybox-text small { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.14em; color: var(--gold); }
.keybox-text code { font-family: var(--font-mono); font-size: 22px; color: var(--text); overflow-wrap: anywhere; }
.keybox .btn-solid { flex-shrink: 0; border: 0; }

/* ---------- Treasury panel ---------- */
.panel { border: 1px solid var(--line-2); background: var(--surface); }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 32px; border-bottom: 1px solid var(--line); }
.panel-status { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.1em; color: var(--muted); }
.panel-status i { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-dark); transition: background .2s; }
.panel.open .panel-status i { background: var(--zec); }
.panel-toggle { height: 48px; padding: 0 22px; border: 1px solid var(--gold); background: transparent; color: var(--gold); font-weight: 600; font-size: 17px; letter-spacing: 0.08em; }
.panel-toggle:hover { background: var(--gold); color: #0A0804; }
.panel-row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; gap: 16px;
  min-height: 60px; padding: 0 32px; border-bottom: 1px solid var(--surface-3);
  font-family: var(--font-mono); font-size: 16px;
}
.panel-row.head { min-height: 0; padding: 16px 32px; font-size: 13px; letter-spacing: 0.12em; color: var(--dim); border-bottom-color: var(--line); }
.panel-row .kind { color: var(--zec); }
.panel-row .kind.out { color: var(--muted); }
.panel-row .tx { color: var(--muted); }
.panel-row .val { display: none; }
.panel.open .panel-row .val { display: inline; }
.panel.open .panel-row .redact { display: none; }
.redact { display: inline-block; height: 14px; max-width: 100%; background: repeating-linear-gradient(90deg, #2B2418 0 6px, #221C12 6px 12px); border-radius: 2px; }
.panel-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px 32px; }
.panel-foot span:first-child { font-size: 18px; color: var(--muted); }
.panel-foot .balance { font-family: var(--font-mono); font-size: 18px; color: var(--zec); }

/* ---------- NOT cards ---------- */
.not-card { padding: 40px; border: 1px solid var(--line-2); background: var(--surface); display: flex; flex-direction: column; gap: 22px; }
.not-card h3 { font-family: var(--font-display); font-size: 34px; font-weight: 800; letter-spacing: 0.02em; color: var(--zec); }
.not-card p { font-size: 20px; line-height: 1.6; color: var(--muted); }

/* ---------- Token ---------- */
.token-table { border: 1px solid var(--line-2); background: var(--surface); margin: 0; }
.token-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 76px; padding: 12px 32px; border-bottom: 1px solid var(--line); }
.token-row:last-child { border-bottom: 0; padding-right: 20px; }
.token-row dt { font-size: 20px; color: var(--muted); }
.token-row dd { margin: 0; font-size: 22px; font-weight: 600; text-align: right; display: flex; align-items: center; gap: 16px; }
.token-row dd.mono { font-size: 20px; font-weight: 400; }
.copy-sm { height: 44px; padding: 0 18px; border: 1px solid var(--gold); background: transparent; color: var(--gold); font-weight: 600; font-size: 16px; letter-spacing: 0.08em; }
.copy-sm:hover { background: var(--gold); color: #0A0804; }
.treasury-card h3 { font-size: 34px; line-height: 1.25; }
.treasury-foot { margin-top: auto; display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line-2); font-size: 18px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--surface); padding: 120px 0 64px; }
.footer .wrap { display: flex; flex-direction: column; gap: 72px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; }
.footer-brand { display: flex; flex-direction: column; gap: 22px; max-width: 520px; }
.footer-brand .brand span { font-size: 34px; }
.footer-brand p { font-size: 21px; line-height: 1.5; color: var(--muted); }
.links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; width: min(560px, 100%); }
.links a { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 26px; border: 1px solid var(--line-2); color: var(--text); font-size: 22px; font-weight: 600; letter-spacing: 0.06em; }
.links a span { color: var(--gold); }
.links a:hover { border-color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--line); font-size: 17px; color: var(--dim); }
.footer-bottom .mono { font-size: 14px; letter-spacing: 0.12em; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .hero .wrap { flex-direction: column; align-items: flex-start; }
  .hero-art { align-self: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .step-line { display: none; }
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .ticker { display: none; }
  .keybox { flex-direction: column; align-items: stretch; }
}
@media (max-width: 560px) {
  .nav .wrap { height: 72px; }
  .brand span { font-size: 24px; }
  .btn-solid { padding: 0 16px; font-size: 15px; }
  .strip { font-size: 14px; }
  .btn { width: 100%; padding: 0 20px; font-size: 17px; }
  .card, .card.tall, .not-card { padding: 28px; }
  .card h3 { font-size: 26px; }
  .panel-head, .panel-foot, .panel-row, .panel-row.head { padding-left: 16px; padding-right: 16px; }
  .panel-row { font-size: 13px; gap: 8px; }
  .token-row { padding: 12px 16px; flex-wrap: wrap; }
  .token-row dd { font-size: 18px; }
  .links { grid-template-columns: 1fr; }
  .art-label { font-size: 11px; }
}
