@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
    --cobalt: #0047AB;
    --cobalt-deep: #0056B3;
    --navy: #0A2463;
    --slate-blue: #3E6A8A;
    --soft-blue: #6B9AC4;
    --pastel-blue: #E8F0F8;
    --border-blue: #A8C5E4;
    --white: #FFFFFF;
    --bg: #FFFFFF;
    --ink: #0A2463;
    --font-display: 'Unbounded', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --side-w: 280px;
    --side-collapsed: 72px;
    --shadow-brutal: 8px 8px 0px #0A2463;
    --shadow-soft: 0 8px 32px rgba(0, 71, 171, 0.10);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

strong, p, span, a, li, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}

strong { color: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    letter-spacing: -0.04em;
    margin: 0 0 0.5em 0;
    line-height: 1.05;
}

h1 { font-weight: 800; font-size: clamp(44px, 8vw, 112px); }
h2 { font-weight: 700; font-size: clamp(36px, 5vw, 72px); }
h3 { font-weight: 700; font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.02em; font-family: var(--font-body); }
h4 { font-weight: 600; font-size: 20px; letter-spacing: 0; font-family: var(--font-body); }

p { margin: 0 0 1em 0; color: inherit; }

a {
    color: var(--cobalt);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--navy); }

button, .btn-brutal {
    border-radius: 0 !important;
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 14px 28px;
    white-space: nowrap;
    color: var(--white);
    background: var(--cobalt);
    box-shadow: 4px 4px 0 var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

button:hover, .btn-brutal:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 var(--navy);
    color: var(--white);
    background: var(--cobalt-deep);
}

button:active, .btn-brutal:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--navy);
}

.btn-outline {
    background: var(--white);
    color: var(--cobalt);
    border: 3px solid var(--cobalt);
    box-shadow: 4px 4px 0 var(--navy);
}

.btn-outline:hover {
    background: var(--cobalt);
    color: var(--white);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--cobalt);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
    padding: 12px 22px;
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-cookie-accent { background: var(--cobalt); color: var(--white); }
.btn-cookie-decline { background: transparent; color: var(--navy); border: 2px solid var(--navy); box-shadow: none; padding: 10px 20px; }
.btn-cookie-decline:hover { background: var(--navy); color: var(--white); }

.container-fluid-brutal {
    width: 100%;
    padding: 0 32px;
}

.container-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.app-shell {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.app-sidebar {
    width: var(--side-w);
    min-width: var(--side-w);
    background: var(--white);
    border-right: 4px solid var(--cobalt);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 50;
    transition: width 0.3s var(--ease-spring), min-width 0.3s var(--ease-spring);
}

.app-sidebar.collapsed {
    width: var(--side-collapsed);
    min-width: var(--side-collapsed);
}

.brand-block {
    padding: 22px 18px;
    border-bottom: 2px solid var(--pastel-blue);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 56px;
    height: 56px;
    background: var(--cobalt);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark::before {
    content: "";
    width: 28px;
    height: 28px;
    border: 4px solid var(--white);
    border-radius: 50%;
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.brand-domain {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--slate-blue);
    letter-spacing: 0.04em;
}

.brand-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--slate-blue);
    letter-spacing: 0.02em;
    margin-top: 2px;
}

.app-sidebar.collapsed .brand-title,
.app-sidebar.collapsed .brand-sub,
.app-sidebar.collapsed .nav-label,
.app-sidebar.collapsed .sidebar-cta {
    display: none;
}

.app-sidebar.collapsed .nav-link {
    justify-content: center;
    padding: 14px;
}

.app-sidebar.collapsed .brand-block {
    padding: 18px 8px;
    align-items: center;
}

.app-sidebar.collapsed .brand-domain {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
}

.sidebar-nav {
    padding: 22px 14px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    border-radius: 0;
    transition: background 0.18s ease, color 0.18s ease;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link:hover,
.nav-link.active {
    background: var(--cobalt);
    color: var(--white);
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
}

.nav-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-blue);
    margin-left: auto;
}

