/* ===========================
   DESIGN TOKENS
=========================== */
:root {
    --ink: #0a0a0b;
    --ink-2: #1c1c1e;
    --ink-3: #2c2c2e;
    --fog: #f5f5f7;
    --fog-2: #e8e8ed;
    --ghost: #aeaeb2;
    --muted: #6e6e73;
    --text: #1d1d1f;
    --text-inv: #f5f5f7;

    --lime: #b8ff57;
    --lime-dim: rgba(184, 255, 87, 0.12);
    --lime-glow: rgba(184, 255, 87, 0.35);

    --blue-deep: #001f3f;

    --ff-display: 'Syne', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --ff-mono: 'JetBrains Mono', monospace;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

    --nav-h: 64px;
}

/* ===========================
   RESET + BASE
=========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--ink);
    color: var(--text-inv);
    font-family: var(--ff-body);
    -webkit-font-smoothing: antialiased;
}

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

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

::selection {
    background: var(--lime);
    color: var(--ink);
}

/* ===========================
   UTILITIES
=========================== */
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .wrap {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .wrap {
        padding: 0 48px;
    }
}

/* ===========================
   SCROLL REVEAL
=========================== */
.sr {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.sr-d1 {
    transition-delay: 0.08s;
}

.sr-d2 {
    transition-delay: 0.16s;
}

.sr-d3 {
    transition-delay: 0.24s;
}

.sr-d4 {
    transition-delay: 0.32s;
}

.sr-d5 {
    transition-delay: 0.40s;
}

/* ===========================
   KEYFRAMES
=========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes marqueeLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes lineIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

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

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

/* ===========================
   AMBIENT BG
=========================== */
.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

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

.ambient-orb-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(184, 255, 87, 0.06) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite;
}

.ambient-orb-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(0, 100, 200, 0.07) 0%, transparent 70%);
    animation: breathe 11s ease-in-out infinite 3s;
}

/* ===========================
   NAV
=========================== */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    border-bottom: 1px solid transparent;
}

#nav.solid {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    border-color: rgba(255, 255, 255, 0.07);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

/* Logo — image only */
.nav-logo {
    display: inline-flex;
    align-items: center;
    opacity: 0;
    animation: riseIn 0.7s var(--ease-out) 0.1s forwards;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

/* Desktop links */
.nav-links {
    display: none;
    gap: 32px;
    font-size: 14px;
    font-weight: 400;
    color: var(--ghost);
    opacity: 0;
    animation: riseIn 0.7s var(--ease-out) 0.25s forwards;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* CTA */
.nav-cta {
    font-size: 13px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-inv);
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    opacity: 0;
    animation: riseIn 0.7s var(--ease-out) 0.35s forwards;
    display: none;
    align-items: center;
    gap: 6px;
}

@media (min-width: 768px) {
    .nav-cta {
        display: flex;
    }
}

.nav-cta:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--ink);
    transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
    opacity: 0;
    animation: riseIn 0.7s var(--ease-out) 0.35s forwards;
}

@media (min-width: 768px) {
    .nav-menu-btn {
        display: none;
    }
}

.nav-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ghost);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4.5px);
    background: var(--text-inv);
}

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

.nav-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4.5px);
    background: var(--text-inv);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 99;
    padding: 24px 20px 32px;
    display: none;
    flex-direction: column;
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 20px;
    font-family: var(--ff-display);
    font-weight: 600;
    color: var(--ghost);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--lime);
}

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 60px;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
    width: 100%;
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        min-height: calc(100svh - var(--nav-h) - 40px);
    }
}

@media (min-width: 1100px) {
    .hero-inner {
        grid-template-columns: 55fr 45fr;
    }
}

/* Left col */
.hero-left {
    display: flex;
    flex-direction: column;
}

/* eyebrow */
.hero-eyebrow {
    font-family: var(--ff-mono);
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lime);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    opacity: 0;
    animation: riseIn 0.8s var(--ease-out) 0.3s forwards;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime-glow);
    animation: breathe 2.5s ease-in-out infinite;
}

