/* BASE STYLES */
body {
    font-family: 'Inter', sans-serif;
    background-color: #EAEAE5;
    color: #1C1917;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* TEXT OUTLINE */
.text-outline {
    -webkit-text-stroke: 1px #1C1917;
    color: transparent;
    transition: all 0.5s ease;
}

/* HEADING COLOR + GLOW MOTION */
.heading-animated {
    position: relative;
    text-shadow: 0 0 0 rgba(167, 139, 250, 0);
    animation: headingGlowPulse 6.8s ease-in-out infinite;
}

.heading-animated::after {
    content: "";
    position: absolute;
    inset: -6% -2%;
    z-index: -1;
    background: radial-gradient(70% 60% at 50% 50%, rgba(167, 139, 250, 0.18) 0%, rgba(125, 211, 252, 0.11) 45%, transparent 100%);
    filter: blur(22px);
    opacity: 0.45;
    animation: headingAuraShift 8.5s ease-in-out infinite;
    pointer-events: none;
}

.heading-colorize {
    animation: headingColorShift 7.2s ease-in-out infinite;
}

.heading-colorize--alt {
    animation-delay: 1.2s;
}

.heading-colorize--slow {
    animation-duration: 9s;
}

@keyframes headingGlowPulse {

    0%,
    100% {
        text-shadow: 0 0 0 rgba(125, 211, 252, 0), 0 0 0 rgba(167, 139, 250, 0);
    }

    45% {
        text-shadow: 0 0 14px rgba(125, 211, 252, 0.2), 0 0 28px rgba(167, 139, 250, 0.12);
    }

    70% {
        text-shadow: 0 0 10px rgba(191, 219, 254, 0.16), 0 0 22px rgba(139, 92, 246, 0.14);
    }
}

@keyframes headingAuraShift {

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

    50% {
        transform: translate3d(0, -4px, 0) scale(1.04);
        opacity: 0.62;
    }
}

@keyframes headingColorShift {

    0%,
    100% {
        color: #1c1917;
    }

    50% {
        color: #334155;
    }
}

.hero-tech-flicker {
    animation: heroTechFlicker 11.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    animation-delay: 1.8s;
    will-change: color, text-shadow, opacity;
}

@keyframes heroTechFlicker {

    0%,
    22%,
    52%,
    100% {
        color: transparent;
        text-shadow: none;
        opacity: 1;
    }

    26% {
        color: rgba(28, 25, 23, 0.28);
        text-shadow: 0 0 6px rgba(28, 25, 23, 0.08);
        opacity: 0.97;
    }

    34%,
    44% {
        color: rgba(28, 25, 23, 0.78);
        text-shadow: 0 0 10px rgba(28, 25, 23, 0.11);
        opacity: 1;
    }

    60% {
        color: rgba(28, 25, 23, 0.2);
        text-shadow: none;
        opacity: 0.96;
    }

    68%,
    82% {
        color: rgba(28, 25, 23, 0.88);
        text-shadow: 0 0 12px rgba(28, 25, 23, 0.12);
        opacity: 1;
    }

    90%,
    100% {
        color: transparent;
        text-shadow: none;
        opacity: 1;
    }
}

/* BEAM BUTTON ANIMATION */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

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

.btn-beam {
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.btn-beam::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: conic-gradient(from 90deg at 50% 50%, #E2E8F0 0%, #000000 50%, #E2E8F0 100%);
    animation: spin 4s linear infinite;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-beam:hover::before {
    opacity: 1;
}

.btn-beam-content {
    background-color: #1c1917;
    color: white;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* NOISE Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #EAEAE5;
}

::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a29e;
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(15px);
    will-change: transform, opacity, filter;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Scrubber Height */
.hero-scrub-container {
    height: 300vh;
}

/* Zoom Reveal */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Floating Animation */
@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* HERO AMBIENT LAYERS */
.hero-ambient-wrap {
    overflow: hidden;
}

.hero-ambient-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(36px);
    opacity: 0.6;
    mix-blend-mode: soft-light;
}

.hero-ambient-orb--1 {
    width: 32rem;
    height: 32rem;
    top: 8%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%);
    animation: heroOrbDriftA 18s ease-in-out infinite;
}

.hero-ambient-orb--2 {
    width: 26rem;
    height: 26rem;
    left: -10%;
    bottom: -6%;
    background: radial-gradient(circle, rgba(120, 113, 108, 0.45) 0%, rgba(120, 113, 108, 0) 72%);
    animation: heroOrbDriftB 22s ease-in-out infinite;
}

.hero-ambient-orb--3 {
    width: 18rem;
    height: 18rem;
    top: 28%;
    left: 20%;
    background: radial-gradient(circle, rgba(214, 211, 209, 0.8) 0%, rgba(214, 211, 209, 0) 70%);
    animation: heroOrbDriftC 16s ease-in-out infinite;
}

.hero-ambient-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(to right, rgba(41, 37, 36, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(41, 37, 36, 0.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse 70% 55% at 50% 45%, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    animation: heroGridFloat 20s linear infinite;
}

@keyframes heroOrbDriftA {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-42px, 24px, 0) scale(1.06);
    }
}

@keyframes heroOrbDriftB {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(50px, -28px, 0) scale(1.08);
    }
}

