:root {
    --midnight: #061831;
    --navy: #082a5e;
    --blue: #0759b8;
    --cyan: #16b7d4;
    --teal: #0aa37f;
    --gold: #c9963e;
    --gold-light: #f2c66c;
    --coral: #f26c4f;
    --ink: #0f1f35;
    --muted: #617189;
    --line: #d8e2ef;
    --surface: #ffffff;
    --surface-soft: #f4f8fc;
    --surface-blue: #e9f5ff;
    --danger: #aa2438;
    --success: #16825d;
    --shadow: 0 28px 90px rgba(6, 24, 49, 0.18);
    --shadow-soft: 0 16px 46px rgba(8, 42, 94, 0.12);
    --radius: 8px;
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg,
picture {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(22, 183, 212, 0.72);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 200;
    transform: translateY(-140%);
    border-radius: var(--radius);
    background: var(--midnight);
    color: #fff;
    padding: 10px 14px;
    transition: transform 180ms var(--ease-out);
}

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

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 28% 20%, rgba(22, 183, 212, 0.2), transparent 32%),
        radial-gradient(circle at 72% 70%, rgba(242, 198, 108, 0.22), transparent 34%),
        #f7fbff;
    animation: loaderExit 650ms var(--ease-out) 2600ms forwards;
    transition: opacity 520ms var(--ease-out), visibility 520ms var(--ease-out);
    pointer-events: none;
}

