:root {
    --bg: #f6f3eb;
    --bg-warm: #ecead4;
    --bg-deep: #e0ddc7;
    --ink: #0f0f0f;
    --ink-soft: #5a5a55;
    --mint: #c8ecc8;
    --mint-light: #dcf5dc;
    --mint-deep: #95c598;
    --yellow: #fbc536;
    --yellow-light: #ffd96a;
    --yellow-deep: #d99c10;
    --purple: #dcd0ee;
    --purple-light: #ece2f8;
    --purple-deep: #ab9bd0;
    --black: #1a1a1a;
    --invert-degree: 0;
}

/* Dark Mode Variables Override */
body.dark-mode {
    --bg: #121210;
    --bg-warm: #1c1c18;
    --bg-deep: #252520;
    --ink: #f5f5f0;
    --ink-soft: #aaaaa0;
    --mint: #345c36;
    --mint-light: #447547;
    --mint-deep: #234025;
    --yellow: #a67c1e;
    --yellow-light: #cc9c31;
    --yellow-deep: #7a5813;
    --purple: #564870;
    --purple-light: #6a5a87;
    --purple-deep: #3d3252;
    --black: #f5f5f0;
    --invert-degree: 1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    line-height: 1.5;
    transition: background 0.4s ease, color 0.4s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
    opacity: 0.1;
    pointer-events: none;
    z-index: 200;
    mix-blend-mode: multiply;
}

/* Ensure SVG map logo adapts cleanly */

.logo-cube svg {
    color: var(--ink);
}

.ambient-1 {
    position: fixed;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 197, 54, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.ambient-2 {
    position: fixed;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 208, 238, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Cursor */

.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* ============ HEADER =========== */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 56px;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-cube {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.header-nav {
    display: flex;
    gap: 36px;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
}

.header-nav a {
    color: var(--ink-soft);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: none;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--ink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle Button Layout */

.theme-toggle-btn,
.menu-toggle {
    background: transparent;
    border: 1.5px solid var(--ink);
    border-radius: 12px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    color: var(--ink);
    transition: all 0.3s ease;
    padding: 0;
}

.theme-toggle-btn:hover {
    transform: translateY(-2px);
    background: var(--bg-warm);
}

.theme-toggle-btn .moon-icon {
    display: none;
}

body.dark-mode .theme-toggle-btn .sun-icon {
    display: none;
}

body.dark-mode .theme-toggle-btn .moon-icon {
    display: block;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    border: 1.5px solid var(--ink);
    border-radius: 12px;
    cursor: none;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 0 var(--ink);
}

.header-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--ink);
}

.header-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--ink);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid var(--ink);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: background 0.3s ease;
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
}

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

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

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

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

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

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid var(--ink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
    transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav-close:hover {
    background: var(--bg-warm);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 0 32px;
}

.mobile-nav a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
}

.mobile-nav a:hover {
    opacity: 0.6;
}

/* Header Media Queries */