.nav-link:hover .nav-num,
.nav-link.active .nav-num {
    color: var(--white);
}

.sidebar-cta {
    padding: 18px;
    border-top: 2px solid var(--pastel-blue);
    flex-shrink: 0;
}

.sidebar-cta button {
    width: 100%;
    font-size: 13px;
    padding: 14px 16px;
}

.sidebar-toggle {
    position: absolute;
    top: 14px;
    right: -16px;
    width: 32px;
    height: 32px;
    background: var(--cobalt);
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0 var(--navy);
}

.sidebar-toggle:hover {
    background: var(--navy);
    color: var(--white);
}

.app-main {
    flex: 1;
    margin-left: var(--side-w);
    min-height: 100vh;
    transition: margin-left 0.3s var(--ease-spring);
}

.app-sidebar.collapsed ~ .app-main {
    margin-left: var(--side-collapsed);
}

.app-sidebar.collapsed ~ .site-footer {
    margin-left: var(--side-collapsed);
}

.mobile-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 4px solid var(--cobalt);
    padding: 12px 18px;
    z-index: 90;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-soft);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.mobile-brand .brand-mark {
    width: 40px;
    height: 40px;
}

.mobile-brand .brand-mark::before { width: 20px; height: 20px; border-width: 3px; }
.mobile-brand .brand-mark::after { width: 6px; height: 6px; }

.mobile-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mobile-brand-text .brand-domain {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-brand-text .brand-title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.burger-btn {
    width: 44px;
    height: 44px;
    background: var(--cobalt);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 3px 3px 0 var(--navy);
}

.burger-btn:hover { background: var(--navy); }

.burger-dot {
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.burger-bars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    width: 22px;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease-spring);
    overflow-y: auto;
}

.mobile-drawer.open { transform: translateY(0); }

.mobile-drawer-head {
    padding: 18px 24px;
    border-bottom: 4px solid var(--cobalt);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-drawer-close {
    width: 44px;
    height: 44px;
    background: var(--cobalt);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-nav {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mobile-drawer-link {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    padding: 14px 0;
    border-bottom: 2px solid var(--pastel-blue);
    display: block;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-spring), color 0.2s ease;
}

.mobile-drawer.open .mobile-drawer-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-drawer.open .mobile-drawer-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-drawer.open .mobile-drawer-link:nth-child(2) { transition-delay: 0.13s; }
.mobile-drawer.open .mobile-drawer-link:nth-child(3) { transition-delay: 0.21s; }
.mobile-drawer.open .mobile-drawer-link:nth-child(4) { transition-delay: 0.29s; }
.mobile-drawer.open .mobile-drawer-link:nth-child(5) { transition-delay: 0.37s; }
.mobile-drawer.open .mobile-drawer-link:nth-child(6) { transition-delay: 0.45s; }
.mobile-drawer.open .mobile-drawer-link:nth-child(7) { transition-delay: 0.53s; }

.mobile-drawer-link:hover {
    color: var(--cobalt);
}

.mobile-drawer-cta {
    margin-top: 24px;
}

.mobile-drawer-cta button {
    width: 100%;
    font-size: 16px;
    padding: 18px;
}

.hero-stage {
    min-height: calc(100vh - 40px);
    background: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-stage.compact {
    min-height: 60vh;
}

.hero-stage.mini {
    min-height: 50vh;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(168, 197, 228, 0.18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(168, 197, 228, 0.18) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    background: var(--cobalt);
    opacity: 0.16;
    filter: blur(60px);
    animation: floatShape 30s ease-in-out infinite;
}

.hero-shape.s1 { width: 380px; height: 380px; top: 8%; left: 8%; animation-duration: 28s; background: var(--cobalt); }
.hero-shape.s2 { width: 460px; height: 460px; bottom: -10%; right: 12%; animation-duration: 36s; animation-delay: -8s; background: var(--cobalt-deep); }
.hero-shape.s3 { width: 280px; height: 280px; top: 40%; right: 30%; animation-duration: 24s; animation-delay: -4s; background: var(--soft-blue); }
.hero-shape.s4 { width: 220px; height: 220px; bottom: 20%; left: 30%; animation-duration: 32s; animation-delay: -12s; background: var(--cobalt); }

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -50px) rotate(15deg); }
    50% { transform: translate(-30px, 40px) rotate(-10deg); }
    75% { transform: translate(50px, 30px) rotate(20deg); }
}

.hero-inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pastel-blue);
    color: var(--navy);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    margin-bottom: 28px;
    border-left: 4px solid var(--cobalt);
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--cobalt);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    margin-bottom: 24px;
    word-spacing: 0.05em;
}

