:root {
    --akahi-dark: #020035;
    --akahi-light: #DCDFEE;
    --akahi-mid: #878A99;
    --ink: #171827;
    --muted: #555d73;
    --line: #d9deeb;
    --panel: #f7f8fc;
    --accent: #DCDFEE;
    --shadow: 0 18px 46px rgba(2, 0, 53, .14);
    --premium-shadow: 0 24px 58px rgba(2, 0, 53, .13);
    --premium-border: rgba(2, 0, 53, .16);
    --akahi-chrome: linear-gradient(135deg, #ffffff 0%, #d8dce7 18%, #fbfcff 32%, #aeb6c8 50%, #f7f8fc 66%, #c1c8d7 82%, #ffffff 100%);
    --akahi-chrome-dark: linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(202, 208, 223, .96) 18%, rgba(255, 255, 255, .98) 34%, rgba(135, 143, 164, .92) 52%, rgba(248, 250, 255, .98) 68%, rgba(184, 193, 210, .94) 84%, rgba(255, 255, 255, .98) 100%);
    --akahi-chrome-edge: rgba(255, 255, 255, .76);
    --akahi-logo-chrome: linear-gradient(135deg, #f9fbff 0%, #858da2 13%, #f4f7ff 25%, #5a6278 39%, #151a39 52%, #aab2c7 67%, #f7f9ff 78%, #6c748b 90%, #ffffff 100%);
    --akahi-logo-chrome-dark: linear-gradient(135deg, rgba(245, 248, 255, .98) 0%, rgba(118, 127, 150, .98) 15%, rgba(238, 242, 250, .96) 28%, rgba(72, 81, 105, .98) 42%, rgba(16, 20, 47, .98) 56%, rgba(162, 172, 195, .96) 70%, rgba(246, 249, 255, .95) 82%, rgba(83, 92, 116, .98) 100%);
    --akahi-card-chrome: linear-gradient(135deg, rgba(63, 69, 90, .98) 0%, rgba(220, 223, 238, .9) 13%, rgba(103, 111, 135, .96) 28%, rgba(32, 37, 62, .98) 48%, rgba(190, 197, 214, .88) 64%, rgba(74, 82, 105, .96) 81%, rgba(236, 239, 248, .9) 100%);
    --akahi-card-chrome-dark: linear-gradient(135deg, rgba(45, 51, 76, .92) 0%, rgba(155, 164, 188, .16) 18%, rgba(79, 88, 116, .8) 34%, rgba(15, 19, 49, .92) 54%, rgba(180, 188, 207, .18) 70%, rgba(50, 57, 84, .88) 100%);
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

body {
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: var(--ink);
    font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
main:focus-visible {
    outline: 3px solid #f7c948;
    outline-offset: 4px;
}

main:focus {
    outline: none;
}

main:focus-visible {
    outline: 3px solid #f7c948;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 1000;
    padding: 12px 18px;
    border-radius: 6px;
    background: #ffffff;
    color: var(--akahi-dark);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
    transform: translateY(-140%);
    transition: transform .2s ease;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
    padding: 14px clamp(18px, 5vw, 72px);
    overflow: visible;
    background:
        linear-gradient(90deg, rgba(2, 0, 53, .98), rgba(8, 22, 82, .9) 48%, rgba(2, 0, 53, .98)),
        url("../images/Akahi-lion.png") right clamp(24px, 6vw, 98px) center / 96px auto no-repeat,
        linear-gradient(135deg, rgba(2, 0, 53, .84), rgba(14, 48, 126, .58) 45%, rgba(2, 0, 53, .76)),
        url("../images/skyway-blue-hour-unsplash.jpg") center 46% / cover no-repeat,
        var(--akahi-dark);
    box-shadow: 0 18px 48px rgba(2, 0, 53, .28);
    isolation: isolate;
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(220, 223, 238, 0), rgba(220, 223, 238, .72), rgba(220, 223, 238, .32));
    content: "";
}

.site-header::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, .14) 47%, rgba(220, 223, 238, .16) 52%, rgba(255, 255, 255, 0) 66%, transparent 100%),
        radial-gradient(circle at 24% 0, rgba(220, 223, 238, .16), rgba(220, 223, 238, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, 0) 58%);
    background-size: 230% 100%, 100% 100%, 100% 100%;
    background-position: -130% 0, center, center;
    content: "";
    animation: akahiHeaderShimmer 13s ease-in-out infinite;
}

.brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .28));
    transition: transform .22s ease, filter .22s ease;
}

.brand:hover,
.brand:focus {
    transform: translateY(-1px);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .3));
}

.brand img {
    display: block;
    width: min(252px, 50vw);
}

.site-nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 8px 10px;
    overflow: visible;
    border: 1px solid rgba(220, 223, 238, .22);
    border-radius: 999px;
    background:
        radial-gradient(ellipse at 50% 0, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 62%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(2, 0, 53, .28));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        inset 0 -1px 0 rgba(2, 0, 53, .26),
        0 18px 40px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px) saturate(120%);
}

.site-nav::before {
    position: absolute;
    inset: 4px;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(2, 0, 53, .14));
    box-shadow:
        inset 0 1px 4px rgba(2, 0, 53, .22),
        inset 0 -1px 0 rgba(255, 255, 255, .08);
    content: "";
}

