:root {
    --bg-color: #ffffff;
    --grid-color: rgba(0, 0, 0, 0.05);
    --accent-cyan: #00e5ff;
    --text-primary: #121212;
    --text-secondary: #4a4a4a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.5);
    --font-heading: 'Inter', sans-serif;
    --font-mono: 'Courier New', monospace;
}






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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-heading);
    background-color: var(--bg-color);
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(-14px);
    width: min(1180px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    z-index: 20;
    opacity: 0;
    animation: headerIn 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    text-transform: uppercase;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-cyan);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.8);
    animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.35s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: var(--accent-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

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

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

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

.header-btn {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.header-btn:hover {
    transform: none;
}

.header-btn.ghost {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text-primary);
}

.header-btn.solid {
    background: #111;
    color: #fff;
    border-color: #111;
}

.header-btn.solid:hover {
    background: #00e5ff;
    color: #111;
    border-color: #00e5ff;
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 90px 80px 0;
    gap: 40px;
    z-index: 1;
}



.bg-layers {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 70% 30%, rgba(224,249,255,0.45) 0%, rgba(240,253,255,0.22) 50%, rgba(255,255,255,1) 100%);
    /* Subtler cyan gradient tones (reduced intensity) */
}

.grid-wireframe {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.liquid-texture {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Removed liquid texture overlay */
    filter: saturate(0) blur(2px);
    mix-blend-mode: multiply;
    animation: textureSlowMove 40s linear infinite;
}

@keyframes textureSlowMove {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-2%, -2%);
    }

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

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    /* Reduced from 0.35 to soften background color */
    animation: blobFloat 20s ease-in-out infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    background: #00e5ff;
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -50px;
    background: #7afff5;
    animation-duration: 30s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 80px) scale(1.15);
    }
}


/* Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0;
    /* Removed semi-transparency */
    filter: blur(1px);
    box-shadow: 0 0 10px var(--accent-cyan);
}


/* Hero Content Module */
.hero-content {
    grid-column: 1;
    z-index: 10;
    padding: 58px 50px;
    /* Reduced by ~10% from 65px 55px */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    /* Thicker top "rim" */
    border-left: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 44px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.08),
        0 0 120px rgba(255, 255, 255, 0.5),
        /* Enhanced underglow */
        inset 0 0 40px rgba(255, 255, 255, 0.3),
        /* Deeper internal frost */
        inset 3px 3px 0px rgba(255, 255, 255, 0.15);
    /* Stronger bevel edge */
    position: relative;
    overflow: hidden;
    /* Removed interaction/tilt as requested */
}

/* Film grain / render noise */
.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.08;
    /* Increased from 0.03 */
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

/* Glossy highlight - main light source */
.hero-content::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        /* Primary highlight */
        radial-gradient(ellipse at 25% 15%,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.12) 15%,
            rgba(255, 255, 255, 0.06) 30%,
            transparent 50%),
        /* Secondary rim light */
        radial-gradient(ellipse at 80% 10%,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 20%,
            transparent 40%),
        /* Bottom fill light */
        radial-gradient(ellipse at 50% 90%,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 50%);
    pointer-events: none;
    z-index: 2;
    border-radius: 44px;
}

/* Ensure content stays on top */
.hero-content>* {
    position: relative;
    z-index: 3;
}


.headline {
    font-size: 3.15rem;
    /* Reduced by 10% from 3.5rem */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 0.65;
    /* Adjusted for better fit at smaller size */
    color: var(--text-primary);
    margin-bottom: 22px;
    /* Reduced by 10% */
}

.terminal-output {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    /* Reduced from 0.95rem */
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.5;
    margin-bottom: 12px;
    /* Reduced from 24px to bring closer to button */
}

.terminal-prompt {
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    gap: 6px;
}

.prompt-symbol {
    opacity: 1;
}

.terminal-command {
    min-width: 2px;
}

