
:root {
    --bg: #060814;
    --bg-soft: #0d1220;
    --card: rgba(255,255,255,.06);
    --card-border: rgba(255,255,255,.12);
    --text: #f6f8fb;
    --muted: #a0a8b7;
    --muted-2: #70798a;
    --accent-1: #7b8cff;
    --accent-2: #2fd6ff;
    --accent-3: #79ffbd;
    --accent-4: #ffb454;
    --container: 1180px;
    --radius: 30px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 78% 0%, rgba(47,214,255,.10), transparent 22%),
        radial-gradient(circle at 18% 15%, rgba(123,140,255,.11), transparent 24%),
        radial-gradient(circle at 50% 115%, rgba(255,180,84,.05), transparent 25%),
        var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 78%);
    z-index: -1;
}

::selection {
    background: rgba(47,214,255,.28);
    color: #fff;
}

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

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.noise {
    position: fixed;
    inset: 0;
    opacity: .03;
    pointer-events: none;
    z-index: 999;
    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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle, rgba(141,123,255,.08), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .4s ease;
}

.nav-wrap {
    position: fixed;
    top: 18px;
    width: 100%;
    z-index: 100;
}

.nav {
    height: 70px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    background: rgba(9,12,20,.74);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 16px 50px rgba(0,0,0,.28);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-mark {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #0b0d12;
    font: 800 17px "Manrope", sans-serif;
    background: linear-gradient(135deg, #fff, #c9c6ff 46%, #76e7ff);
}

.brand-name {
    letter-spacing: -.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    transition: color .25s ease, opacity .25s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(47,214,255,.16), rgba(123,140,255,.18));
    border: 1px solid rgba(123,140,255,.22);
    font-size: 14px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(47,214,255,.08);
}

.nav-cta:hover {
    background: linear-gradient(135deg, rgba(47,214,255,.22), rgba(123,140,255,.28));
    border-color: rgba(47,214,255,.28);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(47,214,255,.10);
}

.hero {
    min-height: 100vh;
    padding-top: 170px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.status-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    margin-bottom: 28px;
    border-radius: 999px;
    border: 1px solid rgba(128,255,183,.18);
    background: rgba(128,255,183,.055);
    color: #c1f9d7;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-3);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(128,255,183,.8);
}

.hero h1,
.section-title,
.capabilities-intro h2,
.contact-copy h2 {
    font-family: "Playfair Display", serif;
    letter-spacing: -.045em;
    line-height: 1.02;
}

.hero h1 {
    font-size: clamp(58px, 7vw, 96px);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(105deg, #ffffff 3%, #8d98ff 36%, #4edaff 68%, #8dffc0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 7s linear infinite;
    font-style: italic;
}

@keyframes gradientShift {
    to { background-position: 200% center; }
}

.hero-lead {
    max-width: 650px;
    margin-top: 30px;
    color: #b2b9c8;
    font-size: 19px;
    line-height: 1.75;
}

.hero-caption {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: #d6dbe6;
    font-size: 13px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-caption-label {
    color: #fff;
    font-weight: 600;
}

.hero-caption-sep {
    color: #7b8494;
}

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

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 14px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.button:focus-visible,
.nav-cta:focus-visible,
.nav-links a:focus-visible,
.text-link:focus-visible,
.footer a:focus-visible {
    outline: 2px solid rgba(47,214,255,.85);
    outline-offset: 3px;
}

.button-primary {
    color: #07101c;
    background: linear-gradient(135deg, #f8fbff 0%, #cfd9ff 38%, #88ebff 72%, #93ffc8 100%);
    box-shadow: 0 16px 38px rgba(47,214,255,.18), 0 4px 16px rgba(123,140,255,.14);
    border: 1px solid rgba(255,255,255,.34);
}

.button-ghost {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: #edf1f7;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.button-ghost:hover {
    background: rgba(255,255,255,.065);
    border-color: rgba(47,214,255,.24);
}

.button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 48%, transparent 72%);
    transform: translateX(-130%);
    transition: transform .65s ease;
}

.button:hover::after {
    transform: translateX(130%);
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.glass-card {
    border: 1px solid var(--card-border);
    background:
        linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.028)),
        rgba(255,255,255,.024);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 35px 80px rgba(0,0,0,.34);
}

.profile-card {
    width: min(430px, 88%);
    height: 470px;
    border-radius: 36px;
    padding: 34px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.profile-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    top: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(123,140,255,.26), rgba(47,214,255,.10));
    filter: blur(2px);
}

