@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #171714;
  --ink-soft: #5c5a52;
  --paper: #f2f0e9;
  --paper-deep: #e4e0d6;
  --acid: #d7fb62;
  --coral: #ff6e57;
  --blue: #90c8ff;
  --violet: #b7a2ff;
  --amber: #f2c65d;
  --mint: #9be3c1;
  --white: #fffdf7;
  --line: rgba(23, 23, 20, .18);
  --line-light: rgba(242, 240, 233, .22);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Helvetica, sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --shadow: 0 24px 70px rgba(23, 23, 20, .11);
  --ease: cubic-bezier(.22, .8, .22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 1.55; overflow-x: hidden; }
body.is-locked { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; color: inherit; }
::selection { color: var(--ink); background: var(--acid); }

.grain { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .075; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E"); }
.cursor-orb { width: 18px; height: 18px; position: fixed; z-index: 30; pointer-events: none; border: 1px solid var(--ink); border-radius: 50%; opacity: 0; transform: translate(-50%, -50%); transition: width .25s, height .25s, opacity .25s, background .25s; }
@media (pointer: fine) { .cursor-orb { opacity: .38; } body:has(a:hover) .cursor-orb, body:has(button:hover) .cursor-orb { width: 34px; height: 34px; background: var(--acid); opacity: .5; } }

.site-header { height: 84px; position: relative; z-index: 10; padding: 0 5.2vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(242, 240, 233, .86); backdrop-filter: blur(14px); }
.brand-lockup { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.brand-mark { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--acid); font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1; }
.brand-word { font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: .15em; }
.brand-note { margin-left: 5px; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 35px; margin-left: auto; margin-right: 50px; }
.desktop-nav a, .mobile-nav a { font-family: var(--mono); font-size: 11px; letter-spacing: .02em; text-transform: uppercase; transition: color .2s ease; }
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--coral); }
.desktop-nav span, .mobile-nav span { margin-left: 7px; color: var(--ink-soft); font-size: 9px; }
.header-actions { display: flex; align-items: center; gap: 24px; }
.text-button, .bag-button { padding: 0; background: transparent; font-family: var(--mono); font-size: 11px; letter-spacing: .03em; }
.text-button:hover, .bag-button:hover { color: var(--coral); }
.keycap { display: inline-block; margin-left: 7px; padding: 2px 5px; border: 1px solid var(--line); border-radius: 3px; color: var(--ink-soft); font-size: 9px; }
.bag-count { min-width: 17px; height: 17px; display: inline-grid; place-items: center; margin-left: 6px; border-radius: 50%; background: var(--acid); font-size: 9px; transition: transform .25s var(--ease); }
.bag-count.bump { transform: scale(1.35) rotate(-8deg); }
.menu-button { display: none; width: 32px; height: 32px; padding: 8px 5px; background: transparent; }
.menu-button span { display: block; height: 1px; margin: 5px 0; background: var(--ink); transition: transform .25s var(--ease); }
.mobile-nav { display: none; }