.page-loader.is-loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-card {
    width: min(86vw, 420px);
    display: grid;
    justify-items: center;
    gap: 12px;
    border: 1px solid rgba(216, 226, 239, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.loader-card span {
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.loader-animation,
.loader-animation img {
    width: min(72vw, 280px);
    aspect-ratio: 1;
}

.loader-animation img {
    height: auto;
    object-fit: contain;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 80;
    transform: translateX(-50%);
    width: min(100% - 36px, 1200px);
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 60px rgba(6, 24, 49, 0.18);
    padding: 10px 12px 10px 16px;
    backdrop-filter: blur(20px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
}

.brand picture,
.brand img {
    display: block;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 14px;
    color: #263952;
    font-size: 0.92rem;
    font-weight: 800;
    transition: background 180ms var(--ease-out), color 180ms var(--ease-out), transform 160ms var(--ease-out);
}

.main-nav a:hover {
    background: var(--surface-blue);
    color: var(--navy);
}

.main-nav a:active {
    transform: scale(0.97);
}

.main-nav .nav-cta {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff;
    padding-inline: 18px;
}

.main-nav .nav-cta:hover {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff;
}

.main-nav .language-link {
    min-width: 46px;
    padding: 0 10px;
    border: 1px solid rgba(8, 42, 94, 0.12);
    background: rgba(255, 255, 255, 0.72);
}

.main-nav .language-link:hover {
    border-color: rgba(22, 183, 212, 0.48);
    background: #fff;
}

.flag {
    width: 30px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(6, 24, 49, 0.12);
}

.nav-toggle {
    display: none;
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--surface-blue);
    color: var(--navy);
    cursor: pointer;
}

.icon {
    width: 1.05em;
    height: 1.05em;
    flex: 0 0 auto;
}

.hero {
    position: relative;
    min-height: 100dvh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: var(--midnight);
}

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
}

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

.hero-shade {
    background:
        radial-gradient(circle at 24% 26%, rgba(22, 183, 212, 0.32), transparent 31%),
        linear-gradient(90deg, rgba(6, 24, 49, 0.96) 0%, rgba(6, 24, 49, 0.74) 43%, rgba(6, 24, 49, 0.3) 100%),
        linear-gradient(0deg, rgba(6, 24, 49, 0.95) 0%, rgba(6, 24, 49, 0.1) 56%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100% - 36px, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
    gap: 48px;
    align-items: end;
    padding: 148px 0 150px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 860px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(2.75rem, 5.9vw, 5.45rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    color: var(--navy);
    font-size: clamp(2.1rem, 4.4vw, 4.85rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h3 {
    color: var(--navy);
    font-size: 1.22rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 66ch;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 0.94rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:active {
    transform: scale(0.97);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none;
}

.button--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #17202e;
    box-shadow: 0 20px 45px rgba(242, 198, 108, 0.3);
}

.button--primary:hover {
    box-shadow: 0 24px 58px rgba(242, 198, 108, 0.44);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
    backdrop-filter: blur(14px);
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.18);
}

.button--secondary {
    border-color: var(--line);
    background: #fff;
    color: var(--navy);
}

.button--secondary:hover {
    border-color: rgba(22, 183, 212, 0.5);
    background: var(--surface-blue);
}

.hero-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(22px);
}

.hero-panel picture,
.hero-panel img {
    width: 100%;
}

.hero-panel img {
    height: 310px;
    object-fit: cover;
}

.panel-content {
    padding: 24px;
}

.panel-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(22, 183, 212, 0.18);
    color: #b7f4ff;
    padding: 0 12px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-content h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.panel-content p {
    color: rgba(255, 255, 255, 0.76);
}

.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.panel-tags span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 7px 10px;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-proof {
    position: relative;
    z-index: 2;
    width: min(100% - 36px, 1200px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -86px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.hero-proof div {
    display: grid;
    gap: 7px;
    padding: 22px 24px;
}

.hero-proof div + div {
    border-left: 1px solid var(--line);
}

.hero-proof strong {
    color: var(--cyan);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
}

.hero-proof span {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 900;
}

.section {
    padding: 112px 0;
}

.section-inner {
    width: min(100% - 36px, 1200px);
    margin: 0 auto;
}

.section-heading {
    max-width: 820px;
}

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

.section-heading p:not(.section-kicker),
.services-intro,
.narrative-copy p,
.contact-copy p,
.proof-copy p {
    max-width: 68ch;
    color: var(--muted);
    font-size: 1.08rem;
}

.narrative-section {
    padding-top: 154px;
    background:
        radial-gradient(circle at 8% 0%, rgba(22, 183, 212, 0.13), transparent 28%),
        linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: end;
}

.narrative-copy {
    display: grid;
    gap: 18px;
    border-left: 4px solid var(--cyan);
    padding-left: 26px;
}

.narrative-copy p {
    margin-bottom: 0;
}

.model-section {
    background:
        radial-gradient(circle at 88% 16%, rgba(242, 198, 108, 0.18), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(10, 163, 127, 0.16), transparent 28%),
        var(--midnight);
}

.model-section .section-heading h2,
.model-section .section-heading p:not(.section-kicker) {
    color: #fff;
}

.model-section .section-heading p:not(.section-kicker) {
    opacity: 0.76;
}

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

.venture-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    padding: 34px;
    color: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.venture-card--local {
    background:
        linear-gradient(135deg, rgba(8, 42, 94, 0.96), rgba(7, 89, 184, 0.88)),
        var(--navy);
}

.venture-card--bridge {
    background:
        linear-gradient(135deg, rgba(7, 89, 184, 0.94), rgba(10, 163, 127, 0.88)),
        var(--blue);
}

.venture-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.card-orbit {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 60px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.card-orbit .icon {
    width: 26px;
    height: 26px;
}

.venture-card h3 {
    max-width: 520px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.venture-card ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.venture-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}

.venture-card li .icon {
    margin-top: 4px;
    color: var(--gold-light);
}

.services-section {
    background: #fff;
}

.services-top {
    display: block;
    max-width: 1040px;
    margin-bottom: 46px;
}

.services-top .section-heading {
    max-width: 1040px;
    margin-bottom: 18px;
}

.services-intro {
    max-width: 900px;
    margin-bottom: 0;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 278px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    padding: 28px;
    box-shadow: 0 1px 0 rgba(8, 42, 94, 0.04);
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), var(--gold-light), var(--coral));
    opacity: 0.85;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 183, 212, 0.48);
    box-shadow: var(--shadow-soft);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--surface-blue), #fff3d4);
    color: var(--navy);
}

.service-card__icon .icon {
    width: 24px;
    height: 24px;
}

.service-card p,
.standard-item p,
.faq-item p,
.process-list p,
.empty-state p {
    color: var(--muted);
}

.image-band {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--midnight);
}

.image-band picture,
.image-band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.image-band img {
    object-fit: cover;
}

.image-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 24, 49, 0.92) 0%, rgba(6, 24, 49, 0.56) 45%, rgba(6, 24, 49, 0.14) 100%),
        linear-gradient(0deg, rgba(6, 24, 49, 0.92), transparent 60%);
}

.image-band__content {
    position: relative;
    z-index: 1;
    width: min(100% - 36px, 1200px);
    margin: 0 auto;
    padding: 0 0 76px;
}

.image-band__content h2 {
    max-width: 820px;
    margin-bottom: 28px;
    color: #fff;
}

.benefit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 980px;
}

.benefit-pills span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0 14px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.benefit-pills .icon {
    color: var(--gold-light);
}

.standards-section {
    background:
        radial-gradient(circle at 6% 14%, rgba(22, 183, 212, 0.16), transparent 24%),
        var(--surface-soft);
}

.standards-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 50px;
    align-items: start;
}

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

.standard-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    padding: 24px;
    box-shadow: 0 10px 34px rgba(8, 42, 94, 0.06);
}

.standard-item > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: var(--radius);
    background: var(--surface-blue);
    color: var(--blue);
}

.process-section {
    background: #fff;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    min-height: 255px;
    border-top: 2px solid var(--cyan);
    padding: 26px 22px 0 0;
}

.process-list li + li {
    border-left: 1px solid var(--line);
    padding-left: 22px;
}

.process-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff;
    font-weight: 900;
}

.process-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.12rem;
}

