/* ================================================================
   HERO — Asymmetric two-column
   ================================================================ */

.hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #F0E7DD 0%, #F6EEE5 48%, #FAF7F2 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    max-width: 14ch;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.18rem;
    max-width: 38ch;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Hero Visual — Stacked cards with connector */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hv-card-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.hv-card-stack::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1.5px;
    background: linear-gradient(180deg, var(--line), var(--amber), var(--line));
    z-index: 0;
    opacity: 0.5;
}

.hv-card {
    position: relative;
    width: 240px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 1.3rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hv-card-fax {
    transform: rotate(-2deg) translateX(-20px);
    overflow: hidden;
}

.hv-card-result {
    transform: rotate(1.5deg) translateX(20px);
}

.hv-card-title {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    margin-bottom: 0.7rem;
}

.hv-card-lines { display: flex; flex-direction: column; gap: 6px; }
.hv-bar { height: 6px; background: var(--line); border-radius: 999px; }
.hv-bar.w60 { width: 60%; }
.hv-bar.w75 { width: 75%; }
.hv-bar.w50 { width: 50%; }

.hv-scan-line {
    position: absolute;
    left: 1.3rem; right: 1.3rem;
    top: 2.6rem;
    height: 2px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    animation: hv-scan 3.2s ease-in-out infinite;
}

@keyframes hv-scan {
    0%, 100% { top: 2.6rem; opacity: 0; }
    10% { opacity: 0.8; }
    50% { top: calc(100% - 1.3rem); }
    90% { opacity: 0.8; }
}

.hv-card-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.35rem 0; font-size: 0.76rem; border-bottom: 1px solid var(--line);
}
.hv-card-row:last-of-type { border-bottom: none; }
.hv-card-row span {
    font-family: var(--font-mono); font-size: 0.58rem;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute);
}
.hv-card-row strong { color: var(--ink); font-size: 0.76rem; }

.hv-card-badge {
    display: inline-flex; margin-top: 0.7rem; padding: 0.2rem 0.52rem;
    border-radius: var(--radius-pill); border: 1px solid rgba(45,138,110,0.2);
    color: var(--success); background: var(--success-soft);
    font-size: 0.56rem; font-family: var(--font-mono);
    text-transform: uppercase; letter-spacing: 0.09em;
}

.hv-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
    padding: 0.8rem 0;
}

.hv-ai-orb {
    width: 68px; height: 68px; border-radius: 50%;
    position: relative; display: grid; place-items: center;
    background: radial-gradient(circle at 36% 36%, rgba(212,146,10,0.18), transparent 70%);
}
.hv-ai-ring-1, .hv-ai-ring-2 { position: absolute; border-radius: 50%; }
.hv-ai-ring-1 { inset: 0; border: 1.5px solid rgba(212,146,10,0.32); animation: ring-spin 8s linear infinite; }
.hv-ai-ring-2 { inset: 7px; border: 1.5px dashed rgba(212,146,10,0.18); animation: ring-spin 11s linear infinite reverse; }
@keyframes ring-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.hv-ai-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--amber); box-shadow: 0 0 20px rgba(212,146,10,0.5);
}
.hv-node-name {
    font-family: var(--font-mono); font-size: 0.6rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--amber); font-weight: 600;
}

/* ================================================================
   PROOF STRIP — BENTO GRID
   ================================================================ */

.proof-strip {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.95) 0%, rgba(247, 241, 234, 0.92) 100%);
}