.hero { min-height: 660px; position: relative; display: grid; grid-template-columns: minmax(300px, .84fr) minmax(460px, 1.16fr); gap: 4vw; padding: 76px 8.5vw 90px; overflow: hidden; }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 620px; }
.kicker, .eyebrow, .tiny-label { margin: 0; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.kicker { display: flex; align-items: center; gap: 9px; color: var(--ink); }
.live-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255, 110, 87, .14); animation: pulse 2.3s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(255, 110, 87, .14); } 50% { box-shadow: 0 0 0 7px rgba(255, 110, 87, 0); } }
.hero h1 { margin: 25px 0 28px; font-family: var(--serif); font-size: clamp(68px, 8.1vw, 132px); font-weight: 600; letter-spacing: -.075em; line-height: .79; }
.hero h1 em, h2 em, .manifesto-section em, .join-panel em { color: var(--coral); font-style: italic; font-weight: 500; }
.hero-lede { max-width: 375px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.85; }
.hero-cta-row { display: flex; align-items: center; gap: 13px; margin-top: 34px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 0 19px; border: 1px solid var(--ink); border-radius: 1px; font-family: var(--mono); font-size: 11px; letter-spacing: .025em; transition: transform .25s var(--ease), background .25s ease, color .25s ease, box-shadow .25s ease; }
.button span { font-size: 18px; line-height: 1; }
.button-dark { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--acid); }
.button-dark:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--acid); }
.button-quiet { border-color: var(--line); background: transparent; }
.button-quiet:hover { background: var(--acid); border-color: var(--ink); transform: translateY(-2px); }
.hero-footnote { display: flex; align-items: center; gap: 10px; margin-top: 57px; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.hero-footnote .rule { width: 38px; height: 1px; background: var(--line); }

.hero-art { min-height: 510px; position: relative; align-self: center; isolation: isolate; }
.art-grid { position: absolute; inset: 8% 2% 2% 10%; opacity: .35; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(-8deg); mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent); }
.art-orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; transform: rotate(-24deg); }
.orbit-a { width: 82%; height: 56%; top: 19%; left: 7%; border-color: rgba(255, 110, 87, .36); }
.orbit-b { width: 55%; height: 84%; top: 2%; left: 25%; border-color: rgba(23, 23, 20, .25); transform: rotate(48deg); }
.hero-card { position: absolute; box-shadow: var(--shadow); }
.hero-card-main { width: min(350px, 56%); min-height: 355px; top: 19%; left: 25%; z-index: 2; display: flex; flex-direction: column; padding: 21px 22px 19px; background: var(--acid); transform: rotate(5deg); animation: float-card 7s ease-in-out infinite; }
@keyframes float-card { 0%, 100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-9px); } }
.hero-card-top, .hero-card-bottom { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.hero-card-index { opacity: .6; }
.signal-glyph { width: 55px; height: 55px; display: grid; place-items: center; margin: 51px 0 21px; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); font-size: 31px; }
.signal-title { margin: 0; font-family: var(--serif); font-size: 34px; letter-spacing: -.05em; line-height: .95; }
.signal-title span { font-style: italic; font-weight: 500; }
.signal-lines { display: flex; flex: 1; flex-direction: column; justify-content: center; gap: 9px; }
.signal-lines i { display: block; height: 1px; background: var(--ink); opacity: .34; }
.signal-lines i:nth-child(1) { width: 88%; }.signal-lines i:nth-child(2) { width: 63%; }.signal-lines i:nth-child(3) { width: 76%; }.signal-lines i:nth-child(4) { width: 42%; }
.status-chip { padding: 4px 6px; border: 1px solid var(--ink); border-radius: 20px; font-size: 8px; }
.hero-card-note { width: 175px; min-height: 201px; top: 3%; right: 3%; z-index: 3; padding: 20px 17px; background: var(--coral); transform: rotate(-7deg); animation: float-note 8s ease-in-out 1s infinite; }
@keyframes float-note { 0%, 100% { transform: rotate(-7deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(8px); } }
.note-pin { font-family: var(--mono); font-size: 18px; }.hero-card-note p { margin: 22px 0 25px; font-family: var(--serif); font-size: 23px; letter-spacing: -.045em; line-height: .98; }.hero-card-note strong { font-style: italic; font-weight: 500; }.note-sign { font-family: var(--mono); font-size: 9px; }
.hero-stamp { position: absolute; right: 9%; bottom: 7%; z-index: 4; width: 92px; height: 92px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper); font-family: var(--mono); font-size: 8px; line-height: 1.2; letter-spacing: .13em; transform: rotate(11deg); }
.hero-coordinates { position: absolute; bottom: 1%; left: 5%; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; line-height: 1.45; }