@keyframes heroOrbDriftC {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(28px, -22px, 0);
    }
}

@keyframes heroGridFloat {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(70px, 35px, 0);
    }
}

/* HERO ENTRY PILLS */
.hero-meta-btn {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(28, 25, 23, 0.06);
}

.hero-meta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 25, 23, 0.12);
}

/* HERO SERIES BADGE */
.hero-series-badge {
    position: relative;
    overflow: hidden;
    border-radius: 9999px;
    width: fit-content;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.3) 100%),
        rgba(245, 245, 244, 0.35);
    backdrop-filter: blur(16px) saturate(135%);
    box-shadow:
        0 8px 24px rgba(28, 25, 23, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-series-badge::before {
    content: "";
    position: absolute;
    top: -140%;
    left: -24%;
    width: 34%;
    height: 320%;
    transform: rotate(22deg) translateX(-260%);
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.78) 52%, transparent 100%);
    animation: heroSeriesShine 4.8s ease-in-out infinite;
    pointer-events: none;
}

.hero-series-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 12px 28px rgba(28, 25, 23, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero-series-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 9999px;
    background: #1c1917;
    box-shadow: 0 0 0 0 rgba(28, 25, 23, 0.3);
    animation: heroSeriesPulse 2.2s ease-out infinite;
    position: relative;
    z-index: 10;
}

@keyframes heroSeriesPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(28, 25, 23, 0.35);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(28, 25, 23, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(28, 25, 23, 0);
    }
}

@keyframes heroSeriesShine {
    0%,
    62% {
        transform: rotate(22deg) translateX(-260%);
    }

    80% {
        transform: rotate(22deg) translateX(380%);
    }

    100% {
        transform: rotate(22deg) translateX(380%);
    }
}

.hero-buy-btn:hover .hero-buy-btn__icon,
.hero-buy-btn:focus-visible .hero-buy-btn__icon {
    animation: heroBtnBob 0.65s ease-in-out infinite alternate;
}

@keyframes heroBtnBob {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(3px);
    }
}

/* HERO GLASS FEATURE CARDS */
.hero-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    perspective: 1200px;
}

.hero-glass-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 18px 18px 16px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 100%);
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(14px) saturate(130%);
    box-shadow:
        0 14px 30px rgba(28, 25, 23, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s ease, border-color 0.45s ease;
}

.hero-benefit-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    filter: blur(16px);
    transition:
        opacity 1.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.35s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.55s ease,
        border-color 0.45s ease;
}

.hero-benefit-reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.hero-glass-card.reveal-up.active {
    animation: heroCardFloatA 8.5s ease-in-out infinite;
    animation-delay: 1.2s;
    animation-fill-mode: both;
}

