/* ═══════════════════════════════════════════
   AKRYZEN.ONLINE — Layout #73 Gridless Freeform
   Futuristic dark premium · Syne + IBM Plex JP
   ═══════════════════════════════════════════ */

:root {
    --void: #060608;
    --surface: #0e0e12;
    --surface-2: #16161c;
    --ink: #e8e6e3;
    --ink-muted: #8a8890;
    --cyan: #00e5c7;
    --cyan-dim: rgba(0, 229, 199, 0.15);
    --amber: #f5a623;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    --font-display: 'Syne', sans-serif;
    --font-body: 'IBM Plex Sans JP', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --nav-h: 88px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="light"] {
    --void: #f4f2ef;
    --surface: #ffffff;
    --surface-2: #eceae6;
    --ink: #12111a;
    --ink-muted: #6b6974;
    --border: rgba(0, 0, 0, 0.1);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--amber); }
ul { list-style: none; }

.visually-hidden, .skip-link {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
}
.skip-link:focus {
    position: fixed; top: 8px; left: 8px; z-index: 9999;
    width: auto; height: auto; clip: auto;
    padding: 0.75rem 1.25rem; background: var(--cyan); color: var(--void);
}

/* ── Typography ── */
.az-micro {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
}

.az-display, .az-heading {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.az-display { font-size: clamp(2.8rem, 8vw, 5.5rem); }
.az-heading { font-size: clamp(2rem, 5vw, 3.5rem); }
.az-heading--sm { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.az-heading em { font-style: normal; color: var(--cyan); }

.az-lead { font-size: 1.05rem; color: var(--ink-muted); max-width: 42ch; }

.az-price {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--amber);
}

.az-link {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

/* ── Buttons ── */
.az-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.85rem 1.75rem;
    font-family: var(--font-mono); font-size: 0.78rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 1px solid transparent; border-radius: 2px;
    cursor: pointer; transition: all 0.35s var(--ease);
    background: transparent; color: var(--ink);
}
.az-btn--glow {
    background: var(--cyan); color: var(--void);
    box-shadow: 0 0 30px var(--cyan-dim);
}
.az-btn--glow:hover {
    background: var(--amber); color: var(--void);
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.3);
    transform: translateY(-2px);
}
.az-btn--ghost { border-color: var(--border); }
.az-btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.az-btn--sm { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
.az-btn--lg { padding: 1rem 2.25rem; }
.az-btn--full { width: 100%; }

/* ── Header — asymmetric split plane ── */
.az-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    pointer-events: none;
}

.az-header__plane {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: stretch;
    gap: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    min-height: var(--nav-h);
    background: rgba(6, 6, 8, 0.82);
    backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    pointer-events: all;
    transition: background 0.45s, box-shadow 0.45s, border-color 0.45s;
}
[data-theme="light"] .az-header__plane {
    background: rgba(244, 242, 239, 0.9);
}
.az-header.is-scrolled .az-header__plane {
    background: rgba(6, 6, 8, 0.96);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 229, 199, 0.15);
}
[data-theme="light"] .az-header.is-scrolled .az-header__plane {
    background: rgba(255, 255, 255, 0.97);
}

.az-header__brand-col {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 0.85rem 1.5rem 0.85rem 0;
    border-right: 1px solid var(--border);
}

.az-header__brand {
    display: flex; align-items: center; gap: 0.65rem;
    color: var(--ink); text-decoration: none;
    transition: opacity 0.25s;
}
.az-header__brand:hover { opacity: 0.85; color: var(--ink); }

.az-header__mark {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    font-family: var(--font-display); font-weight: 800; font-size: 0.72rem;
    letter-spacing: -0.04em;
    background: var(--cyan); color: var(--void);
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    flex-shrink: 0;
}

.az-header__name { display: flex; align-items: baseline; gap: 0.1em; line-height: 1; }
.az-header__name-main {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.05rem; letter-spacing: -0.02em;
}
.az-header__name-tld {
    font-family: var(--font-mono); font-size: 0.62rem;
    color: var(--ink-muted); letter-spacing: 0.02em;
}

.az-header__coord {
    display: block; margin-top: 0.3rem;
    font-family: var(--font-mono); font-size: 0.58rem;
    letter-spacing: 0.1em; color: var(--ink-muted);
    text-transform: uppercase;
}

/* Footer legacy logo glyph */
.az-logo__glyph { color: var(--cyan); font-size: 2rem; }

.az-header__rail {
    display: flex; align-items: stretch;
    padding: 0 0.5rem;
}