.marquee-band { overflow: hidden; padding: 13px 0 12px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--ink); color: var(--acid); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 34px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-track b { color: var(--coral); font-family: var(--serif); font-size: 17px; font-weight: 500; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-shell { width: min(1280px, 83vw); margin: 0 auto; }
.catalog-section { padding: 133px 0 150px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2, .workbench-heading h2, .faq-heading h2 { margin: 19px 0 0; font-family: var(--serif); font-size: clamp(52px, 6vw, 86px); font-weight: 600; letter-spacing: -.07em; line-height: .88; }
.heading-dot { color: var(--coral); }
.section-intro { margin: 0 0 4px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; text-align: right; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 64px 0 25px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.filter-tabs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.filter-tab { padding: 8px 11px 7px; border: 1px solid transparent; border-radius: 30px; background: transparent; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; transition: .2s ease; }
.filter-tab span { margin-left: 5px; color: inherit; opacity: .55; font-size: 8px; }
.filter-tab:hover, .filter-tab.is-active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.search-field { min-width: 210px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid var(--ink); }
.search-field span { font-size: 22px; line-height: 1; }.search-field input { width: 100%; padding: 7px 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }.search-field input::placeholder { color: var(--ink-soft); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.product-card { min-height: 380px; position: relative; display: flex; flex-direction: column; padding: 22px 22px 20px; overflow: hidden; border: 1px solid var(--ink); background: var(--white); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.product-card:hover { transform: translateY(-7px) rotate(-.35deg); box-shadow: 9px 9px 0 var(--acid); }
.product-card.is-featured { grid-column: span 2; min-height: 430px; background: var(--acid); }
.product-card[data-accent="coral"] { background: var(--coral); }.product-card[data-accent="blue"] { background: var(--blue); }.product-card[data-accent="violet"] { background: var(--violet); }.product-card[data-accent="amber"] { background: var(--amber); }.product-card[data-accent="mint"] { background: var(--mint); }
.card-top, .card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.card-top .card-index { opacity: .52; }.card-status { display: inline-flex; align-items: center; gap: 5px; }.card-status::before { width: 5px; height: 5px; content: ""; display: block; border-radius: 50%; background: currentColor; }
.card-glyph { width: 66px; height: 66px; display: grid; place-items: center; margin: 43px 0 22px; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); font-size: 29px; letter-spacing: -.08em; }
.product-card:not(.is-featured) .card-glyph { width: 52px; height: 52px; margin-top: 37px; margin-bottom: 18px; font-size: 22px; }
.card-category { margin: 0 0 9px; font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.product-card h3 { max-width: 420px; margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.4vw, 54px); font-weight: 600; letter-spacing: -.06em; line-height: .9; }
.product-card:not(.is-featured) h3 { font-size: 31px; }
.card-tagline { max-width: 400px; margin: 13px 0 0; font-family: var(--serif); font-size: 17px; letter-spacing: -.02em; line-height: 1.13; }.product-card:not(.is-featured) .card-tagline { font-size: 15px; }
.card-description { max-width: 390px; margin: 12px 0 0; color: rgba(23, 23, 20, .68); font-size: 12px; line-height: 1.6; }
.card-bottom { margin-top: auto; padding-top: 24px; }.card-price { font-family: var(--serif); font-size: 24px; letter-spacing: -.04em; }.card-price small { margin-left: 3px; font-family: var(--mono); font-size: 8px; letter-spacing: .02em; }
.card-actions { display: flex; align-items: center; gap: 12px; }.card-action { padding: 8px 0; border-bottom: 1px solid var(--ink); background: transparent; font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }.card-action:hover { color: var(--coral); border-color: var(--coral); }.card-action.added { color: var(--coral); }
.card-index-badge { position: absolute; right: 21px; top: 51px; font-family: var(--mono); font-size: 9px; opacity: .6; }.product-card.is-featured .card-index-badge { top: 23px; }
.empty-state { padding: 80px 0; text-align: center; }.empty-state > span { font-family: var(--serif); font-size: 38px; }.empty-state p { margin: 11px 0; font-family: var(--serif); font-size: 24px; }.text-link { padding: 0; border-bottom: 1px solid currentColor; background: transparent; font-family: var(--mono); font-size: 10px; }

.workbench-section { padding: 20px 0 150px; }.workbench-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; align-items: end; }.workbench-heading .eyebrow, .workbench-heading h2 { grid-column: 1; }.workbench-heading > p { grid-column: 2; grid-row: 2; margin: 0 0 4px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.workbench { display: grid; grid-template-columns: 250px 1fr; min-height: 550px; margin-top: 62px; border: 1px solid var(--ink); background: #20201c; color: var(--paper); box-shadow: 12px 12px 0 var(--coral); }
.workbench-sidebar { display: flex; flex-direction: column; padding: 25px 18px 18px; border-right: 1px solid var(--line-light); }.workbench-sidebar .tiny-label { color: rgba(242, 240, 233, .5); }
.mode-button { display: grid; grid-template-columns: 27px 1fr 17px; gap: 7px; align-items: start; width: 100%; margin-top: 11px; padding: 12px 8px; border: 1px solid transparent; background: transparent; color: rgba(242, 240, 233, .55); text-align: left; transition: .25s ease; }.mode-button:hover, .mode-button.is-active { border-color: var(--acid); background: rgba(215, 251, 98, .09); color: var(--paper); }.mode-index { font-family: var(--mono); font-size: 9px; color: var(--coral); }.mode-button b, .mode-button small { display: block; }.mode-button b { font-size: 12px; font-weight: 600; }.mode-button small { margin-top: 3px; font-size: 10px; line-height: 1.4; opacity: .67; }.mode-button i { padding-top: 1px; font-family: var(--mono); font-size: 13px; font-style: normal; opacity: .5; }.mode-button.is-active i { color: var(--acid); opacity: 1; }
.sidebar-bottom { display: flex; align-items: center; gap: 8px; margin-top: auto; padding: 15px 7px 0; border-top: 1px solid var(--line-light); color: rgba(242, 240, 233, .5); font-family: var(--mono); font-size: 8px; }.sidebar-bottom .mono { margin-left: auto; opacity: .55; }
.workbench-main { display: flex; flex-direction: column; padding: 25px 32px 30px; }.workbench-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line-light); color: rgba(242, 240, 233, .62); font-family: var(--mono); font-size: 10px; }.mono { font-family: var(--mono); }
.prompt-area { position: relative; flex: 0 0 auto; margin-top: 27px; }.prompt-area textarea { width: 100%; min-height: 150px; resize: vertical; padding: 0 0 30px; border: 0; outline: 0; background: transparent; color: var(--paper); font-family: var(--serif); font-size: clamp(24px, 2.65vw, 39px); letter-spacing: -.045em; line-height: 1.03; }.textarea-count { position: absolute; right: 0; bottom: 4px; color: rgba(242, 240, 233, .37); font-family: var(--mono); font-size: 9px; }
.workbench-actions { display: flex; align-items: center; gap: 22px; margin-top: 11px; }.workbench-actions .button { border-color: var(--acid); }.workbench-actions .text-button { color: rgba(242, 240, 233, .55); }.workbench-actions .text-button:hover { color: var(--acid); }.button-run { min-height: 42px; padding: 0 14px; box-shadow: 4px 4px 0 var(--coral); font-size: 10px; }.button-run:hover { box-shadow: 6px 6px 0 var(--coral); }.run-icon { font-size: 9px !important; }.button-run kbd { margin-left: 9px; color: rgba(242, 240, 233, .45); font-family: var(--mono); font-size: 8px; }
.demo-output { margin-top: auto; padding: 21px 20px 16px; background: var(--acid); color: var(--ink); }.output-label { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }.output-label .live-dot { width: 5px; height: 5px; background: var(--ink); box-shadow: none; animation: none; }.demo-output p { max-width: 680px; margin: 22px 0 27px; font-family: var(--serif); font-size: clamp(24px, 2.25vw, 34px); letter-spacing: -.045em; line-height: 1.03; }.output-meta { display: flex; align-items: center; gap: 17px; color: rgba(23, 23, 20, .61); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }.copy-output { margin-left: auto; padding: 0 0 2px; border-bottom: 1px solid var(--ink); background: transparent; font-family: var(--mono); font-size: 9px; }.workbench-note { display: flex; align-items: center; gap: 14px; margin: 31px 0 0; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; }.workbench-note span { color: var(--coral); }

.how-section { padding: 0 0 155px; }.ritual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 65px; }.ritual-card { min-height: 355px; position: relative; padding: 23px 23px 21px; border: 1px solid var(--ink); overflow: hidden; transition: transform .35s var(--ease); }.ritual-card:hover { transform: translateY(-7px) rotate(.4deg); }.ritual-card-a { background: var(--blue); }.ritual-card-b { background: var(--coral); }.ritual-card-c { background: var(--acid); }.ritual-number { font-family: var(--mono); font-size: 10px; }.ritual-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 57px 0 25px; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); font-size: 25px; }.ritual-card h3 { margin: 0; font-family: var(--serif); font-size: 43px; letter-spacing: -.06em; line-height: .86; }.ritual-card h3 em { font-style: italic; font-weight: 500; }.ritual-card p { max-width: 220px; margin: 18px 0 0; color: rgba(23, 23, 20, .7); font-size: 12px; line-height: 1.6; }.ritual-arrow { position: absolute; right: 22px; bottom: 20px; font-size: 23px; }

