:root {
    --font-body: "Aptos", "Segoe UI", sans-serif;
    --font-heading: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --bg: #ffffff;
    --bg-soft: #f7f7f7;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-solid: #ffffff;
    --surface-muted: #fafafa;
    --ink: #121212;
    --ink-soft: #5f5f5f;
    --ink-faint: #8d8d8d;
    --accent: #0b132c;
    --accent-soft: #42506f;
    --accent-tint: rgba(11, 19, 44, 0.06);
    --accent-tint-strong: rgba(11, 19, 44, 0.14);
    --border: rgba(18, 18, 18, 0.08);
    --border-strong: rgba(18, 18, 18, 0.14);
    --shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
    --shadow-strong: 0 30px 90px rgba(17, 17, 17, 0.12);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --container: min(1180px, calc(100% - 2rem));
    --header-container: min(1520px, calc(100% - 1.25rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--ink);
    line-height: 1.6;
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 0, 0, 0.03), transparent 28%),
        radial-gradient(circle at 90% 4%, rgba(0, 0, 0, 0.035), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 52%, #f6f6f6 100%);
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

h1,
h2,
h3,
strong {
    margin-top: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--ink);
}

h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h3 {
    margin-bottom: 0.75rem;
    font-size: 1.28rem;
    line-height: 1.2;
}

.site-shell {
    overflow: hidden;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.site-header .container {
    width: var(--header-container);
}

.section {
    position: relative;
    padding: clamp(4.7rem, 8vw, 7.25rem) 0;
}

.section--warm {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.95)),
        linear-gradient(90deg, transparent, rgba(11, 19, 44, 0.035), transparent);
}

.section--contrast {
    background:
        radial-gradient(circle at 80% 20%, rgba(11, 19, 44, 0.05), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.section--partners {
    padding: 2.2rem 0 2.8rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.98));
    border-bottom: 1px solid var(--border);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.topbar {
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
}

.topbar__content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.topbar__content p {
    margin: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.78);
}

.header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

.brand__logo {
    width: clamp(148px, 14vw, 188px);
    height: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    color: var(--ink-soft);
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--accent-tint);
    border-color: var(--accent-tint-strong);
    color: var(--accent);
    box-shadow: inset 0 0 0 1px var(--accent-tint-strong);
}

.mobile-toggle {
    display: none;
    border: 0;
}

.button-row,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.95rem 1.45rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.button--secondary,
.button--ghost {
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.button--ghost {
    background: transparent;
}

.button--sm {
    min-height: 2.9rem;
    padding: 0.75rem 1.15rem;
    font-size: 0.92rem;
}

.text-link {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    color: var(--ink);
    font-weight: 700;
    position: relative;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.text-link:hover::after {
    transform: scaleX(1);
}

.hero {
    position: relative;
    min-height: min(84vh, 860px);
    padding-top: clamp(5rem, 9vw, 7.5rem);
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero--video {
    padding-top: clamp(4rem, 7vw, 6rem);
    padding-bottom: clamp(3.25rem, 6vw, 5rem);
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: #0b132c;
}

.hero__background {
    overflow: hidden;
}

.hero__background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(12%) saturate(82%) brightness(0.92);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(18, 18, 18, 0.15), transparent);
}

.hero-grid,
.page-hero__grid,
.split-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.hero-grid--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
}

.page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
}

.split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-grid--balanced {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.section-copy,
.section-heading {
    max-width: 720px;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading--between {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.hero-copy p,
.page-hero__content p {
    max-width: 38rem;
    font-size: 1.08rem;
}

.hero-copy--panel {
    padding: clamp(1.8rem, 4vw, 2.7rem);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-strong);
}

.hero-copy--minimal {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.68);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.64)),
        radial-gradient(circle at top left, rgba(11, 19, 44, 0.08), transparent 34%);
    box-shadow: 0 34px 100px rgba(14, 18, 28, 0.14);
    text-align: center;
}

.hero-copy--minimal::before {
    content: "";
    position: absolute;
    inset: 0.85rem;
    border: 1px solid rgba(11, 19, 44, 0.08);
    border-radius: 28px;
    pointer-events: none;
}

.hero-copy__inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 1.25rem;
}

.hero-lead {
    max-width: 33rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(18, 18, 18, 0.72);
}

