:root {
    color-scheme: dark;
    --accent: #19d3a2;
    --secondary: #f2b84b;
    --site-bg: #07111f;
    --ink: #f4f8fb;
    --muted: #90a2b5;
    --line: rgba(255, 255, 255, 0.11);
    --glass: rgba(14, 29, 45, 0.62);
    --glass-strong: rgba(10, 24, 39, 0.84);
    --display: "Playfair Display", Georgia, serif;
    --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius-lg: 32px;
    --radius-md: 22px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--accent) var(--site-bg);
    scrollbar-width: thin;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--site-bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.site-sections {
    display: flex;
    flex-direction: column;
}

body::-webkit-scrollbar {
    width: 7px;
}

body::-webkit-scrollbar-track {
    background: var(--site-bg);
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(var(--accent), var(--secondary));
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: #07111f;
    background: var(--accent);
}

.page-noise {
    position: fixed;
    z-index: 20;
    inset: 0;
    pointer-events: none;
    opacity: 0.024;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-aura {
    position: fixed;
    z-index: 2;
    top: -200px;
    left: -200px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(25, 211, 162, 0.085), transparent 68%);
}

.glass-panel {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)), var(--glass);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px) saturate(125%);
    -webkit-backdrop-filter: blur(24px) saturate(125%);
}

.scene {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    scroll-margin-top: 0;
}

.section-wrap {
    position: relative;
    z-index: 3;
    min-height: 100svh;
    padding-top: clamp(112px, 13vh, 160px);
    padding-bottom: clamp(95px, 12vh, 150px);
}

.section-index {
    position: absolute;
    z-index: 5;
    right: clamp(18px, 3.2vw, 60px);
    bottom: 36px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.section-index span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.22);
}

.site-chrome {
    position: relative;
    z-index: 50;
}