@media (max-width: 1100px) {
    .site-header {
        padding: 20px 32px;
    }

    .header-nav {
        gap: 22px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .site-header {
        padding: 20px 24px;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .mobile-nav-overlay {
        display: flex;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 16px;
    }

    .mobile-nav a {
        font-size: 22px;
    }

    .mobile-nav {
        gap: 24px;
    }

    .header-btn {
        display: none;
    }
}

/* ============ HERO SECTION ============== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    padding: 40px 56px;
    align-items: center;
    position: relative;
    z-index: 5;
    min-height: 720px;
}

.hero-left {
    padding-top: 20px;
}

.hero-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 5.8vw, 84px);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
}

.title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}

.title-inner {
    display: inline-block;
    will-change: transform;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 380px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--bg);
    background: var(--ink);
    border: none;
    border-radius: 14px;
    cursor: none;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.22),
        0 16px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, background 0.4s ease, color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4),
        0 14px 28px rgba(0, 0, 0, 0.3),
        0 28px 56px rgba(0, 0, 0, 0.18);
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
}

.cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: transform 0.4s;
}

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

/* ============= HERO RIGHT ============== */

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.constellation {
    position: relative;
    width: 600px;
    height: 600px;
    max-width: 100%;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.constellation-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 1;
}

.constellation-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.constellation-lines path {
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.6;
    stroke-linecap: round;
    opacity: 0.85;
}

.tile {
    position: absolute;
    cursor: none;
    z-index: 2;
    transform-style: preserve-3d;
    animation: tile-float var(--dur, 5s) ease-in-out infinite var(--delay, 0s);
}

.tile-inner {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.tile:hover .title-inner {
    transform: translateY(-10px);
}

.tile-icon {
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tile:hover .tile-icon {
    transform: scale(1.12) rotate(-4deg);
}

.tile-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tile.mint .tile-inner {
    background: linear-gradient(165deg, var(--mint-light) 0%, var(--mint) 50%, var(--mint-deep) 100%);
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.5), inset 0 -4px 0 rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
    color: var(--ink);
}

.tile.yellow .tile-inner {
    background: linear-gradient(165deg, var(--yellow-light) 0%, var(--yellow) 50%, var(--yellow-deep) 100%);
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.5), inset 0 -4px 0 rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
    color: var(--ink);
}

.tile.purple .tile-inner {
    background: linear-gradient(165deg, var(--purple-light) 0%, var(--purple) 50%, var(--purple-deep) 100%);
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.5), inset 0 -4px 0 rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
    color: var(--ink);
}

.tile.black .tile-inner {
    background: linear-gradient(165deg, var(--bg-deep) 0%, var(--bg-warm) 50%, var(--bg) 100%);
    border: 1.5px solid var(--ink);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.1), inset 0 -4px 0 rgba(0, 0, 0, 0.1);
    color: var(--ink);
}

.tile.size-main {
    width: 142px;
    height: 118px;
}

.tile.size-big {
    width: 156px;
    height: 132px;
}

.tile.size-pill {
    width: 64px;
    height: 64px;
}

.tile.size-pill .tile-inner {
    border-radius: 50%;
}

.tile-lock {
    top: 0;
    left: calc(50% - 32px);
}

.tile-expand {
    top: 95px;
    left: 95px;
}

.tile-chart {
    top: 95px;
    left: 365px;
}

.tile-cloud {
    top: 245px;
    left: 5px;
}

.tile-db {
    top: 240px;
    left: 222px;
}

.tile-thumb {
    top: 245px;
    left: 455px;
}

.tile-cursor {
    top: 405px;
    left: 45px;
}

.tile-person {
    top: 395px;
    left: 145px;
}

.tile-globe {
    top: 395px;
    left: 315px;
}

.tile-thumbpill {
    top: 405px;
    left: 495px;
}

.tile-hex {
    top: 545px;
    left: 230px;
}

@keyframes tile-float {

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

    50% {
        transform: translateY(var(--float, -8px));
    }
}

.tile-lock {
    --dur: 4s;
    --delay: 0s;
    --float: -6px;
}

.tile-expand {
    --dur: 5.5s;
    --delay: 0.4s;
    --float: -10px;
}

.tile-chart {
    --dur: 5s;
    --delay: 0.8s;
    --float: -8px;
}

.tile-cloud {
    --dur: 6s;
    --delay: 1.2s;
    --float: -12px;
}

.tile-db {
    --dur: 4.5s;
    --delay: 0.2s;
    --float: -7px;
}

.tile-thumb {
    --dur: 5.5s;
    --delay: 0.6s;
    --float: -10px;
}

.tile-cursor {
    --dur: 4s;
    --delay: 1s;
    --float: -8px;
}

.tile-person {
    --dur: 5s;
    --delay: 0.3s;
    --float: -9px;
}

.tile-globe {
    --dur: 5.5s;
    --delay: 0.7s;
    --float: -11px;
}

.tile-thumbpill {
    --dur: 4.5s;
    --delay: 0.5s;
    --float: -7px;
}

.tile-hex {
    --dur: 6s;
    --delay: 0.9s;
    --float: -10px;
}

.sparkle {
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: 30px;
    right: 30px;
    color: var(--ink);
    animation: spin 8s linear infinite, sparkleFloat 4s ease-in-out infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(36deg);
    }
}

@keyframes sparkleFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }
}

