:root {
    color-scheme: light;
    --page-bg: #F5F5F7; --section-bg: #FFFFFF; --surface: rgba(255, 255, 255, 0.72); --surface-strong: rgba(255, 255, 255, 0.92);
    --text-primary: #171719; --text-secondary: rgba(23, 23, 25, 0.72); --text-muted: rgba(23, 23, 25, 0.5);
    --border-subtle: rgba(23, 23, 25, 0.11); --border-strong: rgba(23, 23, 25, 0.24);
    --button-bg: #171719; --button-text: #FFFFFF; --overlay-bg: rgba(10, 10, 12, 0.42); --nav-bg: rgba(245, 245, 247, 0.86);
    --drawer-bg: #F5F5F7; --footer-bg: #FFFFFF; --input-bg: rgba(255, 255, 255, 0.86); --focus-ring: rgba(23, 23, 25, 0.34);
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.08); --mist: var(--page-bg); --charcoal: var(--text-primary);
    --glass-border: var(--border-subtle); --glass-bg: var(--surface); --accent: var(--text-primary); --menu-line: var(--text-primary);
    --transition: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
html.neo-mode,
body.neo-mode {
    color-scheme: dark;
    --page-bg: #050607; --section-bg: #0B0C0E; --surface: rgba(18, 19, 21, 0.78); --surface-strong: rgba(18, 19, 21, 0.94);
    --text-primary: #F5F5F7; --text-secondary: rgba(245, 245, 247, 0.76); --text-muted: rgba(245, 245, 247, 0.54);
    --border-subtle: rgba(245, 245, 247, 0.14); --border-strong: rgba(245, 245, 247, 0.3); --button-bg: #F5F5F7;
    --button-text: #050607; --overlay-bg: rgba(0, 0, 0, 0.64); --nav-bg: rgba(5, 6, 7, 0.88); --drawer-bg: #08090A;
    --footer-bg: #050607; --input-bg: rgba(18, 19, 21, 0.9); --focus-ring: rgba(245, 245, 247, 0.44); --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.4);
}
* { box-sizing: border-box; }
html { background: var(--page-bg); scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition), color var(--transition);
}
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 4px;
}
button { font: inherit; }
button:disabled, a[aria-disabled="true"], input:disabled, textarea:disabled, select:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}
h1, .display-bold { font-weight: 900; letter-spacing: 0; }
h2, .display-regular { font-weight: 500; letter-spacing: 0; }
h3, .display-thin { font-weight: 500; letter-spacing: 0; }
section, main, .main-content { width: 100%; max-width: 100vw; overflow-x: hidden; }
.main-content {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(16px, 3vw, 40px);
    padding-right: clamp(16px, 3vw, 40px);
}
main.main-content.pt-48,
main.main-content {
    padding-top: clamp(96px, 12vh, 126px);
}
main.main-content > section:first-child {
    padding-top: clamp(38px, 7vh, 78px);
}
main.main-content > section {
    padding-left: clamp(16px, 2vw, 28px); padding-right: clamp(16px, 2vw, 28px);
}
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 8000;
    height: 76px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(18px, 3.2vw, 44px);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}
