/* ============================================================
   GLASS — contemporary glassblowing studio & gallery
   Design tokens remixed from real sites:
     simonpearce.com (olive/cream/slate neutrals) + glassybaby.com
     (black + cobalt #1773b0) + salviati.com (Murano brights)
   Dark furnace + molten amber accent + cold cobalt glass.
   Display: Unbounded / Body: Inter / Mono: Space Mono
   ============================================================ */

:root {
  --bg: #0b0d12;
  --bg2: #10141c;
  --card: #161b25;
  --card2: #1d2430;
  --ink: #f2ede4;
  --muted: #a89f8e;
  --dim: #6a6255;
  --line: rgba(242, 237, 228, .12);
  --line2: rgba(242, 237, 228, .06);
  --accent: #ff6a3d;
  --accent2: #4fc3e8;
  --light: #7ce7ff;
  --danger: #ff5a6e;
  --ok: #4fc3e8;
  --display: 'Unbounded', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --wrap: 1180px;
  --r: 16px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .7);
  --ease: cubic-bezier(.22, .9, .24, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #0b0d12; }

/* ---------- ambient layers ---------- */
.glow {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(60% 45% at 82% 8%, rgba(255, 106, 61, .16), transparent 60%),
    radial-gradient(45% 40% at 8% 92%, rgba(79, 195, 232, .12), transparent 60%),
    var(--bg);
}
.grain {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
.cursor {
  position: fixed; top: 0; left: 0; width: 400px; height: 400px; z-index: -1;
  pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 61, .10), transparent 60%);
  transition: opacity .4s;
}
canvas#dust { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* ---------- intro (furnace ignition) ---------- */
#intro {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  background: var(--bg); transition: opacity .7s var(--ease), visibility .7s;
}
#intro.done { opacity: 0; visibility: hidden; }
.molten { position: relative; width: 260px; height: 260px; display: grid; place-items: center; }
.orb {
  width: 150px; height: 150px; border-radius: 50%; position: relative; overflow: hidden;
  box-shadow: 0 0 80px rgba(255, 106, 61, .55), 0 0 30px rgba(255, 106, 61, .6), inset 0 0 60px rgba(0,0,0,.25);
  animation: orb-breathe 1.4s ease-in-out infinite;
}
.orb span {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ffffff, #ffb84d 35%, #ff6a3d 62%, #4fc3e8 100%);
  animation: orb-heat 2.6s var(--ease) forwards;
}
@keyframes orb-breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes orb-heat {
  0% { filter: hue-rotate(0deg) saturate(1); }
  100% { filter: hue-rotate(-18deg) saturate(1.15); }
}
.heat-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,106,61,.4); animation: ring 2.2s ease-out infinite; }
.heat-ring.r1 { width: 220px; height: 220px; }
.heat-ring.r2 { width: 300px; height: 300px; animation-delay: .6s; border-color: rgba(79,195,232,.25); }
@keyframes ring { 0% { transform: scale(.6); opacity: 0; } 40% { opacity: 1; } 100% { transform: scale(1.15); opacity: 0; } }
.heat-meta { position: absolute; top: -30px; font-family: var(--mono); font-size: 12px; letter-spacing: .22em; color: var(--dim); text-transform: uppercase; }
.temp { position: absolute; bottom: -34px; font-family: var(--mono); font-size: 15px; color: var(--accent); }
.int-word {
  position: absolute; bottom: 14vh; font-family: var(--display); font-weight: 600;
  font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.02em;
  animation: word-in 1.4s var(--ease) forwards;
}
@keyframes word-in { 0% { opacity: 0; transform: translateY(12px); } 100% { opacity: 1; transform: none; } }

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