/* Hero Media Queries */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 48px 24px 40px;
        gap: 48px;
        min-height: auto;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0;
    }

    .hero-title {
        font-size: clamp(40px, 7vw, 60px);
    }

    .hero-desc {
        max-width: 480px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 36px 16px 32px;
        gap: 36px;
    }

    .hero-title {
        font-size: clamp(34px, 9vw, 44px);
        letter-spacing: -0.03em;
    }

    .hero-desc {
        font-size: 15px;
    }

    .cta-btn {
        padding: 16px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 30px;
    }
}

/* Hero Right Media Queries */
@media (max-width: 900px) {
    .hero-right {
        width: 100%;
    }

    .constellation {
        width: 100%;
        max-width: 560px;
        height: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .constellation {
        height: 420px;
    }

    .tile.size-main {
        width: 112px;
        height: 94px;
    }

    .tile.size-big {
        width: 126px;
        height: 108px;
    }

    .tile.size-pill {
        width: 52px;
        height: 52px;
    }

    .tile-expand {
        top: 76px;
        left: 72px;
    }

    .tile-chart {
        top: 76px;
        left: 249px;
    }

    .tile-cloud {
        top: 198px;
        left: 2px;
    }

    .tile-db {
        top: 194px;
        left: 176px;
    }

    .tile-thumb {
        top: 198px;
        left: 366px;
    }

    .tile-cursor {
        top: 324px;
        left: 30px;
    }

    .tile-person {
        top: 316px;
        left: 116px;
    }

    .tile-globe {
        top: 316px;
        left: 252px;
    }

    .tile-thumbpill {
        top: 324px;
        left: 398px;
    }

    .tile-hex {
        top: 438px;
        left: 184px;
    }
}

@media (max-width: 380px) {
    .constellation {
        height: 360px;
    }

    .tile.size-main {
        width: 96px;
        height: 80px;
    }

    .tile.size-big {
        width: 108px;
        height: 90px;
    }

    .tile.size-pill {
        width: 44px;
        height: 44px;
    }

    .tile-expand {
        top: 64px;
        left: 58px;
    }

    .tile-chart {
        top: 64px;
        left: 252px;
    }

    .tile-cloud {
        top: 168px;
        left: 0;
    }

    .tile-db {
        top: 164px;
        left: 148px;
    }

    .tile-thumb {
        top: 168px;
        left: 260px;
    }

    .tile-cursor {
        top: 272px;
        left: 20px;
    }

    .tile-person {
        top: 264px;
        left: 98px;
    }

    .tile-globe {
        top: 264px;
        left: 212px;
    }

    .tile-thumbpill {
        top: 272px;
        left: 310px;
    }

    .tile-hex {
        top: 372px;
        left: 154px;
    }
}

/* =============== WORKSPACE SECTION ================ */

.workspace {
    padding: 20px 56px 80px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.workspace-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.features-pills {
    display: flex;
    gap: 14px;
}

.fpill {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    cursor: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    color: #0f0f0f;
}

.fpill:hover {
    transform: translateY(-4px) rotate(-3deg);
}

.fpill.round {
    width: 64px;
    height: 64px;
    background: linear-gradient(165deg, var(--mint-light) 0%, var(--mint) 100%);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.6), inset 0 -3px 0 rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.fpill.wide-yellow {
    width: 130px;
    height: 64px;
    background: linear-gradient(165deg, var(--yellow-light) 0%, var(--yellow) 100%);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5), inset 0 -3px 0 rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.fpill.wide-purple {
    width: 130px;
    height: 64px;
    background: linear-gradient(165deg, var(--purple-light) 0%, var(--purple) 100%);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.6), inset 0 -3px 0 rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.fpill svg {
    display: block;
}

.learn-more {
    margin-left: auto;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: none;
    font-weight: 500;
}

@media (max-width: 900px) {
    .workspace {
        padding: 16px 24px 60px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .workspace-label {
        font-size: 16px;
        width: 100%;
    }

    .features-pills {
        gap: 10px;
        flex-wrap: wrap;
    }

    .learn-more {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .workspace {
        padding: 12px 16px 48px;
    }

    .fpill.wide-yellow,
    .fpill.wide-purple {
        width: 108px;
        height: 54px;
    }

    .fpill.round {
        width: 54px;
        height: 54px;
    }
}

/* ================= SHARED UTILITIES =============  */

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1.5px solid var(--ink);
    border-radius: 30px;
    background: var(--bg-warm);
    color: var(--ink);
    margin-bottom: 20px;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.section-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
}

.section-desc {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 540px;
    transition: color 0.4s ease;
}

.split-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 64px;
}

.split-head .section-title {
    margin-bottom: 0;
    max-width: 600px;
}

.center-head {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-text-link {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.arrow-text-link:hover {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .split-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .section-container {
        padding: 0 16px;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 38px);
    }

    .split-head {
        margin-bottom: 32px;
    }
}

/* ============ FEATURES SECTION */

.features-detail-section {
    padding: 120px 0;
    background: var(--bg);
    transition: background 0.4s ease;
}

.features-detail-section .features-head {
    margin-bottom: 64px;
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card3d {
    background: var(--bg-warm);
    border: 1.5px solid var(--ink);
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 8px 0 var(--ink);
    transition: transform 0.3s ease, box-shadow 0.3 ease, background 0.4s ease, border-color 0.4s ease;
}

.feature-card3d:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 var(--ink);
}

.card3d-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1.5px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-bottom: 28px;
    box-shadow: 0 4px 0 var(--ink);
}

.card3d-icon.purple {
    background: var(--purple-light);
}

.card3d-icon.mint {
    background: var(--mint-light);
}

.card3d-icon.yellow {
    background: var(--yellow-light);
}

.feature-card3d h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 14px;
}

.feature-card3d p {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.card3d-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1.5px dashed var(--bg-deep);
    padding-top: 20px;
}

.card3d-list li {
    font-family: "Manrope", sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card3d-list li span {
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    color: var(--yellow-deep);
}

body.dark-mode .card3d-list li span {
    color: var(--yellow-light);
}

/* Features Media Queries */

@media (max-width: 900px) {
    .features-detail-section {
        padding: 80px 0;
    }

    .features-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .features-detail-section {
        padding: 64px 0;
    }

    .feature-card3d {
        padding: 28px 20px;
    }

    .feature-card3d h3 {
        font-size: 19px;
    }
}

/* ============= ANALYTICS / DETAIL ROWS ============= */

.analytics-features-section {
    padding: 120px 0;
    background: var(--bg);
    border-bottom: 1.5px solid var(--ink);
    transition: background 0.4s ease;
}

.features-detailed-rows {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: var(--bg-warm);
    border: 1.5px solid var(--ink);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 8px 0 var(--ink);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.detail-row.reverse {
    direction: rtl;
}

.detail-row.reverse .detail-meta {
    direction: ltr;
}

.row-num {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.detail-meta h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.detail-meta p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 28px;
}

.badge-stack {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill-badge {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    background: var(--bg-deep);
    color: var(--ink);
    padding: 6px 12px;
    border: 1px solid var(--ink);
    border-radius: 8px;
}

.detail-visual-stub {
    border: 1.5px solid var(--ink);
    border-radius: 16px;
    height: 220px;
    box-shadow: 4px 4px 0 var(--ink);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--black);
}

.purple-pattern {
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-light));
}

.yellow-pattern {
    background: linear-gradient(135deg, var(--yellow-deep), var(--yellow-light));
}

.window-top {
    height: 32px;
    border-bottom: 1.5px solid var(--ink);
    background: rgba(250, 250, 250, 0.15);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.window-top .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--ink);
    background: var(--bg);
}

