/* =================================================================
   UNITED STATES FOOD RESERVE  (advocacy concept)
   Red / black / white campaign design.
   ================================================================= */

:root {
  --red: #E12A1E;
  --red-deep: #BC1E14;
  --blue: #2E74E6;
  --blue-deep: #225fc4;
  --green: #2E9E57;
  --green-deep: #248047;

  --ink: #0e0e0f;        /* darkest bg */
  --ink-2: #141416;      /* stats / footer bands */
  --ink-3: #1b1b1e;      /* cards on dark */
  --ink-line: #2a2a2e;

  --paper: #ffffff;
  --paper-2: #f5f5f4;
  --paper-line: #e7e7e4;

  --text: #18181a;       /* on white */
  --text-mute: #6c6c70;
  --on-dark: #ededee;
  --on-dark-mute: #9a9aa0;

  --display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; background: var(--ink); color: var(--text);
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; line-height: 1.05; text-transform: uppercase; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 50%; translate: -50% -130%; z-index: 300; background: var(--red); color: #fff; font-family: var(--display); padding: 10px 18px; border-radius: 3px; transition: translate .25s var(--ease); }
.skip-link:focus { translate: -50% 0; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ---------------- eyebrow + buttons ---------------- */
.eyebrow { display: inline-block; font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow.red { color: var(--red); }
.eyebrow.blue { color: var(--blue); }
.eyebrow.green { color: var(--green); }

.btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 12px 22px; border-radius: 3px;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); } .btn-red:hover { background: var(--red-deep); box-shadow: 0 8px 22px -10px rgba(225,42,30,.8); }
.btn-blue { background: var(--blue); } .btn-blue:hover { background: var(--blue-deep); box-shadow: 0 8px 22px -10px rgba(46,116,230,.8); }
.btn-green { background: var(--green); } .btn-green:hover { background: var(--green-deep); box-shadow: 0 8px 22px -10px rgba(46,158,87,.8); }
.btn-lg { font-size: 16px; padding: 15px 30px; }
.btn-sm { font-size: 12.5px; padding: 9px 16px; }
.btn-block { width: 100%; justify-content: center; }
.chev { width: 7px; height: 7px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); margin-left: 9px; transition: margin-left .2s var(--ease); }
.btn:hover .chev { margin-left: 13px; }