/* ---------- nav: heat-bar ---------- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.heat-line { height: 3px; background: linear-gradient(90deg, var(--accent), #ffb84d, var(--accent2), var(--light)); position: relative; overflow: hidden; }
.heat-line i { position: absolute; inset: 0; background: rgba(255,255,255,.55); animation: heat-sweep 2.4s ease-in-out infinite; }
@keyframes heat-sweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.nav-inner {
  display: flex; align-items: center; gap: 28px; padding: 14px clamp(16px, 4vw, 40px);
  max-width: var(--wrap); margin: 0 auto; transition: padding .3s;
}
.navbar.scrolled .nav-inner { padding-top: 8px; padding-bottom: 8px; }
.navbar.scrolled { background: rgba(11, 13, 18, .82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.logo b { font-weight: 600; }
.nav-links { display: flex; gap: 26px; margin: 0 auto; }
.nav-links a { position: relative; font-size: 14.5px; color: var(--muted); padding: 4px 0; }
.nav-links a span { position: relative; z-index: 1; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover span, .nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.furnace { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 13px; color: var(--accent); }
.furnace svg { color: var(--accent); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.burger.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu { position: fixed; inset: 0; z-index: 49; background: rgba(11,13,18,.97); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.menu.on { opacity: 1; visibility: visible; }
.menu a { font-family: var(--display); font-size: 26px; color: var(--ink); }
.menu a.btn { font-family: var(--body); font-size: 16px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .3s, background .3s, border-color .3s; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #ff9d66); color: #1a0d05; box-shadow: 0 8px 30px -8px rgba(255, 106, 61, .55); }
.btn-primary:hover { box-shadow: 0 12px 40px -6px rgba(255, 106, 61, .7); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--accent2); color: var(--accent2); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.section { padding: 96px 0; position: relative; }
.section-bleed { padding-left: 0; padding-right: 0; }
.section-bleed .wrap { max-width: var(--wrap); }
.sec-head { margin-bottom: 46px; }
.sec-head .top { display: flex; align-items: baseline; gap: 18px; }
.sec-head .idx { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: .1em; }
.sec-head h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.02em; line-height: 1.1; }
.sec-head .lead { color: var(--muted); max-width: 56ch; margin-top: 14px; }

/* ---------- hero ---------- */
.hero { padding: 150px 0 80px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.h1-x { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.03em; margin-bottom: 22px; }
.h1-x .line { display: block; overflow: hidden; }
.h1-x .ac { color: var(--accent); text-shadow: 0 0 40px rgba(255, 106, 61, .4); }
.ch { display: inline-block; opacity: 0; transform: translateY(100%); animation: chup .5s var(--ease) forwards; }
.ch.sp { width: .3em; }
@keyframes chup { to { opacity: 1; transform: none; } }
.hero-copy .lead { color: var(--muted); font-size: 17px; max-width: 52ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 20px; font-family: var(--mono); font-size: 12px; color: var(--dim); }
.hero-media { position: relative; }
.hm-big { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); }
.hm-small { position: absolute; right: -10px; bottom: -34px; width: 42%; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.hm-badge { position: absolute; top: 18px; left: 18px; font-family: var(--mono); font-size: 12px; color: var(--accent); background: rgba(11,13,18,.7); backdrop-filter: blur(6px); padding: 8px 13px; border-radius: 999px; border: 1px solid var(--line); }
.hm-badge::before { content: "● "; }

/* ---------- ticker ---------- */
.ticker-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); overflow: hidden; padding: 15px 0; }
.ticker { overflow: hidden; }
.tick-track { display: flex; gap: 30px; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; }
.tick-track span { font-family: var(--mono); font-size: 13px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.tick-track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- frows (process) ---------- */
.frows { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.frow { display: grid; grid-template-columns: 90px 1fr 120px; gap: 20px; align-items: center; padding: 26px 4px; border-bottom: 1px solid var(--line); transition: background .3s; }
.frow:hover { background: var(--card); }
.frow .num { font-family: var(--mono); color: var(--dim); }
.frow h3 { font-family: var(--display); font-size: 20px; font-weight: 500; }
.frow p { color: var(--muted); margin-top: 4px; max-width: 60ch; }
.frow .ico { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; color: var(--accent2); }
.frow .ico span { font-family: var(--mono); font-size: 11px; color: var(--dim); }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; transition: transform .3s var(--ease), border-color .3s; }
.feature:hover { transform: translateY(-4px); border-color: rgba(255,106,61,.4); }
.feature .ico { color: var(--accent); width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,106,61,.1); margin-bottom: 18px; }
.feature h3 { font-family: var(--display); font-size: 17px; font-weight: 500; }
.feature p { color: var(--muted); margin-top: 8px; font-size: 14.5px; }