.window-body {
    padding: 24px;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.terminal-err {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff4444;
    padding: 12px;
    border-radius: 8px;
    color: #ff9999;
}

/* Analytics Media Queries */

@media (max-width: 900px) {
    .analytics-features-section {
        padding: 80px 0;
    }

    .features-detailed-rows {
        gap: 32px;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }

    .detail-row.reverse {
        direction: ltr;
    }

    .detail-visual-stub {
        height: 180px;
    }

    .detail-meta h3 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .analytics-features-section {
        padding: 64px 0;
    }

    .detail-row {
        padding: 24px 16px;
        gap: 24px;
        border-radius: 20px;
    }

    .detail-visual-stub {
        height: 150px;
    }

    .window-body {
        font-size: 11px;
        padding: 14px;
    }

    .detail-meta h3 {
        font-size: 21px;
    }
}

/* INTEGRATIONS SECTION */

.integrations-grid-section {
    padding: 120px 0;
    background: var(--bg-deep);
    border-bottom: 1.5px solid var(--ink);
    transition: background 0.4s ease;
}

.ecosystem-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.eco-card {
    background: var(--bg);
    border: 1.5px solid var(--ink);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 0 var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.4s ease;
}

.int-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 var(--ink);
}

.eco-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 2px 2px 0 var(--ink);
    margin-bottom: 24px;
    border: 1.5px solid var(--ink);
}