.hero-feature-stack .hero-glass-card:nth-child(2).reveal-up.active {
    animation: heroCardFloatB 10.5s ease-in-out infinite;
    animation-delay: 1.35s;
    animation-fill-mode: both;
}

.hero-feature-stack .hero-glass-card:nth-child(3).reveal-up.active {
    animation: heroCardFloatC 9.2s ease-in-out infinite;
    animation-delay: 1.5s;
    animation-fill-mode: both;
}

.hero-glass-card::before {
    content: "";
    position: absolute;
    inset: -120% auto auto -40%;
    width: 60%;
    height: 250%;
    transform: rotate(18deg);
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hero-glass-card:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(191, 219, 254, 0.9);
    box-shadow:
        0 20px 36px rgba(30, 41, 59, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero-glass-card:hover::before {
    transform: translateX(280%) rotate(18deg);
}

.hero-glass-card--shift {
    margin-left: 20px;
}

.hero-glass-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-glass-card__icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(248, 250, 252, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #0f172a;
    font-size: 16px;
}

.hero-glass-card__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #475569;
}

.hero-glass-card__title {
    margin: 0 0 7px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.hero-glass-card__copy {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #334155;
}

@keyframes heroCardFloatA {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-5px, -10px, 0) rotate(-0.4deg);
    }
}

@keyframes heroCardFloatB {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(6px, -12px, 0) rotate(0.5deg);
    }
}

@keyframes heroCardFloatC {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-4px, -9px, 0) rotate(-0.35deg);
    }
}

/* TECH SHOWCASE SECTION */
.tech-showcase {
    background:
        radial-gradient(120% 120% at 0% 100%, rgba(127, 29, 29, 0.32) 0%, rgba(127, 29, 29, 0) 42%),
        radial-gradient(120% 120% at 100% 0%, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 45%),
        #050507;
    color: #f8fafc;
}

.tech-showcase__noise {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.tech-showcase__orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(44px);
    opacity: 0.5;
    pointer-events: none;
}

.tech-showcase__orb--a {
    width: 22rem;
    height: 22rem;
    left: -5%;
    top: 25%;
    background: rgba(239, 68, 68, 0.35);
}

.tech-showcase__orb--b {
    width: 26rem;
    height: 26rem;
    right: -8%;
    bottom: -8%;
    background: rgba(79, 70, 229, 0.28);
}

.tech-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: #f87171;
}

.tech-heading {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.1rem);
    line-height: 0.95;
    color: #f8fafc;
    letter-spacing: -0.025em;
}

.tech-heading span {
    color: #f43f5e;
}

.tech-subcopy {
    margin-top: 18px;
    max-width: 44rem;
    font-size: 1.22rem;
    line-height: 1.6;
    color: #94a3b8;
    font-weight: 300;
}

.tech-case-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    padding: 14px 20px;
    color: #f8fafc;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(15, 23, 42, 0.58);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tech-case-btn::before {
    content: "";
    position: absolute;
    inset: -180% auto auto -40%;
    width: 60%;
    height: 320%;
    transform: rotate(20deg);
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 100%);
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.tech-case-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 250, 252, 0.52);
    box-shadow: 0 10px 24px rgba(248, 250, 252, 0.12);
}

.tech-case-btn:hover::before {
    transform: translateX(300%) rotate(20deg);
}

.tech-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0) 0%, rgba(148, 163, 184, 0.32) 45%, rgba(248, 250, 252, 0) 100%);
}

.tech-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(145deg, rgba(2, 6, 23, 0.74) 0%, rgba(15, 23, 42, 0.44) 100%);
    backdrop-filter: blur(10px);
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.tech-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 63, 94, 0.45);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.tech-phone-panel {
    min-height: 440px;
    padding: 22px;
}

.tech-phone-frame {
    width: min(100%, 430px);
    height: 100%;
    min-height: 390px;
    margin: 0 auto;
    border-radius: 38px;
    border: 1px solid rgba(248, 250, 252, 0.12);
    background: #050507;
    overflow: hidden;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.tech-phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
}