.eyebrow--hero {
    margin-bottom: 0;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(11, 19, 44, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 40px rgba(16, 21, 32, 0.08);
}

.hero-copy--minimal h1 {
    margin-bottom: 0;
    display: grid;
    gap: 0.08em;
    font-size: clamp(3.7rem, 8vw, 6.1rem);
    line-height: 0.86;
    letter-spacing: -0.055em;
}

.hero-copy--minimal h1 span {
    display: block;
}

.hero-copy--minimal h1 span:last-child {
    color: rgba(11, 19, 44, 0.18);
    -webkit-text-stroke: 1px rgba(11, 19, 44, 0.52);
}

.hero-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding: 0.55rem 0.6rem 0.55rem 1rem;
    border: 1px solid rgba(11, 19, 44, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 20px 50px rgba(18, 18, 18, 0.08);
}

.button--hero {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: none;
}

.button--hero:hover {
    background: #1a2748;
    border-color: #1a2748;
}

.hero-actions__divider {
    width: 1px;
    height: 1.8rem;
    background: rgba(11, 19, 44, 0.14);
}

.hero-social {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    max-width: 36rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(11, 19, 44, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    color: rgba(18, 18, 18, 0.76);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(11, 19, 44, 0.08);
    border-radius: 999px;
    background: rgba(11, 19, 44, 0.04);
    color: var(--ink);
    box-shadow: none;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.social-link:hover {
    transform: translateY(-1px);
    background: rgba(11, 19, 44, 0.1);
    border-color: rgba(11, 19, 44, 0.14);
    color: var(--accent);
}

.social-link svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

.hero-aura {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
}

.hero-aura--one {
    top: -4.5rem;
    left: -4rem;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, rgba(11, 19, 44, 0.18), transparent 68%);
}

.hero-aura--two {
    right: -4.5rem;
    bottom: -5rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(11, 19, 44, 0.14), transparent 70%);
}

.hero-points {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hero-points li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--ink-soft);
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px var(--accent-tint);
}

.partners-header {
    margin-bottom: 1.35rem;
}

.partners-marquee {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    padding: 0 1rem;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
    display: flex;
    flex-shrink: 0;
    gap: 1rem;
    min-width: max-content;
    animation: partners-scroll 52s linear infinite;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(150px, 12vw, 210px);
    min-width: clamp(150px, 12vw, 210px);
    height: 72px;
    padding: 0.25rem 0.4rem;
}

.partner-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.82;
    transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.partner-logo-card:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.03);
}

.hero-side,
.card-stack,
.testimonial-stack {
    display: grid;
    gap: 1rem;
}

.hero-side {
    align-self: stretch;
}

.hero-visual__main,
.page-hero__media,
.media-panel {
    position: relative;
    min-height: 360px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface-solid);
    box-shadow: var(--shadow-strong);
}

.hero-visual__main {
    min-height: 420px;
}

.hero-visual__main img,
.page-hero__media img,
.media-panel img,
.project-row__media img {
    height: 100%;
    object-fit: cover;
}

.hero-visual__main::after,
.page-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.08));
}

.floating-note {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.floating-note--static {
    position: static;
    inset: auto;
    padding: 1.35rem 1.4rem;
    background: rgba(255, 255, 255, 0.8);
}

.floating-note strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.floating-note p {
    margin: 0;
}

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

.stat-card,
.feature-card,
.service-card,
.testimonial-card,
.notice-card,
.contact-panel,
.step-card,
.faq-card,
.footer-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.82);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.55rem;
    color: var(--ink);
}

.stat-card span {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.step-card {
    padding: 1.5rem;
}

.feature-card--accent {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.92)),
        linear-gradient(135deg, rgba(11, 19, 44, 0.08), rgba(255, 255, 255, 0));
}

.feature-card--compact {
    padding: 1.35rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 250px;
}

.chip {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--accent-tint-strong);
    border-radius: 999px;
    background: var(--accent-tint);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

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

.portfolio-grid--preview {
    margin-top: 2rem;
}

.portfolio-card,
.project-row {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.portfolio-card:hover,
.project-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.portfolio-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.portfolio-card.is-hidden {
    display: none;
}

.media-frame {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fbfbfb, #f0f0f0);
}

.media-frame img {
    height: 100%;
    object-fit: cover;
}

.portfolio-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.35rem;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.portfolio-highlight {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--accent);
}

.filter-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.filter-button {
    cursor: pointer;
    appearance: none;
    padding: 0.72rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink-soft);
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.filter-button:hover,
.filter-button.is-selected {
    transform: translateY(-1px);
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.page-hero {
    padding-top: clamp(4.8rem, 8vw, 6.8rem);
}

.page-hero--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.94));
}

