/* Azunex Homepage · Layout 98 · Depth Scroll · Chassis Horizon */

.az-chassis-world { background: var(--az-bg-void); color: var(--az-text-light); }

/* S1 · Split HUD Hero */
.az-hud-hero {
    display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: calc(100vh - var(--az-nav-h));
    align-items: stretch; position: relative; overflow: hidden;
}
.az-hud-hero__visual { position: relative; overflow: hidden; }
.az-hud-hero__img-wrap { position: absolute; inset: 0; }
.az-hud-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.85); }
.az-hud-hero__mask {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(125deg, rgba(10,12,16,0.3) 0%, rgba(10,12,16,0.7) 60%, rgba(10,12,16,0.95) 100%);
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.az-hud-hero__rings { position: absolute; top: 15%; right: 10%; z-index: 5; color: var(--az-cobalt); }
.az-hud-hero__ring--1 { width: 200px; height: 200px; animation: azSpin 24s linear infinite; opacity: 0.4; }
.az-hud-hero__ring--2 { position: absolute; top: 20px; left: 20px; width: 160px; height: 160px; opacity: 0.7; animation: azSpin 16s linear infinite reverse; }
@keyframes azSpin { to { transform: rotate(360deg); } }
.az-hud-hero__telemetry {
    position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 1.5rem; font-family: var(--az-font-mono); font-size: 0.62rem; letter-spacing: 0.12em;
    color: var(--az-chrome);
}
.az-hud-hero__telemetry strong { display: block; color: var(--az-cobalt-bright); font-size: 1rem; margin-top: 0.15rem; }
.az-hud-hero__panel {
    display: flex; flex-direction: column; justify-content: center;
    padding: 3rem 3rem 3rem 2rem; background: var(--az-bg-deep);
    border-left: 1px solid rgba(59, 130, 246, 0.15);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -8%;
}
.az-hud-hero__title { font-family: var(--az-font-display); font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.05; margin: 0.8rem 0 1.2rem; }
.az-hud-hero__line { display: block; }
.az-hud-hero__line--accent em { font-style: normal; color: var(--az-cobalt-bright); }
.az-hud-hero__lead { font-size: 1rem; color: rgba(232, 236, 242, 0.7); max-width: 480px; margin-bottom: 2rem; line-height: 1.7; }
.az-hud-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.az-hud-hero__specs { display: flex; gap: 2rem; font-family: var(--az-font-mono); font-size: 0.72rem; }
.az-hud-hero__specs span { display: block; color: rgba(232, 236, 242, 0.45); letter-spacing: 0.1em; }
.az-hud-hero__specs strong { color: var(--az-cobalt-bright); font-size: 1rem; }
.az-hud-hero__scroll { position: absolute; bottom: 2rem; left: 2rem; display: flex; align-items: center; gap: 0.8rem; font-family: var(--az-font-mono); font-size: 0.62rem; letter-spacing: 0.18em; color: rgba(232, 236, 242, 0.4); z-index: 10; }
.az-hud-hero__scroll-bar { width: 48px; height: 2px; background: linear-gradient(90deg, var(--az-cobalt), transparent); animation: azPulse 2s infinite; }
@keyframes azPulse { 0%,100% { opacity: 0.3; transform: scaleX(0.5); } 50% { opacity: 1; transform: scaleX(1); } }

/* S2 · Corridor */
.az-corridor { padding: 6rem 0 4rem; background: var(--az-bg-mid); overflow: hidden; }
.az-corridor__head { padding: 0 3rem 2rem; max-width: 640px; }
.az-corridor__head h2 { font-family: var(--az-font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin: 0.5rem 0; }
.az-corridor__head em { font-style: normal; color: var(--az-cobalt-bright); }
.az-corridor__head p { color: rgba(232, 236, 242, 0.6); font-size: 0.95rem; }
.az-corridor__track {
    display: flex; gap: 1.5rem; padding: 1rem 3rem 2rem; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab;
}
.az-corridor__track::-webkit-scrollbar { display: none; }
.az-corridor__card {
    flex: 0 0 min(380px, 85vw); scroll-snap-align: start;
    background: var(--az-bg-layer); border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px; overflow: hidden; transition: transform 0.35s var(--az-ease);
}
.az-corridor__card:hover { transform: translateY(-6px); border-color: var(--az-cobalt); }
.az-corridor__tag { display: block; padding: 1rem 1.2rem 0; font-family: var(--az-font-mono); font-size: 0.72rem; color: var(--az-cobalt); letter-spacing: 0.12em; }
.az-corridor__fig { aspect-ratio: 16/10; overflow: hidden; }
.az-corridor__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.az-corridor__card:hover .az-corridor__fig img { transform: scale(1.04); }
.az-corridor__card h3 { font-family: var(--az-font-display); font-size: 1.25rem; padding: 1rem 1.2rem 0.4rem; }
.az-corridor__card p { padding: 0 1.2rem 1.2rem; font-size: 0.88rem; color: rgba(232, 236, 242, 0.6); line-height: 1.65; }
.az-corridor__card .az-link-arrow { margin: 0 1.2rem 1.2rem; display: inline-block; }

/* Corridor · Horizon delivery card */
.az-corridor__card--horizon {
    flex: 0 0 min(420px, 90vw);
    border-color: rgba(59, 130, 246, 0.35);
    background: linear-gradient(165deg, var(--az-bg-layer) 0%, rgba(59, 130, 246, 0.08) 100%);
    position: relative;
}
.az-corridor__card--horizon::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.12), transparent 40%);
}
.az-corridor__horizon-line {
    position: absolute; left: 0; right: 0; bottom: 28%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--az-cobalt-bright), transparent);
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.6);
}
.az-corridor__horizon-meta {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    padding: 0 1.2rem 0.8rem;
}
.az-corridor__horizon-meta span {
    font-family: var(--az-font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
    padding: 0.3rem 0.55rem; border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 999px; color: var(--az-cobalt-bright);
}
.az-corridor__card--horizon .az-link-arrow { position: relative; z-index: 2; }

/* S3 · Shatter Grid */
.az-shatter { padding: 6rem 3rem; background: var(--az-bg-silver); color: var(--az-text); }
.az-shatter__head { max-width: 600px; margin-bottom: 2.5rem; }
.az-shatter__head h2 { font-family: var(--az-font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin: 0.5rem 0; }
.az-shatter__head em { font-style: normal; color: var(--az-cobalt); }
.az-shatter__head p { color: var(--az-text-muted); }
.az-shatter__mosaic {
    display: grid; grid-template-columns: 1.3fr 0.7fr 0.6fr; grid-template-rows: auto auto;
    gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.az-shatter__tile { position: relative; overflow: hidden; border-radius: 8px; box-shadow: var(--az-shadow-layer); transition: transform 0.4s; }
.az-shatter__tile--a { grid-row: span 2; clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%); transform: translateY(12px); }
.az-shatter__tile--b { clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 88%); margin-top: 3rem; }
.az-shatter__tile--c { clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%); }
.az-shatter__tile img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform 0.5s; }
.az-shatter__tile:hover img { transform: scale(1.05); }
.az-shatter__cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem; background: linear-gradient(transparent, rgba(10, 12, 16, 0.88)); color: #fff; }
.az-shatter__cap span { font-family: var(--az-font-mono); font-size: 0.65rem; color: var(--az-cobalt-bright); letter-spacing: 0.1em; }
.az-shatter__cap h3 { font-family: var(--az-font-display); font-size: 1rem; margin-top: 0.3rem; }
.az-shatter__note { grid-column: 2 / -1; padding: 1.5rem; background: #fff; border: 1px solid var(--az-border); border-radius: 8px; align-self: end; }
.az-shatter__note p { color: var(--az-text-muted); font-size: 0.9rem; margin: 0.5rem 0 1rem; line-height: 1.65; }

/* S6 · Vehicle Deck */
.az-deck { padding: 6rem 3rem; background: var(--az-bg-void); }
.az-deck__head { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.az-deck__head h2 { font-family: var(--az-font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin: 0.5rem 0; }
.az-deck__head em { font-style: normal; color: var(--az-cobalt-bright); }
.az-deck__head p { color: rgba(232, 236, 242, 0.6); }
.az-deck__stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.az-deck__card {
    position: relative; background: var(--az-bg-layer); border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 8px; overflow: hidden;
    transform: translateY(var(--az-y, 0)) rotate(var(--az-rot, 0deg));
    box-shadow: var(--az-shadow-layer); transition: transform 0.4s var(--az-ease), border-color 0.3s;
}
.az-deck__card:hover { transform: translateY(calc(var(--az-y, 0) - 10px)) rotate(0deg); border-color: var(--az-cobalt); z-index: 2; }
.az-deck__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.az-deck__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.az-deck__card:hover .az-deck__img img { transform: scale(1.05); }
.az-deck__badge { position: absolute; top: 0.8rem; left: 0.8rem; background: rgba(10, 12, 16, 0.85); font-family: var(--az-font-mono); font-size: 0.62rem; padding: 0.25rem 0.5rem; color: var(--az-cobalt-bright); }
.az-deck__meta { padding: 1rem 1.2rem; }
.az-deck__meta h3 { font-family: var(--az-font-display); font-size: 1.1rem; margin: 0.3rem 0; }
.az-deck__price { font-family: var(--az-font-mono); color: var(--az-cobalt-bright); font-size: 0.88rem; }
.az-deck__wish { position: absolute; top: 0.8rem; right: 0.8rem; background: rgba(10, 12, 16, 0.85); border: none; color: rgba(232, 236, 242, 0.6); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.az-deck__wish.is-wished { color: #f43f5e; }
.az-deck__cart { margin: 0 1.2rem 1.2rem; width: calc(100% - 2.4rem); }
.az-deck__cta { text-align: center; margin-top: 2.5rem; }

/* S7 · Manifest Trust */
.az-manifest { position: relative; padding: 6rem 3rem; overflow: hidden; }
.az-manifest__bg { position: absolute; inset: 0; opacity: 0.2; }
.az-manifest__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.4); }
.az-manifest__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,12,16,0.94), rgba(24,28,40,0.9)); }
.az-manifest__content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.az-manifest__content h2 { font-family: var(--az-font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin: 0.5rem 0 2rem; }
.az-manifest__content em { font-style: normal; color: var(--az-cobalt-bright); }
.az-manifest__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.az-manifest__stat strong { display: block; font-family: var(--az-font-display); font-size: 2.8rem; color: var(--az-cobalt-bright); line-height: 1; }
.az-manifest__stat span { font-size: 0.78rem; color: rgba(232, 236, 242, 0.55); font-family: var(--az-font-mono); }
.az-manifest__text { color: rgba(232, 236, 242, 0.65); max-width: 640px; margin: 0 auto 1.5rem; line-height: 1.7; }
.az-manifest__seals { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.az-manifest__seals span { font-family: var(--az-font-mono); font-size: 0.65rem; padding: 0.4rem 0.8rem; border: 1px solid rgba(59, 130, 246, 0.25); border-radius: 999px; color: rgba(232, 236, 242, 0.7); }

/* S8 · Horizon Delivery */
.az-horizon {
    position: relative; padding: 7rem 3rem 6rem; overflow: hidden;
    background: var(--az-bg-void); color: var(--az-text-light);
}
.az-horizon__sky { position: absolute; inset: 0; pointer-events: none; }
.az-horizon__glow {
    position: absolute; left: 50%; bottom: 32%; transform: translateX(-50%);
    width: 120%; height: 40%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
}
.az-horizon__line {
    position: absolute; left: 0; right: 0; bottom: 34%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.9) 20%, rgba(96, 165, 250, 0.9) 80%, transparent 100%);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}