.tech-chip {
    position: absolute;
    border: 1px solid rgba(248, 250, 252, 0.18);
    background: rgba(15, 23, 42, 0.56);
    color: #e2e8f0;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    padding: 7px 10px;
}

.tech-chip--a {
    top: 16px;
    left: 16px;
}

.tech-chip--b {
    bottom: 16px;
    right: 16px;
}

.tech-brand-panel {
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
}

.tech-brand-panel h3 {
    margin: 0;
    font-size: 2.2rem;
    line-height: 1;
    color: #f8fafc;
    letter-spacing: -0.02em;
    font-family: "Space Grotesk", sans-serif;
}

.tech-brand-panel p {
    margin: 4px 0 0;
    color: #94a3b8;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.tech-stats {
    display: flex;
    gap: 18px;
}

.tech-stats strong {
    display: block;
    font-size: 1.5rem;
    color: #f8fafc;
    line-height: 1;
}

.tech-stats span {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    color: #94a3b8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.tech-copy-panel {
    padding: 18px;
}

.tech-copy-panel p {
    margin: 0 0 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

.tech-inline-btn {
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: transparent;
    color: #f8fafc;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tech-availability {
    display: block;
    margin-top: 14px;
    font-family: "JetBrains Mono", monospace;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 10px;
}

.tech-links-panel {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-links-panel a {
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 10px 12px;
    color: #f8fafc;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-start-btn {
    margin-top: auto;
    border: 0;
    background: #f43f5e;
    color: #fff;
    padding: 10px 12px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.tech-work-panel {
    padding: 14px;
}

.tech-work-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tech-work-head span,
.tech-work-head a {
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 10px;
    text-decoration: none;
}

.tech-work-head span {
    color: #f87171;
}

.tech-work-head a {
    color: #94a3b8;
}

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

.tech-work-item {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.tech-work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.tech-work-item:hover img {
    transform: scale(1.05);
    opacity: 0.95;
}

.tech-work-item span {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #f43f5e;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* PRICING MINIMAL GLASS */
.pricing-minimal {
    background: #050505;
}

.pricing-minimal__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
}

.pricing-minimal__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(90% 120% at 12% 88%, rgba(109, 40, 217, 0.24) 0%, rgba(109, 40, 217, 0) 48%),
        radial-gradient(80% 120% at 88% 12%, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 50%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.72) 100%);
    backdrop-filter: blur(1px);
}

.pricing-minimal__content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pricing-mini-glass {
    width: min(420px, 92vw);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(23, 23, 23, 0.58);
    backdrop-filter: blur(20px) saturate(120%);
    box-shadow:
        0 24px 46px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-mini-glass::before {
    content: "";
    position: absolute;
    inset: -180% auto auto -44%;
    width: 56%;
    height: 320%;
    transform: rotate(18deg);
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 50%, transparent 100%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.pricing-mini-glass:hover::before {
    transform: translateX(320%) rotate(18deg);
}

.pricing-mini-glass__kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.78);
}

.pricing-mini-glass__price {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.1rem);
    line-height: 1;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.pricing-mini-glass__price span {
    font-size: 1.08rem;
    margin-left: 5px;
    color: #d4d4d8;
    font-family: "JetBrains Mono", monospace;
}

.pricing-mini-glass__copy {
    margin: 11px 0 15px;
    color: #d4d4d8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-mini-glass__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pricing-mini-glass__chips span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 4px 8px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e5e7eb;
    font-family: "JetBrains Mono", monospace;
    background: rgba(255, 255, 255, 0.07);
}

.pricing-mini-glass__cta {
    width: 100%;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    padding: 11px 14px;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-mini-glass__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(255, 255, 255, 0.12);
}

/* PRICING SYSTEM (DESIGN SYSTEM STYLE) */
.pricing-system-grid {
    align-items: stretch;
}

.pricing-system-card {
    border: 1px solid #d6d3d1;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 30px rgba(28, 25, 23, 0.06);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.4s ease;
}

.pricing-system-card:hover {
    transform: translateY(-4px);
    border-color: #a8a29e;
    box-shadow: 0 18px 32px rgba(28, 25, 23, 0.1);
}

.pricing-system-card__tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #78716c;
}

.pricing-system-card h3 {
    margin: 12px 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #1c1917;
}

.pricing-system-card h3 span {
    font-size: 1rem;
    margin-left: 6px;
    color: #78716c;
    font-family: "JetBrains Mono", monospace;
}

.pricing-system-card p {
    margin: 0 0 16px;
    color: #57534e;
    line-height: 1.55;
    font-size: 0.95rem;
}

.pricing-system-card ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.pricing-system-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #44403c;
    font-size: 0.92rem;
    line-height: 1.45;
}

