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

:root {
    --black: #080a10;
    --dark: #0c0e15;
    --panel: #0f1119;
    --pink: #e8429a;
    --pink2: #f060b0;
    --white: #edf0fa;
    --dim: rgba(237, 240, 250, 0.45);
    --dimmer: rgba(237, 240, 250, 0.18);
    --muted: rgba(237, 240, 250, 0.45);
    --border: rgba(237, 240, 250, 0.08);
    --pborder: rgba(232, 66, 154, 0.20);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    touch-action: pan-y;
}

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

.nav-inner,
.hero-inner,
.section-inner,
.footer-top,
.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    height: 64px;
    position: fixed;
    inset: 0 0 auto;
    z-index: 99;
    background: rgba(8, 10, 16, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    height: 100%;
    padding: 0 2.5rem;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
}

.nav-logo {
    grid-column: 1;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 100%;
    justify-self: start;
}

.nav-logo em {
    color: var(--pink);
    font-style: normal;
}

.nav-links {
    grid-column: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    justify-self: center;
    align-items: stretch;
    gap: 2rem;
    list-style: none;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.nav-links a {
    height: 100%;
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-right {
    grid-column: 3;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1.5rem;
    background: var(--pink);
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--pink2);
}

.nav-hamburger {
    margin-left: auto;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
}

.mobile-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1.5px;
    background: var(--white);
}

.mobile-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.mobile-nav-links li {
    overflow: hidden;
}

.mobile-nav-links a {
    display: block;
    font-weight: 800;
    font-size: clamp(2.5rem, 10vw, 5rem);
    letter-spacing: -0.04em;
    color: var(--white);
    text-decoration: none;
    transform: translateY(40px);
    opacity: 0;
    transition: color 0.2s, transform 0.5s ease, opacity 0.5s ease;
}

.mobile-overlay.open .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-overlay.open .mobile-nav-links li:nth-child(1) a {
    transition-delay: 0.10s;
}

.mobile-overlay.open .mobile-nav-links li:nth-child(2) a {
    transition-delay: 0.18s;
}

.mobile-overlay.open .mobile-nav-links li:nth-child(3) a {
    transition-delay: 0.26s;
}

.mobile-overlay.open .mobile-nav-links li:nth-child(4) a {
    transition-delay: 0.34s;
}

.mobile-nav-links a:hover {
    color: var(--pink);
}

.mobile-nav-links .pink {
    color: var(--pink);
}

.mobile-footer {
    position: absolute;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.5s 0.4s ease;
}

.mobile-overlay.open .mobile-footer {
    opacity: 1;
}

.mobile-footer a {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-footer a:hover {
    color: var(--white);
}

.hero {
    min-height: clamp(700px, 90vh, 920px);
    display: flex;
    flex-direction: column;
}

.hero-inner {
    width: 100%;
    padding: 80px 2.5rem 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2.5rem;
    padding-right: clamp(220px, 28vw, 420px);
}

.hero-glow {
    position: absolute;
    top: -30%;
    left: -20%;
    width: min(100vw, 1200px);
    height: min(100vw, 1200px);
    background: radial-gradient(circle, rgba(180, 30, 100, .28) 0%, rgba(140, 20, 80, .12) 40%, transparent 70%);
    pointer-events: none;
}

.hero-glow2 {
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: min(80vw, 900px);
    height: min(80vw, 900px);
    background: radial-gradient(circle, rgba(232, 66, 154, .2) 0%, rgba(200, 50, 130, .08) 45%, transparent 70%);
    pointer-events: none;
}

.hero-glow3 {
    position: absolute;
    top: 30%;
    left: 40%;
    width: min(60vw, 700px);
    height: min(60vw, 700px);
    background: radial-gradient(circle, rgba(210, 50, 120, .1) 0%, transparent 65%);
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s both;
}

.hero-tag::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--pink);
}

.hero-headline {
    line-height: 0.9;
    letter-spacing: -0.04em;
    opacity: 0;
    animation: fadeUp 0.6s 0.2s both;
}

.headline-bleed {
    width: 100%;
}

.headline-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.headline-svg text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 148px;
    letter-spacing: -6px;
    paint-order: stroke fill;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.t-build-fallback {
    fill: var(--white);
    stroke: none;
    opacity: 0.18;
}

.t-launch-fallback {
    fill: rgba(237, 240, 250, 0.18);
    stroke: none;
}

.t-grow-fallback {
    fill: var(--pink);
    stroke: none;
    opacity: 0.25;
    font-style: italic;
}

.t-build {
    fill: transparent;
    stroke: var(--white);
    stroke-width: 1.5;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    -webkit-animation: drawStroke 1s 0.3s ease forwards, fillWhite 0.5s 1.2s ease forwards;
    animation: drawStroke 1s 0.3s ease forwards, fillWhite 0.5s 1.2s ease forwards;
}