.terminal-cursor {
    animation: blink 1s step-end infinite;
    color: var(--accent-cyan);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.terminal-response {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    margin-top: 16px;
}

.terminal-response.visible {
    opacity: 1;
    transform: translateY(0);
}

.response-line {
    margin: 8px 0;
    padding-left: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.terminal-response.visible .response-line {
    opacity: 1;
    transform: translateX(0);
}

.terminal-response.visible .response-line:nth-child(1) {
    transition-delay: 0.1s;
}

.terminal-response.visible .response-line:nth-child(2) {
    transition-delay: 0.3s;
}

.terminal-response.visible .response-line:nth-child(3) {
    transition-delay: 0.5s;
}

.terminal-success-message {
    color: var(--text-primary);
    font-family: var(--font-mono);
    /* Terminal-style monospace font */
    font-weight: 600;
    font-size: 0.76rem;
    border-left: 2px solid var(--accent-cyan);
    padding-left: 12px;
    letter-spacing: 0.5px;
    /* Terminal-style spacing */
    background: rgba(0, 229, 255, 0.03);
    /* Subtle terminal glow background */
    padding: 6px 10px;
    border-radius: 4px;
    margin-top: 8px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-height: 100px;
    overflow: hidden;
}

.hero-content:hover .terminal-success-message {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

.cta-button {
    background: var(--text-primary);
    color: white;
    padding: 13px 29px;
    /* Reduced by 10% */
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    /* Changed to heading font */
    font-weight: 700;
    font-size: 0.72rem;
    /* Reduced by 10% */
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
    position: relative;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--accent-cyan);
    transform: none;
    box-shadow: 0 8px 30px var(--accent-cyan-glow);
}

/* Under-layer technical elements */
.pane-under-layer {
    position: absolute;
    width: 420px;
    height: 340px;
    z-index: 5;
    /* Between background and hero-content */
    pointer-events: none;
    overflow: hidden;
    border-radius: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 80px;
    /* Align with hero padding */
    top: 50%;
    transform: translateY(-50%);
}

.hud-element,
.pane-under-layer {
    display: none;
}

.data-stream-vertical {
    position: absolute;
    top: -100px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.15);
    white-space: pre;
    line-height: 1.2;
    animation: streamDown 40s linear infinite;
    text-align: center;
    width: 100%;
}

@keyframes streamDown {
    0% {
        transform: translateY(-50%);
    }

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

.glass-counter {
    font-family: var(--font-mono);
    color: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    position: absolute;
    letter-spacing: 2px;
    font-weight: 700;
}

.gc-1 {
    top: 60px;
    left: 60px;
}

.gc-2 {
    bottom: 60px;
    right: 60px;
}







.center-visual {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

/* ASCII Cross Styles */
.ascii-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 9px;
    /* Reduced from 11px for smaller figures */
    line-height: 9px;
    color: #000000;
    white-space: pre;
    pointer-events: none;
    user-select: none;
    z-index: 2;
    /* Ensure particles are under the hero-content (z-index 10) */
    opacity: 0.9;
}

.ascii-char {
    position: absolute;
    transition: transform 2.5s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
    white-space: pre;
    opacity: 1;
}

.ascii-container-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.steps-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 80px 90px;
}

.steps-intro {
    margin-bottom: 24px;
}

.steps-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.steps-intro h2 {
    max-width: 640px;
    font-size: 2rem;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    min-height: 210px;
    transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.55s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s ease, background-color 0.4s ease;
}

.step-card.is-active,
.step-card:hover {
    transform: none;
    border-color: rgba(0, 229, 255, 0.45);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.step-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.step-icon {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a6d79;
    border: 1px solid rgba(0, 229, 255, 0.5);
    border-radius: 999px;
    padding: 5px 8px;
}

.step-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.96rem;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 80px;
}

.terminal-footer {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(230, 252, 255, 0.56));
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    color: #12313a;
    box-shadow: 0 18px 36px rgba(0, 112, 128, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.terminal-pointer {
    position: absolute;
    right: 18px;
    top: 56%;
    transform: translateY(-50%);
    width: min(460px, 42vw);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    line-height: 1.3;
    color: rgba(11, 95, 108, 0.42);
    pointer-events: none;
    user-select: none;
    white-space: pre;
    z-index: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
    animation: pointerNudge 2.6s ease-in-out infinite;
}

.terminal-pointer pre {
    margin: 0;
    text-align: left;
}

.terminal-pointer .pointer-tail {
    display: inline-block;
    min-width: 11ch;
    color: rgba(0, 127, 144, 0.78);
}

.terminal-pointer .pointer-contact {
    color: rgba(0, 127, 144, 0.88);
}

@keyframes pointerNudge {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.75;
    }

    50% {
        transform: translateY(-50%) translateX(4px);
        opacity: 1;
    }
}

.terminal-footer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(160, 243, 255, 0.65);
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.28), rgba(208, 248, 255, 0.42));
    font-family: var(--font-mono);
    position: relative;
    z-index: 1;
}

.terminal-tag {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #007f90;
}

.terminal-status {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #12879a;
}

.terminal-footer-log {
    padding: 16px 18px;
    font-family: var(--font-mono);
    display: grid;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.terminal-footer-log p {
    color: #20434d;
    font-size: 0.9rem;
    line-height: 1.45;
}

.terminal-footer-log span {
    color: #00a4bf;
    margin-right: 8px;
}

.terminal-footer-log a {
    color: #007f90;
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 95, 108, 0.25);
}

.terminal-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 18px 18px;
    position: relative;
    z-index: 1;
}