/* ---------- spectrum (signature) ---------- */
.spectrum { display: grid; grid-template-columns: repeat(8, 1fr); gap: 0; margin-top: 10px; }
.chip { position: relative; height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 14px; overflow: hidden; cursor: pointer; }
.chip-swatch { position: absolute; inset: 0; background: var(--c); transition: filter .4s, transform .5s var(--ease); }
.chip:hover .chip-swatch { filter: brightness(1.3) saturate(1.2); transform: scale(1.04); }
.chip span { position: relative; z-index: 1; font-family: var(--mono); font-size: 12px; color: #0b0d12; background: rgba(255,255,255,.65); backdrop-filter: blur(4px); padding: 5px 9px; border-radius: 6px; width: fit-content; }
@media (max-width: 760px) { .spectrum { grid-template-columns: repeat(4, 1fr); } .chip { height: 200px; } }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 60px; gap: 14px; padding: 0 clamp(16px, 4vw, 40px); }
.g-item { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid var(--line); margin: 0; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 14px 12px; font-size: 12.5px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.7)); display: flex; justify-content: space-between; align-items: flex-end; gap: 8px; }
.g-item .credit { font-family: var(--mono); font-size: 10.5px; opacity: .75; }
.g-a { grid-column: span 7; grid-row: span 5; }
.g-b { grid-column: span 5; grid-row: span 3; }
.g-c { grid-column: span 5; grid-row: span 4; }
.g-d { grid-column: span 7; grid-row: span 4; }
.g-e { grid-column: span 6; grid-row: span 3; }
.g-f { grid-column: span 6; grid-row: span 3; }
@media (max-width: 760px) { .g-a,.g-b,.g-c,.g-d,.g-e,.g-f { grid-column: span 12; grid-row: span 4; } }