.profile-top {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: #aeb5c1;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.profile-card h2 {
    margin-top: 36px;
    font: 700 clamp(50px, 5vw, 72px)/.96 "Manrope", sans-serif;
    letter-spacing: -.06em;
}

.profile-photo-card .profile-top {
    justify-content: flex-start;
}

.avatar-monogram {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    color: #0a0c10;
    font: 800 15px "Manrope", sans-serif;
    background: linear-gradient(135deg, #fff, #ae9eff 50%, #76e7ff);
}

.profile-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.profile-footer span {
    color: var(--muted-2);
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.profile-footer strong {
    font-size: 13px;
    font-weight: 600;
}

.mini-signal {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 30px;
}

.mini-signal i {
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(to top, #7d8dff, #4de0ff);
}

.mini-signal i:nth-child(1){height: 8px}
.mini-signal i:nth-child(2){height: 16px}
.mini-signal i:nth-child(3){height: 24px}
.mini-signal i:nth-child(4){height: 30px}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.orb-one {
    width: 180px;
    height: 180px;
    top: 26px;
    right: 0;
    background: rgba(47,214,255,.12);
    box-shadow: 0 0 100px rgba(47,214,255,.12);
}

.orb-two {
    width: 230px;
    height: 230px;
    bottom: 5px;
    left: -20px;
    background: rgba(123,140,255,.14);
    box-shadow: 0 0 100px rgba(123,140,255,.14);
}

.floating-card {
    position: absolute;
    z-index: 5;
    padding: 15px 17px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-one {
    top: 18%;
    left: -2%;
    animation: floatOne 6s ease-in-out infinite;
}

.floating-two {
    right: -2%;
    bottom: 16%;
    animation: floatTwo 7s ease-in-out infinite;
}

.floating-icon,
.floating-number {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    font-size: 17px;
}

.floating-number {
    color: #8becc6;
    font-size: 22px;
}

.floating-card small {
    color: var(--muted-2);
    display: block;
    font-size: 10px;
}

.floating-card strong {
    display: block;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 600;
}

@keyframes floatOne {50%{transform:translateY(-12px) rotate(-1deg)}}
@keyframes floatTwo {50%{transform:translateY(11px) rotate(1deg)}}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #8a93a3;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-top: 50px;
}

.scroll-line {
    width: 70px;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,.4), transparent);
}

.section {
    padding-top: 150px;
    padding-bottom: 70px;
}

.section-label {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-bottom: 48px;
    color: #8b94a4;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.section-label span:first-child {
    color: #d8dbdf;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: start;
}

.section-title {
    font-size: clamp(48px, 5vw, 74px);
    max-width: 800px;
}

.section-title span {
    color: #8992a2;
}

.about-copy {
    padding-top: 6px;
}

.about-copy p {
    color: #b0b7c6;
    font-size: 17px;
    line-height: 1.82;
}

.about-copy p + p {
    margin-top: 24px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 90px;
}

.principle {
    min-height: 290px;
    padding: 28px;
    border-radius: 24px;
    transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
    cursor: pointer;
}

.principle:hover {
    transform: translateY(-5px);
    border-color: rgba(47,214,255,.22);
    box-shadow: 0 22px 48px rgba(0,0,0,.22);
}

.principle-number {
    color: var(--muted-2);
    font: 500 11px "Manrope", sans-serif;
    letter-spacing: .12em;
}

.principle h3 {
    margin-top: 84px;
    font: 600 24px/1.15 "Manrope", sans-serif;
    letter-spacing: -.035em;
}

.principle p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.section-note {
    max-width: 340px;
    color: var(--muted-2);
    font-size: 13px;
    line-height: 1.6;
}

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

.project-card {
    position: relative;
    min-height: 355px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.10);
    background:
        radial-gradient(circle at 100% 0, rgba(47,214,255,.10), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
        rgba(255,255,255,.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .35s cubic-bezier(.2,.8,.2,1);
}

.project-card:nth-child(3n+2) {
    background:
        radial-gradient(circle at 100% 0, rgba(123,140,255,.10), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
        rgba(255,255,255,.03);
}

.project-card:nth-child(3n) {
    background:
        radial-gradient(circle at 100% 0, rgba(255,180,84,.10), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
        rgba(255,255,255,.03);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47,214,255,.24);
    box-shadow: 0 28px 76px rgba(0,0,0,.30);
}

.project-no {
    position: absolute;
    right: 25px;
    top: 13px;
    font: 700 82px/1 "Manrope", sans-serif;
    letter-spacing: -.08em;
    color: rgba(255,255,255,.025);
}

.project-content {
    margin-top: 110px;
    position: relative;
    z-index: 1;
}

.project-type {
    color: var(--muted-2);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.project-content h3 {
    margin-top: 10px;
    font: 600 44px/1 "Playfair Display", serif;
    letter-spacing: -.045em;
}

.project-content p {
    max-width: 470px;
    margin-top: 17px;
    color: #b0b7c6;
    font-size: 14px;
    line-height: 1.75;
}

.project-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-tag {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: #c0c7d4;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.project-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
    color: #edf1f7;
    transition: .3s ease;
    background: rgba(255,255,255,.02);
    cursor: pointer;
    position: relative;
}

.project-arrow span,
.project-arrow span::after {
    position: absolute;
    width: 14px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.project-arrow span::after {
    transform: rotate(90deg);
}

.project-arrow:focus-visible {
    outline: 2px solid rgba(47,214,255,.85);
    outline-offset: 3px;
}

.project-card:hover .project-arrow {
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(47,214,255,.12), rgba(123,140,255,.14));
}

.project-more {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    animation: revealDetails .3s ease both;
}

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

.project-more-label {
    display: inline-block;
    color: #8a93a3;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 8px;
}

.project-more p {
    color: #c6ccd8;
    font-size: 13px;
    line-height: 1.7;
}

.project-card.is-open .project-arrow {
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(47,214,255,.16), rgba(123,140,255,.22));
}

.project-card.is-open .project-more {
    display: block;
}

.capabilities-panel {
    padding: 44px;
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,.10);
    background:
        linear-gradient(135deg, rgba(47,214,255,.07), transparent 36%),
        linear-gradient(220deg, rgba(123,140,255,.06), transparent 42%),
        rgba(255,255,255,.02);
}

.capabilities-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}

.capabilities-intro h2 {
    font-size: clamp(44px, 5vw, 70px);
}

.capabilities-intro p {
    max-width: 460px;
    margin-top: 24px;
    color: #b0b7c6;
    font-size: 16px;
}

.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 12px;
    padding-top: 5px;
}