.proof-kicker {
    text-align: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.bento-card {
    padding: 2rem 1.6rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    will-change: transform;
}

.bento-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.bento-card span {
    display: block;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.bento-tall {
    grid-row: span 2;
    display: flex; flex-direction: column; justify-content: center;
    padding: 2.5rem 2rem;
}

.bento-tall strong { font-size: 4rem; margin-bottom: 0.8rem; }

.bento-dark {
    background: var(--dark); border-color: var(--dark);
}
.bento-dark strong { color: var(--dark-ink); }
.bento-dark span { color: var(--dark-ink-soft); }

.bento-wide { grid-column: span 2; }

.bento-amber {
    background: var(--amber-soft); border-color: rgba(212,146,10,0.15);
}
.bento-amber strong { color: var(--amber-strong); }

/* ================================================================
   SECTIONS — BASE
   ================================================================ */

.section {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: linear-gradient(180deg, #FAF7F2 0%, #F8F1EA 100%);
}

.section-blush {
    background: linear-gradient(180deg, #F8F1EA 0%, #F3EBE3 55%, #EFE4D9 100%);
}

.section-dark {
    background: linear-gradient(180deg, #2B221C 0%, #1C1410 34%, #1C1410 100%);
}
.section-dark h2, .section-dark h2 em { color: var(--dark-ink); }
.section-dark p { color: var(--dark-ink-soft); }

#cleo.section-blush {
    background: linear-gradient(180deg, #F8F1EA 0%, #F2E9DF 58%, #F8F2EB 100%);
}

#cleo.section-blush::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 170px;
    background: linear-gradient(180deg, rgba(248, 242, 235, 0) 0%, rgba(250, 247, 242, 0.94) 72%, #FAF7F2 100%);
    pointer-events: none;
    z-index: 0;
}

#cleo.section-blush > .container {
    position: relative;
    z-index: 1;
}

#cleo + .section:not(#prior-auth) {
    background: linear-gradient(180deg, #FAF7F2 0%, #F9F4ED 52%, #F7F1EA 100%);
}

#prior-auth + .section {
    background: linear-gradient(180deg, #FAF7F2 0%, #F9F4ED 52%, #F7F1EA 100%);
}

#company.section-blush {
    background: linear-gradient(180deg, #F8F1EA 0%, #F0E5DA 56%, #E5D5C4 100%);
}

#company.section-blush > .container {
    position: relative;
    z-index: 1;
}

.section-head {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    margin-bottom: 3.5rem;
}

.section-head--left { align-items: flex-start; text-align: left; }
.section-head h2 { max-width: 18ch; margin-bottom: 0.85rem; }
.section-head--left h2 { max-width: 22ch; }

.section-sub { font-size: 1.06rem; max-width: 52ch; line-height: 1.7; }

.section-actions {
    margin-top: 2.5rem;
    display: flex; flex-wrap: wrap; gap: 0.75rem;
}

.section-head--left ~ .section-actions { justify-content: flex-start; }

/* ================================================================
   FAX — Sticky Scroll Storytelling
   ================================================================ */

.section-fax {
    position: relative;
}

.fax-scroll-track {
    height: 280vh;
    position: relative;
}

.fax-scroll-frame {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
}

.fax-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fax-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fax-text h2 { max-width: 16ch; margin-bottom: 0.85rem; }

.fax-dots {
    display: flex;
    gap: 0.6rem;
    margin-top: 2.5rem;
}

.fax-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1.5px solid var(--line-strong);
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: transform var(--duration-fast) var(--ease-smooth), border-color var(--duration-fast) var(--ease-smooth), box-shadow var(--duration-fast) var(--ease-smooth);
}

.fax-dot::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 50%;
    background: var(--amber);
    transform: scale(0.45);
    opacity: 0;
    transition: transform var(--duration-fast) var(--ease-smooth), opacity var(--duration-fast) var(--ease-smooth);
}

.fax-dot.is-active {
    border-color: var(--amber);
    transform: scale(1.25);
    box-shadow: 0 0 0 4px rgba(212, 146, 10, 0.15);
}

.fax-dot.is-active::after {
    transform: scale(1);
    opacity: 1;
}

.fax-cta {
    margin-top: 2rem;
}

/* ---- Fax Pipeline ---- */
.fax-pipeline {
    --pipe-progress: 0%;
    position: relative;
    width: min(100%, 480px);
    margin-left: auto;
    padding-left: 28px;
}

.fax-pipe-track {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 13px;
    width: 2px;
    background: var(--line);
    border-radius: 2px;
}

.fax-pipe-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--pipe-progress);
    background: linear-gradient(180deg, var(--amber), var(--success));
    border-radius: 2px;
    transition: height 0.6s var(--ease);
}