.site-nav::after {
    position: absolute;
    right: 18px;
    bottom: -11px;
    left: 18px;
    height: 18px;
    pointer-events: none;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .34), rgba(0, 0, 0, 0) 70%);
    content: "";
    filter: blur(5px);
}

.site-nav a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    color: rgba(255, 255, 255, .86);
    background: transparent;
    border: 1px solid transparent;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, .08),
        0 2px 8px rgba(0, 0, 0, .3);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1.25;
    padding: 10px 9px;
    border-radius: 999px;
    text-transform: uppercase;
    transform: translateY(0);
    transform-origin: center bottom;
    box-shadow: none;
    transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease, filter .24s ease;
}

.site-nav a::before {
    position: absolute;
    right: 12px;
    bottom: 7px;
    left: 12px;
    height: 2px;
    pointer-events: none;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(220, 223, 238, 0), rgba(220, 223, 238, .92), rgba(220, 223, 238, .72), rgba(220, 223, 238, 0));
    content: "";
    opacity: 0;
    transform: scaleX(.42);
    transform-origin: center;
    transition: opacity .24s ease, transform .24s ease;
}

.site-nav a::after {
    position: absolute;
    right: 10px;
    bottom: 5px;
    left: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(220, 223, 238, .28), rgba(220, 223, 238, 0) 70%);
    content: "";
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .24s ease, transform .24s ease;
}

.site-nav a[aria-current="page"]::before {
    display: block;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
    color: #fff;
    filter: none;
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.site-nav a:hover::before,
.site-nav a:focus::before {
    opacity: .9;
    transform: scaleX(1);
}

.site-nav a[aria-current="page"]::before {
    opacity: 1;
    transform: scaleX(1);
    animation: akahiMinimalNavLine 2.2s ease-in-out infinite;
}

.site-nav a:hover::after,
.site-nav a:focus::after,
.site-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, .09);
    animation: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .1),
        0 0 24px rgba(220, 223, 238, .1);
}

.site-nav a:last-child {
    margin-left: 8px;
    border: 1px solid var(--akahi-chrome-edge);
    background: var(--akahi-chrome-dark);
    color: var(--akahi-dark);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, .58),
        0 1px 2px rgba(2, 0, 53, .24),
        0 3px 8px rgba(2, 0, 53, .18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .72),
        inset 0 -2px 0 rgba(2, 0, 53, .16),
        inset 0 -9px 16px rgba(92, 99, 118, .14),
        0 2px 0 rgba(2, 0, 53, .34),
        0 14px 28px rgba(0, 0, 0, .16);
}

.site-nav a:last-child:hover,
.site-nav a:last-child:focus,
.site-nav a:last-child[aria-current="page"] {
    background: var(--akahi-chrome);
    color: var(--akahi-dark);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        inset 0 -2px 0 rgba(92, 99, 118, .24),
        inset 0 -10px 18px rgba(92, 99, 118, .12),
        0 0 0 1px rgba(220, 223, 238, .26),
        0 3px 0 rgba(2, 0, 53, .32),
        0 18px 34px rgba(0, 0, 0, .2);
}

.site-nav a:last-child::after {
    background: var(--accent);
    right: 18px;
    left: 18px;
}

.nav-toggle {
    position: relative;
    z-index: 1;
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid rgba(220, 223, 238, .36);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 12px 28px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.nav-toggle:hover,
.nav-toggle:focus {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(220, 223, 238, .68);
    transform: translateY(-1px);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--akahi-light);
    transition: transform .22s ease, opacity .22s ease, background-color .22s ease;
}

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

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

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

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: 680px;
    padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 96px);
    overflow: hidden;
    background: linear-gradient(110deg, rgba(2, 0, 53, .97), rgba(2, 0, 53, .86) 50%, rgba(2, 0, 53, .6)), url("../images/Pic-1.jpg") center / cover no-repeat;
    color: #fff;
}

.hero::after,
.section--dark::after,
.subhero::after,
.founder-callout::after,
.cta::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, .08) 46%, rgba(220, 223, 238, .12) 52%, rgba(255, 255, 255, .06) 58%, transparent 72%);
    content: "";
    mix-blend-mode: screen;
    opacity: 0;
    transform: translateX(-120%) skewX(-14deg);
    animation: akahiGlassShimmer 12s ease-in-out infinite;
}

.hero__content,
.hero__credential {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 14px;
    color: #5f6678;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow,
.cta .eyebrow {
    color: var(--akahi-light);
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1 {
    max-width: 930px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.45rem, 6vw, 5.85rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .98;
}

.hero__lead {
    max-width: 780px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1.04rem, 1.45vw, 1.34rem);
    line-height: 1.75;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .6),
        inset 0 -1px 0 rgba(2, 0, 53, .12),
        0 3px 0 rgba(2, 0, 53, .18),
        0 14px 24px rgba(0, 0, 0, .18),
        0 26px 52px rgba(0, 0, 0, .16);
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

.button::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, .74) 48%, rgba(198, 205, 221, .28) 56%, rgba(255, 255, 255, 0) 68%, transparent 100%);
    content: "";
    opacity: 0;
    transform: translateX(-120%) skewX(-14deg);
}

.button > * {
    position: relative;
    z-index: 1;
}