.az-header__rail-link {
    display: flex; flex-direction: column; justify-content: center;
    gap: 0.15rem; padding: 0 1.35rem;
    color: var(--ink-muted); text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
    position: relative;
}
.az-header__rail-link::after {
    content: '';
    position: absolute; bottom: 0; left: 1rem; right: 1rem;
    height: 2px; background: var(--cyan);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.az-header__rail-link:hover,
.az-header__rail-link.is-active { color: var(--ink); }
.az-header__rail-link.is-active::after { transform: scaleX(1); }
.az-header__rail-link:hover { background: rgba(0, 229, 199, 0.04); }

.az-header__rail-idx {
    font-family: var(--font-mono); font-size: 0.58rem;
    letter-spacing: 0.12em; color: var(--cyan); line-height: 1;
}
.az-header__rail-label {
    font-family: var(--font-body); font-size: 0.78rem;
    font-weight: 500; letter-spacing: 0.04em; white-space: nowrap;
}

.az-header__divider {
    width: 1px; align-self: stretch;
    background: var(--border); margin: 0.75rem 0;
}

.az-header__tools {
    display: flex; align-items: stretch;
}

.az-header__tool {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.2rem; min-width: 52px;
    padding: 0 0.65rem;
    background: none; border: none; border-left: 1px solid var(--border);
    color: var(--ink-muted); cursor: pointer;
    text-decoration: none;
    transition: color 0.25s, background 0.25s;
    position: relative;
}
.az-header__tool:first-child { border-left: none; }
.az-header__tool:hover { color: var(--cyan); background: var(--cyan-dim); }

.az-header__tool-label {
    font-family: var(--font-mono); font-size: 0.52rem;
    letter-spacing: 0.08em; text-transform: uppercase;
}

.az-cart__count {
    position: absolute; top: 0.55rem; right: 0.45rem;
    min-width: 15px; height: 15px; padding: 0 3px;
    font-size: 0.55rem; font-family: var(--font-mono);
    background: var(--amber); color: var(--void);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.5); transition: all 0.3s;
}
.az-cart__count.has-items { opacity: 1; transform: scale(1); }

.az-header__menu {
    display: none;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; min-width: 64px;
    padding: 0 0.75rem;
    background: none; border: none; border-left: 1px solid var(--border);
    cursor: pointer; color: var(--ink);
}
.az-header__menu-bar {
    display: block; width: 22px; height: 1.5px;
    background: currentColor;
    transition: transform 0.35s var(--ease), opacity 0.35s;
}
.az-header__menu-text {
    font-family: var(--font-mono); font-size: 0.52rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-top: 2px;
}
.az-header__menu.is-open .az-header__menu-bar:nth-child(1) {
    transform: translateY(3.25px) rotate(45deg);
}
.az-header__menu.is-open .az-header__menu-bar:nth-child(2) {
    transform: translateY(-3.25px) rotate(-45deg);
}
.az-header__menu.is-open .az-header__menu-text { opacity: 0; }

.az-header__slant {
    height: 14px;
    background: var(--void);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    pointer-events: none;
    opacity: 0.6;
}
[data-theme="light"] .az-header__slant { background: var(--void); }

/* Full-screen mobile overlay */
.az-header__overlay {
    position: fixed; inset: 0; z-index: 890;
    background: rgba(6, 6, 8, 0.97);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.45s var(--ease), visibility 0.45s;
    pointer-events: none;
}
[data-theme="light"] .az-header__overlay { background: rgba(244, 242, 239, 0.98); }
.az-header__overlay.is-open {
    opacity: 1; visibility: visible; pointer-events: all;
}

.az-header__overlay-inner {
    width: min(480px, 88vw);
    padding: 2rem;
}

.az-header__overlay-link {
    display: flex; align-items: baseline; gap: 1.25rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink); text-decoration: none;
    opacity: 0; transform: translateX(-24px);
    transition: color 0.25s, padding-left 0.3s;
}
.az-header__overlay.is-open .az-header__overlay-link {
    animation: overlayLinkIn 0.5s var(--ease) forwards;
    animation-delay: calc(var(--i) * 0.07s + 0.1s);
}
@keyframes overlayLinkIn {
    to { opacity: 1; transform: translateX(0); }
}
.az-header__overlay-link:hover {
    color: var(--cyan); padding-left: 0.75rem;
}
.az-header__overlay-idx {
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--cyan); letter-spacing: 0.1em; min-width: 1.5rem;
}
.az-header__overlay-label {
    font-family: var(--font-display); font-size: clamp(1.5rem, 6vw, 2rem);
    font-weight: 700; letter-spacing: -0.02em;
}

.az-header__overlay-foot {
    margin-top: 2.5rem; padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--ink-muted); letter-spacing: 0.04em;
}
.az-header__overlay-foot a {
    display: block; margin-top: 0.35rem;
    font-size: 0.85rem; color: var(--cyan);
}

body.is-menu-open { overflow: hidden; }

/* Search veil */
.search-veil {
    position: fixed; inset: 0; z-index: 950;
    background: rgba(6, 6, 8, 0.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s;
}
.search-veil.is-open { opacity: 1; visibility: visible; }
.search-veil__panel { width: min(560px, 90vw); position: relative; }
.search-veil__close {
    position: absolute; top: -3rem; right: 0;
    background: none; border: none; color: var(--ink);
    font-size: 2rem; cursor: pointer;
}
.search-veil__form { display: flex; gap: 0.75rem; }
.search-veil__form input {
    flex: 1; padding: 1rem 1.25rem;
    background: var(--surface-2); border: 1px solid var(--border);
    color: var(--ink); font-family: var(--font-body); font-size: 1rem;
    border-radius: 2px;
}
.search-veil__form input:focus { outline: none; border-color: var(--cyan); }

/* ── Fade animation ── */
.az-fade {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--d, 0s);
}
.az-fade.is-visible { opacity: 1; transform: translateY(0); }

.az-drift {
    animation: azDrift 8s ease-in-out infinite alternate;
    animation-delay: var(--d, 0s);
}
@keyframes azDrift {
    from { transform: translateY(0) rotate(var(--rot, 0deg)); }
    to { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 2deg)); }
}

/* ══ CANVAS SYSTEM — Gridless Freeform ══ */
.az-canvas {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* ══ HOMEPAGE HERO — Velocity Fracture ══ */
.az-hero-fracture {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--nav-h) + 14px) 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--void);
}