.site-brand, .drawer-brand, .footer-wordmark { display: inline-flex; align-items: center; }
.brand-logo {
    width: clamp(150px, 14vw, 204px);
    height: auto; display: block;
    content: url('https://assets.lozanocorp.com/alyssiun/png/alyssiun-name-000000.png');
}
html.neo-mode .brand-logo, body.neo-mode .brand-logo {
    content: url('https://assets.lozanocorp.com/alyssiun/png/alyssiun-name-ffffff.png');
}
.brand-icon { display: none; }
.menu-button {
    width: 46px; height: 46px;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-primary);
    cursor: pointer;
}
.menu-button span {
    width: 20px; height: 2px;
    background: currentColor;
    border-radius: 999px;
}
.menu-button span:nth-child(2) { width: 26px; }
#drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 8500;
    background: var(--overlay-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
.site-drawer {
    position: fixed;
    top: 0; right: 0;
    z-index: 9000;
    width: min(440px, 92vw);
    height: 100dvh;
    padding: 28px;
    display: flex; flex-direction: column;
    gap: 28px;
    background: var(--drawer-bg);
    color: var(--text-primary);
    border-left: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
body.menu-open { overflow: hidden; }
body.menu-open #drawer-overlay { opacity: 1; visibility: visible; pointer-events: auto; }
body.menu-open .site-drawer { transform: translateX(0); }
.drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}
.drawer-close {
    position: relative;
    width: 42px; height: 42px;
    flex: 0 0 auto;
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-primary);
    cursor: pointer;
}
.drawer-close span {
    position: absolute;
    left: 11px; top: 20px; width: 18px; height: 2px;
    background: currentColor;
    border-radius: 999px;
}
.drawer-close span:first-child { transform: rotate(45deg); }
.drawer-close span:last-child { transform: rotate(-45deg); }
.drawer-nav, .drawer-secondary, .footer-grid div {
    display: flex; flex-direction: column;
}
.drawer-nav { gap: 4px; }
.drawer-nav > a, .drawer-nav summary {
    padding: 13px 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 650; letter-spacing: 0;
    cursor: pointer;
    list-style: none; text-decoration: none;
}
.drawer-nav summary::-webkit-details-marker { display: none; }
.drawer-nav summary::after { content: "+"; float: right; color: var(--text-muted); }
.drawer-nav details[open] summary::after { content: "-"; }
.drawer-group {
    margin: 4px 0 12px;
    padding: 10px 0 10px 18px;
    display: flex; flex-direction: column;
    gap: 10px;
    border-left: 1px solid var(--border-subtle);
}
.drawer-group a, .drawer-secondary a, .footer-grid a, .footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
}
.drawer-group a { font-size: 0.95rem; }
.drawer-subtitle {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
}
.drawer-secondary {
    margin-top: auto;
    padding-top: 18px;
    gap: 10px;
    border-top: 1px solid var(--border-subtle);
}
.active-menu-item { color: var(--text-primary); text-decoration: underline; text-underline-offset: 6px; }
.all-caps { text-transform: uppercase; letter-spacing: 0.18em; }
.kinetic-glass {
    background: var(--surface);
    color: var(--text-primary);
    border-color: var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.aura {
    position: fixed;
    inset: 10vh 0 auto 50%;
    width: min(760px, 70vw); height: min(760px, 70vw);
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle, rgba(23, 23, 25, 0.055), transparent 68%);
}
html.neo-mode .aura, body.neo-mode .aura {
    background: radial-gradient(circle, rgba(245, 245, 247, 0.08), transparent 68%);
}
.page-fade { animation: fadeIn 0.7s ease-out forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
a.bg-white.text-black, button.bg-white.text-black {
    background: var(--button-bg);
    color: var(--button-text);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-soft);
}
a.border.border-white\/20, a.border.border-white\/10, div.border.border-white\/10 {
    border-color: var(--border-subtle);
}
a.block.border, div.border, a.rounded-2xl, div.rounded-2xl {
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-primary);
}
a.inline-block.rounded-2xl {
    border-radius: 999px;
}
.text-black, .text-\[\#1D1D1F\] { color: var(--text-primary); }
.text-white { color: var(--text-primary); }
.text-gray-300, .text-gray-400, .text-gray-500, .text-gray-600 { color: var(--text-secondary); }
.bg-white, .bg-\[\#ffffff\], .bg-\[\#F9FAFB\], .bg-\[\#f5f5f7\] { background-color: var(--section-bg); }
.bg-black, .bg-\[\#050505\], .bg-\[\#000000\] { background-color: var(--surface); }
.border-white\/10, .border-white\/20, .border-black\/5, .border-black\/10, .border-black\/20,
.border-black, .border-gray-100, .border-gray-200, .border-gray-800 { border-color: var(--border-subtle); }
input, textarea, select {
    background: var(--input-bg);
    color: var(--text-primary);
    border-color: var(--border-subtle);
}
.media-hero {
    position: relative;
    width: min(1180px, calc(100vw - 32px));
    min-height: clamp(560px, 72vh, 760px);
    margin: 0 auto clamp(42px, 7vw, 86px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 8px;
    isolation: isolate;
    background: var(--section-bg);
    box-shadow: var(--shadow-soft);
}
.media-hero--home {
    background-image: url("https://images.unsplash.com/photo-1684695749267-233af13276d0?auto=format&fit=crop&fm=jpg&q=84&w=2400");
    background-position: center;
    background-size: cover;
}
.media-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 52%, rgba(0, 0, 0, 0.18)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}
.media-hero__content {
    max-width: 790px;
    padding: clamp(28px, 6vw, 72px);
    color: #fff;
    text-align: left;
}
.media-hero__content p {
    color: rgba(255, 255, 255, 0.86);
}
.media-hero__content a.border {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.section-kicker {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: end;
    margin-bottom: clamp(28px, 5vw, 48px);
}
.section-heading-row h2,
.section-heading-row p {
    margin: 0;
}
.video-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.proof-video {
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--surface);
}
.proof-video__frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 0;
    background: #050607;
    color: inherit;
    cursor: pointer;
    overflow: hidden;
}
.proof-video__iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #050607;
}
.proof-video__poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.45s ease, opacity 0.45s ease;
}
.proof-video__poster:hover img {
    transform: scale(1.035);
    opacity: 0.96;
}
.proof-video__play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 66px;
    height: 66px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}