.terminal-action {
    text-decoration: none;
    border: 1px solid rgba(0, 164, 191, 0.36);
    color: #006d7d;
    border-radius: 10px;
    padding: 9px 13px;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.72);
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.terminal-action.primary {
    background: rgba(0, 229, 255, 0.42);
    color: #053f49;
    border-color: rgba(0, 229, 255, 0.68);
}

.terminal-action:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.58);
}

.terminal-action.primary:hover {
    background: rgba(0, 229, 255, 0.56);
    color: #022c33;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 80px 70px;
}

@media (min-width: 1025px) {
    .hero,
    .steps-section,
    .content-section,
    .site-footer {
        width: min(1180px, calc(100% - 32px));
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        padding: 90px 0 0;
    }

    .steps-section,
    .content-section {
        padding: 56px 0 72px;
    }

    .site-footer {
        padding: 0;
    }

    .steps-intro,
    .section-heading {
        margin-left: 0;
        margin-right: 0;
    }

    .steps-grid,
    .cases-grid,
    .features-grid {
        align-items: stretch;
    }

    .step-card,
    .glass-card,
    .pricing-block {
        height: 100%;
    }

    #cases,
    #pricing,
    .content-section {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        row-gap: 22px;
    }

    #cases .section-heading h2,
    #pricing .section-heading h2,
    .content-section .section-heading h2 {
        max-width: 760px;
    }
}

.section-heading {
    margin-bottom: 22px;
}

.section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.section-heading h2 {
    max-width: 720px;
    font-size: 1.9rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.glass-grid {
    display: grid;
    gap: 14px;
}

.cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 22px;
    transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.4s ease;
}

.cases-grid .glass-card {
    min-height: 270px;
    padding-top: 116px;
    padding-right: 156px;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.08);
}

.glass-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.case-avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 16px;
    right: 16px;
    margin: 0;
    display: block;
    background: #eaf6f8;
}

.glass-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.92rem;
}

.glass-card a {
    color: #0f6d77;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 109, 119, 0.35);
}

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

.pricing-block {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.56);
    padding: 22px;
}

.pricing-block h3 {
    font-size: 0.96rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.pricing-list {
    display: grid;
    gap: 10px;
}

.price-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 0.7);
    padding: 16px;
}