.az-hero-fracture__ambient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 85% 25%, rgba(0, 229, 199, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 35% 35% at 10% 90%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.az-hero-fracture__rail {
    position: absolute;
    left: 1.25rem; top: calc(var(--nav-h) + 2rem);
    bottom: 4rem;
    width: 48px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: space-between;
    border-left: 1px solid var(--border);
    padding-left: 0.75rem;
    z-index: 4;
}

.az-hero-fracture__rail-num {
    font-family: var(--font-mono); font-size: 0.62rem;
    color: var(--cyan); letter-spacing: 0.12em;
    writing-mode: vertical-rl;
}

.az-hero-fracture__rail-text {
    font-family: var(--font-mono); font-size: 0.58rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.az-hero-fracture__scroll {
    display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
    font-family: var(--font-mono); font-size: 0.58rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-muted); text-decoration: none;
    transition: color 0.25s;
}
.az-hero-fracture__scroll:hover { color: var(--cyan); }
.az-hero-fracture__scroll svg { animation: heroBounce 2s ease-in-out infinite; }
@keyframes heroBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.az-hero-fracture__main {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 2rem 5rem;
    min-height: calc(100svh - var(--nav-h) - 52px);
}

.az-hero-fracture__copy { position: relative; z-index: 3; }

.az-hero-fracture__title {
    margin: 0.75rem 0 1.25rem;
    line-height: 0.92;
}

.az-hero-fracture__word {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6.5vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.az-hero-fracture__word--stroke {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--ink);
    text-stroke: 1.5px var(--ink);
}

.az-hero-fracture__word--accent { color: var(--cyan); }

.az-hero-fracture__lead {
    max-width: 42ch;
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.az-hero-fracture__actions {
    display: flex; flex-wrap: wrap; gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.az-hero-fracture__metrics {
    display: flex; gap: 2rem; flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.az-hero-fracture__metrics dt {
    font-family: var(--font-display); font-size: 1.75rem;
    font-weight: 700; color: var(--cyan); line-height: 1;
}
.az-hero-fracture__metrics dd {
    font-size: 0.72rem; color: var(--ink-muted);
    margin-top: 0.25rem;
}

.az-hero-fracture__panels {
    position: relative;
    height: min(72vh, 620px);
    min-height: 360px;
}

.az-hero-fracture__panel {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.15s ease-out;
}
.az-hero-fracture__panel img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.az-hero-fracture__panel--a {
    inset: 0 12% 8% 0;
    clip-path: polygon(0 0, 100% 4%, 92% 100%, 0 96%);
    z-index: 3;
}
.az-hero-fracture__panel--b {
    top: 18%; right: 0; width: 42%; height: 38%;
    clip-path: polygon(8% 0, 100% 6%, 94% 100%, 0 92%);
    z-index: 2;
    opacity: 0.92;
}
.az-hero-fracture__panel--c {
    bottom: 6%; left: 4%; width: 36%; height: 32%;
    clip-path: polygon(0 8%, 92% 0, 100% 100%, 6% 94%);
    z-index: 4;
}

.az-hero-fracture__chip {
    position: absolute; bottom: 12%; right: 6%;
    z-index: 5;
    padding: 0.85rem 1.1rem;
    background: rgba(6, 6, 8, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--cyan);
    min-width: 130px;
}
.az-hero-fracture__chip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0.2rem 0;
}
.az-hero-fracture__chip span:last-child {
    font-family: var(--font-mono); font-size: 0.62rem;
    color: var(--ink-muted);
}

.az-hero-fracture__ticker {
    border-top: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    padding: 0.85rem 0;
}

.az-hero-fracture__ticker-track {
    display: flex; width: max-content;
    animation: heroTicker 28s linear infinite;
}
.az-hero-fracture__ticker-track span {
    font-family: var(--font-mono); font-size: 0.68rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-muted); white-space: nowrap;
    padding-right: 3rem;
}
@keyframes heroTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ══ INNER PAGE HERO BAND ══ */
.az-hero-band {
    position: relative;
    padding-top: calc(var(--nav-h) + 14px);
    overflow: hidden;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.az-hero-band__visual {
    position: absolute; inset: 0;
    pointer-events: none;
}
.az-hero-band__visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.az-hero-band__visual-mask {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, var(--surface) 42%, transparent 72%),
                linear-gradient(0deg, var(--surface) 0%, transparent 35%);
}
[data-theme="light"] .az-hero-band__visual img { opacity: 0.25; }

.az-hero-band--shop .az-hero-band__visual img { object-position: 60% center; }
.az-hero-band--about .az-hero-band__visual img { object-position: center; }
.az-hero-band--faq .az-hero-band__visual img { object-position: 70% 40%; }
.az-hero-band--contact .az-hero-band__visual img { object-position: 50% 60%; }
.az-hero-band--cart .az-hero-band__visual img { object-position: 40% center; opacity: 0.28; }

.az-hero-band--legal {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}
.az-hero-band--legal .az-hero-band__inner {
    min-height: auto;
    padding-bottom: 2rem;
}

.az-hero-band__inner {
    position: relative; z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: flex-end;
}

.az-hero-band__inner--legal { min-height: auto; }

.az-hero-band__meta {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1rem;
}

.az-hero-band__idx {
    font-family: var(--font-display); font-weight: 800;
    font-size: 2.5rem; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--cyan);
    text-stroke: 1px var(--cyan);
    opacity: 0.7;
}

.az-hero-band__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 14ch;
}

.az-hero-band__title--legal {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    max-width: none;
}