.project-list {
    display: grid;
    gap: 1.2rem;
}

.project-row {
    display: grid;
    grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.2fr);
    gap: 1.4rem;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.project-row__media {
    min-height: 240px;
    overflow: hidden;
    border-radius: 24px;
}

.project-row__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 0.4rem 0.4rem 0.4rem 0;
}

.project-row__index {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.project-row__result {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    color: var(--ink);
}

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

.step-card {
    min-height: 220px;
}

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

.faq-card {
    padding: 0;
    overflow: hidden;
}

.faq-card summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 1.2rem 1.3rem;
    font-weight: 700;
    color: var(--ink);
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card summary::after {
    content: "+";
    position: absolute;
    right: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.22s ease;
}

.faq-card[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-card p {
    margin: 0;
    padding: 0 1.3rem 1.25rem;
}

.notice-card,
.contact-panel,
.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.notice-card,
.contact-panel {
    padding: 1.75rem 1.9rem;
}

.contact-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.95)),
        linear-gradient(135deg, rgba(18, 18, 18, 0.025), rgba(255, 255, 255, 0));
}

.footer-cta {
    padding: 0 0 1.5rem;
    background: transparent;
}

.footer-cta__inner {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-strong);
}

.site-footer {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 1rem;
}

.footer-card {
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.86);
}

.footer-branding {
    font-size: 1.15rem;
}

.footer-list {
    display: grid;
    gap: 0.7rem;
}

.footer-list a {
    color: var(--ink);
}

.footer-bottom {
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--ink-faint);
    font-size: 0.92rem;
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.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;
}

@media (max-width: 1080px) {
    .hero-grid,
    .page-hero__grid,
    .split-grid,
    .split-grid--balanced {
        grid-template-columns: 1fr;
    }

    .card-grid--three,
    .portfolio-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading--between {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .topbar__content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0;
    }

    .mobile-toggle {
        display: grid;
        width: 3rem;
        height: 3rem;
        padding: 0.75rem;
        gap: 0.28rem;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        cursor: pointer;
        box-shadow: var(--shadow);
    }

    .mobile-toggle span {
        display: block;
        height: 2px;
        border-radius: 999px;
        background: var(--ink);
        transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .mobile-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-strong);
    }

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

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        width: 100%;
        justify-content: flex-start;
    }

    .site-nav .button {
        width: 100%;
    }

    .project-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .project-row__content {
        padding: 0.25rem 0.25rem 0.5rem;
    }

    .notice-card,
    .contact-panel,
    .footer-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 700px) {
    h1 {
        font-size: clamp(2.25rem, 12vw, 3.35rem);
    }

    h2 {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
    }

    .section {
        padding: 4rem 0;
    }

    .card-grid--two,
    .card-grid--three,
    .portfolio-grid,
    .faq-grid,
    .steps-grid,
    .stat-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy--panel {
        padding: 1.5rem;
    }

    .hero-copy--minimal {
        padding: 1.45rem;
    }

    .hero-copy--minimal::before {
        inset: 0.6rem;
        border-radius: 22px;
    }

    .hero-copy--minimal h1 {
        font-size: clamp(2.9rem, 15vw, 4.2rem);
        gap: 0.04em;
    }

    .hero-lead {
        font-size: 0.96rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.7rem;
        padding: 0.8rem;
        border-radius: 26px;
    }

    .hero-actions__divider {
        width: 100%;
        height: 1px;
    }

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

    .hero-pills {
        gap: 0.45rem;
    }

    .hero-visual__main,
    .page-hero__media,
    .media-panel {
        min-height: 280px;
    }

    .section--partners {
        padding: 1.8rem 0 2.2rem;
    }

    .partners-marquee {
        padding: 0 0.75rem;
        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    }

    .partners-track {
        gap: 0.75rem;
        animation-duration: 40s;
    }

    .partner-logo-card {
        width: 132px;
        min-width: 132px;
        height: 62px;
        padding: 0.15rem 0.25rem;
    }

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

    .button,
    .button--secondary,
    .button--ghost {
        width: 100%;
    }

    .feature-card,
    .service-card,
    .testimonial-card,
    .notice-card,
    .contact-panel,
    .step-card,
    .footer-card,
    .stat-card {
        padding: 1.2rem;
    }

    .header__inner {
        padding: 0.9rem 0;
    }

    .brand__logo {
        width: clamp(124px, 34vw, 164px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