.hero-title .line-2 {
    color: var(--cobalt);
    display: block;
}

.hero-sub {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--slate-blue);
    margin-bottom: 36px;
    letter-spacing: 0.02em;
}

.hero-cta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 2px solid var(--pastel-blue);
    padding-top: 28px;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--cobalt);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-blue);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--pastel-blue);
    border: 4px solid var(--cobalt);
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-visual-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--white);
    color: var(--navy);
    padding: 10px 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    border-left: 4px solid var(--cobalt);
    z-index: 5;
}

.hero-visual-stat {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: var(--navy);
    color: var(--white);
    padding: 14px 18px;
    z-index: 5;
    box-shadow: 4px 4px 0 var(--cobalt);
}

.hero-visual-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.hero-visual-stat span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--soft-blue);
}

.section-block {
    padding: 120px 0;
    position: relative;
    max-width: 100vw;
    overflow-x: hidden;
}

.section-block.tight { padding: 80px 0; }
.section-block.compact { padding: 60px 0; }

.section-block.dark {
    background: var(--navy);
    color: var(--white);
}

.section-block.dark h1,
.section-block.dark h2,
.section-block.dark h3,
.section-block.dark h4 { color: var(--white); }
.section-block.dark p,
.section-block.dark span { color: var(--soft-blue); }
.section-block.dark strong { color: var(--white); }

.section-block.cobalt {
    background: var(--cobalt);
    color: var(--white);
}

.section-block.cobalt h1,
.section-block.cobalt h2,
.section-block.cobalt h3,
.section-block.cobalt h4 { color: var(--white); }
.section-block.cobalt p { color: var(--white); }

.section-block.soft {
    background: var(--pastel-blue);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--cobalt);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--cobalt);
}

.section-block.dark .section-eyebrow,
.section-block.cobalt .section-eyebrow {
    color: var(--soft-blue);
}

.section-block.dark .section-eyebrow::before,
.section-block.cobalt .section-eyebrow::before {
    background: var(--soft-blue);
}

.section-title {
    margin-bottom: 20px;
}

.section-lead {
    font-size: 18px;
    color: var(--slate-blue);
    max-width: 760px;
    line-height: 1.6;
}

.section-block.dark .section-lead,
.section-block.cobalt .section-lead {
    color: var(--soft-blue);
}

.section-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 18px;
}

.bento-cell {
    background: var(--white);
    border: 2px solid var(--border-blue);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, z-index 0s, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    color: var(--ink);
}

.bento-cell:hover {
    transform: scale(1.03) translateY(-6px);
    z-index: 10;
    border-color: var(--cobalt);
    box-shadow: 8px 8px 0 var(--navy);
}

.bento-cell .bento-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-blue);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.bento-cell h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.2;
}

.bento-cell p {
    font-size: 14px;
    color: var(--slate-blue);
    line-height: 1.5;
    margin-bottom: 0;
}

.bento-cell .bento-price {
    margin-top: auto;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--cobalt);
    padding-top: 16px;
}

.bento-cell .bento-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.bento-cell .bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    transition: opacity 0.3s ease;
}

.bento-cell:hover .bento-img img {
    opacity: 0.32;
}