.skills-cloud span {
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: #d7dce5;
    font-size: 13px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    cursor: pointer;
}

.skills-cloud span:hover {
    border-color: rgba(120,216,255,.28);
    background: rgba(47,214,255,.07);
    transform: translateY(-2px);
}

.manifesto {
    padding-top: 90px;
    padding-bottom: 60px;
}

.manifesto-card {
    padding: 80px 70px;
    border-radius: 36px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 50% 100%, rgba(47,214,255,.11), transparent 43%),
        rgba(255,255,255,.02);
}

.manifesto-kicker {
    margin-bottom: 26px;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
}

.manifesto blockquote {
    max-width: 930px;
    margin: 0 auto;
    font: 500 clamp(34px, 4vw, 56px)/1.2 "Manrope", sans-serif;
    letter-spacing: -.04em;
}

.manifesto blockquote span {
    color: #919bac;
}

.contact-section {
    padding-top: 90px;
    padding-bottom: 120px;
}

.contact-card {
    position: relative;
    min-height: 560px;
    padding: 74px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background:
        radial-gradient(circle at 82% 20%, rgba(47,214,255,.16), transparent 28%),
        radial-gradient(circle at 18% 100%, rgba(123,140,255,.18), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    display: flex;
    align-items: center;
}

.contact-copy {
    position: relative;
    z-index: 2;
}

.contact-copy h2 {
    margin-top: 28px;
    font-size: clamp(52px, 6vw, 82px);
}

.contact-copy p {
    max-width: 560px;
    margin-top: 26px;
    color: #b0b7c6;
    font-size: 16px;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d8dee8;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 4px;
    transition: color .25s ease, border-color .25s ease;
    cursor: pointer;
}

.link-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.text-link:hover {
    color: #ffffff;
    border-color: rgba(47,214,255,.55);
}

.contact-orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    right: -80px;
    top: -100px;
}

.contact-orb::before,
.contact-orb::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
}

.contact-orb::before { inset: 55px; }
.contact-orb::after { inset: 110px; }

.footer {
    min-height: 110px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #7f8797;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer a {
    justify-self: end;
    transition: color .25s ease;
}

.footer a:hover {
    color: #fff;
}

.privacy-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    width: min(560px, calc(100% - 48px));
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    background: rgba(10,15,26,.94);
    box-shadow: 0 24px 70px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    animation: privacyEnter .55s cubic-bezier(.2,.8,.2,1) both;
}