/* big headline */
.hero-h1 {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(44px, 8vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero-h1 .word {
    display: inline-block;
    overflow: hidden;
}

.hero-h1 .word span {
    display: inline-block;
    opacity: 0;
    transform: translateY(105%);
    animation: riseIn 0.9s var(--ease-out) forwards;
}

.hero-h1 .w1 span {
    animation-delay: 0.4s;
}

.hero-h1 .w2 span {
    animation-delay: 0.52s;
}

.hero-h1 .w3 span {
    animation-delay: 0.64s;
}

.hero-h1 .w4 span {
    animation-delay: 0.74s;
}

.hero-h1 .accent-word {
    color: var(--lime);
}

.hero-h1 .period {
    color: var(--lime);
}

/* subtext */
.hero-sub {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: var(--ghost);
    max-width: 46ch;
    margin-top: 28px;
    opacity: 0;
    animation: riseIn 0.9s var(--ease-out) 0.88s forwards;
}

/* CTA row */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    opacity: 0;
    animation: riseIn 0.9s var(--ease-out) 1.02s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 14.5px;
    padding: 14px 24px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn-solid {
    background: var(--lime);
    color: var(--ink);
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 255, 87, 0.28);
}

.btn-solid .btn-arrow {
    transition: transform 0.3s var(--ease-out);
}

.btn-solid:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-inv);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    animation: riseIn 0.9s var(--ease-out) 1.15s forwards;
    flex-wrap: wrap;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-val {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.trust-label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
    letter-spacing: 0.02em;
}

/* ---- Right col — logo visual ---- */
.hero-right {
    position: relative;
    opacity: 0;
    animation: riseIn 1s var(--ease-out) 0.6s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Lime glow behind logo */
.hero-logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(184, 255, 87, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: breathe 5s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero-logo-glow {
        inset: -60px;
    }
}

.hero-logo-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    /* drop shadow matching the logo's green glow */
    filter: drop-shadow(0 0 40px rgba(100, 220, 0, 0.2)) drop-shadow(0 0 80px rgba(100, 220, 0, 0.1));
}

/* ===========================
   MARQUEE STRIP
=========================== */
.strip {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.strip-track {
    display: inline-flex;
    gap: 52px;
    animation: marqueeLeft 30s linear infinite;
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-transform: uppercase;
}

.strip-track span {
    display: inline-flex;
    align-items: center;
    gap: 52px;
}

.strip-sep {
    color: var(--lime);
    opacity: 0.5;
}

/* ===========================
   SECTION COMMONS
=========================== */
section {
    position: relative;
    z-index: 1;
}

.section-pad {
    padding: 100px 0;
}

@media (min-width: 768px) {
    .section-pad {
        padding: 140px 0;
    }
}

.section-label {
    font-family: var(--ff-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--muted);
    flex-shrink: 0;
}

.section-h2 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

/* ===========================
   SERVICES — SERVICE EXPLORER
 =========================== */
#services {
    background: var(--ink);
    overflow: hidden;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 56px;
}

@media (min-width: 900px) {
    .services-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.services-header .section-desc {
    font-size: 15px;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.65;
}

@media (min-width: 900px) {
    .services-header .section-desc {
        text-align: right;
    }
}

/* Explorer Layout */
.services-explorer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .services-explorer {
        grid-template-columns: 4.8fr 7.2fr;
        gap: 48px;
        align-items: start;
    }
}

/* Tabs List */
.services-tabs-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    width: 100%;
    color: inherit;
    outline: none;
}

.service-tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-tab-btn.active {
    background: var(--ink-2);
    border-color: rgba(184, 255, 87, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--lime);
    transform: scaleY(0);
    transition: transform 0.3s var(--ease-out);
}

.service-tab-btn.active::before {
    transform: scaleY(1);
}