.pricing-system-card li::before {
    content: "•";
    color: #1c1917;
    font-size: 16px;
    line-height: 1;
}

.pricing-system-card--featured {
    border-color: #1c1917;
    background: linear-gradient(170deg, rgba(28, 25, 23, 0.95) 0%, rgba(41, 37, 36, 0.92) 100%);
    box-shadow: 0 22px 36px rgba(28, 25, 23, 0.24);
}

.pricing-system-card--featured .pricing-system-card__tag,
.pricing-system-card--featured h3 span {
    color: #a8a29e;
}

.pricing-system-card--featured h3,
.pricing-system-card--featured p,
.pricing-system-card--featured li {
    color: #fafaf9;
}

.pricing-system-card--featured li::before {
    color: #e7e5e4;
}

.pricing-system-btn {
    margin-top: auto;
    border-radius: 9999px;
    padding: 12px 18px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.pricing-system-btn:hover {
    transform: translateY(-1px);
}

.pricing-system-btn--ghost {
    border: 1px solid #1c1917;
    background: transparent;
    color: #1c1917;
}

.pricing-system-btn--ghost:hover {
    background: #1c1917;
    color: #fafaf9;
}

.pricing-system-btn--primary {
    border: 1px solid #fafaf9;
    background: #fafaf9;
    color: #1c1917;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.16);
}

.pricing-system-btn--primary:hover {
    background: #e7e5e4;
}

.pricing-system-note {
    margin-top: 18px;
    border: 1px solid #d6d3d1;
    background: #fafaf9;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
}

.pricing-system-note__kicker {
    display: block;
    margin-bottom: 6px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #78716c;
}

.pricing-system-note p {
    margin: 0;
    color: #57534e;
    font-size: 0.94rem;
}

.pricing-system-note__status {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #78716c;
    white-space: nowrap;
}

/* TECH FEATURE GLASS CARDS */
.tech-glass-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px) saturate(130%);
    box-shadow:
        0 14px 30px rgba(28, 25, 23, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.tech-glass-card::before {
    content: "";
    position: absolute;
    inset: -180% auto auto -46%;
    width: 56%;
    height: 280%;
    transform: rotate(18deg);
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.58) 50%, transparent 100%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.tech-glass-card:hover::before {
    transform: translateX(300%) rotate(18deg);
}

/* HERO BUTTONS (View Tokens style) */
.hero-ds-btn {
    --btn-fill: #1c1917;
    --btn-text: #ffffff;
    --btn-beam: #ffffff;
    --btn-glow-rgb: 255, 255, 255;
    --btn-glow-opacity: 0.3;
    isolation: isolate;
}

.hero-ds-btn--light {
    --btn-fill: #ffffff;
    --btn-text: #1c1917;
    --btn-beam: #1c1917;
    --btn-glow-rgb: 28, 25, 23;
    --btn-glow-opacity: 0.14;
}

.hero-ds-glow,
.hero-ds-glow-hover,
.hero-ds-stroke,
.hero-ds-stroke-hover,
.hero-ds-spin-wrap,
.hero-ds-fill {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 9999px;
}

.hero-ds-glow {
    opacity: 1;
    filter: blur(15px);
    background: radial-gradient(15% 50% at 50% 100%, rgba(var(--btn-glow-rgb), 0.95) 0%, transparent 100%);
    transition: opacity 1s ease-in-out;
}

.hero-ds-glow-hover {
    opacity: 0;
    filter: blur(18px);
    background: radial-gradient(60% 50% at 50% 100%, rgba(var(--btn-glow-rgb), 0.95) 0%, transparent 100%);
    transition: opacity 1s ease-in-out;
}

.hero-ds-stroke {
    opacity: 1;
    background: radial-gradient(11% 50% at 50% 100%, rgba(var(--btn-glow-rgb), 0.95) 0%, transparent 100%);
    transition: opacity 1s ease-in-out;
}

.hero-ds-stroke-hover {
    opacity: 0;
    background: radial-gradient(60% 50% at 50% 100%, rgba(var(--btn-glow-rgb), 0.95) 0%, transparent 100%);
    transition: opacity 1s ease-in-out;
}

.hero-ds-spin-wrap {
    overflow: hidden;
}

.hero-ds-spin {
    position: absolute;
    inset: -300%;
    border-radius: 9999px;
    background: conic-gradient(from 90deg at 50% 50%, transparent 0%, transparent 90%, var(--btn-beam) 100%);
    animation: spin 4s linear infinite;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.hero-ds-fill {
    inset: 1px;
    background-color: var(--btn-fill);
    border: 1px solid rgba(var(--btn-glow-rgb), 0.14);
    z-index: 10;
}

.hero-ds-label {
    position: relative;
    z-index: 20;
    color: var(--btn-text);
    text-shadow: 0 1px 2px rgba(0, 0, 0, var(--btn-glow-opacity));
}

.hero-ds-btn:hover .hero-ds-glow,
.hero-ds-btn:focus-visible .hero-ds-glow,
.hero-ds-btn:hover .hero-ds-stroke,
.hero-ds-btn:focus-visible .hero-ds-stroke {
    opacity: 0;
}

.hero-ds-btn:hover .hero-ds-glow-hover,
.hero-ds-btn:focus-visible .hero-ds-glow-hover,
.hero-ds-btn:hover .hero-ds-stroke-hover,
.hero-ds-btn:focus-visible .hero-ds-stroke-hover {
    opacity: 1;
}

.hero-ds-btn:hover .hero-ds-spin,
.hero-ds-btn:focus-visible .hero-ds-spin {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hero-ambient-orb,
    .hero-ambient-grid,
    .hero-ds-spin,
    .hero-glass-card::before,
    .hero-series-badge::before,
    .hero-series-badge__dot {
        animation: none !important;
        transition: none !important;
    }
}

/* GLOBAL SHELL */
.site-shell {
    position: relative;
    isolation: isolate;
}

.site-shell>header,
.site-shell>main,
.site-shell>section,
.site-shell>footer {
    position: relative;
    z-index: 10;
}

@keyframes beam-fall {
    0% {
        transform: translateY(-120%);
        opacity: 0;
    }

    12% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(115vh);
        opacity: 0;
    }
}

.global-beam-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.beam-drop {
    position: absolute;
    top: -25vh;
    width: 1px;
    height: var(--beam-h, 160px);
    background: linear-gradient(to bottom,
            rgba(245, 158, 11, 0),
            rgba(245, 158, 11, 0.24),
            rgba(245, 158, 11, 0.42),
            rgba(245, 158, 11, 0));
    filter: drop-shadow(0 0 7px rgba(245, 158, 11, 0.28));
}

.beam-drop::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 8px;
    height: 8px;
    transform: translateX(-50%) rotate(45deg);
    border-right: 1px solid rgba(251, 191, 36, 0.5);
    border-bottom: 1px solid rgba(251, 191, 36, 0.5);
    opacity: 0.9;
}