.bento-cell.large { grid-column: span 2; grid-row: span 2; }
.bento-cell.wide { grid-column: span 2; grid-row: span 1; }
.bento-cell.tall { grid-row: span 2; }
.bento-cell.big-price {
    background: var(--cobalt);
    color: var(--white);
    border-color: var(--cobalt);
}
.bento-cell.big-price h3 { color: var(--white); }
.bento-cell.big-price p { color: var(--soft-blue); }
.bento-cell.big-price .bento-tag { color: var(--soft-blue); }
.bento-cell.big-price .bento-price { color: var(--white); font-size: 56px; }

.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-blue);
}

.timeline-step {
    position: relative;
    padding: 0 0 56px 0;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -62px;
    top: 6px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 4px solid var(--cobalt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--cobalt);
    transition: transform 0.3s var(--ease-spring), background 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.timeline-step:hover .timeline-dot {
    background: var(--cobalt);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-content h3 {
    margin-bottom: 8px;
    color: var(--navy);
}

.timeline-content p {
    color: var(--slate-blue);
    margin: 0;
}

.masonry {
    column-count: 3;
    column-gap: 24px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    background: var(--white);
    border: 2px solid var(--border-blue);
    overflow: hidden;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, z-index 0s;
    position: relative;
    color: var(--ink);
}

.masonry-item:hover {
    transform: scale(1.03) translateY(-4px);
    z-index: 10;
    box-shadow: 8px 8px 0 var(--navy);
    border-color: var(--cobalt);
}

.masonry-img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.masonry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.masonry-body {
    padding: 22px 24px;
}

.masonry-loc {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-blue);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.masonry-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 8px;
}

.masonry-desc {
    font-size: 13px;
    color: var(--slate-blue);
    margin: 0;
}

.split-sticky {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.split-sticky-media {
    position: sticky;
    top: 80px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 4px solid var(--cobalt);
    box-shadow: var(--shadow-brutal);
    background: var(--pastel-blue);
}

.split-sticky-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-sticky-body h2 { margin-bottom: 24px; }
.split-sticky-body p { color: var(--slate-blue); margin-bottom: 20px; font-size: 16px; }

.fact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.fact-card {
    background: var(--white);
    border: 2px solid var(--border-blue);
    padding: 24px;
    transition: transform 0.3s var(--ease-spring), z-index 0s, border-color 0.3s ease;
    color: var(--ink);
}

.fact-card:hover {
    transform: scale(1.05) translateY(-4px);
    z-index: 10;
    border-color: var(--cobalt);
    box-shadow: 6px 6px 0 var(--navy);
}

.fact-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--cobalt);
    line-height: 1;
    margin-bottom: 8px;
}

.fact-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-blue);
    letter-spacing: 0.05em;
}

.flex-grow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    transition: grid-template-columns 0.4s ease;
}

.fg-card {
    background: var(--white);
    border: 2px solid var(--border-blue);
    padding: 36px 28px;
    transition: flex-grow 0.4s var(--ease-spring), transform 0.3s var(--ease-spring), box-shadow 0.3s ease, z-index 0s, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: var(--ink);
}

.fg-card:hover {
    background: var(--cobalt);
    color: var(--white);
    border-color: var(--cobalt);
    z-index: 10;
    transform: translateY(-6px);
    box-shadow: 8px 8px 0 var(--navy);
}

.fg-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--cobalt);
    line-height: 1;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.fg-card:hover .fg-num { color: var(--white); }

.fg-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.fg-card:hover .fg-title { color: var(--white); }

.fg-desc {
    font-size: 13px;
    color: var(--slate-blue);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.fg-card:hover .fg-desc { color: var(--soft-blue); }

.team-list {
    border-top: 2px solid var(--border-blue);
}

.team-row {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr;
    align-items: center;
    padding: 28px 0;
    border-bottom: 2px solid var(--border-blue);
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease;
    color: var(--ink);
}

.team-row:hover {
    background: var(--cobalt);
    color: var(--white);
    padding-left: 20px;
    padding-right: 20px;
    z-index: 10;
}

.team-row:hover .team-name,
.team-row:hover .team-role,
.team-row:hover .team-years { color: var(--white); }

.team-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--slate-blue);
}