.nav-cluster {
    position: fixed;
    z-index: 50;
    top: 28px;
    left: clamp(18px, 3vw, 52px);
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-cluster.logo-above {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.orbit-nav {
    position: relative;
    display: flex;
    min-height: 62px;
    align-items: center;
    padding: 7px;
    border-radius: 21px;
    transition: width 0.35s ease, background 0.3s ease;
}

.brand-orbit {
    display: flex;
    width: auto;
    min-width: var(--menu-logo-size, 54px);
    max-width: calc(var(--menu-logo-size, 54px) * 3);
    height: var(--menu-logo-size, 54px);
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: clamp(0.82rem, calc(var(--menu-logo-size, 54px) * 0.34), 3rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-orbit:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

.brand-orbit img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-trigger {
    display: none;
    min-width: 76px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: 700 0.72rem var(--sans);
    letter-spacing: 0.05em;
}

.nav-trigger i {
    color: var(--accent);
}

.orbit-links {
    display: flex;
    align-items: center;
    padding: 0 7px 0 4px;
}

.orbit-links a {
    position: relative;
    display: flex;
    height: 46px;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border-radius: 14px;
    color: rgba(229, 238, 245, 0.68);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, background 0.25s ease;
}

.orbit-links a span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.54rem;
}

.orbit-links a:hover,
.orbit-links a.active {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.orbit-links a.active::after {
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.social-dock {
    position: fixed;
    z-index: 50;
    top: 28px;
    right: clamp(18px, 3vw, 52px);
    display: flex;
    min-height: 62px;
    align-items: center;
    gap: 5px;
    padding: 7px;
    border-radius: 21px;
}

.social-dock a {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-dock a:hover {
    transform: translateY(-2px);
    background: rgba(25, 211, 162, 0.13);
    color: var(--accent);
}

.social-label {
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.hero {
    display: grid;
    isolation: isolate;
    place-items: center;
    min-height: 100svh;
    background-position: center;
    background-size: cover;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 74% 45%, rgba(25, 211, 162, 0.12), transparent 26%),
        linear-gradient(180deg, transparent 65%, var(--site-bg) 100%);
}

.hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    opacity: var(--hero-overlay-opacity, 0.42);
    background: var(--hero-overlay-color, #07111f);
}

.hero-grid {
    display: grid;
    width: min(1520px, 100%);
    min-height: 100svh;
    align-items: center;
    grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
    gap: clamp(28px, 5vw, 90px);
    padding: clamp(130px, 15vh, 180px) clamp(24px, 6vw, 110px) 110px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--accent);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.eyebrow > span {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 25px;
    font: 600 clamp(3.4rem, 6.45vw, 7.5rem) / 0.91 var(--display);
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero h1::first-line {
    color: #fff;
}

.hero-copy > p {
    max-width: 660px;
    margin: 0;
    color: #aebdca;
    font-size: clamp(0.98rem, 1.25vw, 1.2rem);
    line-height: 1.75;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 36px;
}

.button-primary {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 20px 0 23px;
    border: 1px solid rgba(25, 211, 162, 0.25);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, white));
    box-shadow: 0 16px 42px color-mix(in srgb, var(--accent) 22%, transparent);
    color: #03251d;
    font-size: 0.77rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.button-primary:hover {
    color: #03251d;
    box-shadow: 0 20px 52px color-mix(in srgb, var(--accent) 32%, transparent);
}

.button-primary i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    background: rgba(4, 24, 19, 0.11);
}

.button-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c6d2db;
    font-size: 0.75rem;
    font-weight: 700;
}

.button-ghost:hover {
    color: #fff;
}

.pulse-dot {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 5px rgba(242, 184, 75, 0.11);
}

.pulse-dot::after {
    position: absolute;
    inset: -6px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    content: "";
    animation: pulse 2s infinite;
}

.hero-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: clamp(38px, 6vh, 72px);
}

.signature-line {
    width: 58px;
    height: 1px;
    background: linear-gradient(90deg, var(--secondary), transparent);
}

.hero-signature strong,
.hero-signature small {
    display: block;
}

.hero-signature strong {
    font: italic 600 1.12rem var(--display);
}

.hero-signature small {
    margin-top: 4px;
    color: #73889a;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-portrait {
    position: absolute;
    z-index: 1;
    top: var(--photo-margin-top, 0);
    right: var(--photo-margin-right, 0);
    bottom: var(--photo-margin-bottom, 0);
    left: calc(44% + var(--photo-margin-left, 0));
    width: auto;
    min-height: 0;
    pointer-events: none;
}

.portrait-stage {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.portrait-stage > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.portrait-placeholder {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    place-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 52% 35%, rgba(25, 211, 162, 0.2), transparent 22%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(3, 13, 24, 0.62));
}

.portrait-placeholder::before {
    position: absolute;
    top: 27%;
    left: 50%;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.035);
}

.portrait-placeholder::after {
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 300px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 52% 52% 18% 18%;
    content: "";
    transform: translateX(-50%);
    background: linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.portrait-placeholder span {
    position: relative;
    z-index: 2;
    color: var(--accent);
    font: 600 5.4rem var(--display);
}

.portrait-placeholder small {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.impact-card {
    position: absolute;
    z-index: 4;
    right: 6%;
    bottom: 16%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border-radius: 18px;
}

.impact-card > i {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 11px;
    background: rgba(242, 184, 75, 0.13);
    color: var(--secondary);
}

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

.impact-card strong {
    font-size: 0.72rem;
}

.impact-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.58rem;
}

.scroll-cue {
    position: absolute;
    z-index: 6;
    bottom: 30px;
    left: clamp(24px, 6vw, 110px);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.scroll-cue i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent);
    animation: float 2.2s ease-in-out infinite;
}

.essence {
    background:
        radial-gradient(circle at 8% 35%, rgba(25, 211, 162, 0.08), transparent 28%),
        linear-gradient(135deg, #081421, #06101d 70%);
}

.essence::before,
.journey::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.18;
    background-image: radial-gradient(rgba(255, 255, 255, 0.24) 0.7px, transparent 0.7px);
    background-size: 25px 25px;
    mask-image: linear-gradient(115deg, black, transparent 62%);
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.orb-one {
    top: 14%;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(242, 184, 75, 0.08);
    box-shadow: inset 0 0 110px rgba(242, 184, 75, 0.04), 0 0 110px rgba(25, 211, 162, 0.04);
}

.section-heading {
    max-width: 1100px;
    margin-bottom: clamp(42px, 7vh, 76px);
}

.heading-grid {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(35px, 8vw, 120px);
}

.section-heading h2 {
    margin: 0;
    font: 600 clamp(2.6rem, 5vw, 5rem) / 1.02 var(--display);
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.identity-card {
    position: relative;
    display: grid;
    min-height: 400px;
    align-content: space-between;
    overflow: hidden;
    padding: clamp(26px, 3.5vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease;
    transform-style: preserve-3d;
}

.identity-card::before {
    position: absolute;
    top: -45%;
    left: -15%;
    width: 70%;
    height: 110%;
    border-radius: 50%;
    content: "";
    opacity: 0.14;
    background: var(--accent);
    filter: blur(80px);
}

.identity-card.business::before {
    right: -15%;
    left: auto;
    background: var(--secondary);
}

.identity-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.identity-number {
    position: absolute;
    top: 28px;
    right: 32px;
    color: rgba(255, 255, 255, 0.24);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.identity-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(25, 211, 162, 0.22);
    border-radius: 18px;
    background: rgba(25, 211, 162, 0.08);
    color: var(--accent);
    font-size: 1.28rem;
}

.business .identity-icon {
    border-color: rgba(242, 184, 75, 0.23);
    background: rgba(242, 184, 75, 0.08);
    color: var(--secondary);
}

.card-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.19em;
}

.business .card-kicker {
    color: var(--secondary);
}

.identity-card h3 {
    margin: 0 0 13px;
    font: 600 clamp(2rem, 3.4vw, 3.35rem) var(--display);
}

.identity-card p {
    max-width: 520px;
    margin: 0;
    color: #9babb9;
    font-size: 0.9rem;
    line-height: 1.7;
}

.identity-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
    padding: 0 8px 0 18px;
    border: 1px solid rgba(242, 184, 75, 0.28);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(242, 184, 75, 0.13), rgba(255, 255, 255, 0.035));
    color: var(--secondary);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.identity-cta i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: var(--secondary);
    color: #271b05;
    transition: transform 0.25s ease;
}

.identity-cta:hover {
    border-color: rgba(242, 184, 75, 0.55);
    background: linear-gradient(135deg, rgba(242, 184, 75, 0.2), rgba(255, 255, 255, 0.055));
    color: #ffd98d;
    transform: translateY(-2px);
}

.identity-cta:hover i {
    transform: rotate(45deg);
}

.card-trail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.card-trail span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.journey {
    background:
        radial-gradient(circle at 50% 30%, rgba(13, 62, 67, 0.2), transparent 42%),
        #050e18;
}

.journey-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}

.timeline {
    position: relative;
    display: grid;
    gap: 22px;
    max-width: 1120px;
    margin: 20px auto 0;
    padding: 10px 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.09);
}