.animate-beam-1 {
    animation: beam-fall 6s linear infinite;
}

.animate-beam-2 {
    animation: beam-fall 8s linear infinite;
}

.animate-beam-3 {
    animation: beam-fall 7s linear infinite;
}

/* WRITING SECTION SYSTEM-ALIGNED */
.writing-surface {
    background-color: #eaeae5;
}

.writing-surface__orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(38px);
    pointer-events: none;
    z-index: 1;
}

.writing-surface__orb--a {
    width: 30rem;
    height: 30rem;
    top: -8%;
    right: -8%;
    background: radial-gradient(circle, rgba(231, 229, 228, 0.8) 0%, rgba(231, 229, 228, 0) 70%);
    animation: float 14s ease-in-out infinite;
}

.writing-surface__orb--b {
    width: 26rem;
    height: 26rem;
    left: -10%;
    bottom: -12%;
    background: radial-gradient(circle, rgba(245, 245, 244, 0.9) 0%, rgba(245, 245, 244, 0) 72%);
    animation: float 16s ease-in-out infinite reverse;
}

.writing-info-card {
    border: 1px solid #d6d3d1;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 12px 34px rgba(41, 37, 36, 0.08);
}

.writing-info-card,
.writing-card {
    position: relative;
    overflow: hidden;
}