.service-tab-btn .tab-num {
    font-family: var(--ff-mono);
    font-size: 13px;
    color: var(--muted);
    margin-right: 20px;
    transition: color 0.3s;
}

.service-tab-btn.active .tab-num {
    color: var(--lime);
}

.service-tab-btn .tab-meta {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-tab-btn .tab-tag {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
    transition: color 0.3s;
    text-align: left;
}

.service-tab-btn.active .tab-tag {
    color: var(--lime);
}

.service-tab-btn .tab-title {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ghost);
    transition: color 0.3s;
}

.service-tab-btn.active .tab-title {
    color: var(--text-inv);
}

.service-tab-btn .tab-arrow {
    width: 18px;
    height: 18px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s var(--ease-out), stroke 0.3s;
    display: none;
}

@media (min-width: 900px) {
    .service-tab-btn .tab-arrow {
        display: block;
    }
}

.service-tab-btn.active .tab-arrow {
    stroke: var(--lime);
    transform: translateX(4px) rotate(-45deg);
}

/* Mobile Accordion Styles */
.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-in-out);
    width: 100%;
}

.service-tab-btn.active+.service-accordion-content {
    max-height: 900px;
}

.accordion-inner {
    padding: 16px 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.01);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    margin-top: -8px;
    margin-bottom: 16px;
}

.service-tab-btn.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-desc-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-desc-col p {
    font-size: 14.5px;
    color: var(--ghost);
    line-height: 1.6;
}

.accordion-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--lime);
    align-self: flex-start;
    margin-top: 8px;
}

@media (min-width: 900px) {
    .service-accordion-content {
        display: none;
    }
}

/* Displays Column (Desktop) */
.services-display-col {
    position: relative;
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 48px;
    min-height: 480px;
    display: none;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 900px) {
    .services-display-col {
        display: block;
    }
}