.timeline-progress span {
    position: absolute;
    inset: 0;
    transform: scaleY(0);
    transform-origin: top;
    background: linear-gradient(var(--accent), var(--secondary));
    box-shadow: 0 0 16px rgba(25, 211, 162, 0.35);
}

.timeline-item {
    position: relative;
    display: grid;
    width: calc(50% - 44px);
}

.timeline-left {
    justify-self: start;
}

.timeline-right {
    justify-self: end;
}

.timeline-node {
    position: absolute;
    z-index: 2;
    top: 37px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 5px solid #07111b;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(25, 211, 162, 0.25), 0 0 30px rgba(25, 211, 162, 0.18);
    color: #06231c;
    font-size: 0.5rem;
    font-weight: 800;
}

.timeline-left .timeline-node {
    right: -63px;
}

.timeline-right .timeline-node {
    left: -63px;
}

.timeline-card {
    min-height: 205px;
    padding: clamp(24px, 3vw, 38px);
    border-radius: 25px;
}

.timeline-card::before {
    position: absolute;
    top: 54px;
    width: 28px;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.15);
}

.timeline-left .timeline-card::before {
    right: -28px;
}

.timeline-right .timeline-card::before {
    left: -28px;
}

.timeline-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.timeline-year {
    color: var(--accent);
    font: 600 1.2rem var(--display);
}

.timeline-category {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.48rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.timeline-card h3 {
    margin: 0 0 11px;
    font: 600 clamp(1.4rem, 2.2vw, 2rem) var(--display);
}

.timeline-card p {
    margin: 0;
    color: #91a2b1;
    font-size: 0.82rem;
    line-height: 1.72;
}

.vision {
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(25, 211, 162, 0.11), transparent 30%),
        linear-gradient(135deg, #071522, #09111c);
}

.vision::after {
    position: absolute;
    right: -8vw;
    bottom: -35vh;
    width: 72vw;
    height: 72vw;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.012), 0 0 0 16vw rgba(255, 255, 255, 0.008);
}