.proof-video__play::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 19px solid #050607;
}
.proof-video__copy {
    padding: 22px;
}
.proof-video__copy span,
.sample-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.proof-video__copy h3,
.sample-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.25;
}
.proof-video__copy p,
.sample-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.65;
}
.sample-band {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
    padding: clamp(52px, 7vw, 88px) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.sample-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.sample-card {
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--surface);
}
.sample-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--section-bg);
}
.sample-card div {
    padding: 22px;
}
.deal-room {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--surface);
}
.deliverable-list {
    display: grid;
    gap: 12px;
}
.deliverable-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 64px;
    padding: 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--surface-strong);
}
.deliverable-list strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--button-bg);
    color: var(--button-text);
    font-size: 0.92rem;
}
.deliverable-list span {
    color: var(--text-secondary);
    line-height: 1.45;
}
.site-footer {
    margin-top: clamp(48px, 8vh, 96px);
    background: var(--footer-bg);
    color: var(--text-primary);
    border-top: 1px solid var(--border-subtle);
}
.footer-inner {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto; padding: clamp(48px, 8vw, 88px) 0 36px;
}
.footer-lead {
    display: flex; justify-content: space-between;
    gap: 28px;
    margin-bottom: 48px;
}
.footer-lead p { max-width: 500px; margin: 0; color: var(--text-secondary); line-height: 1.7; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}
.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.footer-grid a { margin: 0 0 10px; font-size: 0.95rem; }
.footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    display: flex; justify-content: space-between;
    gap: 18px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
}
@media (max-width: 760px) {
    .site-header { height: 68px; padding: 0 16px; }
    .brand-logo { width: 148px; }
    main.main-content.pt-48, main.main-content { padding-top: 82px; }
    main.main-content > section:first-child { padding-top: 28px; }
    .media-hero {
        width: min(100%, calc(100vw - 20px));
        min-height: 620px;
        margin-bottom: 44px;
    }
    .media-hero__shade {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 74%, rgba(0, 0, 0, 0.18));
    }
    .media-hero__content {
        padding: 26px;
    }
    .section-heading-row,
    .deal-room {
        grid-template-columns: 1fr;
    }
    .video-proof-grid,
    .sample-grid {
        grid-template-columns: 1fr;
    }
    .sample-band {
        width: min(100%, calc(100vw - 20px));
    }
    .site-drawer { padding: 22px; }
    .footer-lead, .footer-bottom { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 761px) and (max-width: 1080px) {
    .video-proof-grid,
    .sample-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        scroll-behavior: auto;
        transition-duration: 0.01ms;
    }
}