.writing-info-card::before,
.writing-card::before {
    content: "";
    position: absolute;
    inset: -180% auto auto -42%;
    width: 54%;
    height: 280%;
    transform: rotate(18deg);
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.58) 50%, transparent 100%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.writing-info-card:hover::before,
.writing-card:hover::before {
    transform: translateX(300%) rotate(18deg);
}

.writing-info-card__kicker {
    display: block;
    margin-bottom: 12px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #78716c;
}

.writing-info-card__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px solid #e7e5e4;
    padding: 10px 0;
}

.writing-info-card__row strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    color: #1c1917;
    letter-spacing: -0.01em;
}

.writing-info-card__row span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #78716c;
    font-family: "JetBrains Mono", monospace;
}

.writing-card {
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.42) 100%);
    backdrop-filter: blur(12px) saturate(130%);
    padding: 32px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.writing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 211, 209, 0.96);
    box-shadow: 0 20px 35px rgba(28, 25, 23, 0.1);
}

.writing-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e7e5e4;
    background: #f5f5f4;
    color: #1c1917;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.writing-card:hover .writing-card__icon {
    background: #1c1917;
    color: #fafaf9;
    border-color: #1c1917;
}

.writing-card__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #1c1917;
    margin: 0 0 10px;
}

.writing-card__copy {
    color: #57534e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.writing-card__bar {
    margin-top: 22px;
    height: 4px;
    background: #e7e5e4;
    overflow: hidden;
}

.writing-card__bar span {
    display: block;
    height: 100%;
    width: 0;
    background: #1c1917;
    transition: width 0.65s ease;
}

.writing-card:hover .writing-card__bar span {
    width: 100%;
}