/* ---------------- NAV ---------------- */
.nav { position: sticky; top: 0; z-index: 100; background: var(--ink); border-bottom: 1px solid #1c1c1f; }
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 39px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-1 { font-family: var(--display); font-weight: 400; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--on-dark-mute); }
.brand-2 { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-family: var(--display); font-weight: 500; font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark); padding: 6px 0; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 9px; }
.nav-toggle span { display: block; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { position: fixed; top: 66px; left: 0; right: 0; z-index: 99; background: var(--ink-2); border-bottom: 1px solid var(--ink-line); display: grid; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.mobile-nav.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--on-dark); padding: 15px 24px; border-top: 1px solid var(--ink-line); }
.mobile-nav a:hover { background: #1f1f22; color: #fff; }
body.menu-open { overflow: hidden; }

/* ---------------- HERO ---------------- */
.hero { position: relative; min-height: clamp(440px, 62vh, 600px); display: flex; background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(8,8,9,0.40) 0%, rgba(8,8,9,0.20) 32%, rgba(8,8,9,0.72) 72%, rgba(8,8,9,0.92) 100%),
  linear-gradient(0deg, rgba(8,8,9,0.65), transparent 55%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: flex-end; }
.hero-copy { max-width: 560px; padding: 60px 0; }
.hero-title { font-weight: 700; letter-spacing: 0.01em; }
.hero-title .t-white { display: block; color: #fff; font-size: clamp(30px, 4.6vw, 54px); }
.hero-title .t-red { display: block; color: var(--red); font-size: clamp(40px, 6.6vw, 80px); line-height: 0.96; }
.hero-sub { color: #d6d6d8; font-size: clamp(15px, 1.4vw, 17px); margin: 20px 0 28px; max-width: 480px; }

/* ---------------- STATS ---------------- */
.stats { background: var(--ink-2); border-bottom: 1px solid #000; }
.stats-inner { max-width: var(--wrap); margin: 0 auto; padding: 26px 24px; display: flex; align-items: stretch; gap: 0; }
.stats-label { flex: 0 0 auto; padding-right: 30px; display: flex; flex-direction: column; justify-content: center; }
.stats-title { font-family: var(--display); font-weight: 600; text-transform: uppercase; color: #fff; font-size: 16px; letter-spacing: 0.04em; }
.stats-sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mute); margin-top: 4px; }
.stat { flex: 1; padding: 4px 24px; border-left: 1px solid var(--ink-line); display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto auto auto auto; column-gap: 10px; align-items: center; }
.stat-ico { grid-area: 1 / 2 / 2 / 3; align-self: start; width: 30px; height: 30px; border: 1px solid var(--ink-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--on-dark-mute); }
.stat-ico svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.stat-name { grid-area: 1 / 1 / 2 / 2; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-mute); }
.stat-num { grid-area: 2 / 1 / 3 / 3; font-family: var(--display); font-weight: 700; font-size: 34px; line-height: 1; margin: 6px 0 2px; color: var(--red); font-variant-numeric: tabular-nums; }
.stat-num.pos { color: var(--red); }
.stat-foot { grid-area: 3 / 1 / 4 / 3; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--on-dark-mute); }
.stat-src { grid-area: 4 / 1 / 5 / 3; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: #63636b; margin-top: 3px; }
.spark { grid-area: 5 / 1 / 6 / 3; width: 100%; height: 22px; margin-top: 8px; }
.spark polyline { fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.85; }

/* ---------------- THE CRISIS ---------------- */
.crisis { background: var(--paper); color: var(--text); padding: clamp(56px, 8vw, 96px) 0; }
.crisis-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.crisis-copy h2 { font-size: clamp(26px, 3.2vw, 40px); color: var(--text); margin-bottom: 18px; max-width: 16ch; }
.crisis-copy p { color: var(--text-mute); margin-bottom: 28px; max-width: 42ch; }
.crisis-chart { background: #fff; }
.chart-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.chart-title { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #333; }
.chart-legend { display: flex; gap: 16px; }
.lg { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #555; }
.lg i { width: 16px; height: 3px; border-radius: 2px; }
.lg-supply i { background: var(--green); }
.lg-demand i { background: var(--red); }
.chart-box svg { width: 100%; height: auto; }

/* ---------------- LAB / GOVERNMENT SOLUTION ---------------- */
.lab { background: var(--ink); color: var(--on-dark); }
.lab-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1fr 1.05fr; gap: 0; align-items: stretch; }
.lab-photo { position: relative; margin: 0; min-height: 340px; }
.lab-photo img { width: 100%; height: 100%; object-fit: cover; }
.lab-stamp { position: absolute; left: 18px; bottom: 18px; background: #fff; color: #111; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; padding: 8px 12px 7px; }
.lab-stamp::after { content: ""; display: block; height: 11px; margin-top: 5px; background: repeating-linear-gradient(90deg, #111 0 2px, #fff 2px 3px, #111 3px 5px, #fff 5px 7px, #111 7px 8px, #fff 8px 11px); }
.lab-copy { padding: clamp(40px, 5vw, 72px) clamp(28px, 3vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.lab-copy h2 { font-size: clamp(26px, 3.2vw, 40px); color: #fff; margin-bottom: 16px; }
.lab-copy p { color: var(--on-dark-mute); margin-bottom: 26px; max-width: 34ch; }
.lab-points { padding: clamp(40px, 5vw, 72px) clamp(28px, 3vw, 48px); display: flex; flex-direction: column; justify-content: center; gap: 26px; background: #0b0b0c; }
.lab-points li { display: flex; gap: 16px; align-items: flex-start; }
.pt-ico { flex: none; width: 34px; height: 34px; color: var(--blue); }
.pt-ico svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.lab-points b { display: block; color: var(--blue); font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: 0.02em; text-transform: none; margin-bottom: 3px; }
.lab-points span { display: block; color: var(--on-dark-mute); font-size: 14px; }

/* ---------------- THE HIDDEN RISKS ---------------- */
.risks { background: var(--paper); color: var(--text); padding: clamp(56px, 8vw, 96px) 0; }
.risks-grid { display: grid; grid-template-columns: 0.85fr 2.4fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.risks-head h2 { font-size: clamp(26px, 3.2vw, 38px); color: var(--text); }
.risk-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.rcard { text-align: center; border: 1px solid var(--paper-line); border-radius: 5px; padding: 26px 14px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.rcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(0,0,0,.4); }
.rc-ico { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: rgba(225,42,30,0.08); color: var(--red); margin-bottom: 16px; }
.rc-ico svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.rcard h3 { font-size: 14px; letter-spacing: 0.02em; color: var(--text); margin-bottom: 8px; line-height: 1.15; }
.rcard p { font-size: 13px; color: var(--text-mute); line-height: 1.5; }

/* ---------------- FACTS & DATA ---------------- */
.chart-cap { margin-top: 10px; font-size: 11.5px; color: var(--text-mute); line-height: 1.5; }
.facts { background: var(--ink); color: var(--on-dark); padding: clamp(56px, 8vw, 96px) 0; }
.facts-head { max-width: 640px; margin-bottom: 40px; }
.facts-head h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.facts-head p { color: var(--on-dark-mute); }
.fact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fcard { background: var(--ink-3); border: 1px solid var(--ink-line); border-top: 3px solid var(--red); border-radius: 6px; padding: 26px 24px; transition: transform .2s var(--ease); }
.fcard:hover { transform: translateY(-4px); }
.fc-num { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.2vw, 38px); color: var(--red); line-height: 1; margin-bottom: 12px; }
.fc-text { color: var(--on-dark); font-size: 15px; line-height: 1.55; margin-bottom: 16px; }
.fc-src { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-mute); }
.fc-src::after { content: ""; width: 6px; height: 6px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }
.fc-src:hover { color: var(--red); }
.reading { margin-top: 42px; border-top: 1px solid var(--ink-line); padding-top: 30px; }
.reading h3 { color: #fff; font-size: 18px; letter-spacing: 0.06em; margin-bottom: 14px; }
.read-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 36px; }
.read-list a { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid #1c1c1f; }
.read-list span { font-size: 14.5px; color: var(--on-dark); }
.read-list a:hover span { color: var(--red); }
.read-list em { flex: none; font-style: normal; font-family: var(--display); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-mute); }

/* ---------------- FOOTER ---------------- */
.footer { background: #0c0c0d; color: var(--on-dark-mute); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding: 56px 24px 44px; }
.brand-foot .brand-2 { color: #fff; }
.f-mission { margin-top: 18px; font-size: 14px; line-height: 1.7; max-width: 32ch; }
.f-col h4 { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.f-col a { display: block; font-size: 14px; color: var(--on-dark-mute); padding: 6px 0; transition: color .2s var(--ease); }
.f-col a:hover { color: var(--red); }
.socials { display: flex; gap: 10px; margin-bottom: 22px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: #1a1a1d; display: flex; align-items: center; justify-content: center; color: var(--on-dark); transition: background .2s var(--ease), color .2s var(--ease); }
.socials a:hover { background: var(--red); color: #fff; }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.f-quote { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; line-height: 1.6; color: var(--on-dark); border-left: 3px solid var(--red); padding: 4px 0 4px 14px; }
.footer-base { border-top: 1px solid #1c1c1f; }
.footer-base-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 20px; }
.footer-base-inner p { font-size: 13px; }
.legal { display: flex; gap: 22px; }
.legal a { font-size: 13px; color: var(--on-dark-mute); }
.legal a:hover { color: #fff; }
.disclaimer { text-align: center; font-size: 12px; color: #5d5d63; padding: 0 24px 24px; }

/* ---------------- reveal ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- DRIVERS ---------------- */
.drivers { background: var(--paper-2); color: var(--text); padding: clamp(56px, 8vw, 96px) 0; }
.drivers-grid { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.drivers-photo { position: relative; margin: 0; border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px -45px rgba(0,0,0,.5); }
.drivers-photo img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; }
.drivers-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 18px 14px; font-size: 12.5px; color: #fff; background: linear-gradient(180deg, transparent, rgba(0,0,0,.82)); }
.drivers-copy h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.drivers-intro { color: var(--text-mute); margin-bottom: 26px; max-width: 46ch; }
.driver-list { display: flex; flex-direction: column; gap: 18px; }
.driver-list li { display: flex; gap: 16px; align-items: flex-start; }
.dr-ico { flex: none; width: 42px; height: 42px; border-radius: 50%; background: rgba(225,42,30,.09); color: var(--red); display: flex; align-items: center; justify-content: center; }
.dr-ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.driver-list b { display: block; font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: .01em; color: var(--text); margin-bottom: 3px; text-transform: none; }
.driver-list p { font-size: 14.5px; color: var(--text-mute); line-height: 1.55; }

/* ---------------- PROCESS / HOW IT IS MADE ---------------- */
.process { background: var(--paper); color: var(--text); padding: clamp(56px, 8vw, 96px) 0; }
.process-head { max-width: 660px; margin-bottom: 28px; }
.process-head h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 12px; }
.process-head p { color: var(--text-mute); }
.process-banner { margin: 0 0 36px; border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px -45px rgba(0,0,0,.45); }
.process-banner img { width: 100%; height: clamp(200px, 28vw, 340px); object-fit: cover; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps li { padding: 26px 22px; border: 1px solid var(--paper-line); border-top: 3px solid var(--blue); border-radius: 6px; background: #fff; }
.step-no { font-family: var(--display); font-weight: 700; font-size: 30px; color: rgba(46,116,230,.4); line-height: 1; }
.steps h3 { font-size: 18px; color: var(--text); margin: 10px 0 8px; }
.steps p { font-size: 14px; color: var(--text-mute); line-height: 1.55; }
.process-src { margin-top: 22px; font-size: 12px; color: var(--text-mute); }

/* ---------------- TIMELINE ---------------- */
.timeline { position: relative; color: var(--on-dark); padding: clamp(56px, 8vw, 96px) 0; overflow: hidden; background: var(--ink); }
.tl-bg { position: absolute; inset: 0; z-index: 0; }
.tl-bg img { width: 100%; height: 100%; object-fit: cover; }
.tl-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,9,.88), rgba(8,8,9,.8)); }
.tl-inner { position: relative; z-index: 1; }
.tl-head { margin-bottom: 38px; }
.tl-head h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); }
.tl-list { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0 12px; }
.tl-list li { position: relative; padding: 24px 10px 0 0; border-top: 2px solid var(--ink-line); margin-top: 12px; }
.tl-list li::before { content: ""; position: absolute; top: -9px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(225,42,30,.18); }
.tl-year { display: block; font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--red); margin-bottom: 8px; }
.tl-list b { display: block; font-family: var(--display); font-weight: 600; font-size: 15px; color: #fff; margin-bottom: 6px; text-transform: none; }
.tl-list p { font-size: 13px; color: var(--on-dark-mute); line-height: 1.5; }

/* ---------------- $USFR COIN ---------------- */
/* Jupiter Plugin theme (values are RGB triplets, not hex) */
:root {
  --jupiter-plugin-primary: 225, 42, 30;
  --jupiter-plugin-background: 14, 14, 15;
  --jupiter-plugin-primaryText: 237, 237, 238;
  --jupiter-plugin-warning: 240, 180, 40;
  --jupiter-plugin-interactive: 30, 30, 34;
  --jupiter-plugin-module: 20, 20, 23;
}
.coin { position: relative; background: var(--ink); color: var(--on-dark); padding: clamp(60px, 8vw, 108px) 0; overflow: hidden; }
.coin-glow { position: absolute; top: -140px; left: 50%; translate: -50% 0; width: min(960px, 92%); height: 560px; background: radial-gradient(ellipse at center, rgba(225,42,30,0.18), transparent 70%); pointer-events: none; z-index: 0; }
.coin > .wrap { position: relative; z-index: 1; }

.coin-banner { text-align: center; max-width: 900px; margin: 0 auto clamp(38px, 5vw, 64px); }
.coin-rule { display: block; width: 64px; height: 4px; background: var(--red); margin: 0 auto 22px; border-radius: 2px; }
.coin-eyebrow { display: inline-block; font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.coin-title { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(34px, 6vw, 68px); line-height: 0.98; color: #fff; }
.coin-title .t-red { color: var(--red); }
.coin-sub { color: var(--on-dark-mute); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; max-width: 64ch; margin: 18px auto 0; }

.coin-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(30px, 4vw, 58px); align-items: start; }
.coin-story, .coin-buy { min-width: 0; }
.tk-row dt { min-width: 0; }
.tk-row dd { min-width: 0; overflow-wrap: anywhere; }

.kicker { display: inline-block; font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; background: var(--red); padding: 6px 12px; border-radius: 3px; margin-bottom: 18px; }
.coin-narr { color: var(--on-dark-mute); font-size: 15.5px; line-height: 1.7; margin-bottom: 16px; }

.coin-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 30px; }
.feat { background: var(--ink-3); border: 1px solid var(--ink-line); border-left: 3px solid var(--red); border-radius: 6px; padding: 18px; }
.feat-ico { display: inline-flex; width: 32px; height: 32px; color: var(--red); margin-bottom: 10px; }
.feat-ico svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { font-family: var(--display); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; margin-bottom: 7px; }
.feat p { font-size: 13.5px; color: var(--on-dark-mute); line-height: 1.55; }

.tokenomics { border: 1px solid var(--ink-line); border-radius: 8px; overflow: hidden; }
.tk-head { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin: 0; padding: 14px 20px; background: var(--ink-2); border-bottom: 1px solid var(--ink-line); }
.tk-table { margin: 0; }
.tk-row { display: flex; justify-content: space-between; gap: 18px; padding: 12px 20px; border-bottom: 1px solid var(--ink-line); }
.tk-row:last-child { border-bottom: none; }
.tk-row:nth-child(even) { background: rgba(255,255,255,0.02); }
.tk-row dt { color: var(--on-dark-mute); font-size: 13.5px; }
.tk-row dd { margin: 0; text-align: right; color: #fff; font-size: 13px; font-weight: 500; font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; }

/* buy column */
.coin-buy { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 28px; }

/* the farm crate */
.crate { position: relative; border-radius: 16px; padding: 15px; background: linear-gradient(135deg, #5d3c20 0%, #44290f 55%, #2f1d0a 100%); box-shadow: 0 32px 60px -30px rgba(0,0,0,0.95), inset 0 0 0 1px rgba(255,255,255,0.06); }
.crate::before { content: ""; position: absolute; inset: 0; border-radius: 16px; background: repeating-linear-gradient(180deg, rgba(0,0,0,0.07) 0 5px, rgba(255,255,255,0.025) 5px 11px); pointer-events: none; }
.crate::after { content: ""; position: absolute; inset: 9px; border-radius: 10px; border: 1px dashed rgba(241,228,207,0.18); pointer-events: none; }
.crate-rail { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 6px 10px 12px; text-align: center; }
.rail-bolt, .rail-bolt::after { content: ""; }
.rail-text { font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #efe1c9; }
.rail-text b { color: #fff; }
.rail-verified { display: inline-flex; }
.rail-verified svg { width: 18px; height: 18px; }
.rail-verified circle { fill: var(--green); }

.crate-inner { position: relative; z-index: 2; background: linear-gradient(180deg, #141011, #0e0e0f); border-radius: 10px; border: 1px solid rgba(0,0,0,0.6); padding: 20px; box-shadow: inset 0 2px 12px rgba(0,0,0,0.7); }
.crate-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.coin-badge svg { width: 36px; height: 36px; display: block; }
.crate-title { font-family: var(--display); font-weight: 600; font-size: 18px; text-transform: uppercase; color: #fff; }
.crate-title b { color: var(--red); }

.ca-label { font-size: 11.5px; line-height: 1.5; color: var(--on-dark-mute); margin-bottom: 9px; }
.ca-row { display: flex; align-items: stretch; gap: 8px; background: #000; border: 1px solid var(--ink-line); border-radius: 6px; padding: 7px 7px 7px 12px; }
.ca-text { flex: 1; min-width: 0; font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: 12.5px; color: #e8e8e8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; align-self: center; }
.ca-copy { flex: none; font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: var(--red); border: none; border-radius: 4px; padding: 8px 16px; cursor: pointer; transition: background .2s var(--ease); }
.ca-copy:hover { background: var(--red-deep); }
.ca-copy.copied { background: var(--green); }
.ca-warn { display: flex; align-items: flex-start; gap: 7px; font-size: 11.5px; line-height: 1.45; color: #f0b428; margin-top: 9px; }
.ca-warn span { flex: none; width: 15px; height: 15px; border-radius: 50%; background: #f0b428; color: #0e0e0f; font-weight: 700; font-size: 11px; text-align: center; line-height: 15px; }

.jup-box { position: relative; width: 100%; min-height: 580px; margin-top: 16px; border-radius: 9px; overflow: hidden; background: #0b0b0c; border: 1px solid var(--ink-line); }
.jup-load { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--on-dark-mute); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; text-align: center; padding: 20px; }
.jup-load small { text-transform: none; letter-spacing: 0; font-family: var(--body); font-size: 12px; color: #5f5f63; }
.jup-spin { width: 30px; height: 30px; border: 3px solid rgba(255,255,255,0.14); border-top-color: var(--red); border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 600; font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: #cdeede; background: rgba(46,158,87,0.12); border: 1px solid rgba(46,158,87,0.4); border-radius: 20px; padding: 6px 12px; }
.chip i { flex: none; width: 6px; height: 10px; border-right: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(45deg); margin-top: -2px; }

/* animated veggie decorations around the crate */
.veg { position: absolute; z-index: 3; pointer-events: none; filter: drop-shadow(0 7px 9px rgba(0,0,0,0.55)); }
.veg-tl { width: 66px; top: -32px; left: -20px; animation: vbob 4s ease-in-out infinite; }
.veg-tr { width: 56px; top: -36px; right: -14px; animation: vbob 4.6s ease-in-out infinite; animation-delay: -1s; }
.veg-bl { width: 64px; bottom: -28px; left: -18px; transform-origin: bottom center; animation: vsway 4.2s ease-in-out infinite; }
.veg-br { width: 70px; bottom: -26px; right: -20px; animation: vbob 3.6s ease-in-out infinite; animation-delay: -.6s; }
.veg-edge { width: 50px; opacity: 0.92; }
.veg-le { left: -32px; top: 45%; transform-origin: bottom center; animation: vsway 5s ease-in-out infinite; }
.veg-re { right: -32px; top: 55%; transform-origin: bottom center; animation: vsway 4.4s ease-in-out infinite; animation-delay: -1.4s; }
@keyframes vbob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes vsway { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

/* how to buy steps */
.buy-steps { list-style: none; margin: 0; padding: 0; }
.buy-steps li { display: flex; gap: 16px; padding-bottom: 22px; position: relative; }
.buy-steps li::before { content: ""; position: absolute; left: 15px; top: 36px; bottom: 2px; width: 2px; background: var(--ink-line); }
.buy-steps li:last-child { padding-bottom: 0; }
.buy-steps li:last-child::before { display: none; }
.bs-no { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--display); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.buy-steps h4 { font-family: var(--display); font-weight: 600; font-size: 15px; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.buy-steps p { font-size: 13.5px; color: var(--on-dark-mute); line-height: 1.55; }

/* closing strip */
.coin-close { text-align: center; margin-top: clamp(42px, 6vw, 76px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--ink-line); }
.off-title { display: block; font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-mute); margin-bottom: 16px; }
.off-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.off-chip { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--on-dark); border: 1px solid var(--ink-line); border-radius: 30px; padding: 9px 18px; transition: border-color .2s var(--ease), color .2s var(--ease); }
.off-chip:hover { border-color: var(--red); color: #fff; }
.coin-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 20px; }
.btn-ghost { background: transparent; border: 1px solid var(--ink-line); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.coin-disc { font-size: 12px; color: var(--text-mute); max-width: 72ch; margin: 0 auto; line-height: 1.6; }
.nav-coin { color: var(--red) !important; font-weight: 600; }

/* ---------------- FAQ ---------------- */
.faq { background: var(--paper); color: var(--text); }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: stretch; }
.faq-photo { position: relative; margin: 0; }
.faq-photo img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.faq-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 14px; color: #fff; font-size: 13px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.82)); }
.faq-copy { padding: clamp(48px, 5vw, 84px) clamp(28px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.faq-copy h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 22px; }
.faq-list details { border-bottom: 1px solid var(--paper-line); }
.faq-list summary { cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; flex: none; width: 9px; height: 9px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(-135deg); }
.faq-list p { padding: 0 0 16px; color: var(--text-mute); font-size: 15px; line-height: 1.6; }

/* new sections, tablet */
@media (max-width: 1080px) {
  .drivers-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-photo img { min-height: 240px; }
  .tl-list { grid-template-columns: 1fr; gap: 0; }
  .tl-list li { border-top: none; border-left: 2px solid var(--ink-line); margin-top: 0; padding: 4px 0 24px 22px; }
  .tl-list li::before { top: 2px; left: -9px; }
}
/* new sections, mobile */
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* $USFR coin, responsive */
@media (max-width: 900px) {
  .coin-grid { grid-template-columns: minmax(0, 1fr); }
  .coin-buy { position: static; order: -1; }
  .veg-edge { display: none; }
}
@media (max-width: 560px) {
  .coin-feats { grid-template-columns: 1fr; }
  .tk-row { flex-direction: column; align-items: flex-start; gap: 3px; }
  .tk-row dd { text-align: left; }
  .crate { padding: 12px; }
  .crate-inner { padding: 16px; }
  .veg-tr, .veg-bl { display: none; }
  .veg-tl { width: 54px; top: -26px; left: -10px; }
  .veg-br { width: 56px; bottom: -20px; right: -10px; }
  .jup-box { min-height: 560px; }
  .coin-cta .btn { width: 100%; justify-content: center; }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .crisis-grid { grid-template-columns: 1fr; gap: 40px; }
  .lab-grid { grid-template-columns: 1fr 1fr; }
  .lab-photo { grid-column: 1 / -1; min-height: 300px; }
  .risks-grid { grid-template-columns: 1fr; gap: 28px; }
  .risk-cards { grid-template-columns: repeat(3, 1fr); }
  .fact-cards { grid-template-columns: repeat(2, 1fr); }
  .read-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .stats-inner { flex-wrap: wrap; }
  .stats-label { flex: 1 1 100%; padding: 0 0 16px; border-bottom: 1px solid var(--ink-line); margin-bottom: 16px; }
  .stat { flex: 1 1 45%; border-left: none; padding: 14px 0; }
  .stat:nth-child(odd) { padding-right: 18px; }
  .stat:nth-child(even) { border-left: 1px solid var(--ink-line); padding-left: 18px; }
  .hero-inner { justify-content: flex-start; }
  .hero-copy { padding: 48px 0; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,8,9,0.75), rgba(8,8,9,0.35)); }
  .lab-grid { grid-template-columns: 1fr; }
  .risk-cards { grid-template-columns: repeat(2, 1fr); }
  .fact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  .risk-cards { grid-template-columns: 1fr; }
}

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