.services-display-card {
    position: absolute;
    inset: 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.services-display-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 2;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.display-tag {
    font-family: var(--ff-mono);
    font-size: 10.5px;
    color: var(--lime);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-display-card h3 {
    font-family: var(--ff-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.services-display-card p {
    font-size: 15px;
    color: var(--ghost);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 42ch;
}

.display-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lime);
    transition: gap 0.25s var(--ease-out), color 0.25s;
    align-self: flex-start;
}

.display-cta:hover {
    gap: 12px;
    color: #c8ff6a;
}

.card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 24px;
    overflow: hidden;
    position: relative;
}

/* ===========================
   VISUALS & MICRO-ANIMATIONS
 =========================== */

/* 1. Website Development Visual */
.mock-browser {
    width: 100%;
    border-radius: 12px;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.browser-header {
    background: var(--ink-2);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-header .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.browser-header .red {
    background: #ff5f56;
}

.browser-header .yellow {
    background: #ffbd2e;
}

.browser-header .green {
    background: #27c93f;
}

.address-bar {
    flex-grow: 1;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-family: var(--ff-mono);
    font-size: 10px;
    color: var(--muted);
    padding: 4px 12px;
    text-align: left;
}

.browser-body {
    padding: 20px;
    position: relative;
    background: var(--ink);
    min-height: 180px;
}

.mock-web-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-hero {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
    text-align: left;
}

.mock-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.mock-line.title {
    width: 60%;
    height: 10px;
    background: var(--lime);
    opacity: 0.85;
}

.mock-line.subtitle {
    width: 85%;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mock-box {
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(184, 255, 87, 0.1);
    border: 1px solid rgba(184, 255, 87, 0.3);
    border-radius: 30px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-mono);
    font-size: 10.5px;
    color: var(--lime);
    animation: pulse-badge 2s infinite ease-in-out;
}

.badge-icon {
    width: 12px;
    height: 12px;
    fill: var(--lime);
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(184, 255, 87, 0.2);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 12px 4px rgba(184, 255, 87, 0.15);
    }
}

/* 2. AI Automation Visual */
.mock-flow {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.flow-nodes-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.flow-node {
    background: var(--ink-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 72px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.flow-node.active {
    border-color: var(--lime);
    box-shadow: 0 0 12px rgba(184, 255, 87, 0.15);
}

.flow-node svg {
    width: 18px;
    height: 18px;
    stroke: var(--ghost);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.flow-node.active svg {
    stroke: var(--lime);
}

.flow-node .node-label {
    font-size: 8px;
    font-family: var(--ff-mono);
    color: var(--muted);
    letter-spacing: 0.02em;
}

.flow-connector-line {
    position: absolute;
    top: 28px;
    left: 36px;
    right: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 1;
    overflow: hidden;
}

.flow-connector-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--lime), transparent);
    animation: flow-run 2s infinite linear;
}

@keyframes flow-run {
    0% {
        transform: translateX(-40px);
    }

    100% {
        transform: translateX(250px);
    }
}

.terminal-logs {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--ff-mono);
    font-size: 10.5px;
    color: var(--ghost);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.log-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.log-line.green {
    color: var(--lime);
}

/* 3. Custom Software Visual */
.mock-db {
    width: 100%;
    border-radius: 12px;
    background: var(--ink-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-title {
    font-family: var(--ff-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.db-status {
    font-family: var(--ff-mono);
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 5px;
}

.db-status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    animation: blink 1.5s infinite;
}

.db-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.db-stat-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 8px 10px;
    text-align: left;
}

.db-stat-item .stat-val {
    display: block;
    font-family: var(--ff-mono);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-inv);
}

.db-stat-item .stat-lbl {
    display: block;
    font-size: 8.5px;
    color: var(--muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.db-json {
    margin: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: left;
    overflow-x: auto;
}

.db-json code {
    font-family: var(--ff-mono);
    font-size: 9.5px;
    color: var(--ghost);
    line-height: 1.4;
}

/* 4. Digital Transformation Visual */
.mock-chart {
    width: 100%;
    border-radius: 12px;
    background: var(--ink-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-title {
    font-family: var(--ff-display);
    font-size: 13px;
    font-weight: 600;
}

.chart-gain {
    font-family: var(--ff-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--lime);
    background: rgba(184, 255, 87, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chart-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chart-row .row-label {
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: left;
}

.row-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.row-bar {
    height: 8px;
    border-radius: 4px;
}

.row-bar.red {
    background: rgba(255, 95, 86, 0.7);
}

.row-bar.green {
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime-glow);
    animation: breathe-bar 2.5s infinite ease-in-out;
}

@keyframes breathe-bar {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.bar-val {
    font-family: var(--ff-mono);
    font-size: 10px;
    color: var(--ghost);
}

.transformation-details {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.td-item {
    font-size: 10.5px;
    color: var(--ghost);
    display: flex;
    align-items: center;
    gap: 6px;
}

.td-item svg {
    width: 12px;
    height: 12px;
    stroke: var(--lime);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ===========================
   PROGRAMS — NUMBERED LIST
=========================== */
#programs {
    background: var(--fog);
    color: var(--text);
}

#programs .section-label {
    color: rgba(0, 0, 0, 0.35);
}

#programs .section-label::before {
    background: rgba(0, 0, 0, 0.2);
}

#programs .section-h2 {
    color: var(--text);
}

.programs-layout {
    display: grid;
    gap: 48px;
    margin-top: 64px;
}

@media (min-width: 900px) {
    .programs-layout {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.programs-sticky {
    position: relative;
}

@media (min-width: 900px) {
    .programs-sticky-inner {
        position: sticky;
        top: calc(var(--nav-h) + 40px);
    }
}

.programs-sticky-sub {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.65;
    max-width: 360px;
    margin-top: 20px;
}

.programs-visual {
    margin-top: 32px;
    border-radius: 16px;
    background: var(--ink-2);
    padding: 24px;
    display: none;
}

@media (min-width: 900px) {
    .programs-visual {
        display: block;
    }
}

.pv-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

.pv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--ff-mono);
    font-size: 12px;
    color: var(--ghost);
}

.pv-row-label {
    color: var(--muted);
}

.pv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 6px var(--lime-glow);
}

.pv-dot-muted {
    background: var(--muted);
    box-shadow: none;
}

/* Step cards */
.steps-list {
    display: flex;
    flex-direction: column;
}

.step-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0 20px;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    align-items: start;
    transition: opacity 0.3s;
}

.step-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px;
}

.step-num {
    font-family: var(--ff-mono);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.step-num-line {
    width: 1px;
    flex: 1;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    margin-left: 6px;
    min-height: 20px;
}

.step-content h3 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(20px, 2.8vw, 26px);
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14.5px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.7;
}

.step-tag {
    display: inline-block;
    font-family: var(--ff-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.07);
    color: rgba(0, 0, 0, 0.45);
    border-radius: 100px;
    padding: 4px 10px;
    margin-top: 14px;
}

/* ===========================
   MISSION — BOLD STATEMENT
=========================== */
#mission {
    background: var(--ink);
    padding: 120px 0;
}

@media (min-width: 768px) {
    #mission {
        padding: 160px 0;
    }
}

.mission-body {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(26px, 4.5vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.18);
    max-width: 1000px;
}

.mission-body .lit {
    color: var(--text-inv);
}

.mission-body .lime-lit {
    color: var(--lime);
}

/* animated underline on lit words */
.mission-hl {
    position: relative;
    display: inline;
}

.mission-hl::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.4s var(--ease-out);
}

#mission.active .mission-hl::after {
    transform: scaleX(1);
}

/* ===========================
   CONTACT — SPLIT CTA
=========================== */
#contact {
    background: var(--ink);
}