.manifesto-section { min-height: 610px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--ink); color: var(--paper); }.manifesto-section::before { width: 650px; height: 650px; position: absolute; top: -260px; right: -80px; content: ""; border: 1px solid rgba(215, 251, 98, .3); border-radius: 50%; box-shadow: 0 0 0 48px rgba(215, 251, 98, .03), 0 0 0 96px rgba(215, 251, 98, .03), 0 0 0 144px rgba(215, 251, 98, .03); }.manifesto-inner { position: relative; z-index: 1; width: min(760px, 78vw); }.manifesto-inner .eyebrow { color: rgba(242, 240, 233, .53); }.manifesto-inner blockquote { margin: 42px 0 37px; font-family: var(--serif); font-size: clamp(48px, 7.6vw, 112px); letter-spacing: -.08em; line-height: .83; }.manifesto-inner blockquote em { color: var(--acid); }.manifesto-byline { margin: 0; color: var(--coral); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }.manifesto-side-note { position: absolute; right: 7vw; bottom: 54px; color: rgba(242, 240, 233, .42); font-family: var(--mono); font-size: 9px; line-height: 1.5; letter-spacing: .11em; text-align: right; }.manifesto-side-note span { display: block; margin-top: 9px; color: var(--acid); font-family: var(--serif); font-size: 23px; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; padding: 145px 0 130px; }.faq-heading h2 { font-size: clamp(49px, 5.5vw, 80px); }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 23px; letter-spacing: -.035em; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary b { color: var(--coral); font-family: var(--mono); font-size: 17px; font-weight: 400; transition: transform .25s ease; }.faq-list details[open] summary b { transform: rotate(45deg); }.faq-list details p { max-width: 570px; margin: -4px 38px 24px 0; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }

.join-section { padding: 0 0 138px; }.join-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 55px 56px 52px; border: 1px solid var(--ink); background: var(--coral); }.join-panel h2 { margin: 24px 0 0; font-family: var(--serif); font-size: clamp(55px, 6vw, 90px); letter-spacing: -.08em; line-height: .82; }.join-form { align-self: end; padding-bottom: 5px; }.join-form label { display: block; margin-bottom: 11px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }.join-input-row { display: flex; align-items: center; border-bottom: 1px solid var(--ink); }.join-input-row input { width: 100%; padding: 10px 0; border: 0; outline: 0; background: transparent; font-family: var(--serif); font-size: 25px; letter-spacing: -.04em; }.join-input-row input::placeholder { color: rgba(23, 23, 20, .45); }.join-input-row button { width: 37px; height: 37px; background: var(--ink); color: var(--acid); font-size: 20px; transition: transform .2s ease; }.join-input-row button:hover { transform: rotate(-8deg); }.join-form > p { margin: 14px 0 0; color: rgba(23, 23, 20, .62); font-size: 11px; }.form-note { display: block; min-height: 18px; margin-top: 9px; font-family: var(--mono); font-size: 9px; }

.site-footer { padding: 43px 5.2vw 25px; background: var(--ink); color: var(--paper); }.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; min-height: 165px; }.footer-top .brand-mark { background: var(--acid); color: var(--ink); }.footer-top .brand-note { color: rgba(242, 240, 233, .48); }.footer-top > p { margin: 0; color: rgba(242, 240, 233, .65); font-family: var(--serif); font-size: 23px; letter-spacing: -.035em; line-height: 1; }.footer-orbit { width: 105px; height: 105px; display: grid; place-items: center; justify-self: end; border: 1px solid rgba(215, 251, 98, .65); border-radius: 50%; color: var(--acid); font-family: var(--serif); font-size: 31px; transform: rotate(14deg); }.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid var(--line-light); color: rgba(242, 240, 233, .46); font-family: var(--mono); font-size: 9px; }.footer-links { display: flex; gap: 20px; }.footer-links a:hover, .footer-bottom > a:hover { color: var(--acid); }