.t-launch {
    fill: transparent;
    stroke: rgba(237, 240, 250, 0.2);
    stroke-width: 1.5;
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
    -webkit-animation: drawStroke 1s 0.7s ease forwards;
    animation: drawStroke 1s 0.7s ease forwards;
}

.t-grow {
    fill: transparent;
    stroke: var(--pink);
    stroke-width: 1.5;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    font-style: italic;
    -webkit-animation: drawStroke 0.9s 1.1s ease forwards, fillPink 0.5s 1.9s ease forwards;
    animation: drawStroke 0.9s 1.1s ease forwards, fillPink 0.5s 1.9s ease forwards;
}

.hero-lower {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.55s both;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--dim);
    max-width: 420px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--pink);
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.btn-primary:hover {
    background: var(--pink2);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4.5rem;
    border: 1px solid var(--border);
    gap: 0;
    opacity: 0;
    animation: fadeUp 0.8s 0.75s both;
}

.stat {
    padding: 2rem 0 2.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-weight: 800;
    font-size: 2.8rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-num .pk {
    color: var(--pink);
}

.stat-label {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
    font-weight: 500;
}

.hero-portrait-wrap {
    position: absolute;
    right: clamp(1rem, 5vw, 5rem);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(200px, 22vw, 340px);
    pointer-events: none;
    z-index: 2;
}

.hero-portrait-glow {
    position: absolute;
    inset: -48px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 66, 154, .45) 0%, transparent 68%);
    animation: portrait-glow-pulse 3.5s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-portrait-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--pink), #784ba0, #2b86c5, #00d2ff, var(--pink));
    animation: ring-spin 5s linear infinite;
    filter: blur(0.5px);
    opacity: 0.9;
}

.hero-portrait-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    outline: 4px solid var(--black);
    outline-offset: -4px;
    box-shadow: 0 0 0 5px var(--black), 0 28px 80px rgba(0, 0, 0, .7);
    animation: portrait-enter 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-portrait-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.06) saturate(1.12);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.hero-portrait-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, .022) 3px,
            rgba(255, 255, 255, .022) 4px);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    margin: -2.5px 0 0 -2.5px;
    background: var(--pink);
    animation: particle-orbit var(--dur, 4s) linear var(--delay, 0s) infinite;
    opacity: 0.8;
}

.hero-particles span:nth-child(1) {
    --dur: 4.2s;
    --delay: 0s;
    background: var(--pink);
    width: 5px;
    height: 5px;
}

.hero-particles span:nth-child(2) {
    --dur: 6s;
    --delay: -1.5s;
    background: #00d2ff;
    width: 4px;
    height: 4px;
}

.hero-particles span:nth-child(3) {
    --dur: 7.5s;
    --delay: -3.1s;
    background: #784ba0;
    width: 6px;
    height: 6px;
}

.hero-particles span:nth-child(4) {
    --dur: 5s;
    --delay: -0.8s;
    background: var(--pink2);
    width: 3px;
    height: 3px;
}

.hero-particles span:nth-child(5) {
    --dur: 8.5s;
    --delay: -4.2s;
    background: #2b86c5;
    width: 4px;
    height: 4px;
}

.hero-portrait-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 10, 16, .88);
    border: 1px solid rgba(232, 66, 154, .35);
    backdrop-filter: blur(14px);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: badge-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .5), 0 0 0 1px rgba(232, 66, 154, .15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: badge-dot-pulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(237, 240, 250, .92);
    text-transform: uppercase;
}

.section-inner {
    padding: 5rem 2.5rem;
}

.lbl {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.625rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.lbl::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--pink);
    flex-shrink: 0;
}

.sec-heading {
    font-weight: 800;
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.sec-heading .ghost {
    color: transparent;
    -webkit-text-stroke: 1px var(--dimmer);
}

.sec-heading .paint {
    display: inline;
    background: linear-gradient(90deg, var(--pink) 0%, var(--pink) 100%);
    background-size: 0% 3px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.8s 0.3s ease;
    padding-bottom: 4px;
}

.reveal.visible .sec-heading .paint,
.visible .paint {
    background-size: 100% 3px;
}

.about-heading em,
.contact-heading em {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.7s 0.4s ease, transform 0.7s 0.4s ease;
}

.about-heading.reveal.visible em,
.contact-heading.reveal.visible em {
    opacity: 1;
    transform: translateY(0);
}

#services {
    border-bottom: 1px solid var(--border);
}

.services-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 3rem;
}

.services-intro p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 420px;
    color: var(--dim);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.svc-card {
    background: var(--panel);
    padding: 3rem 2.75rem;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
    position: relative;
}