.team-row:hover .team-num { color: var(--soft-blue); }

.team-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.team-role {
    font-size: 14px;
    color: var(--slate-blue);
}

.team-years {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--slate-blue);
    text-align: right;
}

.team-photo-pop {
    position: absolute;
    top: 50%;
    right: 28%;
    transform: translateY(-50%);
    width: 96px;
    height: 96px;
    background: var(--white);
    border: 4px solid var(--cobalt);
    box-shadow: 6px 6px 0 var(--navy);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.4s var(--ease-spring);
    z-index: 5;
}

.team-row:hover .team-photo-pop {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.team-photo-pop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coverflow-wrap {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    max-width: 100%;
}

.coverflow {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 40px 60px;
    scrollbar-width: thin;
    scrollbar-color: var(--cobalt) var(--pastel-blue);
    max-width: 100%;
}

.coverflow::-webkit-scrollbar {
    height: 8px;
}

.coverflow::-webkit-scrollbar-track {
    background: var(--pastel-blue);
}

.coverflow::-webkit-scrollbar-thumb {
    background: var(--cobalt);
}

.cover-card {
    flex: 0 0 300px;
    background: var(--white);
    border: 2px solid var(--border-blue);
    padding: 36px;
    scroll-snap-align: center;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s;
    color: var(--ink);
    box-shadow: 6px 6px 0 var(--navy);
    max-width: 100%;
    box-sizing: border-box;
}

.cover-card.active {
    transform: scale(1.05);
    z-index: 10;
    border-color: var(--cobalt);
}

.cover-stars {
    color: var(--cobalt);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.cover-quote {
    font-size: 16px;
    line-height: 1.65;
    color: var(--navy);
    margin-bottom: 24px;
    min-height: 130px;
}

.cover-meta {
    border-top: 2px solid var(--pastel-blue);
    padding-top: 18px;
}

.cover-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.cover-co {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-blue);
}

.cover-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--cobalt);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 250;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0 var(--navy);
    max-width: calc(100vw - 32px);
}

.cover-nav:hover {
    background: var(--navy);
}

.cover-prev { left: 12px; }
.cover-next { right: 12px; }

.faq-accordion {
    border-top: 2px solid var(--border-blue);
}

.faq-item {
    border-bottom: 2px solid var(--border-blue);
}

.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 28px 24px;
    text-align: left;
    text-wrap: balance;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-q:hover {
    background: var(--pastel-blue);
    color: var(--navy);
}

.faq-q .faq-icon {
    width: 32px;
    height: 32px;
    background: var(--cobalt);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-spring), background 0.3s ease;
}

.faq-item.open .faq-q .faq-icon {
    background: var(--navy);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    background: var(--pastel-blue);
    color: var(--navy);
}

.faq-item.open .faq-a {
    max-height: 320px;
    padding: 24px;
}

.faq-a p { margin: 0; color: var(--navy); }

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 4px solid var(--cobalt);
    box-shadow: var(--shadow-brutal);
    background: var(--white);
}

.contact-form-side {
    padding: 56px;
    background: var(--white);
}

.contact-info-side {
    padding: 56px;
    background: var(--navy);
    color: var(--white);
}

.contact-info-side h2,
.contact-info-side h3 { color: var(--white); }
.contact-info-side p { color: var(--soft-blue); }

.form-row {
    margin-bottom: 24px;
}

.form-row label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-blue);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 3px solid var(--border-blue);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--navy);
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--cobalt);
}

.form-control::placeholder {
    color: var(--soft-blue);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    border: 3px solid var(--border-blue);
    padding: 14px;
}

textarea.form-control:focus {
    border-color: var(--cobalt);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(168, 197, 228, 0.25);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-info-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--soft-blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.contact-info-value {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    line-height: 1.3;
    font-weight: 700;
}

.contact-info-value a {
    color: var(--white);
}

.contact-info-value a:hover { color: var(--soft-blue); }

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--cobalt);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
    font-size: 18px;
}