.fax-stage {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.7rem 0;
    opacity: 0.35;
    transform: translateX(6px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.fax-stage.is-active,
.fax-stage.is-complete {
    opacity: 1;
    transform: translateX(0);
}

.fax-stage-node {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--line-strong);
    background: var(--surface);
    display: grid;
    place-items: center;
    color: var(--ink-mute);
    position: relative;
    z-index: 2;
    transition: border-color 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.fax-stage-node svg {
    width: 14px;
    height: 14px;
}

.fax-stage.is-active .fax-stage-node {
    border-color: var(--amber);
    background: var(--amber-soft);
    color: var(--amber-strong);
    box-shadow: 0 0 0 4px rgba(212, 146, 10, 0.12);
}

.fax-stage.is-complete .fax-stage-node {
    border-color: var(--amber);
    background: var(--amber-soft);
    color: var(--amber-strong);
}

.fax-stage.is-complete .fax-stage-node--done,
.fax-stage.is-active .fax-stage-node--done {
    border-color: var(--success);
    background: var(--success-soft);
    color: var(--success);
    box-shadow: 0 0 0 4px rgba(45, 138, 110, 0.12);
}

.fax-stage-card {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.9rem;
    border-radius: 14px;
    border: 1px solid transparent;
    background: transparent;
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.fax-stage.is-active .fax-stage-card {
    border-color: var(--line);
    background: var(--surface);
    box-shadow: 0 6px 20px rgba(28, 20, 16, 0.07);
}

.fax-stage.is-active .fax-stage-card--done {
    border-color: rgba(45, 138, 110, 0.3);
    background: var(--success-soft);
}

.fax-stage-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.fax-stage-detail {
    display: block;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.45;
    margin-top: 0.15rem;
}

.fax-stage-meta {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
    margin-top: 0.3rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.fax-stage.is-active .fax-stage-meta {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   CLEO — Two-column layout
   ================================================================ */

.cleo-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

.cleo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cleo-text h2 { max-width: 16ch; margin-bottom: 0.85rem; }

.cleo-visual {
    position: relative;
}

.browser {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    will-change: transform;
}

.browser-bar {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.65rem 0.95rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--surface-warm), var(--surface));
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #E8614D; }
.browser-dots span:nth-child(2) { background: #E8B84D; }
.browser-dots span:nth-child(3) { background: #5CB85C; }

.browser-url {
    flex: 1; padding: 0.35rem 0.7rem; border-radius: 8px;
    border: 1px solid var(--line); background: var(--surface);
    color: var(--ink-mute); font-family: var(--font-mono); font-size: 0.64rem;
}

/* Dashboard internals */
.dash { display: flex; min-height: 340px; }

.dash-side {
    width: 88px; padding: 0.8rem 0.4rem;
    border-right: 1px solid var(--line);
    background: var(--surface-warm);
    display: flex; flex-direction: column; gap: 6px;
}

.dash-item {
    min-height: 32px; border-radius: 8px;
    border: 1px solid var(--line); background: var(--surface);
    appearance: none; -webkit-appearance: none;
    display: flex; align-items: center; justify-content: center;
    padding: 0.2rem 0.3rem; text-align: center;
    font-family: var(--font-mono); font-size: 0.48rem;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--ink-mute); line-height: 1.1; cursor: pointer;
    transition: all 0.2s ease;
}

.dash-item.active {
    background: var(--amber-soft);
    border-color: rgba(212,146,10,0.25);
    color: var(--amber-strong);
}

.dash-main {
    flex: 1; padding: 1.2rem;
    transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
}

.dash-main.is-transitioning { opacity: 0.45; transform: translateY(8px); }

.dash-header {
    display: flex; align-items: center; gap: 0.7rem;
    padding-bottom: 0.7rem; margin-bottom: 0.7rem;
    border-bottom: 1px solid var(--line);
}

.dash-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-soft), rgba(212,146,10,0.12));
    display: grid; place-items: center;
    color: var(--amber-strong);
    font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
    flex-shrink: 0;
}

.dash-info { display: grid; gap: 2px; }
.dash-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.dash-detail { font-size: 0.62rem; color: var(--ink-mute); line-height: 1.35; }

.dash-tag {
    margin-left: auto; border-radius: var(--radius-pill);
    border: 1px solid rgba(212,146,10,0.22);
    background: var(--amber-soft); color: var(--amber-strong);
    font-family: var(--font-mono); font-size: 0.52rem;
    text-transform: uppercase; letter-spacing: 0.07em;
    padding: 0.22rem 0.55rem; white-space: nowrap;
}

.dash-highlights { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.7rem; }

.dash-chip {
    display: inline-flex; align-items: center;
    border-radius: var(--radius-pill); border: 1px solid var(--line);
    background: var(--surface-warm); color: var(--ink-soft);
    font-size: 0.54rem; font-family: var(--font-mono);
    text-transform: uppercase; letter-spacing: 0.06em; padding: 0.15rem 0.45rem;
}

.dash-chip-alert {
    border-color: rgba(212,146,10,0.25);
    background: var(--amber-soft); color: var(--amber-strong);
}

.dash-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.6rem;
}

.dash-panel {
    border-radius: 10px; border: 1px solid var(--line);
    background: var(--surface-warm); padding: 0.9rem;
}

.dp-title {
    color: var(--ink-mute); font-family: var(--font-mono);
    font-size: 0.48rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.dp-meta {
    color: var(--ink-mute); font-size: 0.48rem;
    font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em;
}

.dp-list { margin: 0; padding: 0; list-style: none; }
.dp-list li {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 0.4rem; padding: 0.3rem 0; border-top: 1px solid var(--line);
}
.dp-list li:first-child { border-top: none; padding-top: 0; }
.dp-list span { font-size: 0.66rem; color: var(--ink-soft); }
.dp-list strong { font-size: 0.64rem; color: var(--ink); font-weight: 600; text-align: right; line-height: 1.25; }

/* Feature pills */
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.8rem; }

.pill {
    display: inline-flex; align-items: center; gap: 0.42rem;
    border-radius: var(--radius-pill); border: 1px solid var(--line-strong);
    background: var(--surface); padding: 0.44rem 0.85rem;
    font-size: 0.82rem; color: var(--ink-soft);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.pill:hover { border-color: var(--amber); transform: translateY(-1px); }

.pill::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--amber); box-shadow: 0 0 0 4px rgba(212,146,10,0.11);
}