.cart-drawer, .modal-layer { position: fixed; inset: 0; z-index: 50; visibility: hidden; pointer-events: none; }.cart-drawer.is-open, .modal-layer.is-open { visibility: visible; pointer-events: auto; }.drawer-scrim, .modal-scrim { position: absolute; inset: 0; background: rgba(23, 23, 20, .56); opacity: 0; transition: opacity .35s ease; }.cart-drawer.is-open .drawer-scrim, .modal-layer.is-open .modal-scrim { opacity: 1; }.drawer-panel { width: min(460px, 100vw); height: 100%; position: absolute; top: 0; right: 0; display: flex; flex-direction: column; padding: 27px 27px 22px; background: var(--paper); transform: translateX(100%); transition: transform .45s var(--ease); }.cart-drawer.is-open .drawer-panel { transform: translateX(0); }.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); }.drawer-header h2 { margin: 13px 0 0; font-family: var(--serif); font-size: 48px; letter-spacing: -.07em; line-height: .8; }.close-button { width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 21px; line-height: 1; transition: transform .25s ease, background .25s ease; }.close-button:hover { background: var(--acid); transform: rotate(90deg); }.cart-items { overflow: auto; padding: 8px 0; }.cart-item { display: grid; grid-template-columns: 42px 1fr auto; gap: 13px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); }.cart-item-glyph { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); font-size: 18px; }.cart-item h3 { margin: 0; font-family: var(--serif); font-size: 20px; letter-spacing: -.04em; line-height: 1; }.cart-item p { margin: 5px 0 0; color: var(--ink-soft); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }.cart-item-price { font-family: var(--mono); font-size: 10px; }.quantity-control { display: flex; align-items: center; gap: 8px; margin-top: 8px; }.quantity-control button { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 13px; line-height: 1; }.quantity-control button:hover { background: var(--acid); border-color: var(--ink); }.quantity-control span { min-width: 13px; text-align: center; font-family: var(--mono); font-size: 9px; }.remove-item { padding: 0; color: var(--ink-soft); background: transparent; font-family: var(--mono); font-size: 8px; }.remove-item:hover { color: var(--coral); }.cart-empty { display: none; flex: 1; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.cart-empty.is-visible { display: flex; }.cart-empty > span { font-family: var(--serif); font-size: 42px; }.cart-empty p { margin: 10px 0 18px; font-family: var(--serif); font-size: 23px; line-height: 1; }.cart-empty a { border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 9px; }.drawer-footer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; font-family: var(--mono); font-size: 10px; }.cart-total strong { font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: -.04em; }.checkout-button { width: 100%; }.drawer-footnote { margin: 11px 0 0; color: var(--ink-soft); font-family: var(--mono); font-size: 8px; line-height: 1.5; }

.modal-layer { display: grid; place-items: center; padding: 20px; }.modal-layer.is-open .modal-scrim { opacity: 1; }.product-modal { width: min(570px, 100%); position: relative; padding: 39px 43px 42px; border: 1px solid var(--ink); background: var(--paper); box-shadow: 10px 10px 0 var(--acid); opacity: 0; transform: translateY(20px) scale(.97); transition: opacity .35s ease, transform .45s var(--ease); }.modal-layer.is-open .product-modal { opacity: 1; transform: translateY(0) scale(1); }.product-modal .close-button { position: absolute; top: 18px; right: 18px; }.modal-accent { width: 70px; height: 9px; margin-bottom: 29px; background: var(--acid); }.product-modal[data-accent="coral"] .modal-accent { background: var(--coral); }.product-modal[data-accent="blue"] .modal-accent { background: var(--blue); }.product-modal[data-accent="violet"] .modal-accent { background: var(--violet); }.product-modal[data-accent="amber"] .modal-accent { background: var(--amber); }.product-modal[data-accent="mint"] .modal-accent { background: var(--mint); }.product-modal h2 { max-width: 430px; margin: 16px 0 11px; font-family: var(--serif); font-size: 55px; letter-spacing: -.075em; line-height: .84; }.modal-tagline { margin: 0; font-family: var(--serif); font-size: 20px; letter-spacing: -.035em; }.modal-price { margin-top: 23px; font-family: var(--mono); font-size: 11px; }.modal-price strong { font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: -.05em; }.product-modal ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 17px; margin: 30px 0 32px; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }.product-modal li { display: flex; gap: 8px; font-size: 11px; }.product-modal li::before { content: "✳"; color: var(--coral); font-family: var(--serif); }.modal-actions { display: flex; gap: 11px; }.modal-actions .button { flex: 1; }