.az-hero-band__lead {
    margin-top: 1rem;
    max-width: 48ch;
    color: var(--ink-muted);
    font-size: 0.95rem;
}

.az-hero-band__updated {
    margin-top: 0.75rem;
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--ink-muted);
}

.az-hero-band__cut {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 24px;
    background: var(--void);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    opacity: 0.5;
}
.az-hero-band--legal .az-hero-band__cut { display: none; }

.az-hero-band--shop .az-hero-band__title { max-width: none; }
.az-hero-band--cart .az-hero-band__inner { min-height: 220px; }

/* §2 Stats orbs */
.az-canvas--stats {
    min-height: 70vh;
    background: var(--surface);
}

.az-orb {
    position: absolute;
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface-2);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; gap: 0.25rem;
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease), border-color 0.4s;
}
.az-orb:hover { transform: scale(1.08); border-color: var(--cyan); }
.az-orb strong {
    font-family: var(--font-display); font-size: 2rem;
    color: var(--cyan); line-height: 1;
}
.az-orb span { font-size: 0.72rem; color: var(--ink-muted); }
.az-orb--accent { border-color: var(--cyan); background: var(--cyan-dim); }
.az-orb--1 { top: 15%; left: 12%; }
.az-orb--2 { top: 35%; right: 18%; width: 120px; height: 120px; }
.az-orb--3 { bottom: 25%; left: 28%; width: 130px; height: 130px; }
.az-orb--4 { bottom: 18%; right: 10%; }

.az-stats-note {
    position: absolute; bottom: 8%; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--ink-muted); letter-spacing: 0.05em;
    white-space: nowrap;
}

/* §3 Orbit */
.az-canvas--orbit {
    min-height: 90vh;
    padding: 6rem 1.5rem;
    background: var(--void);
}

.az-orbit-head { text-align: center; margin-bottom: 3rem; }

.az-orbit-system { max-width: 900px; margin: 0 auto; }

.az-orbit-nav {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.5rem; margin-bottom: 3rem;
}
.az-orbit-btn {
    padding: 0.6rem 1.25rem;
    font-family: var(--font-mono); font-size: 0.72rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    background: var(--surface-2); border: 1px solid var(--border);
    color: var(--ink-muted); cursor: pointer;
    border-radius: 100px; transition: all 0.3s;
}
.az-orbit-btn.is-active, .az-orbit-btn:hover {
    background: var(--cyan-dim); border-color: var(--cyan); color: var(--cyan);
}

.az-orbit-stage {
    position: relative;
    width: 100%; max-width: 600px;
    height: 520px; margin: 0 auto;
}

.az-orbit-panel {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}
.az-orbit-panel.is-active { opacity: 1; visibility: visible; }

.az-orbit-core {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--cyan-dim); border: 1px solid var(--cyan);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 0.6rem;
    color: var(--cyan); text-align: center;
    z-index: 1;
}

.az-orbit-node {
    position: absolute;
    top: 50%; left: 50%;
    transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle)));
    transition: transform 0.6s var(--ease);
    z-index: 2;
}
.az-orbit-panel.is-active .az-orbit-node {
    animation: orbitIn 0.7s var(--ease) both;
    animation-delay: calc(var(--i) * 0.1s);
}
@keyframes orbitIn {
    from { opacity: 0; transform: rotate(var(--angle)) translateX(0) rotate(calc(-1 * var(--angle))); }
    to { opacity: 1; transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))); }
}

.az-orbit-node__card {
    width: 200px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.az-orbit-node__card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 30px var(--cyan-dim);
}
.az-orbit-node__card img { width: 100%; height: 110px; object-fit: cover; }
.az-orbit-node__info { padding: 0.75rem; }
.az-orbit-node__info h3 { font-family: var(--font-display); font-size: 0.85rem; margin: 0.25rem 0; }
.az-orbit-node__info p { font-size: 0.68rem; color: var(--ink-muted); }
.az-orbit-node__foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 0.5rem;
}

/* §4 Story drift */
.az-canvas--story {
    min-height: 120vh;
    background: var(--surface);
    padding: 4rem 0;
}

.az-drift-shard { position: absolute; max-width: 480px; }
.az-drift-shard--a { top: 8%; left: 5%; width: 42%; }
.az-drift-shard--a img { border: 1px solid var(--border); box-shadow: var(--shadow); }
.az-drift-shard--b { top: 12%; right: 6%; width: 38%; }
.az-drift-shard--c { top: 48%; right: 10%; width: 32%; }
.az-drift-shard--c img { transform: rotate(3deg); border: 1px solid var(--border); }
.az-drift-shard--d { top: 52%; left: 8%; width: 40%; }
.az-drift-shard--d p { color: var(--ink-muted); margin: 1rem 0; font-size: 0.92rem; }

/* §5 Glitch experimental */
.az-canvas--glitch {
    min-height: 80vh;
    background: var(--void);
    display: flex; align-items: center;
    padding: 4rem 1.5rem;
    gap: 3rem;
}

.az-glitch-wrap {
    position: relative;
    flex: 1; max-width: 55%;
    overflow: hidden;
    clip-path: polygon(0 5%, 100% 0, 95% 100%, 3% 95%);
}
.az-glitch-layer { width: 100%; }
.az-glitch-layer img { width: 100%; height: 400px; object-fit: cover; }
.az-glitch-layer--shift {
    position: absolute; inset: 0;
    mix-blend-mode: difference;
    transform: translate(var(--gx, 0), var(--gy, 0));
    opacity: 0.4;
    pointer-events: none;
}
.az-glitch-mask {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 40%, rgba(0,229,199,0.1) 50%, transparent 60%);
    animation: glitchScan 4s linear infinite;
}
@keyframes glitchScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.az-glitch-type { flex: 1; max-width: 400px; }
.az-glitch-type p { color: var(--ink-muted); margin-top: 1rem; font-size: 0.92rem; }