.button:hover::before,
.button:focus::before {
    animation: akahiButtonChromeSweep 1.1s ease both;
}

.button--primary {
    background: var(--akahi-chrome-dark);
    border-color: var(--akahi-chrome-edge);
    color: var(--akahi-dark);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, .58),
        0 1px 2px rgba(2, 0, 53, .24),
        0 3px 8px rgba(2, 0, 53, .18);
}

.button--secondary {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(196, 205, 224, .07), rgba(255, 255, 255, .1));
    border-color: rgba(235, 239, 248, .62);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .24),
        inset 0 -1px 0 rgba(255, 255, 255, .08),
        0 3px 0 rgba(2, 0, 53, .2),
        0 14px 24px rgba(0, 0, 0, .18),
        0 26px 52px rgba(0, 0, 0, .16);
}

.button--download {
    background:
        linear-gradient(135deg, rgba(2, 0, 53, .88), rgba(24, 31, 76, .72)),
        var(--akahi-logo-chrome);
    border-color: rgba(220, 223, 238, .72);
    color: #fff;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, .14),
        0 2px 0 rgba(2, 0, 53, .7),
        0 4px 10px rgba(2, 0, 53, .54);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .38),
        inset 0 -2px 0 rgba(2, 0, 53, .44),
        0 0 0 1px rgba(220, 223, 238, .2),
        0 3px 0 rgba(2, 0, 53, .34),
        0 16px 28px rgba(0, 0, 0, .2),
        0 30px 58px rgba(0, 0, 0, .18);
}

.button:hover,
.button:focus {
    transform: translateY(-3px);
    box-shadow:
        0 5px 0 rgba(2, 0, 53, .22),
        0 20px 36px rgba(0, 0, 0, .22),
        0 34px 68px rgba(0, 0, 0, .18);
}

.button--primary:hover,
.button--primary:focus {
    background: var(--akahi-chrome);
    border-color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        inset 0 -1px 0 rgba(92, 99, 118, .18),
        0 0 0 1px rgba(220, 223, 238, .26),
        0 5px 0 rgba(2, 0, 53, .22),
        0 20px 36px rgba(0, 0, 0, .22),
        0 34px 68px rgba(0, 0, 0, .18);
}

.button--secondary:hover,
.button--secondary:focus {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(196, 205, 224, .12), rgba(255, 255, 255, .18));
    border-color: rgba(255, 255, 255, .82);
}

.button--download:hover,
.button--download:focus {
    background:
        linear-gradient(135deg, rgba(2, 0, 53, .78), rgba(24, 31, 76, .58)),
        var(--akahi-logo-chrome);
    border-color: rgba(220, 223, 238, .95);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .48),
        inset 0 -2px 0 rgba(2, 0, 53, .48),
        0 0 0 1px rgba(220, 223, 238, .34),
        0 0 24px rgba(220, 223, 238, .18),
        0 5px 0 rgba(2, 0, 53, .28),
        0 22px 38px rgba(0, 0, 0, .24),
        0 38px 72px rgba(0, 0, 0, .2);
}

.hero__credential {
    align-self: end;
    position: relative;
    display: grid;
    grid-template-columns: minmax(128px, 150px) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: clamp(22px, 3vw, 34px);
    overflow: hidden;
    border: 1px solid rgba(220, 223, 238, .28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .07)),
        rgba(255, 255, 255, .1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .16),
        0 0 0 1px rgba(220, 223, 238, .08),
        0 4px 0 rgba(2, 0, 53, .28),
        0 22px 42px rgba(0, 0, 0, .24),
        0 36px 92px rgba(0, 0, 0, .24);
    backdrop-filter: blur(12px);
    animation: akahiCredentialPulse 4.8s ease-in-out infinite;
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, background-color .32s ease;
}

.hero__credential::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, .42) 48%, rgba(220, 223, 238, .22) 54%, rgba(255, 255, 255, 0) 68%, transparent 100%);
    content: "";
    opacity: 0;
    transform: translateX(-120%) skewX(-14deg);
    animation: akahiCredentialSweep 5.6s ease-in-out infinite;
}

.hero__credential::after {
    position: absolute;
    inset: 10px;
    pointer-events: none;
    border: 1px solid rgba(220, 223, 238, .18);
    border-radius: 6px;
    content: "";
    opacity: .72;
}

.hero__credential:hover,
.hero__credential:focus-within {
    transform: translateY(-5px);
    border-color: rgba(220, 223, 238, .42);
    background: rgba(255, 255, 255, .13);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .2),
        0 0 0 1px rgba(220, 223, 238, .22),
        0 0 34px rgba(220, 223, 238, .16),
        0 6px 0 rgba(2, 0, 53, .32),
        0 28px 54px rgba(0, 0, 0, .28),
        0 46px 104px rgba(0, 0, 0, .28);
}

.hero__credential img {
    position: relative;
    z-index: 1;
    width: min(150px, 100%);
    justify-self: center;
    border-radius: 6px;
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .72),
        0 10px 24px rgba(0, 0, 0, .22);
    transition: transform .32s ease, box-shadow .32s ease;
}

.hero__credential:hover img,
.hero__credential:focus-within img {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 0 1px rgba(220, 223, 238, .52),
        0 14px 30px rgba(0, 0, 0, .26);
}