.contact-grid {
    display: grid;
    gap: 2px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    padding: 48px 36px;
    background: var(--ink-2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    min-height: 280px;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 56px 48px;
        min-height: 320px;
    }
}

.contact-card:hover {
    background: var(--ink-3);
}

.contact-card-label {
    font-family: var(--ff-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-card h3 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.contact-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 12px;
    max-width: 30ch;
}

/* accent card (lime) */
.contact-card-accent {
    background: var(--lime);
}

.contact-card-accent:hover {
    background: #c8ff6a;
}

.contact-card-accent .contact-card-label {
    color: rgba(0, 0, 0, 0.45);
}

.contact-card-accent h3 {
    color: var(--ink);
}

.contact-card-accent p {
    color: rgba(0, 0, 0, 0.55);
}

.contact-card-accent .contact-link {
    color: var(--ink);
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-card-accent .contact-link:hover {
    background: rgba(0, 0, 0, 0.08);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-inv);
    transition: background 0.3s, border-color 0.3s, gap 0.3s var(--ease-out);
    align-self: flex-start;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.06);
    gap: 14px;
}

/* decorative large text */
.contact-bg-text {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: var(--ff-display);
    font-size: 100px;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

.contact-card-accent .contact-bg-text {
    color: rgba(0, 0, 0, 0.06);
}

/* ===========================
   FOOTER
=========================== */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 36px;
    background: var(--ink);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 900px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-brand-block {
    max-width: 260px;
}

.footer-brand-name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-brand-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

.footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: var(--ff-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--ghost);
    margin-bottom: 10px;
    transition: color 0.25s;
}

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom span {
    font-family: var(--ff-mono);
    font-size: 11.5px;
    color: var(--muted);
}

.footer-bottom .build {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom .build::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 6px var(--lime-glow);
}

/* ===========================
   INTERNSHIP PAGE SPECIFIC
=========================== */

/* Hero Metadata Badges */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    opacity: 0;
    animation: riseIn 0.8s var(--ease-out) 0.7s forwards;
}