/* §6 Craft scatter */
.az-canvas--craft {
    min-height: 90vh;
    background: var(--surface-2);
    padding: 5rem 0;
}

.az-craft-label {
    position: absolute; top: 8%; left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
    font-family: var(--font-display); font-size: 4rem;
    color: rgba(255,255,255,0.03);
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.az-craft-node {
    position: absolute;
    width: 220px; padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: transform 0.4s, border-color 0.4s;
}
.az-craft-node:hover { transform: translateY(-6px); border-color: var(--cyan); }
.az-craft-node--1 { top: 15%; left: 10%; }
.az-craft-node--2 { top: 25%; right: 15%; }
.az-craft-node--3 { bottom: 30%; left: 20%; }
.az-craft-node--4 { bottom: 15%; right: 8%; }
.az-craft-num {
    font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--cyan); display: block; margin-bottom: 0.5rem;
}
.az-craft-node h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
.az-craft-node p { font-size: 0.82rem; color: var(--ink-muted); }

.az-craft-img--float {
    position: absolute; top: 35%; left: 42%;
    width: 200px; transform: rotate(-5deg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* §7 Voices */
.az-canvas--voices {
    min-height: 70vh;
    background: var(--void);
    padding: 4rem 0;
}

.az-voice {
    position: absolute;
    max-width: 320px; padding: 1.5rem;
    background: var(--surface-2);
    border-left: 2px solid var(--cyan);
    font-style: normal;
}
.az-voice p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 0.75rem; }
.az-voice cite { font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-muted); font-style: normal; }
.az-voice--1 { top: 12%; left: 8%; transform: rotate(-2deg); }
.az-voice--2 { top: 38%; right: 10%; transform: rotate(1.5deg); }
.az-voice--3 { bottom: 15%; left: 25%; transform: rotate(-1deg); }

/* §8 Fragments */
.az-canvas--fragments {
    min-height: 140vh;
    background: var(--surface);
    padding: 4rem 0;
}

.az-frag-head {
    position: absolute; top: 5%; left: 6%;
    z-index: 2;
}

.az-frag {
    position: absolute;
    transform: rotate(var(--rot, 0deg));
    transition: transform 0.5s var(--ease);
}
.az-frag:hover { transform: rotate(0deg) scale(1.03); z-index: 5; }
.az-frag__inner {
    background: var(--surface-2);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.az-frag__inner img { width: 100%; height: 180px; object-fit: cover; }
.az-frag__meta { padding: 1rem; }
.az-frag__meta h3 { font-family: var(--font-display); font-size: 1rem; margin: 0.25rem 0; }

/* §9 Gravity CTA */
.az-canvas--gravity {
    min-height: 80vh;
    background: var(--void);
    display: flex; align-items: center; justify-content: center;
    padding: 4rem 1.5rem;
}

.az-gravity-well {
    position: relative;
    text-align: center;
    max-width: 560px;
    padding: 3rem;
}

.az-gravity-ring {
    position: absolute; top: 50%; left: 50%;
    border: 1px solid var(--border);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: gravityPulse 4s ease-in-out infinite;
}
.az-gravity-ring--1 { width: 300px; height: 300px; animation-delay: 0s; }
.az-gravity-ring--2 { width: 420px; height: 420px; animation-delay: 0.5s; opacity: 0.6; }
.az-gravity-ring--3 { width: 540px; height: 540px; animation-delay: 1s; opacity: 0.3; }
@keyframes gravityPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.az-gravity-core { position: relative; z-index: 2; }
.az-gravity-core p { color: var(--ink-muted); margin: 1rem 0 2rem; font-size: 0.92rem; }
.az-gravity-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* §10 Trust */
.az-canvas--trust {
    min-height: 50vh;
    background: var(--surface-2);
    padding: 3rem 0;
}

.az-trust-chip {
    position: absolute;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.az-trust-chip:hover { border-color: var(--cyan); transform: translateY(-4px); }
.az-trust-chip strong {
    display: block; font-family: var(--font-display);
    font-size: 1.1rem; color: var(--cyan);
}
.az-trust-chip span { font-size: 0.72rem; color: var(--ink-muted); }
.az-trust-chip--1 { top: 20%; left: 10%; }
.az-trust-chip--2 { top: 15%; right: 20%; }
.az-trust-chip--3 { bottom: 25%; left: 25%; }
.az-trust-chip--4 { bottom: 20%; right: 12%; }

.az-trust-note {
    position: absolute; bottom: 8%; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--ink-muted);
}

/* ── Footer mosaic ── */
.az-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem 0;
}

.az-footer__mosaic {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.az-footer__tile {
    background: var(--surface-2);
    padding: 2rem;
}
.az-footer__tile h3 {
    font-family: var(--font-mono); font-size: 0.68rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 1rem;
}
.az-footer__tile ul li { margin-bottom: 0.5rem; }
.az-footer__tile a { color: var(--ink-muted); font-size: 0.88rem; }
.az-footer__tile a:hover { color: var(--cyan); }
.az-footer__tagline { font-size: 0.88rem; color: var(--ink-muted); margin: 0.75rem 0; }
.az-footer__addr { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.6; }

.az-footer__bar {
    max-width: 1100px; margin: 0 auto;
    padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono); font-size: 0.68rem;
    color: var(--ink-muted);
}