.eco-icon.mint {
    background: var(--mint-light);
}

.eco-icon.purple {
    background: var(--purple-light);
}

.eco-icon.yellow {
    background: var(--yellow-light);
}

.eco-icon.black {
    background: var(--ink);
    color: var(--bg);
}

.eco-card h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.eco-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.eco-card code {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    background: var(--bg-warm);
    padding: 2px 4px;
    border-radius: 4px;
    color: var(--ink);
}

@media (max-width: 900px) {
    .integrations-grid-section {
        padding: 80px 0;
    }

    .ecosystem-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {

    .integrations-grid-section {
        padding: 64px 0;
    }

    .ecosystem-cards {
        grid-template-columns: 1fr;
    }

    .ec-card {
        padding: 24px 20px;
    }
}

/* ============ TESTIMONIALS & METRICS ============ */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-deep);
    border-top: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.quote-container {
    max-width: 860px;
    margin: 0 auto 80px;
    text-align: center;
}

.quote-mark {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 120px;
    font-weight: 800;
    line-height: 20px;
    color: var(--yellow);
    margin-bottom: 32px;
}

.quote-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 36px;
}

.quote-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.author-avatar-stub {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    background: var(--purple-light);
    box-shadow: 2px 2px 0 var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

.author-info p {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--ink-soft);
}

.metrics-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border: 1.5px solid var(--ink);
    border-radius: 24px;
    background: var(--bg);
    padding: 40px;
    box-shadow: 0 6px 0 var(--ink);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.metric-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-item:not(:last-child) {
    border-right: 1.5px solid var(--bg-deep);
}

.metric-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
}

.metric-label {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
}

/* Testimonials Media Queries */
@media (max-width: 900px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .quote-container {
        margin-bottom: 48px;
    }

    .metrics-bar {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 20px;
    }

    .metric-item:not(:last-child) {
        border-right: none;
        border-bottom: 1.5px solid var(--bg-deep);
        padding-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 64px 0;
    }

    .quote-mark {
        font-size: 80px;
    }

    .quote-text {
        font-size: clamp(17px, 4vw, 22px);
    }
}


/* ============ PRICING SECTION ============ */
.pricing-section {
    padding: 120px 0;
    background: var(--bg);
    transition: background 0.4s ease;
}

.pricing-head {
    text-align: center;
    margin-bottom: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.price-card {
    background: var(--bg-warm);
    border: 1.5px solid var(--ink);
    border-radius: 28px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 0 var(--ink);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 0 var(--ink);
}

.price-card.featured {
    background: var(--bg);
    border-width: 2.5px;
    box-shadow: 0 12px 0 var(--ink);
}

.price-card.featured:hover {
    box-shadow: 0 18px 0 var(--ink);
}

.card-badge {
    position: absolute;
    top: -16px;
    left: 36px;
    background: var(--yellow);
    color: #0f0f0f;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 2px 2px 0 var(--ink);
}

.price-header h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
}

.price-value {
    display: flex;
    align-items: baseline;
    color: var(--ink);
    margin-bottom: 16px;
}

.price-value .currency {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 4px;
}

.price-value .amount {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.price-value .period {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    margin-left: 4px;
}

.price-header p {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 32px;
    min-height: 44px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.price-features li {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.price-features li span {
    color: var(--mint-deep);
    font-weight: 700;
    font-family: "JetBrains Mono", monospace;
}

body.dark-mode .price-features li span {
    color: var(--mint-light);
}

.price-btn {
    display: block;
    text-align: center;
    padding: 16px 24px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    border: 1.5px solid var(--ink);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.price-btn.regular {
    background: transparent;
    color: var(--ink);
    box-shadow: 0 4px 0 var(--ink);
}

.price-btn.regular:hover {
    background: var(--bg-deep);
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--ink);
}

.price-btn.primary {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 4px 0 var(--purple-deep);
}

.price-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--purple-deep);
}

/* Pricing Media Queries */
@media (max-width: 900px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 520px;
        margin: 0 auto;
    }

    .price-card.featured {
        order: -1;
    }
}