.form-success {
    background: var(--cobalt);
    color: var(--white);
    padding: 24px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 24px;
    display: none;
}

.form-success.show { display: block; }

.cta-band {
    background: var(--cobalt);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-band h2 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 20px;
}

.cta-band p {
    color: var(--soft-blue);
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-band .hero-cta-row {
    justify-content: center;
}

.cta-band .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 4px 4px 0 var(--navy);
}

.cta-band .btn-outline:hover {
    background: var(--white);
    color: var(--cobalt);
}

.site-footer {
    background: var(--cobalt);
    color: var(--white);
    padding: 80px 0 32px;
    border-top: 4px solid var(--navy);
    margin-left: var(--side-w);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--soft-blue);
    font-size: 14px;
    max-width: 360px;
    margin-bottom: 24px;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li { margin-bottom: 12px; }

.footer-col a {
    color: var(--soft-blue);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(168, 197, 228, 0.3);
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--soft-blue);
}

.footer-bottom a {
    color: var(--soft-blue);
}

.footer-bottom a:hover { color: var(--white); }

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 18px;
    left: 18px;
    right: 18px;
    max-width: 720px;
    background: var(--white);
    border: 4px solid var(--cobalt);
    box-shadow: var(--shadow-brutal);
    padding: 24px 28px;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-banner-inner {
    flex: 1;
    min-width: 0;
}

.cookie-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.cookie-text {
    font-size: 12px;
    color: var(--slate-blue);
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--cobalt);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions button {
    padding: 12px 22px;
    font-size: 12px;
    min-height: 44px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal[data-delay="1"] { transition-delay: 0.08s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.16s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.24s; }
.scroll-reveal[data-delay="4"] { transition-delay: 0.32s; }
.scroll-reveal[data-delay="5"] { transition-delay: 0.40s; }
.scroll-reveal[data-delay="6"] { transition-delay: 0.48s; }

.thanks-card {
    background: var(--white);
    border: 4px solid var(--cobalt);
    box-shadow: var(--shadow-brutal);
    padding: 80px 56px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.thanks-check {
    width: 96px;
    height: 96px;
    background: var(--cobalt);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-family: var(--font-display);
    margin: 0 auto 32px;
    box-shadow: 6px 6px 0 var(--navy);
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 36px;
    margin: 48px 0 20px;
    padding-top: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 14px;
}

.legal-content p, .legal-content li {
    color: var(--navy);
    line-height: 1.75;
}

.legal-content ul {
    padding-left: 24px;
}

.legal-content li { margin-bottom: 8px; }

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 4px solid var(--cobalt);
    box-shadow: var(--shadow-brutal);
    margin-bottom: 32px;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-box {
    background: var(--cobalt);
    color: var(--white);
    padding: 32px;
    margin-bottom: 28px;
    position: sticky;
    top: 80px;
    box-shadow: 6px 6px 0 var(--navy);
}

.price-box-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--soft-blue);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.price-box-value {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.price-box-note {
    font-size: 13px;
    color: var(--soft-blue);
    margin-bottom: 24px;
}

.price-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.price-box li {
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(168, 197, 228, 0.3);
    display: flex;
    gap: 10px;
}

.price-box li::before {
    content: "→";
    color: var(--soft-blue);
}

.callout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 40px 0;
}

.callout-cell {
    background: var(--white);
    border: 2px solid var(--border-blue);
    padding: 24px;
    transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, z-index 0s, box-shadow 0.3s ease;
    color: var(--ink);
}

.callout-cell:hover {
    transform: translateY(-4px);
    border-color: var(--cobalt);
    box-shadow: 6px 6px 0 var(--navy);
    z-index: 10;
}

.callout-icon {
    width: 44px;
    height: 44px;
    background: var(--cobalt);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 14px;
}

.callout-cell h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
}

.callout-cell p {
    font-size: 13px;
    color: var(--slate-blue);
    margin: 0;
}

.page-head {
    padding: 100px 0 60px;
    background: var(--pastel-blue);
    border-bottom: 4px solid var(--cobalt);
}

