/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Local Fonts */
@font-face {
    font-family: 'Fenul Condensed TRIAL';
    src: url('fonts/FenulCondensedTRIAL-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fenul Condensed TRIAL';
    src: url('fonts/FenulCondensedTRIAL-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Fenul Condensed TRIAL';
    src: url('fonts/FenulCondensedTRIAL-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fenul Condensed TRIAL';
    src: url('fonts/FenulCondensedTRIAL-SemiboldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk';
    src: url('fonts/FKGroteskTrial-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk';
    src: url('fonts/FKGroteskTrial-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk Mono';
    src: url('fonts/FKGroteskMonoTrial-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk Mono';
    src: url('fonts/FKGroteskMonoTrial-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Web Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

body {
    font-family: 'FK Grotesk', -apple-system, sans-serif;
    background: linear-gradient(90deg, #090909 0%, #090909 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #000000;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 20px 159.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 139px;
}

.logo-text {
    font-family: 'Montserrat', 'FK Grotesk', sans-serif;
    font-weight: 800;
    font-size: 13.5px;
    line-height: 1;
    color: #f4f4f5;
    display: flex;
    gap: 1px;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'FK Grotesk', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #99a1af;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f4f4f5;
    transform: translateY(-1px);
}

.nav-links .nav-cta {
    background: #99db66;
    color: #252826;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'FK Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #aef578;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 219, 102, 0.3);
}

.nav-cta:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 134px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 16777200px;
    filter: blur(64px);
    width: 1000px;
    height: 1000px;
}

.blob-1 {
    left: -436.21px;
    top: -378.21px;
    background: linear-gradient(135deg, rgba(153, 219, 102, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    transform: rotate(59.62deg);
}

.blob-2 {
    right: calc(58.33% - 1640.97px);
    top: 301.47px;
    background: linear-gradient(135deg, rgba(153, 219, 102, 0.2) 0%, rgba(251, 100, 182, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    transform: rotate(100.47deg);
}

/* Banner background layer spanning hero and flippening */
.banner-bg-layer {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100vh + 600px);
    z-index: 1;
    pointer-events: none;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Hero video replacing hero-texture-1 */
.hero-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1241.148px;
    object-fit: cover;
    z-index: -1;
}

.hero-texture-2 {
    position: absolute;
    left: calc(29.17% + 72.79px);
    top: 4086px;
    width: 267.581px;
    height: 284.843px;
    transform: rotate(14.82deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 159.5px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 0;
}

.hero-title {
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-weight: 600;
    font-size: 122.347px;
    line-height: 122px;
    margin-bottom: 180px;
}

.hero-title-line1 {
    display: block;
}

.hero-title-line2 {
    display: block;
}

.latency-text {
    color: rgba(255, 255, 255, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #99db66;
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 15px 32px;
    font-family: 'FK Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 10px 15px 0px rgba(154, 230, 0, 0.2), 0px 4px 6px 0px rgba(154, 230, 0, 0.2);
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #aef578;
    box-shadow: 0 6px 20px rgba(153, 219, 102, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 30px;
    font-family: 'FK Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.btn-secondary:active {
    transform: translateY(0);
}

.hero-right {
    padding-top: 260px;
    max-width: 484px;
}

.hero-velocity {
    text-align: right;
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 122.347px;
    line-height: 1;
    margin-bottom: 32px;
    background: linear-gradient(71.2505deg, rgb(174, 245, 120) 8.4344%, rgb(247, 127, 188) 87.354%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    text-align: justify;
    font-family: 'FK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description strong {
    font-weight: 700;
}

/* Decrypted Text Effect */
.hero-description span,
.flippening-content span {
    display: inline;
    transition: opacity 0.05s ease;
}

.hero-description.decrypting span,
.flippening-content.decrypting span {
    animation: decrypt-glow 0.1s ease-in-out;
}

@keyframes decrypt-glow {

    0%,
    100% {
        text-shadow: 0 0 2px rgba(153, 219, 102, 0.3);
    }

    50% {
        text-shadow: 0 0 4px rgba(153, 219, 102, 0.6), 0 0 8px rgba(153, 219, 102, 0.3);
    }
}

/* The Agentic Flippening */
.flippening {
    position: relative;
    padding: 240px 0 120px;
    background: rgba(0, 0, 0, 0.39);
    z-index: 2;
}

.container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 159.5px;
}

.flippening-grid {
    padding-left: 0;
    padding-right: 0;
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 470px;
    gap: 32px;
}

.flippening-title {
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
}

.gradient-bar {
    width: 312px;
    height: 9px;
    background: linear-gradient(129.526deg, rgb(153, 219, 102) 2.7514%, rgb(253, 213, 175) 51.129%, rgb(247, 127, 192) 105.01%);
}

.flippening-text {
    font-family: 'FK Grotesk Mono', 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 23px;
    color: #ffffff;
}

.flippening-callout {
    background: #252826;
    border-left: 2px solid #f77fc0;
    border-radius: 12px;
    padding: 12px;
}

.flippening-callout p {
    font-family: 'FK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #ffffff;
}

.callout-secondary {
    color: rgba(255, 255, 255, 0.6);
}

/* DBTI Section */
.dbti {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.39);
}

.dbti-label {
    font-family: 'FK Grotesk Mono', 'Courier New', monospace;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #f77fc0;
    margin-bottom: 12px;
}

.dbti-title {
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1.92px;
    color: #ffffff;
    margin-bottom: 48px;
}

.dbti-description {
    max-width: 699px;
    margin-bottom: 48px;
}

.dbti-description p {
    font-family: 'FK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #d1d5dc;
    margin-bottom: 24px;
}

.dbti-description .text-muted {
    font-weight: 300;
    color: #99a1af;
}

.highlight-pink {
    font-weight: 500;
    color: #f77fc0;
}

.highlight-green {
    color: #9ae600;
}

/* Agent Cards */
.agent-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.agent-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.agent-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.agent-card-icon img {
    width: 24px;
    height: 24px;
}

.blue-gradient {
    background: linear-gradient(135deg, rgba(81, 162, 255, 0.2) 0%, rgba(0, 211, 243, 0.2) 100%);
}

.pink-gradient {
    background: linear-gradient(135deg, rgba(251, 100, 182, 0.3) 0%, rgba(194, 122, 255, 0.3) 100%);
}

.green-gradient {
    background: linear-gradient(135deg, rgba(154, 230, 0, 0.2) 0%, rgba(5, 223, 114, 0.2) 100%);
}

.agent-card-title {
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
}

.blue-gradient-text {
    background: linear-gradient(90deg, #51a2ff 0%, #00d3f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pink-gradient-text {
    background: linear-gradient(90deg, #fb64b6 0%, #c27aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.green-gradient-text {
    background: linear-gradient(168.69deg, rgb(154, 230, 0) 0%, rgb(5, 223, 114) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agent-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 12px;
    font-family: 'FK Grotesk', sans-serif;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 12px;
}

.blue-badge {
    background: linear-gradient(90deg, rgba(81, 162, 255, 0.2) 0%, rgba(0, 211, 243, 0.2) 100%);
    color: #51a2ff;
}

.pink-badge {
    background: linear-gradient(90deg, rgba(251, 100, 182, 0.2) 0%, rgba(194, 122, 255, 0.2) 100%);
    color: #fb64b6;
}

.green-badge {
    background: linear-gradient(162.255deg, rgba(154, 230, 0, 0.2) 0%, rgba(5, 223, 114, 0.2) 100%);
    color: #9ae600;
}

.agent-card-desc {
    font-family: 'FK Grotesk', sans-serif;
    font-size: 12px;
    line-height: 19.5px;
    color: #99a1af;
}

/* Agent Alpha Section */
.agent-alpha {
    padding: 120px 0;
    background: linear-gradient(140.655deg, rgba(55, 126, 1, 0.1) 14.838%, rgba(153, 219, 102, 0.1) 86.896%);
}

.agent-alpha-grid {
    display: grid;
    grid-template-columns: 1fr 488px;
    gap: 48px;
    align-items: stretch;
}

.agent-alpha-right {
    width: 488px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(240, 177, 0, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'FK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #f0b100;
    margin-bottom: 12px;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f0b100;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.agent-alpha-title {
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1.92px;
    color: #ffffff;
    margin-bottom: 0;
}

.agent-alpha-subtitle {
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1.92px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.agent-alpha-desc {
    font-family: 'FK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #d1d5dc;
    max-width: 621px;
    margin-bottom: 24px;
}

.agent-features {
    padding-left: 29px;
}

.agent-feature {
    margin-bottom: 24px;
}

.agent-feature h4 {
    font-family: 'FK Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 6px;
}

.agent-feature p {
    font-family: 'FK Grotesk', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    color: #99a1af;
    max-width: 641px;
}

.process-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.process-card {
    position: relative;
    border: 1.48px solid rgba(247, 127, 192, 0.6);
    border-radius: 17.763px;
    padding: 16.52px 21px;
    background: linear-gradient(180deg, rgba(247, 127, 192, 0.30) 0%, rgba(247, 127, 192, 0.00) 17.22%, rgba(247, 127, 192, 0.00) 87.13%, rgba(247, 127, 192, 0.30) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    min-height: 140px;
}

.pink-border {
    border-color: rgba(247, 127, 192, 0.6);
}

.process-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.process-card h4 {
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #f77fc0;
    text-transform: uppercase;
    margin: 0;
}

.process-card p {
    font-family: 'FK Grotesk', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4;
    color: #f4f4f5;
    margin: 0;
}

.process-img-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 160px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.process-img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    max-width: none;
    opacity: 1;
    mix-blend-mode: soft-light;
}

.process-img.sense {
    width: auto;
    width: 140px;
}

.process-img.validator {
    width: auto;
    width: 160px;
}

.process-img.learn {
    width: auto;
    width: 126px;
}

/* Security Background Layer */
.security-bg-layer {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.security-banner-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* Security Section */
.security {
    position: relative;
    overflow: hidden;
    padding: 180px 0;
    background:
        linear-gradient(162.723deg, rgba(187, 0, 91, 0.2) 10.358%, rgba(6, 0, 3, 0.2) 91.786%),
        url('assets/security-bg.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.security>.container {
    position: relative;
    z-index: 2;
}

.security-badge-container {
    display: flex;
    justify-content: center;
}

.security-badge {
    display: inline-block;
    background: rgba(251, 100, 182, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'FK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #fb64b6;
    margin-bottom: 12px;
}

.security-title {
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1.92px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
}

.security-desc {
    font-family: 'FK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #d1d5dc;
    text-align: center;
    max-width: 434px;
    margin: 0 auto 48px;
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 788px;
    margin: 0 auto;
}

.security-card {
    backdrop-filter: blur(15px);
    border-width: 1px;
    border-style: solid;
    border-radius: 16px;
    padding: 24px;
}

.security-card.pink-border {
    background: linear-gradient(135deg, rgba(247, 127, 192, 0.05) 0%, rgba(247, 127, 192, 0.05) 100%);
    border-color: rgba(247, 127, 192, 0.20);
}

.green-border {
    border-color: rgba(153, 219, 102, 0.2);
    background: linear-gradient(155.76deg, rgba(154, 230, 0, 0.05) 0%, rgba(0, 201, 80, 0.05) 100%);
}

.security-card-badge {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    border-radius: 10px;
    font-family: 'FK Grotesk', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 24px;
    overflow: hidden;
    isolation: isolate;
}

.security-card-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    z-index: -2;
}

.security-card-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/banner-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
}

.security-card-badge.green::before {
    background: rgba(153, 219, 102, 0.2);
}

.security-card-badge.green {
    color: #99db66;
}

.security-card-badge.pink::before {
    background: rgba(247, 127, 192, 0.2);
}

.security-card-badge.pink {
    color: #f77fc0;
}

.security-card p {
    font-family: 'FK Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #d1d5dc;
}

/* Quote Section */
.quote-section {
    padding: 120px 0;
    background: #000000;
}

.quote-card {
    text-align: center;
    display: flex;
    justify-content: center;
}

.quote-inner {
    position: relative;

}

.quote-inner img {
    position: absolute;
    top: -42px;
    left: -128px;
    width: 217px;
    z-index: 1;
}

.quote-card p {
    position: relative;
    font-family: 'Fenul Condensed TRIAL', 'Georgia', serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 7px;
    z-index: 2;
}

.quote-card .quote-highlight {
    color: #99DB66;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 0 12px;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    gap: 240px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column h4 {
    font-family: 'FK Grotesk Mono', 'Courier New', monospace;
    font-weight: 700;
    font-size: 13.5px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 36px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 36px;
}

.footer-column ul li a {
    font-family: 'Courier New', monospace;
    font-weight: 300;
    font-size: 13.5px;
    line-height: 1;
    color: #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #99db66;
    transform: translateX(4px);
}


.footer-copyright {
    padding-top: 12px;
    text-align: center;
}

.footer-copyright p {
    font-family: 'FK Grotesk', sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: #6a7282;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #f4f4f5;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        padding: 0 80px;
    }

    .nav-container {
        padding: 20px 80px 1px;
    }

    .hero-content {
        padding: 0 80px;
        gap: 60px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 60px;
    }

    .hero-title,
    .hero-velocity {
        font-size: clamp(3rem, 8vw, 5rem);
        line-height: 1.1;
    }

    .hero-title {
        margin-bottom: 100px;
    }

    .hero-right {
        padding-top: 180px;
    }
}

@media (max-width: 1024px) {
    .flippening-grid {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 60px;
        padding: 0 40px;
    }

    .hero-left {
        width: 100%;
    }

    .hero-right {
        padding-top: 0;
        max-width: 100%;
        text-align: left;
    }

    .hero-velocity {
        text-align: left;
    }

    .hero-description {
        text-align: left;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 60px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .flippening-content {
        grid-template-columns: 1fr;
    }

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

    .agent-alpha-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .agent-alpha-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {

    /* Navigation Mobile */
    .nav-container {
        padding: 16px 20px;
        height: auto;
        min-height: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        align-items: stretch;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-cta {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        margin-top: 1rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }

    .hero-left {
        margin-bottom: 0;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.1;
        margin-bottom: 40px;
    }

    .hero-velocity {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.1;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-right {
        padding-top: 0;
        max-width: 100%;
    }

    /* Disable heavy effects on mobile */
    .hero-bg .blob {
        display: none;
    }

    /* Process cards mobile */
    .process-card {
        flex-direction: column;
        min-height: auto;
        gap: 12px;
    }

    .process-card-content {
        width: 100%;
    }

    .process-img-wrapper {
        width: 100%;
        height: 140px;
    }

    /* General Mobile */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 4rem 0;
    }

    .flippening-title,
    .dbti-title,
    .agent-alpha-title,
    .security-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .agent-alpha-subtitle {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .quote-card p {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .agent-cards,
    .security-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .agent-card,
    .security-card {
        padding: 1.5rem;
    }

    .process-card {
        padding: 14px 18px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-column {
        min-width: 45%;
    }

    /* Reduce opacity on mobile for performance */
    .hero-video,
    .hero-texture-2 {
        opacity: 0.3;
    }

    .banner-bg-layer {
        height: calc(100vh + 400px);
    }

    /* Optimize scrolling performance */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent zoom on input focus */
    input,
    textarea,
    select {
        font-size: 16px;
    }

    /* Better touch targets */
    a,
    button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Disable hover effects on mobile */
    .btn-primary:hover,
    .btn-secondary:hover,
    .nav-links a:hover {
        transform: none;
    }

    /* Security background optimization */
    .security-bg-layer {
        opacity: 0.5;
    }

    .security-banner-bg {
        opacity: 0.5;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 12px 16px;
    }

    .logo-text {
        font-size: 11px;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-content {
        padding: 0 16px;
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
        margin-bottom: 30px;
    }

    .hero-velocity {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .container {
        padding: 0 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .flippening-title,
    .dbti-title,
    .agent-alpha-title,
    .security-title {
        font-size: 1.8rem;
    }

    .footer-column {
        min-width: 100%;
    }

    /* Extra small adjustments */
    .container {
        padding: 0 16px;
    }

    section {
        padding: 3rem 0;
    }

    /* Process cards extra small */
    .process-img-wrapper {
        height: 120px;
    }

    .process-img.sense,
    .process-img.validator,
    .process-img.learn {
        max-width: 100%;
        height: auto;
    }

    /* Agent alpha grid */
    .agent-alpha-grid {
        gap: 30px;
    }

    /* Footer */
    .footer-logo {
        margin-bottom: 1.5rem;
    }
}