.az-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
    width: 44px; height: 44px;
    background: var(--cyan); color: var(--void);
    border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 20px var(--cyan-dim);
}
.az-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.az-top:hover { background: var(--amber); transform: translateY(-4px); }

/* ── Inner pages ── */
.az-page-canvas {
    padding: 3rem 1.5rem 4rem;
    max-width: 1100px; margin: 0 auto;
}

/* About */
.az-story-block {
    display: flex; gap: 3rem; align-items: center;
    margin-bottom: 4rem;
}
.az-story-block--reverse { flex-direction: row-reverse; }
.az-story-block__visual { flex: 1; }
.az-story-block__visual img { border: 1px solid var(--border); box-shadow: var(--shadow); }
.az-story-block__text { flex: 1; }
.az-story-block__text h2 { font-family: var(--font-display); font-size: 1.75rem; margin: 0.5rem 0 1rem; }
.az-story-block__text p { color: var(--ink-muted); margin-bottom: 1rem; font-size: 0.92rem; }

.az-values-scatter {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; margin-bottom: 4rem;
}
.az-value-shard {
    padding: 1.5rem; background: var(--surface-2);
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
}
.az-value-shard:hover { border-color: var(--cyan); transform: translateY(-4px); }
.az-value-icon { font-size: 1.5rem; color: var(--cyan); display: block; margin-bottom: 0.75rem; }
.az-value-shard h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.5rem; }
.az-value-shard p { font-size: 0.82rem; color: var(--ink-muted); }

.az-timeline { margin-bottom: 4rem; }
.az-timeline-track {
    display: flex; flex-direction: column; gap: 0;
    border-left: 1px solid var(--cyan);
    margin-left: 1rem; padding-left: 2rem;
}
.az-timeline-node { padding: 1.5rem 0; position: relative; }
.az-timeline-node::before {
    content: ''; position: absolute; left: -2.45rem; top: 1.75rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--cyan); box-shadow: 0 0 12px var(--cyan-dim);
}
.az-timeline-year {
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--cyan); letter-spacing: 0.08em;
}
.az-timeline-node h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0.25rem 0; }
.az-timeline-node p { font-size: 0.85rem; color: var(--ink-muted); }

.az-mission-panel {
    padding: 3rem; background: var(--surface-2);
    border: 1px solid var(--border);
    margin-bottom: 3rem; text-align: center;
}
.az-mission-text {
    font-family: var(--font-display); font-size: 1.4rem;
    margin: 1rem 0; line-height: 1.5;
}
.az-mission-panel p:last-of-type { color: var(--ink-muted); font-size: 0.92rem; }
.az-mission-cta { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

.az-location-block {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem;
    align-items: end;
}
.az-location-block img { border: 1px solid var(--border); }
.az-location-block__info h3 { font-family: var(--font-display); margin-bottom: 0.75rem; }
.az-location-block__info p { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 0.5rem; }

/* Shop */
.az-shop-controls {
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: space-between; align-items: center;
    margin-bottom: 2.5rem;
}
.az-filter-bar { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.az-filter-pill {
    padding: 0.5rem 1rem; font-family: var(--font-mono); font-size: 0.68rem;
    letter-spacing: 0.05em; text-transform: uppercase;
    border: 1px solid var(--border); border-radius: 100px;
    color: var(--ink-muted); transition: all 0.25s;
}
.az-filter-pill.is-active, .az-filter-pill:hover {
    border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim);
}
.az-shop-search { display: flex; gap: 0.5rem; }
.az-shop-search input {
    padding: 0.55rem 1rem; background: var(--surface-2);
    border: 1px solid var(--border); color: var(--ink);
    font-family: var(--font-body); border-radius: 2px; min-width: 200px;
}
.az-shop-search input:focus { outline: none; border-color: var(--cyan); }

.az-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.az-shop-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    transform: translateY(var(--offset, 0));
    transition: transform 0.4s var(--ease), border-color 0.4s;
}
.az-shop-card:hover { border-color: var(--cyan); transform: translateY(calc(var(--offset, 0) - 6px)); }
.az-shop-card__visual { position: relative; overflow: hidden; }
.az-shop-card__visual img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.az-shop-card:hover .az-shop-card__visual img { transform: scale(1.04); }
.az-shop-card__badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.3rem 0.65rem; font-family: var(--font-mono); font-size: 0.62rem;
    background: var(--void); color: var(--cyan); border: 1px solid var(--cyan);
}
.az-shop-card__body { padding: 1.25rem; }
.az-shop-card__body h2 { font-family: var(--font-display); font-size: 1.15rem; margin: 0.35rem 0 0.75rem; }
.az-spec-list { margin-bottom: 1rem; }
.az-spec-list li { font-size: 0.82rem; color: var(--ink-muted); }
.az-shop-card__foot { display: flex; align-items: center; justify-content: space-between; }
.az-shop-empty { text-align: center; padding: 4rem; color: var(--ink-muted); }
.az-shop-cta { text-align: center; margin-top: 3rem; font-size: 0.88rem; color: var(--ink-muted); }