.hero__credential p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(1rem, 1.28vw, 1.16rem);
    font-weight: 800;
    line-height: 1.52;
    text-align: left;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: #c8ccda;
}

.trust-strip span {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 18px 22px;
    overflow: hidden;
    background: #fff;
    color: var(--akahi-dark);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
    transition: color .24s ease, background-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.trust-strip span::before {
    position: absolute;
    inset: auto 18px 12px 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(135, 138, 153, .3));
    content: "";
    opacity: .42;
    transform: scaleX(.42);
    transform-origin: left center;
    transition: opacity .24s ease, transform .24s ease;
}

.trust-strip span:hover {
    z-index: 1;
    background: linear-gradient(145deg, #fff, #f3f5fb);
    box-shadow: 0 16px 36px rgba(2, 0, 53, .12);
    transform: translateY(-3px);
}

.trust-strip span:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.section {
    padding: clamp(72px, 8.5vw, 124px) clamp(20px, 6vw, 96px);
}

.section--light {
    background: var(--panel);
}

.section--dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(2, 0, 53, .98), rgba(2, 0, 53, .91)), url("../images/Pic-3.jpg") center / cover no-repeat;
    color: #fff;
}

.section--dark > * {
    position: relative;
    z-index: 1;
}

.section-heading {
    position: relative;
    max-width: 890px;
    margin-bottom: clamp(28px, 4vw, 52px);
    padding-top: 16px;
}

.section-heading::before {
    position: absolute;
    top: 0;
    left: 0;
    width: min(92px, 32vw);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(220, 223, 238, .72), rgba(220, 223, 238, 0));
    box-shadow: 0 0 22px rgba(220, 223, 238, .24);
    content: "";
    opacity: .64;
    transform: scaleX(.42);
    transform-origin: left center;
    transition: opacity .58s ease, transform .58s ease;
}

.is-visible .section-heading::before,
.section-heading:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

h2 {
    margin: 0;
    color: var(--akahi-dark);
    font-size: clamp(2rem, 3.6vw, 3.85rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.section--dark h2,
.cta h2 {
    color: #fff;
}

.section-heading p:not(.eyebrow),
.er-section p,
.cta p {
    max-width: 840px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

.section--dark .section-heading p:not(.eyebrow),
.cta p {
    color: rgba(255, 255, 255, .78);
}

.card-grid {
    display: grid;
    gap: clamp(18px, 2vw, 24px);
}

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

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

.card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 250px;
    padding: clamp(22px, 2.8vw, 34px);
    border: 1px solid var(--premium-border);
    border-radius: 12px;
    background: var(--akahi-card-chrome);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        inset 0 -1px 0 rgba(87, 94, 112, .15),
        0 0 0 1px rgba(255, 255, 255, .42),
        0 3px 0 rgba(2, 0, 53, .18),
        0 16px 30px rgba(2, 0, 53, .12),
        0 30px 58px rgba(2, 0, 53, .1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.card::after,
.feature-card::after,
.point-grid div::after,
.contact-box::after {
    position: absolute;
    top: 0;
    right: 18px;
    left: 18px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(220, 223, 238, .12), rgba(220, 223, 238, .72), rgba(220, 223, 238, .42));
    content: "";
    opacity: .58;
    transform: scaleX(.52);
    transform-origin: left center;
    transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
}

.card::before,
.feature-card::before,
.point-grid div::before,
.contact-box::before,
.trust-badge::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .9) 43%, rgba(196, 204, 221, .48) 53%, rgba(255, 255, 255, 0) 68%, transparent 100%);
    content: "";
    opacity: 0;
    transform: translateX(-120%) skewX(-12deg);
    transition: opacity .32s ease;
}

.card > *,
.feature-card > *,
.point-grid div > *,
.contact-box > *,
.trust-badge {
    position: relative;
    z-index: 1;
}

.card:hover,
.card:focus-within {
    transform: translateY(-7px);
    border-color: rgba(2, 0, 53, .34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        inset 0 -1px 0 rgba(87, 94, 112, .18),
        0 0 0 1px rgba(220, 223, 238, .24),
        0 6px 0 rgba(2, 0, 53, .22),
        0 24px 44px rgba(2, 0, 53, .16),
        0 42px 78px rgba(2, 0, 53, .14);
}

.card:hover::after,
.card:focus-within::after,
.feature-card:hover::after,
.feature-card:focus-within::after,
.point-grid div:hover::after,
.point-grid div:focus-within::after,
.contact-box:hover::after,
.contact-box:focus-within::after {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 22px rgba(220, 223, 238, .24);
}

.card:hover::before,
.card:focus-within::before,
.feature-card:hover::before,
.feature-card:focus-within::before,
.point-grid div:hover::before,
.point-grid div:focus-within::before,
.contact-box:hover::before,
.contact-box:focus-within::before,
.trust-badge:hover::after,
.trust-badge:focus-within::after {
    opacity: 1;
    animation: akahiCardShimmer 1.35s ease both;
}

.card--dark {
    border-color: rgba(220, 223, 238, .34);
    background:
        var(--akahi-card-chrome-dark),
        rgba(255, 255, 255, .08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 3px 0 rgba(0, 0, 0, .2),
        0 20px 46px rgba(0, 0, 0, .18),
        0 36px 72px rgba(0, 0, 0, .16);
}

.card--dark::after {
    background: linear-gradient(90deg, rgba(220, 223, 238, .18), rgba(220, 223, 238, .78), rgba(255, 255, 255, .26));
}

.card--dark:hover,
.card--dark:focus-within {
    border-color: rgba(220, 223, 238, .52);
    background: rgba(255, 255, 255, .11);
    box-shadow:
        0 6px 0 rgba(0, 0, 0, .22),
        0 30px 64px rgba(0, 0, 0, .24),
        0 48px 92px rgba(0, 0, 0, .2);
}

.card h3 {
    margin: 0 0 14px;
    color: #fff;
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .74),
        0 3px 9px rgba(2, 0, 53, .48);
    font-size: clamp(1.08rem, 1.4vw, 1.35rem);
    font-weight: 800;
    line-height: 1.25;
}

.card--dark h3 {
    color: #fff;
}

.card p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .64),
        0 2px 7px rgba(2, 0, 53, .42);
    font-size: .98rem;
    line-height: 1.72;
}