.vision-lines {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: linear-gradient(115deg, transparent 0 41%, rgba(25, 211, 162, 0.18) 41.1% 41.18%, transparent 41.3% 100%);
}

.vision .section-wrap {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(60px, 10vw, 150px);
}

.vision-content {
    position: relative;
    z-index: 2;
}

.quote-mark {
    display: block;
    height: 64px;
    color: var(--accent);
    font: 600 6rem/1 var(--display);
    opacity: 0.7;
}

.vision blockquote {
    max-width: 820px;
    margin: 8px 0 32px;
    font: italic 600 clamp(2.7rem, 5.6vw, 6rem) / 1.03 var(--display);
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 17px;
}

.quote-author > span {
    display: block;
    width: 52px;
    height: 1px;
    background: var(--secondary);
}

.quote-author strong,
.quote-author small {
    display: block;
}

.quote-author strong {
    font-size: 0.76rem;
}

.quote-author small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.57rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.principles {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 12px;
}

.principle {
    position: relative;
    display: grid;
    min-height: 110px;
    align-items: center;
    padding: 22px 20px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 28px 48px 1fr;
    gap: 14px;
}

.principle > span {
    color: rgba(255, 255, 255, 0.26);
    font-size: 0.52rem;
    font-weight: 800;
}

.principle > i {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(25, 211, 162, 0.17);
    border-radius: 14px;
    background: rgba(25, 211, 162, 0.06);
    color: var(--accent);
}

.principle strong,
.principle small {
    grid-column: 3;
}

.principle strong {
    align-self: end;
    font: 600 1.3rem var(--display);
}

.principle small {
    align-self: start;
    color: var(--muted);
    font-size: 0.68rem;
}

.contact {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    background:
        radial-gradient(circle at 15% 35%, rgba(242, 184, 75, 0.07), transparent 25%),
        #050e18;
}

.orb-two {
    right: 10%;
    bottom: 8%;
    width: 420px;
    height: 420px;
    background: rgba(25, 211, 162, 0.06);
    filter: blur(90px);
}

.contact .section-wrap {
    display: grid;
    flex: 1;
    place-items: center;
}

.contact-panel {
    display: grid;
    width: 100%;
    overflow: hidden;
    border-radius: 36px;
    grid-template-columns: 1.35fr 0.65fr;
}

.contact-copy {
    padding: clamp(35px, 6vw, 85px);
    border-right: 1px solid var(--line);
}

.contact-copy h2 {
    max-width: 780px;
    margin: 0 0 20px;
    font: 600 clamp(3rem, 6.2vw, 6.4rem) / 0.98 var(--display);
    letter-spacing: -0.05em;
}

.contact-copy p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 42px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(25, 211, 162, 0.4);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-details {
    display: grid;
    align-content: center;
    gap: 28px;
    padding: clamp(32px, 4vw, 55px);
    background: rgba(2, 10, 18, 0.24);
}

.contact-details > div {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.contact-details span,
.contact-details strong {
    display: block;
}

.contact-details span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.51rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.contact-details strong {
    font: 600 1.1rem var(--display);
}

.site-footer {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 26px;
    padding-bottom: 34px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
}

.footer-brand strong,
.footer-brand small {
    display: block;
}

.footer-brand strong {
    font-size: 0.7rem;
}

.footer-brand small {
    margin-top: 3px;
    color: #667b8d;
    font-size: 0.53rem;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #687d8e;
    font-size: 0.57rem;
    font-weight: 700;
}

.footer-meta a:hover {
    color: var(--accent);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-delay {
    transition-delay: 0.14s;
}

.reveal-delay-2 {
    transition-delay: 0.26s;
}

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

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(0.7);
    }
    80%,
    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(4px);
    }
}

@media (max-width: 1180px) {
    .social-label {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    }

    .hero-portrait {
        left: calc(40% + var(--photo-margin-left, 0));
    }

    .vision .section-wrap {
        gap: 55px;
    }
}