.toast { max-width: min(390px, calc(100vw - 34px)); position: fixed; z-index: 80; right: 17px; bottom: 17px; padding: 13px 16px; border: 1px solid var(--ink); background: var(--acid); box-shadow: 4px 4px 0 var(--ink); opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .3s ease, transform .3s var(--ease); font-family: var(--mono); font-size: 10px; line-height: 1.4; }.toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }.reveal.is-visible { opacity: 1; transform: translateY(0); }.reveal-delay-1 { transition-delay: .09s; }.reveal-delay-2 { transition-delay: .18s; }

@media (max-width: 950px) {
  .site-header { height: 72px; padding: 0 5vw; }.desktop-nav, .header-actions .text-button { display: none; }.header-actions { gap: 17px; }.menu-button { display: block; }.mobile-nav { position: absolute; top: 71px; right: 5vw; left: 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-height: 0; overflow: hidden; border: 0 solid var(--ink); background: var(--paper); transition: max-height .35s var(--ease), border-width .35s ease; }.mobile-nav.is-open { max-height: 160px; border-width: 1px; }.mobile-nav a { display: flex; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); }.mobile-nav a:nth-child(odd) { border-right: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 72px 8vw 25px; }.hero-copy { max-width: 650px; }.hero-art { min-height: 460px; margin-top: 28px; }.hero-card-main { left: 20%; }.hero-card-note { right: 6%; }.hero-footnote { margin-top: 42px; }
  .section-shell { width: 84vw; }.catalog-section { padding-top: 100px; }.product-grid { grid-template-columns: repeat(2, 1fr); }.product-card.is-featured { grid-column: span 2; }.workbench { grid-template-columns: 1fr; }.workbench-sidebar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; border-right: 0; border-bottom: 1px solid var(--line-light); }.workbench-sidebar .tiny-label { grid-column: 1 / -1; margin-bottom: 3px; }.mode-button { margin-top: 0; grid-template-columns: 1fr; }.mode-button .mode-index, .mode-button i { display: none; }.mode-button small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.sidebar-bottom { display: none; }.workbench-main { min-height: 470px; }
  .faq-section { grid-template-columns: 1fr; gap: 48px; }.faq-heading h2 { margin-top: 15px; }.join-panel { gap: 50px; }
}