.az-horizon__grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(rgba(148,163,184,0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(148,163,184,0.5) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.az-horizon__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.az-horizon__head { max-width: 640px; margin-bottom: 3rem; }
.az-horizon__title { margin: 0.6rem 0 1rem; line-height: 1.05; }
.az-horizon__title-tag {
    display: inline-block; font-family: var(--az-font-mono); font-size: 0.72rem;
    letter-spacing: 0.2em; color: var(--az-cobalt-bright);
    padding: 0.35rem 0.75rem; border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 4px; margin-bottom: 0.8rem;
}
.az-horizon__title-main {
    display: block; font-family: var(--az-font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800;
}
.az-horizon__title-main em { font-style: normal; color: var(--az-cobalt-bright); }
.az-horizon__lead { color: rgba(232, 236, 242, 0.65); font-size: 1.02rem; line-height: 1.75; max-width: 520px; }

.az-horizon__stage {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
    background: rgba(24, 28, 40, 0.6); border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px; padding: 2rem; margin-bottom: 2.5rem;
    backdrop-filter: blur(12px);
}
.az-horizon__map { position: relative; min-height: 200px; }
.az-horizon__svg { width: 100%; height: auto; display: block; }
.az-horizon__path { transition: opacity 0.5s var(--az-ease); }
.az-horizon__node { fill: var(--az-bg-void); stroke: var(--az-cobalt-bright); stroke-width: 2; }
.az-horizon__node--end { fill: var(--az-cobalt); stroke: var(--az-cobalt-bright); }
.az-horizon__pulse {
    fill: var(--az-cobalt); opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.9));
    transition: cx 0.8s var(--az-ease), cy 0.8s var(--az-ease);
}
.az-horizon__labels {
    display: flex; justify-content: space-between; margin-top: 0.5rem;
    font-family: var(--az-font-mono); font-size: 0.62rem; letter-spacing: 0.12em;
    color: rgba(232, 236, 242, 0.45); text-transform: uppercase;
}

.az-horizon__tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.az-horizon__tab {
    flex: 1; background: var(--az-bg-layer); border: 1px solid rgba(59, 130, 246, 0.15);
    color: rgba(232, 236, 242, 0.55); padding: 0.85rem 1rem; cursor: pointer;
    text-align: left; border-radius: 8px; transition: 0.25s;
    font-family: var(--az-font-display); font-size: 0.95rem; font-weight: 600;
}
.az-horizon__tab small { display: block; font-family: var(--az-font-mono); font-size: 0.62rem; font-weight: 400; margin-top: 0.2rem; color: rgba(232, 236, 242, 0.4); }
.az-horizon__tab.is-active, .az-horizon__tab:hover {
    border-color: var(--az-cobalt); background: var(--az-cobalt-dim); color: var(--az-text-light);
}
.az-horizon__tab.is-active small { color: var(--az-cobalt-bright); }
.az-horizon__panel { display: none; }
.az-horizon__panel.is-active { display: block; animation: azFadeIn 0.4s var(--az-ease); }
.az-horizon__panel-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.az-horizon__eta {
    font-family: var(--az-font-display); font-size: 1.4rem; font-weight: 700;
    color: var(--az-cobalt-bright);
}
.az-horizon__carrier {
    font-family: var(--az-font-mono); font-size: 0.68rem; letter-spacing: 0.06em;
    align-self: center; color: rgba(232, 236, 242, 0.5);
    padding: 0.35rem 0.65rem; border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 4px;
}
.az-horizon__steps { list-style: none; }
.az-horizon__step { display: flex; gap: 1rem; align-items: flex-start; padding: 0.6rem 0; }
.az-horizon__step-code {
    flex-shrink: 0; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    font-family: var(--az-font-mono); font-size: 0.65rem; font-weight: 600;
    background: var(--az-bg-void); border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 50%; color: var(--az-cobalt-bright);
}
.az-horizon__step strong { display: block; font-size: 0.92rem; margin-bottom: 0.15rem; }
.az-horizon__step p { font-size: 0.8rem; color: rgba(232, 236, 242, 0.55); line-height: 1.5; }
.az-horizon__connector {
    width: 1px; height: 16px; margin-left: 20px;
    background: linear-gradient(to bottom, var(--az-cobalt), transparent);
    list-style: none;
}

.az-horizon__promises {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2rem;
}
.az-horizon__promise {
    padding: 1.4rem; background: rgba(31, 36, 51, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.12); border-radius: 8px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.35);
}
.az-horizon__promise-num { font-family: var(--az-font-mono); font-size: 0.62rem; color: var(--az-cobalt); letter-spacing: 0.12em; }
.az-horizon__promise h3 { font-family: var(--az-font-display); font-size: 1.05rem; margin: 0.35rem 0 0.5rem; }
.az-horizon__promise p { font-size: 0.82rem; color: rgba(232, 236, 242, 0.55); line-height: 1.6; }
.az-horizon__foot { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* S9 · Vault */
.az-vault { padding: 5rem 3rem; background: var(--az-bg-mid); text-align: center; }
.az-vault__inner { max-width: 720px; margin: 0 auto; }
.az-vault h2 { font-family: var(--az-font-display); font-size: 2.2rem; font-weight: 700; margin: 0.5rem 0; }
.az-vault h2 em { font-style: normal; color: var(--az-cobalt-bright); }
.az-vault__lead { color: rgba(232, 236, 242, 0.6); margin-bottom: 2rem; line-height: 1.65; }
.az-vault__icons { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; }
.az-vault__icon span { font-family: var(--az-font-mono); font-size: 0.72rem; padding: 0.6rem 1rem; background: var(--az-bg-layer); border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 6px; color: rgba(232, 236, 242, 0.8); }
.az-vault__badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(232, 236, 242, 0.7); }