.card--dark p {
    color: rgba(255, 255, 255, .78);
}

.er-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    background: #fff;
}

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

.point-grid div {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--premium-border);
    border-radius: 12px;
    background: var(--akahi-card-chrome);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        inset 0 -1px 0 rgba(87, 94, 112, .14),
        0 0 0 1px rgba(255, 255, 255, .38),
        0 3px 0 rgba(2, 0, 53, .16),
        0 14px 28px rgba(2, 0, 53, .1),
        0 28px 54px rgba(2, 0, 53, .08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.point-grid div:hover,
.point-grid div:focus-within {
    transform: translateY(-7px);
    border-color: rgba(2, 0, 53, .28);
    background: var(--akahi-card-chrome);
    box-shadow:
        0 6px 0 rgba(2, 0, 53, .2),
        0 22px 42px rgba(2, 0, 53, .14),
        0 40px 76px rgba(2, 0, 53, .12);
}

.trust-badges {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0, rgba(220, 223, 238, .16), rgba(220, 223, 238, 0) 28%),
        linear-gradient(180deg, #fff, var(--panel));
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 20px);
}

.trust-badge {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 20px 22px 20px 46px;
    border: 1px solid var(--premium-border);
    border-radius: 12px;
    background: var(--akahi-card-chrome);
    color: #fff;
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .72),
        0 3px 9px rgba(2, 0, 53, .46);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.45;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        inset 0 -1px 0 rgba(87, 94, 112, .14),
        0 0 0 1px rgba(255, 255, 255, .38),
        0 3px 0 rgba(2, 0, 53, .16),
        0 16px 32px rgba(2, 0, 53, .12),
        0 30px 58px rgba(2, 0, 53, .1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.trust-badge::before {
    position: absolute;
    top: 24px;
    left: 22px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(220, 223, 238, .18);
    content: "";
}

.trust-badge:hover,
.trust-badge:focus-within {
    transform: translateY(-7px);
    border-color: rgba(220, 223, 238, .42);
    background:
        linear-gradient(135deg, rgba(42, 48, 74, .98) 0%, rgba(96, 106, 132, .9) 28%, rgba(13, 18, 48, .98) 52%, rgba(75, 84, 110, .94) 78%, rgba(190, 197, 214, .42) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .28),
        inset 0 -1px 0 rgba(2, 0, 53, .28),
        0 0 0 1px rgba(220, 223, 238, .18),
        0 6px 0 rgba(2, 0, 53, .22),
        0 24px 46px rgba(2, 0, 53, .16),
        0 42px 80px rgba(2, 0, 53, .14);
}

.founder-callout {
    position: relative;
    padding-top: clamp(48px, 6vw, 76px);
    padding-bottom: clamp(48px, 6vw, 76px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(2, 0, 53, .96), rgba(17, 18, 83, .9)),
        url("../images/Pic-3.jpg") center / cover no-repeat;
    color: #fff;
}

.founder-callout__inner {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid rgba(220, 223, 238, .28);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    box-shadow:
        0 4px 0 rgba(0, 0, 0, .22),
        0 24px 54px rgba(0, 0, 0, .24),
        0 42px 94px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.founder-callout .eyebrow {
    color: var(--akahi-light);
}

.founder-callout h2 {
    color: #fff;
}

.founder-callout p:not(.eyebrow) {
    max-width: 900px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.04rem, 1.35vw, 1.2rem);
    line-height: 1.8;
}

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

.point-grid strong {
    margin-bottom: 8px;
    color: #fff;
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .74),
        0 3px 9px rgba(2, 0, 53, .48);
    font-weight: 800;
}

.point-grid span {
    color: rgba(255, 255, 255, .84);
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .64),
        0 2px 7px rgba(2, 0, 53, .42);
    line-height: 1.65;
}

.cta {
    position: relative;
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    padding: clamp(56px, 7vw, 92px) clamp(20px, 6vw, 96px);
    overflow: hidden;
    background: var(--akahi-dark);
    color: #fff;
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta .button {
    flex: 0 0 auto;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1fr);
    gap: 32px;
    padding: 46px clamp(20px, 6vw, 96px);
    background: #010024;
    color: rgba(255, 255, 255, .78);
}

.site-footer img {
    width: min(230px, 70vw);
    margin-bottom: 16px;
}