@media (max-width: 600px) {
    .pricing-section {
        padding: 64px 0;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .price-card {
        padding: 36px 24px;
    }

    .price-value .amount {
        font-size: 44px;
    }
}


/* ============ BLOG SECTION ============ */
.blog-section {
    padding: 120px 0;
    background: var(--bg);
    border-bottom: 1.5px solid var(--ink);
    transition: background 0.4s ease;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-post-card {
    background: var(--bg-warm);
    border: 1.5px solid var(--ink);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 0 var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.4s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 var(--ink);
}

.post-thumb {
    height: 180px;
    border-bottom: 1.5px solid var(--ink);
    padding: 20px;
    display: flex;
    align-items: flex-end;
}

.post-thumb.purple {
    background: var(--purple-light);
}

.post-thumb.mint {
    background: var(--mint-light);
}

.post-thumb.yellow {
    background: var(--yellow-light);
}

.post-tag-pill {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--bg);
    color: var(--ink);
    padding: 4px 10px;
    border: 1.5px solid var(--ink);
    border-radius: 6px;
    box-shadow: 2px 2px 0 var(--ink);
}

.post-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-date {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.post-content h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.post-content h3 a {
    color: var(--ink);
    text-decoration: none;
}

.post-content h3 a:hover {
    text-decoration: underline;
}

.post-content p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* Blog Media Queries */
@media (max-width: 900px) {
    .blog-section {
        padding: 80px 0;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .blog-section {
        padding: 64px 0;
    }

    .post-thumb {
        height: 140px;
    }

    .post-content {
        padding: 20px;
    }

    .post-content h3 {
        font-size: 17px;
    }
}


/* ============ CONTACT SECTION ============ */
.get-in-touch-section {
    padding: 120px 0;
    background: var(--bg-warm);
    transition: background 0.4s ease;
}

.contact-box-grid {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 80px;
    align-items: center;
}

.direct-channels {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: 1.5px dashed var(--bg-deep);
    padding-top: 32px;
}

.channel-item span {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 4px;
}

.channel-item a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
}

.channel-item a:hover {
    text-decoration: underline;
}

.brutalist-form {
    background: var(--bg);
    border: 2px solid var(--ink);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 12px 12px 0 var(--ink);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group label {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: var(--bg-warm);
    border: 1.5px solid var(--ink);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: var(--ink);
    outline: none;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background: var(--bg);
    box-shadow: 4px 4px 0 var(--ink);
}

.form-submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--ink);
    color: var(--ink-soft);
    border: 1.5px solid var(--ink);
    border-radius: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 0 var(--purple-deep);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--purple-deep);
}

/* Contact Media Queries */
@media (max-width: 900px) {
    .get-in-touch-section {
        padding: 80px 0;
    }

    .contact-box-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .get-in-touch-section {
        padding: 64px 0;
    }

    .brutalist-form {
        padding: 24px 20px;
        box-shadow: 6px 6px 0 var(--ink);
    }

    .channel-item a {
        font-size: 16px;
    }
}


/* ============ FOOTER ============ */
.site-footer {
    padding: 80px 56px 40px;
    background: var(--bg);
    color: var(--ink);
    position: relative;
    z-index: 5;
    transition: background 0.4s ease;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--ink-soft);
    max-width: 280px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-cols {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--ink-soft);
}

.footer-col a {
    display: block;
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: opacity 0.2s;
    cursor: none;
}

.footer-col a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1.5px solid var(--ink);
    font-size: 13px;
    color: var(--ink-soft);
}

.footer-bottom .uicode {
    color: var(--ink-soft);
    text-decoration: none;
}

/* Footer Media Queries */
@media (max-width: 900px) {
    .site-footer {
        padding: 60px 24px 32px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-cols {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 48px 16px 28px;
    }

    .footer-cols {
        flex-direction: column;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}