/* S10 · Closure */
.az-closure { background: var(--az-bg-silver); color: var(--az-text); }
.az-closure__echo-head { text-align: center; padding: 5rem 3rem 2rem; }
.az-closure__echo-head h2 { font-family: var(--az-font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; }
.az-closure__echo-head em { font-style: normal; color: var(--az-cobalt); }
.az-closure__echoes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 0 3rem 4rem; }
.az-closure__quote {
    background: #fff; border: 1px solid var(--az-border); padding: 1.8rem; border-radius: 8px;
    transform: translateY(var(--az-echo-offset, 0)); transition: transform 0.35s, border-color 0.3s;
    box-shadow: var(--az-shadow-layer);
}
.az-closure__quote:hover { transform: translateY(calc(var(--az-echo-offset, 0) - 6px)); border-color: var(--az-cobalt); }
.az-closure__layer { font-family: var(--az-font-mono); font-size: 0.62rem; color: var(--az-cobalt); letter-spacing: 0.12em; }
.az-closure__quote p { font-size: 1.02rem; font-style: italic; margin: 1rem 0; line-height: 1.65; color: var(--az-text); }
.az-closure__quote footer strong { display: block; font-size: 0.88rem; }
.az-closure__quote footer span { font-size: 0.75rem; color: var(--az-text-muted); }
.az-closure__bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.az-closure__faq { padding: 4rem 3rem; }
.az-closure__faq h3 { font-family: var(--az-font-display); font-size: 1.6rem; margin: 0.4rem 0 1.5rem; }
.az-faq-preview__item { border-bottom: 1px solid var(--az-border); }
.az-faq-preview__item summary { padding: 1rem 0; cursor: pointer; font-weight: 500; list-style: none; display: flex; justify-content: space-between; }
.az-faq-preview__item summary::-webkit-details-marker { display: none; }
.az-faq-preview__item summary::after { content: '+'; color: var(--az-cobalt); font-family: var(--az-font-mono); }
.az-faq-preview__item[open] summary::after { transform: rotate(45deg); }
.az-faq-preview__item p { padding-bottom: 1rem; color: var(--az-text-muted); font-size: 0.9rem; line-height: 1.65; }
.az-closure__support { position: relative; padding: 4rem 3rem; background: var(--az-bg-card); overflow: hidden; }
.az-closure__support-bg { position: absolute; inset: 0; opacity: 0.12; }
.az-closure__support-bg img { width: 100%; height: 100%; object-fit: cover; }
.az-closure__support > *:not(.az-closure__support-bg) { position: relative; z-index: 2; }
.az-closure__support h3 { font-family: var(--az-font-display); font-size: 1.6rem; margin: 0.4rem 0 1rem; }
.az-closure__contacts { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1rem; }
.az-closure__contacts a { font-family: var(--az-font-mono); font-size: 0.88rem; }
.az-closure__hours, .az-closure__response { font-size: 0.85rem; color: var(--az-text-muted); margin-bottom: 0.5rem; }

@media (max-width: 900px) {
    .az-hud-hero { grid-template-columns: 1fr; min-height: auto; }
    .az-hud-hero__visual { min-height: 50vh; }
    .az-hud-hero__panel { margin-left: 0; clip-path: none; padding: 2rem 1.5rem; }
    .az-hud-hero__rings { display: none; }
    .az-shatter__mosaic { grid-template-columns: 1fr; }
    .az-shatter__tile--a, .az-shatter__tile--b, .az-shatter__tile--c { clip-path: none; margin-top: 0; transform: none; }
    .az-shatter__note { grid-column: 1; }
    .az-deck__stack { grid-template-columns: 1fr 1fr; }
    .az-manifest__stats { grid-template-columns: repeat(2, 1fr); }
    .az-horizon { padding: 5rem 1.5rem 4rem; }
    .az-horizon__stage { grid-template-columns: 1fr; }
    .az-horizon__promises { grid-template-columns: 1fr; }
    .az-closure__echoes { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
    .az-closure__bottom { grid-template-columns: 1fr; }
    .az-corridor__head, .az-corridor__track { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 560px) {
    .az-deck__stack { grid-template-columns: 1fr; }
}