.site-footer p {
    margin: 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    align-content: start;
    justify-content: flex-end;
}

.site-footer a {
    color: var(--akahi-light);
    font-weight: 700;
}

.subhero {
    position: relative;
    padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 96px) clamp(54px, 7vw, 86px);
    overflow: hidden;
    background: linear-gradient(120deg, rgba(2, 0, 53, .97), rgba(2, 0, 53, .82)), url("../images/Pic-3.jpg") center / cover no-repeat;
    color: #fff;
}

.subhero > * {
    position: relative;
    z-index: 1;
}

.subhero h1 {
    max-width: 980px;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1.02;
}

.subhero p {
    max-width: 850px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.04rem, 1.6vw, 1.28rem);
    line-height: 1.75;
}

.content-section {
    padding: clamp(64px, 7.5vw, 108px) clamp(20px, 6vw, 96px);
    background: #fff;
}

.content-section--light {
    background: var(--panel);
}

.content-section--dark {
    background: var(--akahi-dark);
    color: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.content-copy {
    max-width: 850px;
}

.content-copy h2,
.content-section h2 {
    margin-bottom: 18px;
}

.content-copy p,
.content-section p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.82;
}

.section-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.feature-card p,
.contact-box p,
.point-grid span {
    color: rgba(255, 255, 255, .84);
}

.contact-box h2,
.contact-box h3,
.contact-box .eyebrow,
.image-card__body h3 {
    color: #fff;
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .74),
        0 3px 9px rgba(2, 0, 53, .48);
}

.contact-box p,
.contact-box label,
.contact-box a {
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .64),
        0 2px 7px rgba(2, 0, 53, .42);
}

.content-section--dark p,
.content-section--dark li {
    color: rgba(255, 255, 255, .78);
}

.content-section--dark h2,
.content-section--dark h3 {
    color: #fff;
}

.list {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.list li + li {
    margin-top: 8px;
}

.split-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.split-list li {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 26px;
    border: 1px solid var(--premium-border);
    border-radius: 12px;
    background: var(--akahi-card-chrome);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        inset 0 -1px 0 rgba(87, 94, 112, .14),
        0 0 0 1px rgba(255, 255, 255, .38),
        0 3px 0 rgba(2, 0, 53, .16),
        0 16px 32px rgba(2, 0, 53, .12),
        0 30px 58px rgba(2, 0, 53, .1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.feature-card:hover,
.feature-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(2, 0, 53, .32);
    background: var(--akahi-card-chrome);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        inset 0 -1px 0 rgba(87, 94, 112, .18),
        0 0 0 1px rgba(220, 223, 238, .24),
        0 6px 0 rgba(2, 0, 53, .22),
        0 24px 46px rgba(2, 0, 53, .16),
        0 42px 80px rgba(2, 0, 53, .14);
}

.feature-card h3 {
    margin: 0 0 12px;
    color: #fff;
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .74),
        0 3px 9px rgba(2, 0, 53, .48);
    font-size: 1.18rem;
    line-height: 1.25;
}

.feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    text-shadow:
        0 1px 1px rgba(2, 0, 53, .64),
        0 2px 7px rgba(2, 0, 53, .42);
}

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

.image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .55s ease, filter .55s ease;
}

.image-card:hover img,
.image-card:focus-within img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}

.contact-box.image-card::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(2, 0, 53, .08), rgba(2, 0, 53, .22) 46%, rgba(220, 223, 238, .12)),
        radial-gradient(circle at 72% 16%, rgba(220, 223, 238, .16), rgba(220, 223, 238, 0) 32%),
        linear-gradient(115deg, rgba(17, 79, 171, .18), rgba(255, 255, 255, 0) 52%);
    content: "";
    mix-blend-mode: multiply;
    z-index: 1;
}

.contact-box.image-card img {
    filter: saturate(.98) brightness(.9) contrast(1.08);
}

.contact-box.image-card:hover img,
.contact-box.image-card:focus-within img {
    filter: saturate(1.06) brightness(.94) contrast(1.12);
}

.contact-box.image-card .image-card__body {
    position: relative;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(242, 245, 251, .88)),
        #fff;
}

.image-card--crop-text img {
    aspect-ratio: 2.2 / 1;
    object-position: center top;
}

.image-card__body {
    padding: 24px;
}

.portrait-card img {
    aspect-ratio: 4 / 4.5;
    object-position: center top;
}

.credential-card {
    display: grid;
    gap: 18px;
}

.credential-card img {
    width: 130px;
    border-radius: 6px;
}

.image-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.image-strip img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    box-shadow:
        0 3px 0 rgba(2, 0, 53, .16),
        0 16px 32px rgba(2, 0, 53, .14),
        0 30px 58px rgba(2, 0, 53, .1);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 24px;
}