.svc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.svc-card:hover {
    background: #12101a;
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-num {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.svc-title {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.svc-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--dim);
    flex: 1;
}

.svc-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
    align-self: flex-start;
}

.svc-card:hover .svc-more {
    color: var(--pink);
    gap: 0.85rem;
}

#about {
    border-bottom: 1px solid var(--border);
    background: var(--panel);
    position: relative;
    overflow: hidden;
}

#about::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(232, 66, 154, .07) 0%, transparent 65%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.about-heading {
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-heading em {
    color: var(--pink);
    font-style: italic;
}

.about-right p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--dim);
    margin-bottom: 1.25rem;
}

.about-right p:last-of-type {
    margin-bottom: 0;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    background: var(--pink);
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: background 0.2s, transform 0.2s;
}

.about-cta:hover {
    background: var(--pink2);
    transform: translateY(-2px);
}

#process {
    border-bottom: 1px solid var(--border);
}

.process-row {
    display: grid;
    grid-template-columns: 80px 1fr 1.6fr;
    gap: 3rem;
    padding: 2.25rem 0;
    border-top: 1px solid var(--border);
    align-items: start;
}


.p-num {
    font-weight: 800;
    font-size: 14px;
    color: var(--pink);
    padding-top: 0.2rem;
    letter-spacing: 0.06em;
}

.p-title {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.p-desc {
    font-size: 16px;
    line-height: 1.85;
    color: var(--dim);
}

.contact-heading span {
    display: block;
}

#contact {
    border-bottom: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
}

.contact-heading {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: -0.04em;
    line-height: 0.92;
    margin-bottom: 2rem;
}

.contact-heading em {
    color: var(--pink);
    font-style: italic;
}

.contact-desc {
    font-size: 16px;
    line-height: 1.85;
    color: var(--dim);
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.d-row {
    display: flex;
    gap: 2.5rem;
    align-items: baseline;
}

.d-key {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 600;
    width: 60px;
    flex-shrink: 0;
}

.d-val {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.65;
}

.d-val a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.d-val a:hover {
    color: var(--pink);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.field input,
.field textarea,
.field select {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 0.9rem 1.1rem;
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    resize: none;
    -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--dimmer);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--pink);
}

.field textarea {
    min-height: 110px;
}

.field select {
    cursor: pointer;
}

.field select option {
    background: var(--panel);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    background: var(--pink);
    color: #fff;
    border: none;
    padding: 1rem 2.25rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--pink2);
    transform: translateY(-2px);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.form-status {
    font-size: 14px;
    margin-left: 16px;
}

footer {
    background: var(--dark);
}

.footer-wordmark {
    padding: 2rem 0 0;
    text-align: center;
    overflow: hidden;
}

.footer-wordmark span {
    display: block;
    font-weight: 800;
    font-size: clamp(3rem, 10.5vw, 18rem);
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(237, 240, 250, .12);
    white-space: nowrap;
    user-select: none;
    line-height: 1;
    transition: -webkit-text-stroke-color 0.4s ease;
}

.footer-wordmark:hover span {
    -webkit-text-stroke-color: rgba(237, 240, 250, .22);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 2.5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-col a {
    font-size: 16px;
    font-weight: 500;
    color: rgba(237, 240, 250, .65);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-nav-col a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: right;
}

.footer-contact .fc-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-contact p {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.7;
}

.footer-contact a {
    font-size: 14px;
    color: var(--pink);
    text-decoration: none;
    margin-top: 0.5rem;
    display: block;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--pink2);
}

.footer-bottom {
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 12px;
    color: var(--muted);
}

.footer-policies {
    padding: 1rem 2.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
}

.footer-policies a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.footer-policies a:hover {
    color: var(--white);
}

.footer-policies span {
    font-size: 0.6rem;
    color: var(--muted);
}

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

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

.rd1 {
    transition-delay: 0.12s;
}