/* PRICING GLASS CARDS */
.pricing-shell-card {
    background:
        radial-gradient(120% 130% at 10% 90%, rgba(124, 58, 237, 0.38) 0%, rgba(124, 58, 237, 0) 45%),
        radial-gradient(120% 130% at 90% 10%, rgba(245, 158, 11, 0.26) 0%, rgba(245, 158, 11, 0) 42%),
        linear-gradient(160deg, rgba(41, 37, 36, 0.8) 0%, rgba(23, 23, 23, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 28px;
    box-shadow:
        0 35px 55px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(125%);
    padding: 24px;
}

.pricing-glass-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px) saturate(120%);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.pricing-glass-card::before {
    content: "";
    position: absolute;
    inset: -200% auto auto -40%;
    width: 50%;
    height: 300%;
    transform: rotate(20deg);
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 100%);
    transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.pricing-glass-card:hover::before {
    transform: translateX(320%) rotate(20deg);
}

.pricing-glass-card--highlight {
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.pricing-backdrop-pane {
    position: absolute;
    right: -28px;
    top: 42px;
    width: 220px;
    height: calc(100% - 84px);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(245, 245, 244, 0.78) 0%, rgba(231, 229, 228, 0.42) 100%);
    opacity: 0.75;
    filter: blur(0.2px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    z-index: -1;
}

.pricing-modal__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.pricing-modal__badge {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #f5f3ff;
    font-size: 20px;
}

.pricing-modal__title {
    margin: 0;
    color: #f8fafc;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.015em;
}

.pricing-modal__subtitle {
    margin: 3px 0 0;
    color: #d6d3d1;
    font-size: 0.98rem;
}

.pricing-modal__close {
    background: transparent;
    border: 0;
    color: #d6d3d1;
    font-size: 20px;
    opacity: 0.9;
}

.pricing-modal__price-row {
    margin: 14px 0 18px;
}

.pricing-modal__kicker {
    display: block;
    color: #86efac;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
}

.pricing-modal__price {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 3.1rem;
    line-height: 1;
    color: #f5f3ff;
}

.pricing-modal__price span {
    font-size: 1.65rem;
    color: #d6d3d1;
    font-weight: 400;
    margin-left: 6px;
}

.pricing-modal__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin-bottom: 16px;
}

.pricing-modal__benefits ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.pricing-modal__benefits li {
    color: #f5f5f4;
    font-size: 0.96rem;
    line-height: 1.35;
    display: flex;
    align-items: start;
    gap: 8px;
}

.pricing-modal__benefits li::before {
    content: "✓";
    color: #34d399;
    font-weight: 700;
}

.pricing-modal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.pricing-modal__chips span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 9999px;
    padding: 4px 9px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.03em;
    color: #f5f5f4;
    background: rgba(255, 255, 255, 0.08);
}

.pricing-glass-card--note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 16px;
}

.pricing-note__icon {
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    background: rgba(147, 197, 253, 0.16);
    border: 1px solid rgba(147, 197, 253, 0.28);
}

.pricing-glass-card--note h4 {
    margin: 0 0 4px;
    color: #f8fafc;
    font-size: 1.07rem;
}

.pricing-glass-card--note p {
    margin: 0;
    color: #d6d3d1;
    font-size: 0.95rem;
    line-height: 1.35;
}

.pricing-modal__payments h4 {
    margin: 0 0 10px;
    color: #f5f5f4;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
}

.pricing-pay-card {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
    color: #f8fafc;
    padding: 10px 14px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.pricing-pay-card__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 30px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-pay-card__brand--visa {
    background: linear-gradient(120deg, #2563eb, #60a5fa);
}

.pricing-pay-card__brand--mc {
    background: linear-gradient(120deg, #ef4444, #f59e0b);
}

.pricing-pay-card__number {
    font-size: 1.9rem;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.01em;
}

.pricing-pay-card__meta {
    display: block;
    font-size: 0.9rem;
    color: #d6d3d1;
}

.pricing-pay-card__status {
    font-size: 11px;
    font-family: "JetBrains Mono", monospace;
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.35);
    border-radius: 9999px;
    padding: 2px 8px;
    background: rgba(134, 239, 172, 0.12);
}

.pricing-pay-card--active {
    border-color: rgba(167, 139, 250, 0.62);
    box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.2) inset;
}

.pricing-modal__actions {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pricing-btn {
    border-radius: 12px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
}

.pricing-btn--primary {
    background: linear-gradient(120deg, #6d28d9, #7c3aed);
    color: white;
    border-color: rgba(167, 139, 250, 0.72);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.writing-marquee .animate-marquee span {
    margin: 0 18px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #78716c;
}

@media (prefers-reduced-motion: reduce) {
    .writing-surface__orb,
    .animate-marquee {
        animation: none !important;
    }

    .tech-glass-card::before,
    .writing-info-card::before,
    .writing-card::before,
    .pricing-glass-card::before {
        transition: none !important;
    }

    .heading-animated,
    .heading-colorize,
    .heading-animated::after {
        animation: none !important;
    }

    .beam-drop {
        animation: none !important;
        opacity: 0 !important;
    }

    .pricing-mini-glass::before {
        transition: none !important;
    }
}