.contact-box {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--premium-border);
    border-radius: 12px;
    background: var(--akahi-card-chrome);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        inset 0 -1px 0 rgba(87, 94, 112, .14),
        0 0 0 1px rgba(255, 255, 255, .38),
        0 3px 0 rgba(2, 0, 53, .16),
        0 16px 32px rgba(2, 0, 53, .12),
        0 30px 58px rgba(2, 0, 53, .1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.contact-box:hover,
.contact-box:focus-within {
    transform: translateY(-7px);
    border-color: rgba(2, 0, 53, .28);
    box-shadow:
        0 6px 0 rgba(2, 0, 53, .22),
        0 24px 46px rgba(2, 0, 53, .16),
        0 42px 80px rgba(2, 0, 53, .14);
}

.contact-box a {
    color: #fff;
    font-weight: 800;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid label {
    display: grid;
    gap: 7px;
    color: #fff;
    font-weight: 800;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid #c5ccdc;
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
}

.form-grid input:focus,
.form-grid textarea:focus {
    border-color: var(--akahi-dark);
}

.form-grid ::placeholder {
    color: #626b7d;
    opacity: 1;
}

.form-grid textarea {
    min-height: 150px;
    resize: vertical;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .78s cubic-bezier(.2, .7, .2, 1), transform .78s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
}

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

.reveal-child {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .62s cubic-bezier(.2, .7, .2, 1), transform .62s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1180px) {
    .card-grid--five,
    .card-grid--four {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 1120px) {
    .site-header {
        min-height: 86px;
        background:
            linear-gradient(90deg, rgba(2, 0, 53, .98), rgba(8, 22, 82, .9)),
            url("../images/Akahi-lion.png") right 78px center / 80px auto no-repeat,
            linear-gradient(135deg, rgba(2, 0, 53, .86), rgba(14, 48, 126, .62)),
            url("../images/skyway-blue-hour-unsplash.jpg") center 44% / cover no-repeat,
            var(--akahi-dark);
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: clamp(14px, 4vw, 28px);
        left: clamp(14px, 4vw, 28px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(220, 223, 238, .24);
        border-radius: 8px;
        background:
            var(--akahi-logo-chrome-dark),
            linear-gradient(135deg, rgba(2, 0, 53, .78), rgba(20, 88, 176, .42)),
            url("../images/skyway-blue-hour-unsplash.jpg") center 46% / cover no-repeat,
            var(--akahi-dark);
        box-shadow: 0 24px 54px rgba(0, 0, 0, .32);
        backdrop-filter: blur(18px);
    }

    .site-nav.is-open {
        display: flex;
        animation: navMenuIn .2s ease both;
    }

    .site-nav a {
        justify-content: flex-start;
        min-height: 48px;
        padding: 13px 14px;
        border-radius: 6px;
        border-bottom: 0;
        background:
            linear-gradient(180deg, rgba(2, 0, 53, .78), rgba(16, 20, 47, .58));
        color: #fff;
    }

    .site-nav a::after {
        right: auto;
        bottom: 11px;
        left: 14px;
        width: 34px;
        transform-origin: left center;
    }

    .site-nav a:hover,
    .site-nav a:focus,
    .site-nav a[aria-current="page"] {
        transform: translateY(-1px);
    }

    .site-nav a:last-child {
        margin: 4px 0 0;
        justify-content: center;
    }
}

@media (max-width: 920px) {
    .hero,
    .er-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 68px;
        padding-bottom: 56px;
    }

    .hero__credential {
        align-self: start;
        max-width: 560px;
    }

    .trust-strip,
    .card-grid--five,
    .card-grid--four,
    .badge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta {
        display: block;
    }

    .cta .button {
        margin-top: 26px;
    }

    .site-footer nav {
        justify-content: flex-start;
    }

    .content-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

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

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

@keyframes navMenuIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes akahiHeaderShimmer {
    0%,
    22% {
        background-position: -130% 0, center, center;
    }

    48% {
        background-position: 145% 0, center, center;
    }

    100% {
        background-position: 145% 0, center, center;
    }
}

@keyframes akahiGlassShimmer {
    0%,
    18% {
        opacity: 0;
        transform: translateX(-120%) skewX(-14deg);
    }

    34% {
        opacity: .42;
    }

    52% {
        opacity: .22;
        transform: translateX(120%) skewX(-14deg);
    }

    100% {
        opacity: 0;
        transform: translateX(120%) skewX(-14deg);
    }
}

@keyframes akahiCredentialPulse {
    0%,
    100% {
        border-color: rgba(220, 223, 238, .28);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .16),
            0 0 0 1px rgba(220, 223, 238, .08),
            0 24px 80px rgba(0, 0, 0, .28);
    }

    50% {
        border-color: rgba(220, 223, 238, .36);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .2),
            0 0 0 1px rgba(220, 223, 238, .2),
            0 0 28px rgba(220, 223, 238, .12),
            0 28px 86px rgba(0, 0, 0, .32);
    }
}

@keyframes akahiCredentialSweep {
    0%,
    38% {
        opacity: 0;
        transform: translateX(-120%) skewX(-14deg);
    }

    52% {
        opacity: .72;
    }

    72%,
    100% {
        opacity: 0;
        transform: translateX(120%) skewX(-14deg);
    }
}

@keyframes akahiCardShimmer {
    0% {
        opacity: 0;
        transform: translateX(-120%) skewX(-12deg);
    }

    28% {
        opacity: .9;
    }

    100% {
        opacity: 0;
        transform: translateX(120%) skewX(-12deg);
    }
}

@keyframes akahiButtonChromeSweep {
    0% {
        opacity: 0;
        transform: translateX(-120%) skewX(-14deg);
    }

    32% {
        opacity: .72;
    }

    100% {
        opacity: 0;
        transform: translateX(120%) skewX(-14deg);
    }
}

@keyframes akahiActiveNavShimmer {
    0% {
        opacity: 0;
        transform: translateX(-120%) skewX(-14deg);
    }

    38% {
        opacity: .78;
    }

    62% {
        opacity: .58;
    }

    100% {
        opacity: 0;
        transform: translateX(120%) skewX(-14deg);
    }
}

@keyframes akahiActiveNavPulse {
    0%,
    100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .98),
            inset 0 -2px 0 rgba(92, 99, 118, .24),
            inset 0 -10px 18px rgba(92, 99, 118, .12),
            0 0 0 1px rgba(220, 223, 238, .36),
            0 0 16px rgba(220, 223, 238, .16),
            0 4px 0 rgba(2, 0, 53, .34),
            0 18px 36px rgba(0, 0, 0, .2);
    }

    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 1),
            inset 0 -2px 0 rgba(92, 99, 118, .26),
            inset 0 -10px 18px rgba(92, 99, 118, .14),
            0 0 0 1px rgba(220, 223, 238, .62),
            0 0 30px rgba(220, 223, 238, .34),
            0 4px 0 rgba(2, 0, 53, .38),
            0 20px 40px rgba(0, 0, 0, .24);
    }
}