.price-card h4 {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.price-card strong {
    display: inline-block;
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.price-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.guarantee {
    border-radius: 14px;
    border: 1px solid rgba(0, 229, 255, 0.35);
    background: rgba(255, 255, 255, 0.62);
    padding: 12px 14px;
    font-size: 0.9rem;
    color: #0a4f57;
}










/* HUD Widgets Repositioned */
.hud-element {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0.6;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 1;
    /* Lowered from 100 to go under the glass */
}

.hud-tl {
    top: 30px;
    left: 30px;
    text-align: left;
}

.hud-tr {
    top: 30px;
    right: 30px;
    text-align: right;
}

.hud-bl {
    bottom: 30px;
    left: 30px;
    text-align: left;
    opacity: 0.4;
}

.hud-br {
    bottom: 30px;
    right: 30px;
    text-align: right;
    opacity: 0.4;
}


@media (max-width: 1024px) {
    .site-header {
        width: calc(100% - 24px);
        top: 12px;
        padding: 11px 12px;
    }

    .header-nav {
        gap: 14px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-btn {
        padding: 9px 11px;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
        padding: 88px 24px 60px;
        /* Reduced top padding to move content higher */
        text-align: left;
        gap: 30px;
        /* Reduced gap */
        align-items: start;
    }

    .headline {
        font-size: 2.8rem;
        line-height: 0.7;
        margin-bottom: 18px;
    }

    .hero-content {
        padding: 45px 35px;
        order: 2;
        grid-column: 1;
    }

    .terminal-output {
        font-size: 0.75rem;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .terminal-success-message {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .cta-button {
        padding: 12px 26px;
        font-size: 0.7rem;
        width: 100%;
        margin-top: -10px;
    }

    .center-visual {
        order: 1;
        height: 300px;
        /* Reduced from 350px */
        width: 100%;
    }

    .steps-section {
        padding: 24px 24px 70px;
    }

    .steps-intro h2 {
        font-size: 1.7rem;
    }

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

    .content-section {
        padding: 14px 24px 58px;
    }

    .site-footer {
        padding: 0 24px;
        margin-bottom: 44px;
    }

    .terminal-pointer {
        right: 12px;
        width: min(360px, 44vw);
        font-size: 0.66rem;
    }

    .section-heading h2 {
        font-size: 1.6rem;
    }

    .cases-grid,
    .features-grid,
    .pricing-wrap {
        grid-template-columns: 1fr;
    }

    .cases-grid .glass-card {
        min-height: 244px;
        padding-top: 104px;
        padding-right: 134px;
    }

    .case-avatar {
        width: 96px;
        height: 96px;
    }

    .ascii-container {
        font-size: 8px;
        /* Reduced from 9px */
        line-height: 8px;
    }

    .pane-under-layer {
        width: 90%;
        height: 240px;
        /* Reduced */
        left: 24px;
    }

    .glass-counter {
        font-size: 0.75rem;
    }

    .gc-1 {
        top: 40px;
        left: 40px;
    }

    .gc-2 {
        bottom: 40px;
        right: 40px;
    }


}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-btn.ghost {
        display: none;
    }

    .hero {
        padding: 84px 20px 50px;
        /* Move content higher */
        gap: 24px;
        min-height: 0;
    }

    .headline {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }

    .hero-content {
        padding: 35px 28px;
        border-radius: 32px;
    }

    .terminal-output {
        font-size: 0.7rem;
    }

    .terminal-success-message {
        font-size: 0.75rem;
    }

    .cta-button {
        padding: 11px 24px;
        font-size: 0.65rem;
    }

    .center-visual {
        height: 150px;
    }

    .ascii-container {
        display: flex;
        font-size: 7px;
        line-height: 7px;
    }

    .steps-section {
        padding: 20px 20px 60px;
    }

    .steps-intro h2 {
        font-size: 1.45rem;
    }

    .step-card {
        padding: 20px;
        min-height: 170px;
    }

    .content-section {
        padding: 12px 20px 52px;
    }

    .site-footer {
        padding: 0 20px;
        margin-bottom: 36px;
    }

    .section-heading h2 {
        font-size: 1.35rem;
    }

    .glass-card {
        padding: 18px;
    }

    .cases-grid .glass-card {
        min-height: 220px;
        padding-top: 96px;
        padding-right: 22px;
    }

    .cases-grid .glass-card h3 {
        padding-right: 112px;
    }

    .terminal-footer-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .terminal-pointer {
        display: none;
    }

    .terminal-footer-log p {
        font-size: 0.82rem;
    }

}

@media (max-width: 480px) {
    .site-header {
        width: calc(100% - 16px);
        padding: 10px;
        border-radius: 14px;
    }

    .brand {
        font-size: 0.67rem;
        letter-spacing: 0.12em;
    }

    .header-btn.solid {
        padding: 8px 10px;
        font-size: 0.6rem;
    }

    .hero {
        padding: 74px 16px 40px;
        /* Move content higher */
        gap: 20px;
    }

    .headline {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .hero-content {
        padding: 28px 22px;
        border-radius: 28px;
    }

    .terminal-output {
        font-size: 0.65rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .terminal-prompt {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .response-line {
        margin: 6px 0;
        font-size: 0.65rem;
    }

    .terminal-success-message {
        font-size: 0.7rem;
        padding: 6px 8px;
        margin-top: 6px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.6rem;
        border-radius: 6px;
        margin-top: -8px;
    }

    .hud-element {
        display: none;
    }

    .center-visual {
        height: 130px;
    }

    .steps-section {
        padding: 16px 16px 52px;
    }

    .steps-intro h2 {
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-card p {
        font-size: 0.88rem;
    }

    .content-section {
        padding: 10px 16px 44px;
    }

    .site-footer {
        padding: 0 16px;
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 1.18rem;
    }

    .pricing-block {
        padding: 16px;
    }

    .case-avatar {
        width: 84px;
        height: 84px;
        top: 12px;
        right: 12px;
    }

    .cases-grid .glass-card {
        min-height: 206px;
        padding-top: 86px;
    }

    .cases-grid .glass-card h3 {
        padding-right: 96px;
    }

    .price-card strong {
        font-size: 1.1rem;
    }

    .terminal-footer {
        border-radius: 16px;
    }

    .terminal-footer-log {
        padding: 14px;
    }

    .terminal-footer-actions {
        padding: 0 14px 14px;
    }

    .terminal-action {
        width: 100%;
        text-align: center;
    }

    .ascii-container {
        font-size: 6px;
        line-height: 6px;
    }

    .pane-under-layer {
        display: none;
    }


}

@media (max-width: 360px) {
    .site-header {
        top: 8px;
    }

    .hero {
        padding: 68px 16px 36px;
    }

    .headline {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 24px 18px;
    }

    .terminal-output {
        font-size: 0.6rem;
    }

    .terminal-success-message {
        font-size: 0.65rem;
    }

    .cta-button {
        padding: 9px 18px;
        font-size: 0.55rem;
    }

    .center-visual {
        height: 116px;
    }

    .ascii-container {
        font-size: 5px;
        line-height: 5px;
    }
}