.privacy-banner.is-dismissed {
    display: none;
}

.privacy-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--accent-3);
    background: rgba(121,255,189,.08);
    border: 1px solid rgba(121,255,189,.14);
}

.privacy-icon svg {
    width: 21px;
    height: 21px;
}

.privacy-copy strong {
    display: block;
    font-size: 13px;
    line-height: 1.3;
}

.privacy-copy p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.privacy-dismiss {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(47,214,255,.22);
    border-radius: 12px;
    color: #08101a;
    background: linear-gradient(135deg, #dce7ff, #8deeff 55%, #9effcc);
    font: 600 12px "DM Sans", sans-serif;
    cursor: pointer;
    transition: filter .2s ease, transform .2s ease;
}

.privacy-dismiss:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.privacy-dismiss:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@keyframes privacyEnter {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
    .nav-links { display: none; }
    .hero-grid,
    .about-grid,
    .capabilities-layout {
        grid-template-columns: 1fr;
    }
    .hero-grid { gap: 40px; }
    .hero-visual { min-height: 500px; }
    .about-grid,
    .capabilities-layout { gap: 45px; }
    .principles-grid { grid-template-columns: 1fr; }
    .principle { min-height: 230px; }
    .principle h3 { margin-top: 45px; }
    .projects-grid { grid-template-columns: 1fr; }
    .section-note { display: none; }
}

@media (max-width: 650px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
    .nav-wrap { top: 10px; }
    .nav {
        height: 62px;
        padding: 0 12px;
        border-radius: 18px;
    }
    .brand-name { display: none; }
    .nav-cta { padding: 10px 13px; }
    .hero {
        padding-top: 135px;
        padding-bottom: 40px;
    }
    .hero h1 {
        font-size: clamp(48px, 14vw, 70px);
    }
    .hero-lead { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .button { width: 100%; }
    .button-primary,
    .button-ghost {
        min-height: 56px;
    }
    .hero-visual {
        min-height: 440px;
        margin-top: 10px;
    }
    .profile-card {
        height: 400px;
        padding: 25px;
    }
    .profile-card h2 { font-size: 50px; }
    .floating-one { left: -3%; top: 10%; }
    .floating-two { right: -2%; bottom: 11%; }
    .floating-card { transform: scale(.88); }
    .section {
        padding-top: 105px;
        padding-bottom: 40px;
    }
    .section-label { margin-bottom: 32px; }
    .section-title { font-size: 43px; }
    .principles-grid { margin-top: 58px; }
    .project-card {
        min-height: 330px;
        padding: 24px;
    }
    .project-content h3 { font-size: 34px; }
    .capabilities-panel { padding: 27px; border-radius: 28px; }
    .capabilities-intro h2 { font-size: 43px; }
    .manifesto-card {
        padding: 55px 24px;
        border-radius: 28px;
    }
    .manifesto blockquote { font-size: 32px; }
    .contact-card {
        min-height: 530px;
        padding: 38px 25px;
        border-radius: 30px;
    }
    .contact-copy h2 { font-size: 48px; }
    .contact-actions { align-items: stretch; }
    .footer {
        grid-template-columns: 1fr auto;
        padding: 28px 0;
    }
    .footer-center { display: none; }
    .privacy-banner {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
        grid-template-columns: auto 1fr;
        padding: 14px;
    }
    .privacy-dismiss {
        grid-column: 1 / -1;
        width: 100%;
    }
}

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


/* Personal hero photograph */
.profile-photo-card {
    background: #11151d;
}

.profile-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
    z-index: 0;
    transform: scale(1.015);
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.profile-photo-card:hover .profile-photo {
    transform: scale(1.045);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(5,8,13,.18) 0%, rgba(5,8,13,.03) 35%, rgba(5,8,13,.68) 100%),
        linear-gradient(to right, rgba(5,8,13,.18), transparent 55%);
}

.profile-photo-card::after {
    display: none;
}

.profile-photo-card .profile-top,
.profile-photo-card .profile-footer {
    z-index: 2;
}

.profile-photo-card .profile-top h2 {
    text-shadow: 0 3px 30px rgba(0,0,0,.45);
}

.profile-photo-card .eyebrow,
.profile-photo-card .profile-footer span,
.profile-photo-card .profile-footer strong {
    text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.profile-photo-card .eyebrow {
    color: rgba(255,255,255,.88);
}

.profile-photo-card .profile-footer span {
    color: rgba(255,255,255,.62);
}