@keyframes akahiMinimalNavLine {
    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(220, 223, 238, .18));
        opacity: .72;
        transform: scaleX(.82);
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(220, 223, 238, .48));
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes akahiSelectedNavGlow {
    0%,
    100% {
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, .22),
            0 0 0 1px rgba(220, 223, 238, .18),
            0 0 16px rgba(220, 223, 238, .12),
            0 12px 28px rgba(0, 0, 0, .16);
    }

    50% {
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, .36),
            0 0 0 1px rgba(220, 223, 238, .38),
            0 0 28px rgba(220, 223, 238, .28),
            0 14px 32px rgba(0, 0, 0, .2);
    }
}

@keyframes akahiNavRailSheen {
    0%,
    42% {
        opacity: 0;
        transform: translateX(-40%) rotate(16deg);
    }

    55% {
        opacity: .58;
    }

    78%,
    100% {
        opacity: 0;
        transform: translateX(620%) rotate(16deg);
    }
}

@keyframes akahiSelectedNavVerticalSweep {
    0%,
    38% {
        opacity: 0;
        transform: translateY(-80%);
    }

    54% {
        opacity: .72;
    }

    78%,
    100% {
        opacity: 0;
        transform: translateY(80%);
    }
}

@media (max-width: 600px) {
    .site-header,
    .hero,
    .section,
    .cta,
    .content-section,
    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand img {
        width: min(232px, 64vw);
    }

    .hero {
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .section,
    .content-section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    h1 {
        font-size: clamp(2.05rem, 12vw, 3rem);
        line-height: 1.04;
    }

    h2 {
        font-size: clamp(1.78rem, 9vw, 2.45rem);
        line-height: 1.12;
    }

    .hero__lead,
    .section-heading p:not(.eyebrow),
    .er-section p,
    .cta p {
        font-size: 1rem;
        line-height: 1.78;
    }

    .button-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .button {
        width: 100%;
        min-height: 54px;
        padding: 14px 18px;
        white-space: normal;
    }

    .trust-strip,
    .card-grid--five,
    .card-grid--four,
    .badge-grid,
    .point-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip span {
        min-height: 64px;
        padding: 16px 18px;
    }

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

    .service-grid,
    .split-list,
    .image-strip {
        grid-template-columns: 1fr;
    }

    .hero__credential,
    .point-grid div,
    .trust-badge,
    .founder-callout__inner,
    .feature-card,
    .contact-box {
        padding: 20px;
    }

    .trust-badge {
        min-height: 76px;
        padding-left: 42px;
    }

    .trust-badge::before {
        top: 26px;
        left: 20px;
    }

    .hero__credential img {
        width: 120px;
    }
}

@media (max-width: 700px) {
    .hero__credential {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .hero__credential img {
        justify-self: start;
    }
}

@media (max-width: 380px) {
    .site-header,
    .hero,
    .section,
    .cta,
    .content-section,
    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    h1 {
        font-size: 1.9rem;
    }

    .brand img {
        width: min(204px, 62vw);
    }

    .card,
    .hero__credential,
    .trust-badge,
    .founder-callout__inner,
    .point-grid div {
        padding: 18px;
    }

    .trust-badge {
        padding-left: 40px;
    }

    .trust-badge::before {
        left: 18px;
    }
}

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

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    .reveal-child {
        opacity: 1 !important;
        transform: none !important;
    }

    .site-header::before,
    .site-nav a[aria-current="page"],
    .site-nav a[aria-current="page"]::before,
    .hero::after,
    .section--dark::after,
    .subhero::after,
    .founder-callout::after,
    .cta::after,
    .card::before,
    .feature-card::before,
    .point-grid div::before,
    .contact-box::before,
    .trust-badge::after,
    .button::before {
        animation: none !important;
    }

    .hero::after,
    .section--dark::after,
    .subhero::after,
    .founder-callout::after,
    .cta::after,
    .card::before,
    .feature-card::before,
    .point-grid div::before,
    .contact-box::before,
    .trust-badge::after,
    .button::before {
        opacity: 0 !important;
    }
}
