@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-obsidian: #0A0A0B;
    --electric-blue: #0070FF;
    --agentryxx-silver: #E2E8F0;
    --white-opacity-5: rgba(255, 255, 255, 0.05);
    --white-opacity-10: rgba(255, 255, 255, 0.1);
    --white-opacity-20: rgba(255, 255, 255, 0.2);
    --text-muted: #94A3B8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-obsidian);
    color: var(--agentryxx-silver);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Utility */
.glass {
    background: var(--white-opacity-5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 11, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-item img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 112, 255, 0.3));
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    color: var(--agentryxx-silver);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--electric-blue);
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../img/hero-bg.png') center/cover no-repeat;
    opacity: 0.4;
}

.hero-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 112, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 112, 255, 0.1);
    border: 1px solid rgba(0, 112, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.3;
    padding-bottom: 0.2em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #A5B4FC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-title span {
    display: block;
    color: var(--electric-blue);
    -webkit-text-fill-color: var(--electric-blue);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1.2s ease-out;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--electric-blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 112, 255, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 112, 255, 0.4);
    background: #1a7fff;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-tagline {
    color: var(--electric-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pillar-card {
    padding: 3rem;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pillar-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 112, 255, 0.1);
    border: 1px solid rgba(0, 112, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon-wrapper {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
}

.pillar-card:hover .pillar-icon {
    color: white;
}

.pillar-icon {
    width: 28px;
    height: 28px;
    color: var(--electric-blue);
    transition: var(--transition);
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pillar-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Status Quo Section Specifics */
.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.status-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.status-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 112, 255, 0.3);
    background: rgba(0, 112, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.status-card .pillar-icon-wrapper {
    width: 52px;
    height: 52px;
    margin-bottom: 1.5rem;
    background: rgba(0, 112, 255, 0.1);
}

.status-card .pillar-icon {
    width: 24px;
    height: 24px;
}

.status-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.status-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

/* Fit Check Section Specifics */
.fit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.fit-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.fit-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 112, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    transition: var(--transition);
}

.fit-card:hover .fit-icon-wrapper {
    background: var(--electric-blue);
    color: white;
    box-shadow: 0 0 20px rgba(0, 112, 255, 0.4);
}

.fit-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.fit-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Team Section Specifics */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(0, 112, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.founder-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 112, 255, 0.3);
    overflow: hidden;
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.linkedin-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    opacity: 0.7;
}

.linkedin-link:hover {
    opacity: 1;
    transform: translateX(3px);
}

@media (max-width: 992px) {

    .fit-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Trust Section */
.trust-section {
    background: rgba(0, 112, 255, 0.02);
    border-top: 1px solid var(--white-opacity-5);
    border-bottom: 1px solid var(--white-opacity-5);
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.trust-content {
    flex: 1;
}

.trust-badges {
    display: flex;
    gap: 3rem;
    opacity: 0.6;
}

.trust-badge-item {
    text-align: center;
}

.trust-badge-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--electric-blue);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--white-opacity-10);
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* Branding Refinement: Logo Softening */
.brand-glow-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.brand-tile-white {
    background: white;
    border-radius: 6px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.brand-tile-white:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.logo-blend-edge {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
    transition: var(--transition);
}

.logo-item:hover .logo-blend-edge {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-form-container {
    text-align: left;
}

.qr-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(0, 112, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 112, 255, 0.08), rgba(0, 112, 255, 0.02));
}

.qr-container {
    width: 220px;
    height: 220px;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.qr-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.qr-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--electric-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(0, 112, 255, 0.4);
}

.qr-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.qr-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-glass-container {
    padding: 8rem 4rem;
    border-radius: 3.5rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-form {
    padding: 4rem;
    display: grid;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    height: 100%;
    text-align: left;
    border-radius: 2rem;
}

.cta-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.form-group {
    display: grid;
    gap: 0.75rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.15em;
}

.form-input {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--electric-blue);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 112, 255, 0.1);
}

/* New Contact Section Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    text-align: left;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 3rem;
    font-weight: 800;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 112, 255, 0.1);
    border: 1px solid rgba(0, 112, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.direct-booking {
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 112, 255, 0.1), rgba(0, 112, 255, 0.05));
    border: 1px dashed rgba(0, 112, 255, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.direct-booking:hover {
    background: rgba(0, 112, 255, 0.15);
    border-style: solid;
    transform: translateX(10px);
}

.direct-booking .benefit-icon {
    background: var(--electric-blue);
    color: white;
    border: none;
}

.contact-form-card {
    padding: 3.5rem;
    border-radius: 30px;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Vision Section */
.vision-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Overhaul */
@media (max-width: 1200px) {
    .cta-grid {
        gap: 2rem;
    }

    .cta-glass-container {
        padding: 6rem 2rem;
    }

    .cta-form {
        padding: 2.5rem;
    }
}

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

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

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-flex {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .qr-module {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.8rem, 12vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 0 1.25rem;
    }

    .vision-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vision-card .pillar-icon-wrapper {
        margin-bottom: 1.5rem;
    }

    .cta-glass-container {
        padding: 4rem 1rem;
        border-radius: 2rem;
    }

    .cta-form {
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
    }

    .qr-module {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .cta-form h3 {
        font-size: 1.4rem;
    }

    .qr-container {
        width: 180px;
        height: 180px;
    }
}