@media (max-width: 610px) {
  body { font-size: 14px; }.brand-note { display: none; }.brand-word { font-size: 12px; letter-spacing: .12em; }.site-header { padding: 0 17px; }.header-actions { gap: 9px; }.bag-button { font-size: 10px; }.mobile-nav { right: 17px; left: 17px; }.hero { padding: 58px 17px 15px; }.hero h1 { margin-top: 22px; font-size: clamp(68px, 20vw, 100px); }.hero-lede { max-width: 320px; font-size: 13px; }.hero-cta-row { flex-wrap: wrap; margin-top: 27px; }.hero-footnote { margin-top: 34px; font-size: 8px; }.hero-art { min-height: 360px; margin-top: 8px; }.art-grid { inset: 10% -18% 0 -5%; background-size: 29px 29px; }.hero-card-main { width: 59%; min-height: 255px; left: 17%; padding: 14px; }.hero-card-top, .hero-card-bottom { font-size: 7px; }.signal-glyph { width: 39px; height: 39px; margin: 30px 0 14px; font-size: 22px; }.signal-title { font-size: 24px; }.signal-lines { gap: 6px; }.hero-card-note { width: 128px; min-height: 151px; top: 4%; right: 1%; padding: 13px; }.hero-card-note p { margin: 12px 0 17px; font-size: 17px; }.note-pin { font-size: 13px; }.note-sign { font-size: 7px; }.hero-stamp { right: 6%; bottom: 3%; width: 67px; height: 67px; font-size: 6px; }.hero-coordinates { left: 0; bottom: 0; font-size: 7px; }.marquee-track { font-size: 9px; gap: 20px; }.section-shell { width: calc(100% - 34px); }.catalog-section { padding: 86px 0 105px; }.section-heading { display: block; }.section-heading h2, .workbench-heading h2, .faq-heading h2 { font-size: 58px; }.section-intro { margin-top: 24px; font-size: 12px; text-align: left; }.catalog-toolbar { display: block; margin-top: 46px; }.filter-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 10px; }.filter-tab { flex: 0 0 auto; }.search-field { min-width: 0; margin-top: 15px; }.product-grid { grid-template-columns: 1fr; gap: 12px; }.product-card, .product-card.is-featured { grid-column: auto; min-height: 350px; }.product-card.is-featured { min-height: 385px; }.product-card h3, .product-card:not(.is-featured) h3 { font-size: 37px; }.card-tagline, .product-card:not(.is-featured) .card-tagline { font-size: 17px; }.workbench-section { padding-bottom: 105px; }.workbench-heading { display: block; }.workbench-heading > p { margin-top: 24px; font-size: 12px; }.workbench { margin-top: 42px; box-shadow: 7px 7px 0 var(--coral); }.workbench-sidebar { grid-template-columns: repeat(2, 1fr); padding: 17px 12px 12px; }.mode-button { padding: 10px 7px; }.mode-button b { font-size: 10px; }.mode-button small { font-size: 8px; }.workbench-main { min-height: 500px; padding: 18px 17px 18px; }.workbench-topline { font-size: 8px; }.workbench-topline .mono { font-size: 7px; }.prompt-area textarea { min-height: 170px; font-size: 28px; }.workbench-actions { flex-wrap: wrap; gap: 15px; }.demo-output { padding: 17px 14px 13px; }.demo-output p { margin: 18px 0 23px; font-size: 26px; }.output-meta { flex-wrap: wrap; gap: 8px 12px; font-size: 7px; }.copy-output { margin-left: 0; }.workbench-note { align-items: flex-start; line-height: 1.6; }.ritual-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 43px; }.ritual-card { min-height: 305px; }.ritual-icon { margin-top: 38px; }.ritual-card h3 { font-size: 42px; }.how-section { padding-bottom: 105px; }.manifesto-section { min-height: 470px; justify-content: start; padding: 0 17px; }.manifesto-inner { width: 100%; }.manifesto-inner blockquote { margin-top: 35px; font-size: 57px; }.manifesto-side-note { right: 17px; bottom: 27px; font-size: 7px; }.faq-section { padding: 92px 0 88px; }.faq-list summary { padding: 18px 0; font-size: 19px; }.faq-list details p { margin-right: 0; font-size: 12px; }.join-section { padding-bottom: 90px; }.join-panel { display: block; padding: 34px 22px 29px; }.join-panel h2 { font-size: 61px; }.join-form { margin-top: 53px; }.join-input-row input { font-size: 21px; }.site-footer { padding: 34px 17px 18px; }.footer-top { grid-template-columns: 1fr 1fr; min-height: 220px; }.footer-top > p { grid-column: 1 / -1; grid-row: 2; align-self: end; font-size: 20px; }.footer-orbit { width: 75px; height: 75px; font-size: 24px; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; font-size: 8px; }.footer-links { flex-wrap: wrap; gap: 7px 15px; }.drawer-panel { padding: 23px 17px 18px; }.product-modal { padding: 32px 22px 25px; }.product-modal h2 { font-size: 47px; }.product-modal ul { grid-template-columns: 1fr; gap: 7px; margin-top: 24px; }.modal-actions { flex-direction: column; }.toast { right: 12px; bottom: 12px; }
}

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