:root {
    --navy-950: #001f43;
    --navy-900: #012c57;
    --navy-800: #073f72;
    --blue-100: #eaf5fb;
    --blue-50: #f3f9fd;
    --yellow-500: #fab800;
    --yellow-400: #ffd34d;
    --orange-500: #f27405;
    --ink: #002b59;
    --muted: #5a6c80;
    --white: #ffffff;
    --off-white: #f7f9fb;
    --line: #dbe8f2;
    --success: #0f8a5f;
    --danger: #b42318;
    --shadow-soft: 0 18px 45px rgba(0, 31, 67, 0.12);
    --shadow-strong: 0 28px 70px rgba(0, 31, 67, 0.24);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --container: 1180px;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: var(--font-sans);
    --font-hand: "Segoe Print", "Comic Sans MS", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-sans);
    background: var(--off-white);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--yellow-500);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    transform: translateY(-140%);
    z-index: 20;
    background: var(--yellow-500);
    color: var(--navy-950);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    width: min(100% - 40px, 1240px);
    margin: 18px auto 0;
    padding: 14px 16px 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(0, 31, 67, 0.75);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 55px rgba(0, 31, 67, 0.18);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(0, 31, 67, 0.94);
    border-color: rgba(255, 255, 255, 0.24);
}

.brand img {
    width: 188px;
    height: auto;
}

.site-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--yellow-400);
}

