:root {
  --ink: #171717;
  --ink-soft: #242424;
  --paper: #efe5d7;
  --paper-2: #f8f1e8;
  --tan: #c88c49;
  --tan-light: #e7bb83;
  --fur: #b86f2f;
  --cream: #fffaf3;
  --muted: #756c63;
  --line: rgba(23, 23, 23, .16);
  --shadow: 0 24px 60px rgba(33, 25, 19, .16);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }

::selection { color: var(--paper-2); background: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: 100px 0; }

.ticker {
  height: 34px;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 24px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}
.ticker-track b { color: var(--tan-light); }
@keyframes ticker { to { transform: translateX(-50%); } }

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(239, 229, 215, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { min-width: 220px; display: flex; align-items: center; gap: 11px; font-weight: 950; letter-spacing: -.04em; }
.brand img { width: 44px; height: 44px; object-fit: cover; border: 2px solid var(--ink); border-radius: 14px; }
.brand > span { display: flex; flex-direction: column; line-height: 1.05; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; font-size: 12px; font-weight: 850; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: .2s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.social-pill, .buy-pill { height: 39px; min-width: 39px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 999px; font-size: 10px; font-weight: 950; transition: .2s ease; }
.social-pill:hover { color: var(--cream); background: var(--ink); transform: translateY(-2px); }
.buy-pill { padding: 0 17px; color: var(--cream); background: var(--ink); }
.buy-pill:hover { color: var(--ink); background: var(--tan-light); transform: translateY(-2px); }

.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 2px solid var(--ink); border-radius: 14px; background: transparent; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }
.menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 110px; left: 20px; right: 20px; z-index: 85; padding: 18px; background: var(--paper-2); border: 2px solid var(--ink); border-radius: 20px; box-shadow: var(--shadow); }
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: 13px 8px; border-bottom: 1px solid var(--line); font-weight: 850; }
.mobile-menu a:last-child { border-bottom: 0; }