@media (max-width: 980px) {
    .orbit-nav {
        width: auto;
        flex-wrap: wrap;
        overflow: visible;
    }

    .nav-trigger {
        display: flex;
    }

    .orbit-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        display: grid;
        width: 230px;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 19px;
        opacity: 0;
        visibility: hidden;
        background: rgba(6, 18, 31, 0.92);
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        transition: 0.25s ease;
        backdrop-filter: blur(24px);
    }

    .nav-open .orbit-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .orbit-links a {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-grid {
        min-height: 100svh;
        padding-top: 150px;
        grid-template-columns: 1fr;
    }

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

    .hero-portrait {
        left: calc(28% + var(--photo-margin-left, 0));
    }

    .heading-grid,
    .vision .section-wrap {
        grid-template-columns: 1fr;
    }

    .heading-grid {
        gap: 24px;
    }

    .vision .section-wrap {
        gap: 60px;
    }

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

    .principle {
        grid-template-columns: 24px 45px;
    }

    .principle strong,
    .principle small {
        grid-column: 1 / -1;
    }

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

    .contact-copy {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .contact-details .button-primary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .site-chrome .social-dock {
        top: 22px;
        right: 14px;
        min-height: 54px;
        padding: 5px;
        border-radius: 17px;
    }

    .social-dock a {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .social-dock a:nth-of-type(n+4) {
        display: none;
    }

    .nav-cluster {
        top: 22px;
        left: 14px;
        gap: 10px;
    }

    .nav-cluster.logo-above {
        gap: 7px;
    }

    .orbit-nav {
        min-height: 54px;
        border-radius: 17px;
    }

    .brand-orbit {
        min-width: min(var(--menu-logo-size, 54px), 76px);
        max-width: min(calc(var(--menu-logo-size, 54px) * 3), 190px);
        height: min(var(--menu-logo-size, 54px), 76px);
    }

    .hero-grid {
        padding: 125px 20px 105px;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 14.2vw, 5.1rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-portrait {
        right: calc(-34% + var(--photo-margin-right, 0));
        left: calc(18% + var(--photo-margin-left, 0));
    }

    .impact-card {
        right: 38%;
        bottom: 13%;
    }

    .scroll-cue span {
        display: none;
    }

    .section-wrap {
        padding-right: 20px;
        padding-left: 20px;
    }

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

    .identity-card {
        min-height: 370px;
    }

    .timeline {
        padding-left: 30px;
        gap: 18px;
    }

    .timeline-progress {
        left: 7px;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-left,
    .timeline-right {
        justify-self: stretch;
    }

    .timeline-left .timeline-node,
    .timeline-right .timeline-node {
        top: 34px;
        right: auto;
        left: -42px;
    }

    .timeline-left .timeline-card::before,
    .timeline-right .timeline-card::before {
        top: 52px;
        right: auto;
        left: -28px;
    }

    .vision blockquote {
        font-size: clamp(2.55rem, 11vw, 4.5rem);
    }

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

    .principle {
        grid-template-columns: 28px 48px 1fr;
    }

    .principle strong,
    .principle small {
        grid-column: 3;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-details .button-primary {
        grid-column: auto;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding-right: 20px;
        padding-left: 20px;
    }

    .footer-meta {
        flex-wrap: wrap;
        gap: 12px 22px;
    }

    .section-index {
        display: none;
    }
}

@media (max-width: 480px) {
    .social-dock a:nth-of-type(n+3) {
        display: none;
    }

    .nav-trigger {
        min-width: 72px;
    }

    .hero-grid {
        padding-top: 118px;
    }

    .eyebrow {
        align-items: flex-start;
        font-size: 0.57rem;
        line-height: 1.6;
    }

    .hero-copy > p {
        font-size: 0.92rem;
    }

    .hero-portrait {
        right: calc(-54% + var(--photo-margin-right, 0));
        left: calc(8% + var(--photo-margin-left, 0));
    }

    .impact-card {
        display: none;
    }

    .section-heading h2 {
        font-size: 2.75rem;
    }

    .identity-card {
        padding: 26px;
    }

    .timeline-card {
        padding: 23px;
    }

    .timeline-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-panel {
        border-radius: 25px;
    }

    .contact-copy,
    .contact-details {
        padding: 28px 24px;
    }

    .contact-copy h2 {
        font-size: 3rem;
    }

    .contact-mail {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

    .cursor-aura {
        display: none;
    }
}