.site-nav a[aria-current="page"] {
    color: var(--white);
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-pill {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(0, 31, 67, .2);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-pill-danger {
    background: linear-gradient(135deg, #d93025, #ff6b4a);
}

.header-pill-danger:hover,
.header-pill-danger[aria-current="page"] {
    color: var(--white);
    background: linear-gradient(135deg, #b82118, #f04f34);
}

.header-pill-primary {
    color: var(--navy-950);
    background: var(--yellow-500);
}

.header-pill:hover {
    transform: translateY(-2px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.header-pill-primary:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--navy-950);
    background: var(--yellow-500);
    box-shadow: 0 14px 26px rgba(250, 184, 0, 0.28);
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.button-dark {
    color: var(--white);
    background: var(--navy-950);
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 850px;
    padding: 160px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 18%, rgba(34, 124, 190, 0.38), transparent 34%),
        linear-gradient(135deg, #001b39 0%, #012c57 48%, #001f43 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -80px;
    height: 150px;
    background: var(--off-white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(30deg, transparent 0 34px, rgba(255,255,255,.42) 35px 38px, transparent 39px 76px),
        linear-gradient(150deg, transparent 0 34px, rgba(250,184,0,.25) 35px 38px, transparent 39px 76px);
    background-size: 170px 120px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 46px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--yellow-500);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.05;
}

h1 {
    font-size: clamp(50px, 7vw, 92px);
    max-width: 820px;
}

h1 span {
    color: var(--yellow-500);
}

h2 {
    font-size: clamp(34px, 4.4vw, 58px);
}

h3 {
    font-size: 24px;
}

.hero-lead {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hand-note {
    display: inline-block;
    margin: 34px 0 0;
    color: var(--yellow-400);
    font-family: var(--font-hand);
    font-size: 22px;
    transform: rotate(-2deg);
}

.hand-note.dark {
    color: var(--navy-800);
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.hero-story {
    min-height: 620px;
    isolation: isolate;
}

.hero-story::before {
    content: "";
    position: absolute;
    inset: 76px 24px 34px;
    border: 2px dashed rgba(255, 255, 255, .26);
    border-radius: 34% 22% 30% 24% / 20% 34% 22% 28%;
    transform: rotate(-3deg);
}

.hero-story::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 58px;
    width: 180px;
    height: 180px;
    border-radius: 48% 52% 38% 62%;
    background: rgba(250, 184, 0, .2);
    filter: blur(1px);
}

.mascot-main,
.mascot-hero {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 8px;
    width: min(52%, 355px);
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .32));
    transform: translateX(-50%) rotate(1deg);
}

.story-card {
    position: absolute;
    z-index: 3;
    width: 185px;
    min-height: 210px;
    padding: 22px;
    border: 2px solid rgba(1, 44, 87, .08);
    border-radius: 30px;
    color: var(--navy-950);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 26px 70px rgba(0, 31, 67, .28);
}

.story-card strong,
.story-card small {
    display: block;
}

.story-card strong {
    margin-top: 14px;
    font-size: 24px;
    line-height: 1.05;
}

.story-card small {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.3;
}

.story-owner {
    left: 4px;
    top: 154px;
    transform: rotate(-5deg);
}

.story-tenant {
    right: 6px;
    top: 148px;
    transform: rotate(4deg);
}

.story-face {
    position: relative;
    display: block;
    width: 88px;
    height: 88px;
    border: 6px solid var(--navy-900);
    border-radius: 50%;
    background: #ffd8aa;
}

.story-face::before {
    content: "";
    position: absolute;
    left: 13px;
    top: -15px;
    width: 68px;
    height: 38px;
    border-radius: 50% 50% 28% 28%;
    background: var(--navy-950);
    transform: rotate(-7deg);
}

.story-face::after {
    content: ":)";
    position: absolute;
    left: 25px;
    top: 38px;
    color: var(--navy-950);
    font-family: var(--font-hand);
    font-size: 24px;
    font-weight: 900;
}

.story-face.tenant::before {
    width: 82px;
    left: 2px;
    border-radius: 46% 54% 34% 42%;
    transform: rotate(5deg);
}

.story-center {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 420px;
    width: 256px;
    min-height: 116px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 22px;
    border-radius: 42px;
    color: var(--navy-950);
    background: var(--yellow-500);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
    transform: translateX(-50%) rotate(-1deg);
}

.story-center::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 3px solid rgba(255,255,255,.65);
    border-radius: 48px;
    transform: rotate(4deg);
}

.story-center img {
    width: 178px;
}

.story-center p {
    position: relative;
    margin: 0;
    font-family: var(--font-hand);
    font-size: 24px;
    font-weight: 900;
}

.story-document {
    position: absolute;
    z-index: 2;
    left: 185px;
    top: 78px;
    width: 128px;
    height: 164px;
    padding: 28px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 45px rgba(0,31,67,.22);
    transform: rotate(8deg);
}

.story-document span {
    display: block;
    height: 6px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #94b9d3;
}

.story-document strong {
    color: var(--navy-900);
    font-size: 18px;
}

.story-home {
    position: absolute;
    z-index: 2;
    right: 170px;
    bottom: 46px;
    width: 180px;
    height: 140px;
    transform: rotate(-4deg);
}

.story-home .roof {
    position: absolute;
    left: 24px;
    top: 0;
    width: 132px;
    height: 132px;
    border: 12px solid var(--white);
    border-right: 0;
    border-bottom: 0;
    transform: rotate(45deg);
}

.story-home .body {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 122px;
    height: 92px;
    border: 10px solid var(--white);
    border-radius: 14px;
    background: rgba(234,245,251,.18);
}

.story-home .door {
    position: absolute;
    left: 82px;
    bottom: 10px;
    width: 30px;
    height: 48px;
    border-radius: 10px 10px 0 0;
    background: var(--yellow-500);
}

.story-note {
    position: absolute;
    z-index: 5;
    margin: 0;
    padding: 12px 16px;
    border-radius: 4px;
    color: var(--navy-950);
    background: #ffe58a;
    box-shadow: 0 14px 26px rgba(0,0,0,.18);
    font-family: var(--font-hand);
    font-size: 22px;
    font-weight: 900;
}

.note-one {
    left: 56px;
    bottom: 106px;
    transform: rotate(-7deg);
}

.note-two {
    right: 44px;
    bottom: 178px;
    transform: rotate(8deg);
}

.story-arrow {
    position: absolute;
    z-index: 3;
    width: 180px;
    height: 110px;
    fill: none;
    stroke: var(--yellow-500);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.arrow-one {
    left: 150px;
    top: 224px;
    transform: rotate(-6deg);
}

.arrow-two {
    right: 150px;
    top: 224px;
    transform: rotate(6deg);
}

.relationship-map {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 44px 1.1fr 44px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: -38px;
}

.relation-node {
    min-height: 128px;
    padding: 22px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    box-shadow: var(--shadow-strong);
}

.relation-node span,
.relation-node strong {
    display: block;
}

.relation-node span {
    font-size: 15px;
    color: var(--muted);
}

.relation-node strong {
    margin-top: 8px;
    font-size: 25px;
    color: var(--navy-950);
}

.relation-node.company {
    background: var(--yellow-500);
}

.relation-node.company img {
    width: 166px;
    margin-bottom: 8px;
}

.relation-line {
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,.4), var(--yellow-500), rgba(255,255,255,.4));
}

.hero-building {
    position: absolute;
    right: -80px;
    bottom: -20px;
    width: min(104%, 780px);
    filter: drop-shadow(0 40px 45px rgba(0,0,0,.35));
}

.hero-sketch {
    position: absolute;
    z-index: 1;
    right: 8px;
    top: 130px;
    width: min(62%, 360px);
    border: 1px solid rgba(255,255,255,.26);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 60px rgba(0, 31, 67, .26);
}

.trust-strip {
    position: relative;
    z-index: 1;
    padding: 0 0 54px;
    background: var(--off-white);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -24px;
}

.metrics div {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.metrics strong,
.metrics span {
    display: block;
}

.metrics strong {
    color: var(--navy-900);
    font-size: 30px;
    line-height: 1.1;
}

.metrics span {
    margin-top: 9px;
    color: var(--muted);
    font-weight: 700;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading.align-left {
    margin: 0;
    text-align: left;
}

.section-heading.compact {
    margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
    margin: 18px auto 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}

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

.value-card,
.expect-card,
.principles article,
.case-flow article {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.value-card {
    position: relative;
    min-height: 315px;
    padding: 34px;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -54px;
    top: -44px;
    border-radius: 50%;
    background: var(--blue-100);
}

.value-card.featured {
    color: var(--white);
    border-color: transparent;
    background:
        linear-gradient(145deg, rgba(1, 44, 87, 0.96), rgba(0, 31, 67, 0.98)),
        var(--navy-950);
}

.value-card.featured::before {
    background: rgba(250, 184, 0, 0.25);
}

.card-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--yellow-500);
    font-weight: 900;
}

.value-card ul,
.expect-card ul {
    margin: 22px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.value-card.featured ul {
    color: rgba(255,255,255,.82);
}

.process-section {
    background: var(--white);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
}

.timeline article {
    position: relative;
    padding: 24px 18px 0;
    border-top: 3px solid var(--navy-900);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 18px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--yellow-500);
    font-weight: 900;
}

.timeline strong,
.timeline article > span:not(.step-number) {
    display: block;
}

.timeline strong {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.25;
}

.timeline article > span:not(.step-number) {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.fairness {
    background:
        radial-gradient(circle at 18% 20%, rgba(250, 184, 0, 0.16), transparent 24%),
        linear-gradient(180deg, var(--blue-50), var(--blue-100));
}

.fairness-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
    align-items: start;
}

.fairness-copy {
    position: sticky;
    top: 120px;
}

.fairness-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.principles article {
    padding: 24px;
}

.principles span {
    color: var(--yellow-500);
    font-weight: 900;
}

.principles strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
}

.principles p {
    margin: 10px 0 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    background: var(--white);
}

.split-media {
    min-height: 640px;
    background-size: cover;
    background-position: center;
}

.property-media {
    background-image:
        linear-gradient(0deg, rgba(0,31,67,.08), rgba(0,31,67,.08)),
        url("/assets/property-livingroom-jistik.webp");
    background-position: center;
}

.split-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    padding: 80px 56px;
}

.split-copy p {
    color: var(--muted);
    font-size: 18px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 30px;
}

.check-list span {
    padding: 13px 16px;
    border-left: 4px solid var(--yellow-500);
    border-radius: var(--radius-sm);
    background: var(--blue-50);
    font-weight: 750;
}

.tenants {
    background: var(--off-white);
}

.tenant-grid {
    display: grid;
    grid-template-columns: 1.1fr .95fr .95fr;
    gap: 22px;
    align-items: stretch;
}

.tenant-grid > div:first-child {
    padding-right: 24px;
}

.tenant-grid p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.highlight {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    color: var(--navy-950) !important;
    background: rgba(250, 184, 0, 0.22);
    font-weight: 850;
}

.expect-card {
    padding: 30px;
}

.expect-card.yellow {
    background: linear-gradient(180deg, #fff8df, var(--white));
}

.problem {
    background:
        radial-gradient(circle at 86% 18%, rgba(250, 184, 0, 0.2), transparent 22%),
        linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.problem-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.problem p {
    color: rgba(255,255,255,.78);
    font-size: 18px;
}

.case-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.case-flow article {
    padding: 24px;
    color: var(--ink);
}

.case-flow strong,
.case-flow span {
    display: block;
}

.case-flow strong {
    color: var(--navy-900);
    font-size: 19px;
}

.case-flow span {
    margin-top: 8px;
    color: var(--muted);
}

.technology {
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.tech-diagram {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    min-height: 360px;
    padding: 34px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(234,245,251,.85), rgba(255,255,255,.9)),
        radial-gradient(circle, rgba(250,184,0,.25), transparent 44%);
    box-shadow: var(--shadow-soft);
}

.tech-diagram::before,
.tech-diagram::after {
    content: "";
    position: absolute;
    background: var(--navy-900);
    opacity: .22;
}

.tech-diagram::before {
    left: 20%;
    right: 20%;
    top: 50%;
    height: 2px;
}

.tech-diagram::after {
    top: 18%;
    bottom: 18%;
    left: 50%;
    width: 2px;
}

.tech-diagram span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy-900);
    font-weight: 900;
}

.tech-grid p {
    color: var(--muted);
    font-size: 18px;
}

.leadership {
    background: var(--blue-50);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.video-card img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

blockquote {
    margin: 24px 0;
    padding: 0 0 0 22px;
    border-left: 5px solid var(--yellow-500);
    color: var(--navy-950);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
}

.leadership p {
    color: var(--muted);
    font-size: 18px;
}

.feedback {
    background: var(--yellow-500);
}

.feedback-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    color: var(--navy-950);
}

.feedback .eyebrow {
    color: var(--navy-900);
}

.feedback p {
    max-width: 760px;
    font-size: 18px;
}

.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 58px;
}