.hero { min-height: 760px; display: grid; align-items: center; padding: 78px 0 92px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 18px; z-index: -2; border: 2px solid var(--ink); border-radius: 38px; background: radial-gradient(circle at 81% 18%, rgba(200,140,73,.22), transparent 28%), linear-gradient(135deg, var(--paper-2), var(--paper)); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.orb-one { width: 240px; height: 240px; top: 7%; left: -110px; background: rgba(184,111,47,.11); }
.orb-two { width: 190px; height: 190px; right: -70px; bottom: 3%; background: rgba(23,23,23,.08); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--muted); font-size: 10px; font-weight: 950; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--fur); }
.hero h1 { max-width: none; margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(38px, 4.1vw, 56px); line-height: .9; letter-spacing: -.065em; text-transform: uppercase; white-space: nowrap; }
.hero h1 span { display: inline; margin: 0; color: var(--fur); font-size: 1em; letter-spacing: inherit; }
.hero-lead { max-width: 650px; margin: 29px 0 0; color: #4f4944; font-size: 19px; line-height: 1.58; font-weight: 650; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 29px; }
.button { min-height: 51px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 2px solid var(--ink); border-radius: 14px; font-size: 11px; font-weight: 950; letter-spacing: .04em; transition: .2s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 8px 0 rgba(23,23,23,.12); }
.button-dark { color: var(--cream); background: var(--ink); }
.button-light { color: var(--ink); background: var(--paper-2); }
.button-tan { color: var(--ink); background: var(--tan-light); }
.ca-box { max-width: 640px; margin-top: 18px; padding: 10px 10px 10px 15px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 2px solid var(--ink); border-radius: 16px; background: rgba(255,250,243,.72); }
.ca-copy { min-width: 0; display: grid; gap: 5px; }
.ca-copy small { color: var(--muted); font-size: 8px; font-weight: 950; letter-spacing: .14em; }
.ca-copy code { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; font-weight: 800; }
.copy-button { flex: 0 0 auto; height: 39px; padding: 0 16px; border: 0; border-radius: 11px; color: var(--cream); background: var(--ink); font-size: 9px; font-weight: 950; cursor: pointer; transition: .2s ease; }
.copy-button:hover { background: var(--fur); }
.facts { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 17px; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.facts b { margin-left: 5px; color: var(--ink); }

.hero-art { position: relative; min-height: 570px; display: grid; place-items: center; perspective: 900px; }
.hero-frame { position: relative; z-index: 3; width: min(495px, 88%); margin: 0; padding: 10px; border: 3px solid var(--ink); border-radius: 44px; background: var(--ink); box-shadow: 18px 18px 0 var(--tan-light), var(--shadow); transform: rotate(2.2deg); transition: transform .14s ease-out; }
.hero-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 32px; }
.aura-ring { position: absolute; z-index: 1; border: 2px solid rgba(23,23,23,.28); border-radius: 50%; }
.aura-ring-1 { width: 390px; height: 390px; animation: pulse 5.2s ease-in-out infinite; }
.aura-ring-2 { width: 470px; height: 470px; border-style: dashed; animation: spin 28s linear infinite; }
.aura-ring-3 { width: 545px; height: 545px; border-color: rgba(184,111,47,.3); animation: pulse 6.6s ease-in-out infinite reverse; }
@keyframes pulse { 50% { transform: scale(1.04); opacity: .55; } }
@keyframes spin { to { transform: rotate(360deg); } }
.tag { position: absolute; z-index: 5; padding: 11px 15px; border: 2px solid var(--ink); border-radius: 999px; font-size: 10px; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; box-shadow: 4px 4px 0 var(--ink); }
.tag-one { left: 0; top: 17%; color: var(--cream); background: var(--fur); transform: rotate(-7deg); }
.tag-two { right: 0; bottom: 16%; background: var(--paper-2); transform: rotate(7deg); }

.about { background: var(--ink); color: var(--cream); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 72px; }
.section-label { display: inline-flex; margin-bottom: 16px; color: var(--fur); font-size: 9px; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.about-copy h2, .section-heading h2, .chart-heading h2, .join-copy h2 { margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(48px, 5.6vw, 80px); line-height: .93; letter-spacing: -.055em; text-transform: uppercase; }
.about-copy p { max-width: 650px; margin: 23px 0 0; color: rgba(255,250,243,.72); font-size: 17px; line-height: 1.67; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--tan-light); font-size: 10px; font-weight: 950; letter-spacing: .08em; }
.text-link span { transition: .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.aura-card { padding: 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 32px; background: #202020; box-shadow: 20px 20px 0 rgba(255,255,255,.05); }
.aura-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 22px; }
.aura-card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 10px; }
.aura-card-stats div { padding: 14px; display: grid; gap: 5px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.aura-card-stats span { color: rgba(255,255,255,.44); font-size: 7px; font-weight: 950; letter-spacing: .16em; }
.aura-card-stats b { font-size: 11px; }

.gallery { background: var(--paper-2); }
.section-heading { max-width: 790px; margin-bottom: 40px; }
.section-heading p { margin: 14px 0 0; color: var(--muted); font-size: 16px; font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 340px; gap: 16px; }
.gallery-card { position: relative; margin: 0; overflow: hidden; border: 2px solid var(--ink); border-radius: 24px; background: var(--ink); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.25,1), filter .35s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 0; border: 8px solid rgba(255,255,255,.05); border-radius: 21px; pointer-events: none; }
.gallery-card:hover img { transform: scale(1.045); filter: contrast(1.03); }
.gallery-wide { grid-column: span 2; }

.how { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.step { position: relative; min-height: 270px; padding: 27px; overflow: hidden; border: 2px solid var(--ink); border-radius: 24px; background: var(--paper-2); transition: .2s ease; }
.step:hover { transform: translateY(-5px); box-shadow: 8px 8px 0 var(--ink); }
.step-number { color: var(--fur); font-family: "Arial Black", Impact, sans-serif; font-size: 56px; letter-spacing: -.07em; }
.step h3 { margin: 29px 0 10px; font-size: 21px; letter-spacing: -.04em; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.step::before { content: ""; position: absolute; width: 100px; height: 100px; right: -34px; top: -34px; border: 2px solid var(--tan-light); border-radius: 50%; }

.chart-section { color: var(--cream); background: #1d1d1d; }
.chart-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.chart-heading .button-light { color: var(--cream); background: transparent; border-color: rgba(255,255,255,.32); }
.chart-heading .button-light:hover { background: var(--cream); color: var(--ink); }
.chart-frame { position: relative; min-height: 600px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: #101010; }
.chart-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; opacity: 0; pointer-events: none; }
.chart-frame.active iframe { opacity: 1; pointer-events: auto; }
.chart-frame.active .chart-placeholder { display: none; }
.chart-placeholder { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 10px; padding: 30px; text-align: center; background: radial-gradient(circle at center, rgba(200,140,73,.12), transparent 36%); }
.chart-dog { width: 70px; height: 70px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--tan-light); font-size: 33px; }
.chart-placeholder strong { margin-top: 4px; font-size: 14px; letter-spacing: .08em; }
.chart-placeholder p { max-width: 460px; margin: 0; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.55; }

.join { background: var(--paper); }
.join-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 46px; padding: 48px; overflow: hidden; border: 2px solid var(--ink); border-radius: 34px; color: var(--cream); background: var(--ink); box-shadow: 12px 12px 0 var(--tan-light); }
.join-copy p { max-width: 590px; margin: 18px 0 0; color: rgba(255,255,255,.64); font-size: 16px; line-height: 1.6; }
.join-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.join-card .button-light { color: var(--cream); background: transparent; border-color: rgba(255,255,255,.3); }
.join-card .button-light:hover { color: var(--ink); background: var(--cream); }
.join-image { justify-self: end; max-width: 410px; padding: 8px; border: 2px solid var(--tan-light); border-radius: 27px; transform: rotate(2deg); }
.join-image img { aspect-ratio: 1; object-fit: cover; border-radius: 19px; }

.footer { padding: 34px 0 23px; color: rgba(255,255,255,.72); background: #111; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 12px; }
.footer-brand div { display: grid; gap: 3px; }
.footer-brand strong { color: var(--cream); font-size: 14px; }
.footer-brand span { color: var(--tan-light); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; gap: 9px; }
.footer-links a { min-width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; font-size: 9px; font-weight: 900; transition: .2s ease; }
.footer-links a:hover { color: var(--ink); background: var(--tan-light); border-color: var(--tan-light); }
.footer-bottom { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.34); font-size: 10px; }

.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 45px; height: 45px; border: 2px solid var(--ink); border-radius: 14px; color: var(--ink); background: var(--tan-light); font-size: 18px; font-weight: 900; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: .2s ease; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 1200; padding: 11px 17px; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--tan-light); font-size: 10px; font-weight: 950; opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: .2s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .nav-links { display: none; }
  .hero-grid { gap: 32px; }
  .hero h1 { font-size: clamp(36px, 5vw, 52px); }
  .hero-art { min-height: 510px; }
  .about-grid { gap: 40px; }
  .gallery-grid { grid-auto-rows: 300px; }
}