/* ================================================================

/* ================================================================
   WHY CARDS
   ================================================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.why-card {
    padding: 2.5rem 1.8rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    will-change: transform;
}

.why-stat {
    margin-bottom: 1rem; line-height: 1;
    color: var(--amber);
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 400;
}

.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { font-size: 0.92rem; line-height: 1.65; }

/* ================================================================
   COMPANY — Pull quote
   ================================================================ */

.pull-quote {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
}

.pull-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3.2vw + 0.4rem, 3rem);
    font-weight: 400; line-height: 1.15;
    color: var(--ink); margin: 0; padding: 0;
    letter-spacing: -0.015em;
}

.pull-quote-sub {
    margin-top: 1.4rem;
    font-size: 1.06rem; line-height: 1.7; max-width: 56ch;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.company-card {
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line-strong);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    will-change: transform;
}

.company-card h3 { margin-bottom: 0.45rem; }
.company-card p { font-size: 0.92rem; line-height: 1.65; }

/* ================================================================
   CTA — WARM (continues from company section)
   ================================================================ */

.section-cta-warm {
    background: linear-gradient(180deg, #E5D5C4 0%, #D8C8B6 40%, #C8B5A0 100%);
}

.cta-inner {
    max-width: 760px; margin: 0 auto;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.2rem, 4vw, 2.4rem);
}

.section-cta-warm .cta-inner h2 { max-width: 15ch; margin-bottom: 0.85rem; }

.cta-actions {
    margin-top: 2rem;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer-dark {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(28, 20, 16, 0.25);
    background: #1C1410;
}

.footer-row {
    display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
}

.footer-dark .logo { color: var(--dark-ink-soft); }

.footer-links {
    display: flex; align-items: center; flex-wrap: wrap;
    justify-content: flex-end; gap: 0.9rem;
    color: var(--dark-ink-soft); font-size: 0.8rem;
}

.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: var(--dark-ink); }

/* ================================================================
   VIEW CONTAINER
   ================================================================ */

#view-container {
    position: relative;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#view-container.warp-active { opacity: 0.42; transform: scale(0.985); }