.accordion {
    display: grid;
    gap: 14px;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0,31,67,.06);
}

summary {
    padding: 20px 24px;
    cursor: pointer;
    color: var(--navy-950);
    font-weight: 850;
}

details p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--muted);
}

.detail-body {
    padding: 0 24px 24px;
    color: var(--muted);
}

.detail-body p,
.detail-body ul {
    margin: 0 0 18px;
}

.detail-body h3 {
    margin: 20px 0 8px;
    color: var(--navy-950);
    font-size: 18px;
}

.legal-content {
    display: grid;
    gap: 18px;
    max-width: 920px;
}

.legal-content article,
.price-panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0,31,67,.06);
}

.legal-content h2,
.price-panel h2 {
    margin-top: 0;
    color: var(--navy-950);
}

.pricing-stack {
    display: grid;
    gap: 24px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.price-table th:last-child,
.price-table td:last-child {
    width: 180px;
    text-align: right;
    color: var(--navy-950);
    font-weight: 900;
}

.final-cta {
    background:
        radial-gradient(circle at 12% 20%, rgba(250, 184, 0, 0.22), transparent 26%),
        linear-gradient(145deg, #001b39, #012c57);
}

.form-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 56px;
    align-items: start;
}

.final-cta p {
    color: rgba(255,255,255,.78);
    font-size: 18px;
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.contact-lines a,
.contact-lines span {
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 28px;
    align-items: stretch;
}

.contact-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.primary-contact {
    background:
        linear-gradient(135deg, rgba(234,245,251,.9), rgba(255,255,255,.98)),
        var(--white);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 30px;
}

.button.dark-text {
    color: var(--navy-950);
    border-color: rgba(1, 44, 87, .18);
}

.contact-details,
.hours-list {
    display: grid;
    gap: 14px;
}

.contact-details {
    margin: 0;
}

.contact-details div,
.hours-list span {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.78);
}

.contact-details dt {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.contact-details dd {
    margin: 0;
    color: var(--navy-950);
    font-size: 20px;
    font-weight: 900;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.hours-panel {
    background: var(--navy-950);
    color: var(--white);
}

.hours-panel .eyebrow {
    color: var(--yellow-400);
}

.hours-panel h2,
.hours-panel p {
    color: var(--white);
}

.hours-panel p {
    color: rgba(255,255,255,.78);
}

.hours-list span {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.09);
    color: var(--white);
    font-weight: 850;
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow-strong);
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 850;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.conditional-fields {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #d8e5f0;
    border-radius: var(--radius-md);
    background: var(--blue-50);
}

.conditional-fields[hidden] {
    display: none;
}

.form-section-title {
    margin: 0;
    color: var(--navy-900);
    font-size: 15px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #c9d8e6;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--ink);
    padding: 13px 14px;
}

textarea {
    resize: vertical;
}

.checkbox {
    grid-template-columns: auto 1fr !important;
    align-items: start;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.form-status.success {
    color: var(--success);
}

.form-status.error {
    color: var(--danger);
}

.field-error {
    border-color: var(--danger);
}

.field-help {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    width: min(720px, calc(100% - 40px));
    padding: 18px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-md);
    background: var(--navy-950);
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.cookie-banner strong {
    display: block;
    margin-bottom: 4px;
}

.cookie-banner p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

.cookie-banner a {
    color: var(--yellow-400);
    font-weight: 850;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-hero {
    position: relative;
    min-height: 620px;
    padding: 160px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 18%, rgba(34, 124, 190, 0.32), transparent 34%),
        linear-gradient(135deg, #001b39 0%, #012c57 58%, #001f43 100%);
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: 54px;
    align-items: center;
}

.page-hero h1 {
    font-size: clamp(46px, 6vw, 78px);
}

.page-visual {
    display: grid;
    gap: 14px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: var(--radius-lg);
    color: var(--navy-950);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-strong);
}

.page-illustration {
    width: 100%;
    max-height: 235px;
    object-fit: contain;
    margin: -10px 0 2px;
    border-radius: var(--radius-md);
}

.mascot-card-image {
    justify-self: center;
    width: min(100%, 300px);
    max-height: 360px;
    object-fit: contain;
    margin: -24px 0 2px;
    filter: drop-shadow(0 24px 30px rgba(0, 31, 67, .2));
}

.mascot-desk-image {
    justify-self: center;
    width: min(100%, 420px);
    max-height: 360px;
    object-fit: contain;
    margin: -18px 0 2px;
    filter: drop-shadow(0 24px 30px rgba(0, 31, 67, .2));
}

.page-visual strong {
    font-size: 25px;
    line-height: 1.15;
}

.page-visual span {
    position: relative;
    padding: 5px 0 5px 18px;
    border-radius: 0;
    background: transparent;
    color: var(--navy-800);
    font-weight: 850;
}

.page-visual span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 9px;
    width: 3px;
    border-radius: 999px;
    background: var(--gold-500);
}

.content-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 56px;
    align-items: start;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.topic-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.topic-grid h3 {
    margin-bottom: 12px;
}

.topic-grid p {
    color: var(--muted);
}

.topic-grid a {
    display: inline-flex;
    margin-top: 6px;
    color: var(--navy-900);
    font-weight: 900;
    text-decoration-color: var(--yellow-500);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.clean-steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.clean-steps li {
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.clean-steps strong,
.clean-steps span {
    display: block;
}

.clean-steps span {
    margin-top: 6px;
    color: var(--muted);
}

.principles-wide {
    grid-template-columns: repeat(3, 1fr);
}

.tenant-test,
.warning-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tenant-test article,
.warning-list article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.tenant-test article img {
    width: 100%;
    max-height: 132px;
    object-fit: contain;
    margin: -6px 0 14px;
    border-radius: var(--radius-sm);
}

.tenant-test article img[src*="/mascot/"] {
    max-height: 164px;
    object-fit: contain;
    object-position: top center;
    border-radius: 0;
    filter: drop-shadow(0 16px 18px rgba(0,31,67,.15));
}

.tenant-test span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--yellow-500);
    font-weight: 900;
}

.tenant-test p,
.warning-list p {
    color: var(--muted);
}

.warning-list article {
    border-left: 5px solid var(--yellow-500);
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.form-page {
    padding-top: 96px;
}

.check-list.light span {
    color: var(--white);
    border-left-color: var(--yellow-500);
    background: rgba(255,255,255,.1);
}

.site-footer {
    padding: 46px 0;
    color: rgba(255,255,255,.76);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr .9fr;
    gap: 34px;
}

.footer-grid strong,
.footer-grid a,
.footer-grid span {
    display: block;
}

.footer-grid strong {
    margin-bottom: 12px;
    color: var(--white);
}

.footer-grid a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
}

.not-found {
    min-height: 100vh;
    display: grid;
    place-content: center;
    gap: 18px;
    padding: 30px;
    text-align: center;
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: auto auto;
        row-gap: 12px;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav {
        position: fixed;
        top: 88px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: var(--radius-lg);
        background: var(--navy-950);
        box-shadow: var(--shadow-strong);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px;
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-self: stretch;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .header-pill {
        min-height: 42px;
        padding: 11px 12px;
    }

    .hero-grid,
    .fairness-grid,
    .problem-grid,
    .tech-grid,
    .leadership-grid,
    .faq-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        min-height: 520px;
    }

    .fairness-copy {
        position: static;
    }

    .metrics,
    .side-grid,
    .content-grid,
    .topic-grid,
    .tenant-test,
    .warning-list,
    .page-hero-grid,
    .tenant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 54px;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .split-media {
        min-height: 420px;
    }

    .split-copy {
        max-width: none;
    }

    .feedback-box,
    .cta-band,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .site-header {
        width: calc(100% - 24px);
        margin-top: 12px;
        padding: 10px 12px;
        border-radius: 24px;
    }

    .brand img {
        width: 158px;
    }

    .hero {
        padding: 124px 0 86px;
    }

    h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .relationship-map {
        grid-template-columns: 1fr;
        margin-bottom: 18px;
    }

    .relation-line {
        width: 3px;
        height: 30px;
        justify-self: center;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-story {
        display: grid;
        gap: 16px;
    }

    .hero-story::before,
    .hero-story::after,
    .mascot-main,
    .story-arrow,
    .story-note,
    .story-document,
    .story-home {
        display: none;
    }

    .story-card,
    .story-center {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        min-height: auto;
        transform: none;
    }

    .story-center {
        order: -1;
    }

    .mascot-hero {
        position: relative;
        order: -2;
        left: auto;
        top: auto;
        justify-self: center;
        width: min(78vw, 300px);
        max-height: 430px;
        transform: none;
    }

    .mascot-card-image,
    .mascot-desk-image {
        width: min(100%, 280px);
        max-height: 330px;
        margin-top: -12px;
    }

    .hero-building {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
    }

    .hero-sketch {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-bottom: 16px;
    }

    .metrics,
    .side-grid,
    .content-grid,
    .topic-grid,
    .tenant-test,
    .warning-list,
    .page-hero-grid,
    .contact-page-grid,
    .principles-wide,
    .principles,
    .case-flow,
    .tenant-grid,
    .footer-grid,
    .feedback-box,
    .form-row {
        grid-template-columns: 1fr;
    }

    .metrics {
        margin-top: 0;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .timeline article {
        border-top: 0;
        border-left: 3px solid var(--navy-900);
        padding: 0 0 0 28px;
    }

    .step-number {
        left: -25px;
        top: 0;
    }

    .timeline strong {
        margin-top: 0;
    }

    .split-media {
        min-height: 300px;
    }

    .split-copy,
    .lead-form {
        padding: 24px;
    }

    .tech-diagram {
        min-height: 300px;
        padding: 20px;
    }

    .page-hero {
        min-height: auto;
        padding: 124px 0 72px;
    }

    .cta-band {
        grid-template-columns: 1fr;
    }

    .cookie-banner,
    .cookie-actions {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        left: 20px;
    }

    .cookie-actions {
        display: grid;
    }

    .price-table th:last-child,
    .price-table td:last-child {
        width: 120px;
    }
}

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