@media (max-width: 820px) {
  .section { padding: 78px 0; }
  .nav-actions { display: none; }
  .menu-button { display: block; }
  .brand { min-width: 0; }
  .hero { min-height: auto; padding: 72px 0 90px; }
  .hero::before { inset: 12px; border-radius: 27px; }
  .hero-grid, .about-grid, .join-card { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-buttons, .facts, .join-buttons { justify-content: center; }
  .ca-box { margin-left: auto; margin-right: auto; text-align: left; }
  .hero-art { min-height: 500px; margin-top: 26px; }
  .hero-frame { width: min(475px, 83%); }
  .aura-ring-1 { width: 340px; height: 340px; }
  .aura-ring-2 { width: 410px; height: 410px; }
  .aura-ring-3 { width: 475px; height: 475px; }
  .about-copy { text-align: center; }
  .about-copy p { margin-left: auto; margin-right: auto; }
  .aura-card { max-width: 640px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 330px; }
  .gallery-wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .chart-heading { align-items: flex-start; flex-direction: column; }
  .chart-frame { min-height: 520px; }
  .join-card { padding: 34px; text-align: center; }
  .join-image { justify-self: center; max-width: 380px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1180px); }
  .ticker { height: 30px; }
  .nav { height: 67px; }
  .mobile-menu { top: 102px; left: 12px; right: 12px; }
  .brand img { width: 40px; height: 40px; }
  .brand > span { font-size: 14px; }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: clamp(28px, 8.8vw, 42px); line-height: .9; }
  .hero-lead { font-size: 17px; }
  .button { width: 100%; }
  .hero-buttons { display: grid; }
  .ca-box { align-items: stretch; flex-direction: column; }
  .copy-button { width: 100%; }
  .facts { gap: 11px 16px; }
  .hero-art { min-height: 390px; }
  .hero-frame { width: 84%; border-radius: 28px; box-shadow: 10px 10px 0 var(--tan-light), var(--shadow); }
  .hero-frame img { border-radius: 19px; }
  .aura-ring-1 { width: 270px; height: 270px; }
  .aura-ring-2 { width: 320px; height: 320px; }
  .aura-ring-3 { width: 365px; height: 365px; }
  .tag { padding: 9px 11px; font-size: 8px; }
  .tag-one { left: 1%; top: 16%; }
  .tag-two { right: 1%; bottom: 12%; }
  .about-copy h2, .section-heading h2, .chart-heading h2, .join-copy h2 { font-size: 43px; }
  .aura-card-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-card { aspect-ratio: 1; }
  .chart-frame { min-height: 440px; border-radius: 20px; }
  .join-card { padding: 26px 20px; border-radius: 26px; box-shadow: 8px 8px 0 var(--tan-light); }
  .footer-row { align-items: flex-start; flex-direction: column; }
}

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