/* FAQ */
.az-faq-layout {
    display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem;
}
.az-faq-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.az-faq-nav-btn {
    padding: 0.75rem 1rem; text-align: left;
    font-family: var(--font-mono); font-size: 0.72rem;
    background: none; border: none; border-left: 2px solid transparent;
    color: var(--ink-muted); cursor: pointer; transition: all 0.25s;
}
.az-faq-nav-btn.is-active, .az-faq-nav-btn:hover {
    color: var(--cyan); border-left-color: var(--cyan);
}
.az-faq-panel { display: none; }
.az-faq-panel.is-active { display: block; }
.az-faq-panel-title {
    font-family: var(--font-display); font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.az-accordion-item { border-bottom: 1px solid var(--border); }
.az-accordion-trigger {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0; background: none; border: none;
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--ink); cursor: pointer; text-align: left;
    transition: color 0.25s;
}
.az-accordion-trigger:hover { color: var(--cyan); }
.az-accordion-trigger svg { flex-shrink: 0; transition: transform 0.3s; }
.az-accordion-item.is-open .az-accordion-trigger svg { transform: rotate(180deg); }
.az-accordion-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.az-accordion-item.is-open .az-accordion-body { max-height: 400px; }
.az-accordion-body p {
    padding-bottom: 1.25rem; font-size: 0.88rem;
    color: var(--ink-muted); line-height: 1.75;
}

.az-faq-cta {
    margin-top: 4rem; padding: 2.5rem;
    background: var(--surface-2); border: 1px solid var(--border);
    text-align: center;
}
.az-faq-cta h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.az-faq-cta p { color: var(--ink-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* Contact */
.az-contact-scatter {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem;
    margin-bottom: 3rem;
}
.az-contact-card {
    padding: 2rem; background: var(--surface-2);
    border: 1px solid var(--border);
}
.az-contact-card h2 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1.25rem; }
.az-contact-dl div { margin-bottom: 1rem; }
.az-contact-dl dt {
    font-family: var(--font-mono); font-size: 0.68rem;
    color: var(--cyan); letter-spacing: 0.08em; margin-bottom: 0.25rem;
}
.az-contact-dl dd { font-size: 0.88rem; color: var(--ink-muted); }
.az-contact-access { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.az-contact-access h3 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.az-contact-access p { font-size: 0.82rem; color: var(--ink-muted); }

.az-contact-form {
    padding: 2rem; background: var(--surface-2);
    border: 1px solid var(--border);
}
.az-contact-form h2 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1.5rem; }
.az-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.az-field { margin-bottom: 1rem; }
.az-field label { display: block; font-size: 0.82rem; margin-bottom: 0.4rem; }
.az-field label span { color: var(--cyan); }
.az-field input, .az-field select, .az-field textarea {
    width: 100%; padding: 0.75rem 1rem;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--ink); font-family: var(--font-body); font-size: 0.9rem;
    border-radius: 2px;
}
.az-field input:focus, .az-field select:focus, .az-field textarea:focus {
    outline: none; border-color: var(--cyan);
}
.az-checkbox {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 1.5rem; cursor: pointer;
}
.az-form-note { margin-top: 1rem; color: var(--cyan); font-size: 0.88rem; }

.az-map-block h2 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1rem; }
.az-map-embed { border: 1px solid var(--border); overflow: hidden; }
.az-map-note { font-size: 0.78rem; color: var(--ink-muted); margin-top: 0.75rem; }

/* Cart */
.az-cart-layout {
    display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem;
    align-items: start;
}
.az-cart-empty { text-align: center; padding: 4rem 2rem; }
.az-cart-empty__icon { font-size: 3rem; color: var(--cyan); margin-bottom: 1rem; }
.az-cart-empty h2 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.az-cart-empty p { color: var(--ink-muted); margin-bottom: 1.5rem; }

.az-cart-item {
    display: grid; grid-template-columns: 100px 1fr auto auto auto;
    gap: 1rem; align-items: center;
    padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.az-cart-item img { width: 100px; height: 70px; object-fit: cover; border: 1px solid var(--border); }
.az-cart-item__info h3 { font-family: var(--font-display); font-size: 0.95rem; }
.az-cart-item__qty { display: flex; align-items: center; gap: 0.5rem; }
.az-qty-btn {
    width: 28px; height: 28px; border: 1px solid var(--border);
    background: var(--surface-2); color: var(--ink); cursor: pointer;
    font-size: 1rem; transition: border-color 0.25s;
}
.az-qty-btn:hover { border-color: var(--cyan); }
.az-cart-item__total { font-family: var(--font-mono); font-size: 0.85rem; }
.az-cart-remove {
    background: none; border: none; color: var(--ink-muted);
    font-size: 1.25rem; cursor: pointer; transition: color 0.25s;
}
.az-cart-remove:hover { color: #e55; }

.az-cart-sidebar {
    padding: 1.75rem; background: var(--surface-2);
    border: 1px solid var(--border); position: sticky; top: calc(var(--nav-h) + 1rem);
}
.az-cart-sidebar h2 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1.25rem; }
.az-coupon { margin-bottom: 1.5rem; }
.az-coupon label { font-size: 0.78rem; display: block; margin-bottom: 0.4rem; }
.az-coupon-row { display: flex; gap: 0.5rem; }
.az-coupon-row input {
    flex: 1; padding: 0.55rem 0.75rem;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--ink); font-family: var(--font-mono); font-size: 0.78rem;
}
.az-coupon-hint { font-size: 0.72rem; color: var(--ink-muted); margin-top: 0.4rem; }
.az-cart-totals div {
    display: flex; justify-content: space-between;
    padding: 0.5rem 0; font-size: 0.88rem;
}
.az-cart-totals dt { color: var(--ink-muted); }
.az-cart-totals dd { font-family: var(--font-mono); }
.az-cart-discount dd { color: var(--cyan); }
.az-cart-grand {
    border-top: 1px solid var(--border); margin-top: 0.5rem;
    padding-top: 0.75rem !important; font-size: 1rem !important;
}
.az-cart-grand dt { font-family: var(--font-display); color: var(--ink); }
.az-cart-note { font-size: 0.72rem; color: var(--ink-muted); margin: 1rem 0; line-height: 1.5; }