.meta-badge {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(184, 255, 87, 0.08);
    border: 1px solid rgba(184, 255, 87, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
}

/* Program Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 900px) {
    .overview-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
        align-items: center;
    }
}

.overview-main-card {
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .overview-main-card {
        padding: 48px;
    }
}

.overview-main-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ghost);
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oh-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--ff-mono);
    font-size: 13px;
    color: var(--text-inv);
    transition: border-color 0.3s, background 0.3s;
}

.oh-item:hover {
    border-color: rgba(184, 255, 87, 0.3);
    background: rgba(184, 255, 87, 0.03);
}

.oh-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime-glow);
    flex-shrink: 0;
}

/* Program Structure */
.structure-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.structure-item {
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

@media (min-width: 768px) {
    .structure-item {
        grid-template-columns: 80px 1fr;
        padding: 40px;
        align-items: start;
    }
}

.structure-item:hover {
    border-color: rgba(184, 255, 87, 0.3);
    transform: translateY(-2px);
}

.structure-num {
    font-family: var(--ff-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: -0.02em;
}

.structure-content h3 {
    font-family: var(--ff-display);
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.structure-content p {
    font-size: 15px;
    color: var(--ghost);
    line-height: 1.65;
}

/* Deliverables Visual Cards */
.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .deliverables-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.deliverable-card {
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}

.deliverable-card:hover {
    border-color: rgba(184, 255, 87, 0.3);
    background: var(--ink-3);
}

.deliverable-tag {
    font-family: var(--ff-mono);
    font-size: 11px;
    color: var(--lime);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.deliverable-card h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.deliverable-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag-pill {
    font-family: var(--ff-mono);
    font-size: 10px;
    color: var(--ghost);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tag-pill svg {
    width: 10px;
    height: 10px;
    stroke: var(--lime);
}

/* Workflow Section */
.workflow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .workflow-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.workflow-step {
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.step-num-badge {
    font-family: var(--ff-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--lime);
    background: rgba(184, 255, 87, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-step h4 {
    font-family: var(--ff-display);
    font-size: 16px;
    font-weight: 600;
}

.workflow-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* Requirements & Outcomes */
.requirements-grid,
.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}

@media (min-width: 768px) {

    .requirements-grid,
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {

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

.req-item,
.outcome-card {
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.3s;
}

.req-item:hover,
.outcome-card:hover {
    border-color: rgba(184, 255, 87, 0.25);
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(184, 255, 87, 0.1);
    border: 1px solid rgba(184, 255, 87, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lime);
    margin-top: 2px;
}

.check-icon svg {
    width: 11px;
    height: 11px;
    stroke: var(--lime);
    stroke-width: 2.5;
    fill: none;
}

.req-text h4,
.outcome-card h4 {
    font-family: var(--ff-display);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.req-text p,
.outcome-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* ===========================
   APPLICATION FORM MODAL
=========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s var(--ease-out);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
    .modal-container {
        padding: 48px;
    }
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ghost);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-inv);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-header .modal-tag {
    font-family: var(--ff-mono);
    font-size: 11px;
    color: var(--lime);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.modal-header h3 {
    font-family: var(--ff-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.modal-header p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 18px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: var(--ff-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ghost);
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-inv);
    font-family: var(--ff-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--lime);
    background: rgba(184, 255, 87, 0.02);
}

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

.form-input[type="file"] {
    padding: 8px 12px;
    cursor: pointer;
}

.form-input[type="file"]::file-selector-button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-inv);
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--ff-body);
    font-size: 13px;
    margin-right: 12px;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.form-input[type="file"]::file-selector-button:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--ink);
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

/* Post-submission Confirmation State */
.form-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 0;
    gap: 16px;
}

.form-success-state.active {
    display: flex;
}

.success-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(184, 255, 87, 0.12);
    border: 1px solid rgba(184, 255, 87, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
}

.success-icon-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--lime);
    stroke-width: 2.5;
    fill: none;
}

.form-success-state h3 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 700;
}

.form-success-state p {
    font-size: 14.5px;
    color: var(--ghost);
    line-height: 1.65;
    max-width: 44ch;
}

/* ===========================
   REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {

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