/* ---------- film ---------- */
.film-frame { position: relative; width: 100%; aspect-ratio: 16/8; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.film-video, .film-fallback { width: 100%; height: 100%; object-fit: cover; }
.film-caption { position: absolute; left: 24px; bottom: 20px; font-family: var(--mono); font-size: 12px; color: #fff; background: rgba(11,13,18,.6); padding: 7px 13px; border-radius: 999px; }

/* ---------- stories ---------- */
.stories-head { margin-bottom: 34px; }
.stories-track { display: flex; gap: 22px; overflow-x: auto; padding: 8px clamp(16px, 4vw, 40px) 30px; scroll-snap-type: x mandatory; }
.story { flex: 0 0 320px; scroll-snap-align: start; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .3s var(--ease); }
.story-art { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.story-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.story:hover .story-img { transform: scale(1.06); }
.story-d { position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: 11px; background: rgba(11,13,18,.7); padding: 5px 10px; border-radius: 999px; color: var(--accent2); }
.story h3 { font-family: var(--display); font-size: 17px; font-weight: 500; padding: 16px 18px 4px; }
.story p { color: var(--muted); font-size: 14px; padding: 0 18px; }
.story-who { font-family: var(--mono); font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: .1em; padding: 12px 18px 18px; }

/* ---------- editorial ---------- */
.editorial { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.ed-photo { margin: 0; }
.ed-photo img { border-radius: var(--r); border: 1px solid var(--line); aspect-ratio: 4/5; object-fit: cover; }
.ed-photo figcaption { font-family: var(--mono); font-size: 11px; color: var(--dim); margin-top: 10px; }
.ed-body .ed-tag { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.ed-body h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.2; letter-spacing: -.02em; margin: 16px 0 20px; }
.ed-body p { color: var(--muted); margin-bottom: 16px; }
.ed-sign { font-family: var(--display); font-size: 20px; margin-top: 26px; }
.ed-sign span { display: block; font-family: var(--mono); font-size: 12px; color: var(--dim); margin-top: 4px; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; }
.stat .v { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--accent); letter-spacing: -.02em; }
.stat .k { color: var(--muted); font-size: 14px; margin-top: 6px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; }
.stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.quote p { color: var(--ink); font-size: 16px; }
.quote .who { margin-top: auto; padding-top: 20px; color: var(--muted); font-size: 13.5px; }
.quote .who b { display: block; color: var(--ink); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- roadmap ---------- */
.roadmap { display: flex; flex-direction: column; }
.rm-item { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: start; }
.rm-item .dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 8px; }
.dot.now { background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.dot.next { background: var(--accent2); }
.dot.later { background: var(--dim); }
.rm-date { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.rm-item p { color: var(--muted); max-width: 60ch; }

/* ---------- faq ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 4px; font-weight: 600; font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .x { font-family: var(--mono); color: var(--accent); font-size: 20px; transition: transform .3s; }
.faq details[open] summary .x { transform: rotate(45deg); }
.faq .a { color: var(--muted); padding: 0 4px 22px; max-width: 64ch; }

/* ---------- cta ---------- */
.cta-img { position: relative; padding: 140px 0; text-align: center; overflow: hidden; }
.cta-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-img-scrim { position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 50%, rgba(11,13,18,.55), rgba(11,13,18,.92)); }
.cta-img-inner { position: relative; }
.cta-img h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.02em; }
.cta-img h2 em { color: var(--accent); font-style: normal; }
.cta-img p { color: var(--muted); margin: 16px 0 30px; }
.waitlist { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.waitlist input { flex: 1; min-width: 220px; background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 999px; padding: 15px 22px; color: var(--ink); font-size: 15px; }
.waitlist input:focus { outline: none; border-color: var(--accent); }
.form-ok { display: none; margin-top: 16px; color: var(--accent2); font-family: var(--mono); font-size: 13.5px; }
.form-ok.show { display: block; }
.cta-credit { margin-top: 26px; font-family: var(--mono); font-size: 11.5px; color: var(--dim); }

/* ---------- page hero / breadcrumb ---------- */
.page-hero { padding: 150px 0 60px; border-bottom: 1px solid var(--line); background: radial-gradient(50% 60% at 80% 0%, rgba(255,106,61,.08), transparent 60%); }
.breadcrumb { font-family: var(--mono); font-size: 13px; color: var(--dim); margin-bottom: 22px; }
.breadcrumb a { color: var(--accent2); }
.page-hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.02em; line-height: 1.05; }
.page-hero .lead { color: var(--muted); margin-top: 16px; max-width: 56ch; font-size: 17px; }

/* ---------- hub grid ---------- */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.hub-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), border-color .3s; }
.hub-card:hover { transform: translateY(-4px); border-color: rgba(255,106,61,.4); }
.hub-card .ico { color: var(--accent); margin-bottom: 18px; }
.hub-card h3 { font-family: var(--display); font-size: 20px; font-weight: 500; }
.hub-card p { color: var(--muted); margin-top: 8px; font-size: 15px; }
.hub-card .sub { font-family: var(--mono); font-size: 11px; color: var(--dim); margin-top: 14px; text-transform: uppercase; letter-spacing: .1em; }
.hub-card .go { position: absolute; top: 30px; right: 30px; color: var(--muted); transition: color .3s, transform .3s; }
.hub-card:hover .go { color: var(--accent); transform: translateX(3px); }
@media (max-width: 720px) { .hub-grid { grid-template-columns: 1fr; } }

/* ---------- prose ---------- */
.prose h1 { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 3.6vw, 2.4rem); letter-spacing: -.02em; margin-bottom: 22px; }
.prose h2 { font-family: var(--display); font-weight: 500; font-size: 20px; margin: 34px 0 12px; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose pre { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 20px; font-family: var(--mono); font-size: 13.5px; line-height: 1.7; color: var(--ink); overflow-x: auto; margin: 16px 0; }
.prose code { font-family: var(--mono); font-size: .9em; color: var(--accent2); }
.related { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 26px; }
.related h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.related-links { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.related-links a { color: var(--accent2); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.related-links a:hover { color: var(--ink); }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(255,106,61,.4); }
.pc-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card .body { padding: 20px 22px 24px; }
.post-card .tag, .post-head .tag { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.post-card h3 { font-family: var(--display); font-weight: 500; font-size: 18px; line-height: 1.3; margin: 10px 0; }
.post-card .meta, .post-head .meta { color: var(--dim); font-size: 13px; }
.post-head h1 { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 3.6vw, 2.5rem); line-height: 1.15; letter-spacing: -.02em; margin: 16px 0; }
.post-head .meta { margin-top: 8px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 5vw, 60px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px; color: var(--ink); font-size: 15px; font-family: var(--body); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 18px 0; }
.checklist li { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.checklist li svg { color: var(--accent2); flex: 0 0 auto; }
.checklist b { color: var(--ink); }
.contact-note { color: var(--dim); font-size: 14px; }

/* ---------- changelog / timeline ---------- */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.tl-item .date { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.tl-item h3 { font-family: var(--display); font-size: 18px; font-weight: 500; }
.tl-item p { color: var(--muted); margin-top: 6px; }

/* ---------- status ---------- */
.status-list { display: flex; flex-direction: column; }
.status-row { display: grid; grid-template-columns: 160px 1fr 130px; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.svc { font-weight: 600; }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 24px; }
.bars i { flex: 1; background: var(--accent2); opacity: .7; border-radius: 2px; animation: eq 1.6s ease-in-out infinite; }
.bars i:nth-child(2n) { animation-delay: .2s; }
.bars i:nth-child(3n) { animation-delay: .4s; }
.bars i:nth-child(5n) { animation-delay: .6s; }
@keyframes eq { 0%,100% { height: 30%; } 50% { height: 100%; } }
.ok { text-align: right; color: var(--ok); font-family: var(--mono); font-size: 13px; }
.status-row.down .ok { color: var(--danger); }
.status-note { margin-top: 18px; color: var(--dim); font-size: 14px; }
.status-note a { color: var(--accent2); }

/* ---------- roles ---------- */
.roles { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.role { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 26px 4px; border-bottom: 1px solid var(--line); }
.role h3 { font-family: var(--display); font-size: 20px; font-weight: 500; }
.role .meta { color: var(--dim); font-size: 13px; margin: 4px 0 8px; }
.role-desc { color: var(--muted); max-width: 60ch; }
.role .loc { color: var(--accent2); font-family: var(--mono); font-size: 13px; }

/* ---------- roasters / events ---------- */
.roasters { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-top: 22px; }
.roaster { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.roaster h3 { font-family: var(--display); font-size: 17px; font-weight: 500; }
.roaster p { color: var(--muted); font-size: 14px; }
.origin { font-family: var(--mono); font-size: 13px; color: var(--accent2); }
.events { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.events li { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.events li svg { color: var(--accent); flex: 0 0 auto; }

/* ---------- footer: giant wordmark ---------- */
.footer-word { border-top: 1px solid var(--line); padding: 70px 0 40px; overflow: hidden; position: relative; }
.fw-word { font-family: var(--display); font-weight: 700; font-size: clamp(3.4rem, 13vw, 12rem); letter-spacing: -.04em; line-height: .9; text-align: center;
  background: linear-gradient(180deg, rgba(242,237,228,.16), rgba(242,237,228,.02));
  -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; margin-bottom: 34px; }
.fw-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; border-top: 1px solid var(--line); padding-top: 26px; }
.brand-line { font-family: var(--display); font-size: 16px; }
.oss { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.oss a { color: var(--muted); text-decoration: underline; }
.fw-links { display: flex; flex-wrap: wrap; gap: 14px 24px; margin: 22px 0; }
.fw-links a { color: var(--muted); font-size: 14px; }
.fw-links a:hover { color: var(--accent); }
.fw-ca { margin-bottom: 16px; }
.ca-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-family: var(--mono); font-size: 12.5px; }
.ca-label { color: var(--dim); text-transform: uppercase; letter-spacing: .1em; font-size: 10.5px; }
.ca-code { color: var(--accent2); }
.ca-copy { background: none; border: 0; color: var(--accent); cursor: pointer; font-family: var(--mono); font-size: 12px; }
.fw-base { border-top: 1px solid var(--line2); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--dim); font-size: 13px; }
.fw-base a { color: var(--muted); }
.hidden { display: none !important; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .editorial, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-media { order: 2; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-right .btn { display: none; }
  .hm-small { right: 4px; bottom: -24px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .features { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; gap: 8px; }
  .frow .ico { flex-direction: row; align-items: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .status-row { grid-template-columns: 1fr; gap: 8px; }
  .tl-item, .rm-item { grid-template-columns: 1fr; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