.proof-section {
    background: var(--midnight);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 44px;
    align-items: center;
}

.proof-image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.proof-image img {
    width: 100%;
    height: auto;
}

.proof-copy h2,
.proof-copy p,
.proof-copy blockquote {
    color: #fff;
}

.proof-copy p {
    opacity: 0.78;
}

.proof-copy blockquote {
    margin: 28px 0 0;
    border-left: 4px solid var(--gold-light);
    padding-left: 18px;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    font-weight: 900;
}

.faq-section {
    background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 48px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 0 20px;
    box-shadow: 0 10px 26px rgba(8, 42, 94, 0.05);
}

.faq-item summary {
    min-height: 66px;
    display: flex;
    align-items: center;
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
}

.faq-item p {
    margin-bottom: 22px;
}

.contact-section {
    background:
        radial-gradient(circle at 18% 10%, rgba(242, 198, 108, 0.28), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(22, 183, 212, 0.22), transparent 26%),
        linear-gradient(135deg, #071f42 0%, #08316d 58%, #0a6d8d 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: start;
}

.contact-copy h2,
.contact-copy p {
    color: #fff;
}

.contact-copy p {
    opacity: 0.78;
}

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

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

.lead-form small {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid #c7d4e5;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    padding: 13px 14px;
    transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.lead-form input:focus,
.lead-form textarea:focus {
    border-color: var(--cyan);
    outline: none;
    box-shadow: 0 0 0 4px rgba(22, 183, 212, 0.16);
}

.lead-form .has-error input,
.lead-form .has-error textarea {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(170, 36, 56, 0.12);
}

.lead-form .has-error small {
    color: var(--danger);
}

.lead-form textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    border-radius: var(--radius);
    padding: 14px 16px;
    font-weight: 800;
}

.form-alert strong {
    display: block;
    margin-bottom: 6px;
}

.form-alert ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding-left: 20px;
    font-weight: 700;
}

.form-alert--success {
    background: rgba(255, 255, 255, 0.92);
    color: var(--success);
}

.form-alert--error {
    background: rgba(255, 255, 255, 0.92);
    color: var(--danger);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-inner {
    width: min(100% - 36px, 1200px);
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner picture,
.footer-inner img {
    display: block;
}

.footer-inner img {
    width: 150px;
    height: auto;
}

.footer-inner p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--blue);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-body {
    min-height: 100dvh;
    background: var(--surface-soft);
}

.admin-shell {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    padding: 34px 0;
}

.admin-card,
.empty-state {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.admin-card {
    padding: 24px;
}

.admin-topline,
.admin-dashboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.admin-brand img {
    width: 150px;
}

.admin-login {
    max-width: 520px;
}

.admin-login h1,
.admin-dashboard h1 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
}

.admin-form {
    margin-top: 24px;
}

.submission-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.submission-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: #fff;
}

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

.submission-table th {
    color: var(--navy);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.submission-table td {
    color: #2c3d54;
}

.submission-table a {
    color: var(--blue);
    font-weight: 900;
}

.empty-state {
    padding: 34px;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes loaderExit {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 1020px) {
    .hero-inner,
    .narrative-grid,
    .standards-layout,
    .proof-grid,
    .faq-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding: 138px 0 132px;
    }

    .hero-panel {
        max-width: 560px;
    }

    .service-grid,
    .standards-grid,
    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-list li:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        min-height: 68px;
        padding: 8px 10px 8px 12px;
    }

    .brand img {
        width: 126px;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.96);
        padding: 10px;
        box-shadow: var(--shadow);
    }

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

    .main-nav a {
        justify-content: center;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        width: min(100% - 24px, 1200px);
        gap: 28px;
        padding: 116px 0 106px;
    }

    h1 {
        font-size: clamp(2.45rem, 11.6vw, 3.7rem);
    }

    h2 {
        font-size: clamp(2.05rem, 9vw, 3.35rem);
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-panel img {
        height: 245px;
    }

    .hero-proof {
        width: min(100% - 24px, 1200px);
        grid-template-columns: 1fr;
        margin-top: -70px;
    }

    .hero-proof div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .section {
        padding: 78px 0;
    }

    .section-inner,
    .image-band__content {
        width: min(100% - 24px, 1200px);
    }

    .narrative-section {
        padding-top: 118px;
    }

    .venture-grid,
    .service-grid,
    .standards-grid,
    .process-list {
        grid-template-columns: 1fr;
    }

    .venture-card {
        min-height: 0;
        padding: 26px;
    }

    .card-orbit {
        margin-bottom: 36px;
    }

    .image-band {
        min-height: 760px;
    }

    .benefit-pills {
        display: grid;
    }

    .process-list li,
    .process-list li + li {
        min-height: 0;
        border-left: 0;
        padding: 22px 0 20px;
    }

    .footer-inner,
    .admin-topline,
    .admin-dashboard {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

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

    .loader-animation {
        opacity: 1;
    }
}