.page-head h1 {
    font-size: clamp(40px, 6vw, 80px);
    margin-bottom: 18px;
}

.page-head p {
    color: var(--slate-blue);
    font-size: 18px;
    max-width: 720px;
}

.breadcrumb-row {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--slate-blue);
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}

.breadcrumb-row a { color: var(--cobalt); }
.breadcrumb-row a:hover { color: var(--navy); }

@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 16 / 10; }
    .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .split-sticky { grid-template-columns: 1fr; gap: 40px; }
    .split-sticky-media { position: relative; top: 0; aspect-ratio: 16 / 10; }
    .masonry { column-count: 2; }
    .fact-list { grid-template-columns: 1fr; }
    .flex-grow-grid { grid-template-columns: 1fr; }
    .contact-split { grid-template-columns: 1fr; }
    .contact-form-side, .contact-info-side { padding: 40px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .price-box { position: relative; top: 0; }
    .callout-grid { grid-template-columns: 1fr; }
    .team-row { grid-template-columns: 60px 2fr 1fr; gap: 12px; padding: 22px 0; }
    .team-years { display: none; }
}

@media (max-width: 768px) {
    :root { --side-w: 0px; }
    .app-sidebar { display: none; }
    .app-main { margin-left: 0 !important; }
    .site-footer { margin-left: 0; }
    .mobile-bar { display: flex; }
    .hero-stage { min-height: auto; padding-top: 90px; }
    .hero-stage.compact { min-height: auto; padding-top: 90px; }
    .hero-stage.mini { min-height: auto; padding-top: 90px; }
    .hero-stats { grid-template-columns: 1fr; gap: 18px; }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row button, .hero-cta-row .btn-brutal { width: 100%; }
    .section-block { padding: 70px 0; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-cell.large, .bento-cell.wide, .bento-cell.tall { grid-column: span 1; grid-row: span 1; }
    .bento-cell { min-height: 220px; }
    .masonry { column-count: 1; }
    .timeline { padding-left: 56px; }
    .timeline::before { left: 18px; }
    .timeline-dot { left: -50px; width: 44px; height: 44px; font-size: 16px; }
    .team-row { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
    .team-row:hover { padding-left: 12px; padding-right: 12px; }
    .team-num { font-size: 11px; }
    .team-name { font-size: 22px; }
    .team-photo-pop { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 18px;
        gap: 16px;
    }
    .cookie-actions { flex-direction: column; }
    .cookie-actions button { width: 100%; }
    .cover-card { flex: 0 0 84%; padding: 28px; }
    .coverflow { padding: 30px 24px; }
    .cover-nav { width: 40px; height: 40px; }
    .thanks-card { padding: 48px 28px; }
    .cta-band { padding: 56px 0; }
    .container-page, .container-fluid-brutal { padding: 0 20px; }
    h1 { letter-spacing: -0.03em; }
    .hero-title { font-size: clamp(36px, 9vw, 56px); }
    .page-head { padding: 80px 0 40px; }

    /* Mobile horizontal scroll fix */
    .container-page, .container-fluid-brutal { max-width: 100vw; overflow-x: hidden; }
    .coverflow-wrap { overflow: hidden; max-width: 100%; position: relative; }
    .coverflow { padding: 40px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; width: calc(100vw - 32px); margin: 0 auto; }
    .cover-card { flex: 0 0 calc(100vw - 80px); min-width: calc(100vw - 80px); padding: 24px; }
    .hero-inner { padding-left: 0; padding-right: 0; }
    .section-head { margin-bottom: 50px; }
    .app-shell { overflow-x: hidden; }
    .site-footer { overflow-x: hidden; }
}

img { max-width: 100%; height: auto; display: block; }

::selection {
    background: var(--cobalt);
    color: var(--white);
}

.text-cobalt { color: var(--cobalt); }
.text-navy { color: var(--navy); }
.text-slate { color: var(--slate-blue); }
.text-soft { color: var(--soft-blue); }