@-webkit-keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(28px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@-webkit-keyframes drawStroke {
    to {
        stroke-dashoffset: 0;
    }
}

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

@-webkit-keyframes fillWhite {
    from {
        fill: transparent;
    }

    to {
        fill: var(--white);
    }
}

@keyframes fillWhite {
    from {
        fill: transparent;
    }

    to {
        fill: var(--white);
    }
}

@-webkit-keyframes fillPink {
    from {
        fill: transparent;
    }

    to {
        fill: var(--pink);
    }
}

@keyframes fillPink {
    from {
        fill: transparent;
    }

    to {
        fill: var(--pink);
    }
}

@keyframes portrait-enter {
    from {
        opacity: 0;
        transform: scale(0.88);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes portrait-glow-pulse {
    from {
        opacity: 0.5;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes ring-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes particle-orbit {
    from {
        transform: rotate(0deg) translateX(calc(50% + 48px)) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(calc(50% + 48px)) rotate(-360deg);
    }
}

@keyframes badge-enter {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes badge-dot-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(34, 197, 94, .08);
    }
}

@media (max-width: 900px) {
    .nav-inner {
        padding: 0 2rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-inner {
        padding: 5rem 2rem 0;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        padding-top: 5rem;
    }

    .hero-main {
        padding-right: 0;
        padding-bottom: 0;
    }

    .hero-tag {
        margin-bottom: 1rem;
    }

    .hero-portrait-wrap {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin: 0;
        order: 2;
        align-self: start;
    }

    .hero-tag {
        order: 0;
    }

    .hero-headline {
        order: 1;
    }

    .hero-lower {
        order: 3;
        margin-top: 0;
        gap: 1rem;
        align-self: center;
    }

    .hero-stats {
        grid-column: 1 / -1;
        grid-row: 4;
        margin-top: 6rem;
    }

    .hero-main {
        display: grid;
        grid-template-columns: clamp(120px, 22vw, 200px) 1fr;
        grid-template-rows: auto auto;
        column-gap: 1.5rem;
        align-items: start;
        padding-right: 0;
        padding-bottom: 0;
    }

    .hero-tag {
        grid-column: 1 / -1;
    }

    .hero-headline {
        grid-column: 1 / -1;
    }

    .hero-portrait-wrap {
        grid-column: 1;
        grid-row: 3;
        margin-top: 4.5rem;
    }

    .hero-lower {
        grid-column: 2;
        grid-row: 3;
        margin-top: 4.5rem;
    }

    .hero-main {
        column-gap: 3.5rem;
    }

    .headline-bleed {
        width: 100%;
    }

    .headline-svg text {
        font-size: clamp(100px, 14vw, 148px);
        letter-spacing: -5px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 1.5rem 0 2rem;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .stat:nth-child(2n) {
        border-right: none;
    }

    .stat:nth-child(n+3) {
        border-bottom: none;
    }

    .section-inner {
        padding: 4rem 2rem;
    }

    .services-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-desc {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .services-intro {
        margin-bottom: 2rem;
    }

    .sec-heading {
        margin-bottom: 20px;
    }

    .contact-heading span {
        display: inline;
    }

    .services-intro p {
        max-width: 100%;
    }

    .process-row {
        grid-template-columns: 55px 1fr;
        gap: 1.5rem;
    }

    .p-desc {
        grid-column: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .footer-wordmark {
        display: none;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-policies {
        justify-content: left;
        align-items: left;
    }
}



@media (prefers-reduced-motion: reduce) {

    .hero-tag,
    .hero-headline,
    .hero-lower,
    .hero-stats {
        -webkit-animation: none !important;
        animation: none !important;
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
    }

    .t-build {
        -webkit-animation: none;
        animation: none;
        stroke-dashoffset: 0;
        fill: var(--white);
    }

    .t-launch {
        -webkit-animation: none;
        animation: none;
        stroke-dashoffset: 0;
        fill: transparent;
    }

    .t-grow {
        -webkit-animation: none;
        animation: none;
        stroke-dashoffset: 0;
        fill: var(--pink);
    }

    .t-build-fallback {
        opacity: 1;
    }

    .t-launch-fallback {
        opacity: 0.2;
    }

    .t-grow-fallback {
        opacity: 1;
    }
}


@media (max-width: 600px) {

    .hero-main {
        display: flex;
        flex-direction: column;
    }

    .hero-tag {
        order: 0;
    }

    .hero-headline {
        order: 1;
        width: 100%;
    }

    .hero-lower {
        order: 2;
        margin-top: 1.5rem;
    }

    .hero-portrait-wrap {
        order: 3;
        width: min(52vw, 200px);
        margin: 4rem auto 2rem;
        align-self: flex-start;
    }

    .hero-stats {
        order: 4;
        margin-top: 2rem;
    }
}

@media (max-width: 500px) {
    .nav-inner {
        padding: 0 1.5rem;
    }

    .mobile-close {
        right: 1.5rem;
    }

    .hero-tag {
        font-size: 12px;
    }

    .hero-inner {
        padding: 5rem 1.5rem 0;
    }

    .section-inner {
        padding: 2rem 1.5rem;
    }

    .svc-card {
        padding: 2rem 1.75rem;
    }

    .process-row {
        gap: 0rem;
    }

    .contact-grid {
        margin-bottom: 30px;
    }

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

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

    .footer-policies {
        padding: 1rem 1.5rem 1.5rem;
    }

    #about {
        overflow: visible;
    }

    #about::after {
        top: -10%;
        right: -40%;
        width: 100%;
        height: 120%;
        background: radial-gradient(circle, rgba(232, 66, 154, .05) 0%, transparent 60%);
    }

}