/* Legal */
.az-legal { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }
.az-legal-body section { margin-bottom: 2rem; }
.az-legal-body h2 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--cyan); }
.az-legal-body h3 { font-size: 0.95rem; margin: 1rem 0 0.5rem; }
.az-legal-body p { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 0.75rem; line-height: 1.75; }
.az-legal-body ul { margin: 0.5rem 0 1rem 1.25rem; }
.az-legal-body ul li { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 0.35rem; list-style: disc; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .az-header__rail-link { padding: 0 0.85rem; }
    .az-header__tool-label { display: none; }
    .az-header__tool { min-width: 44px; }
    .az-footer__mosaic { grid-template-columns: 1fr 1fr; }
    .az-values-scatter { grid-template-columns: repeat(2, 1fr); }
    .az-canvas--glitch { flex-direction: column; }
    .az-glitch-wrap { max-width: 100%; }
    .az-location-block { grid-template-columns: 1fr; }
    .az-cart-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .az-header__plane {
        grid-template-columns: 1fr auto;
        padding: 0 0.75rem;
    }
    .az-header__brand-col {
        padding: 0.65rem 0.75rem 0.65rem 0;
        border-right: none;
    }
    .az-header__coord { display: none; }
    .az-header__rail { display: none; }
    .az-header__divider { display: none; }
    .az-header__tool { display: none; }
    .az-header__menu { display: flex; }
    .az-header__slant { height: 10px; }

    .az-hero-fracture__main {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.25rem 1.5rem 3.5rem;
        min-height: auto;
    }
    .az-hero-fracture__panels {
        height: 340px;
        min-height: 280px;
        order: -1;
    }
    .az-hero-fracture__rail { bottom: 3.5rem; }
    .az-hero-fracture__word { font-size: clamp(2.2rem, 10vw, 3.2rem); }
    .az-hero-fracture__metrics { gap: 1.25rem; }

    .az-hero-band__inner { min-height: 220px; padding: 2rem 1.25rem 2.5rem; }
    .az-hero-band__idx { font-size: 1.75rem; }

    .az-orb { width: 100px !important; height: 100px !important; }
    .az-orb strong { font-size: 1.4rem; }

    .az-orbit-stage { height: 400px; }
    .az-orbit-node__card { width: 160px; }

    .az-drift-shard { position: relative !important; width: 90% !important; max-width: none !important; margin: 0 auto 2rem; top: auto !important; left: auto !important; right: auto !important; }
    .az-canvas--story { min-height: auto; padding: 3rem 1rem; display: flex; flex-direction: column; }

    .az-canvas--craft { min-height: auto; padding: 3rem 1rem; }
    .az-craft-node { position: relative !important; width: 100% !important; margin-bottom: 1rem; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; }
    .az-craft-img--float { position: relative; left: auto; top: auto; margin: 1rem auto; }
    .az-craft-label { display: none; }

    .az-voice { position: relative !important; max-width: 100%; margin: 0 1rem 1rem; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; }
    .az-canvas--voices { min-height: auto; padding: 3rem 0; display: flex; flex-direction: column; }

    .az-frag { position: relative !important; width: 90% !important; margin: 0 auto 1.5rem; top: auto !important; left: auto !important; right: auto !important; transform: none !important; }
    .az-canvas--fragments { min-height: auto; padding: 3rem 1rem; }
    .az-frag-head { position: relative; margin-bottom: 2rem; }

    .az-trust-chip { position: relative !important; margin: 0 1rem 1rem; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; }
    .az-canvas--trust { min-height: auto; padding: 3rem 1rem; display: flex; flex-direction: column; align-items: center; }
    .az-trust-note { position: relative; transform: none; margin-top: 1rem; }

    .az-canvas--stats { min-height: auto; padding: 4rem 1rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
    .az-orb { position: relative !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; }
    .az-stats-note { position: relative; transform: none; width: 100%; text-align: center; margin-top: 1rem; white-space: normal; }

    .az-story-block, .az-story-block--reverse { flex-direction: column; }
    .az-values-scatter { grid-template-columns: 1fr; }
    .az-faq-layout { grid-template-columns: 1fr; }
    .az-faq-nav { flex-direction: row; flex-wrap: wrap; }
    .az-contact-scatter { grid-template-columns: 1fr; }
    .az-form-row { grid-template-columns: 1fr; }
    .az-footer__mosaic { grid-template-columns: 1fr; }
    .az-cart-item { grid-template-columns: 80px 1fr; }
    .az-cart-item__qty, .az-cart-item__total, .az-cart-remove { grid-column: 2; }
}

@media (max-width: 480px) {
    .az-hero-fracture__main { padding-left: 1.25rem; }
    .az-hero-fracture__rail { display: none; }
    .az-hero-fracture__panels { height: 260px; }
    .az-hero-fracture__panel--b, .az-hero-fracture__panel--c { display: none; }
    .az-hero-fracture__chip { bottom: 8%; right: 4%; }

    .az-orbit-stage { height: 320px; }
    .az-orbit-node__card { width: 130px; }
    .az-gravity-ring--3 { width: 280px; height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
