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

:root {
    --background: #050505;
    --foreground: #e0e0e0;
    --primary: #f59e0b;
    --accent: #06b6d4;
    --font-sans: 'Inter', sans-serif;
    --font-sci: 'Orbitron', sans-serif;
    --color-background: var(--background);
    --color-foreground: var(--foreground);
}

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

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: splashFadeOut 0.4s ease-out 1.75s forwards;
}

.splash-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    opacity: 0.1;
    pointer-events: none;
}

.splash-scanline {
    width: 80%;
    max-width: 256px;
    height: 2px;
    background-color: var(--primary);
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
    transform-origin: center;
    transform: scaleX(0);
    animation: scanLineExpand 0.4s ease-in-out forwards;
}

.splash-logo {
    font-family: var(--font-sci);
    font-style: italic;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: logoAppear 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
}

@media (min-width: 768px) {
    .splash-logo {
        font-size: 4.5rem;
    }
}

.splash-text {
    font-family: monospace;
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: textGlitch 0.25s ease-out 0.6s forwards;
}

@keyframes scanLineExpand {
    to {
        transform: scaleX(1);
    }
}

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

@keyframes textGlitch {
    0% {
        opacity: 0;
        transform: translateX(-2px);
    }

    20% {
        opacity: 0.5;
        transform: translateX(2px);
    }

    40% {
        opacity: 0.2;
        transform: translateX(-2px);
    }

    60% {
        opacity: 0.8;
        transform: translateX(2px);
    }

    80% {
        opacity: 0.4;
        transform: translateX(-2px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes splashFadeOut {
    to {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

.brand-logo {
    font-family: var(--font-sci);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.text-gradient-amber {
    background: linear-gradient(to right, #f59e0b, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.5));
}

.text-white-light {
    color: #fff;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sci);
    color: #fff;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.font-sci {
    font-family: var(--font-sci);
    letter-spacing: 0.1em;
}

.text-glow {
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.text-glow-accent {
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bg-grid-pattern {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.bg-checkered {
    background-color: #0a0a0a;
    background-image:
        linear-gradient(45deg, #151515 25%, transparent 25%),
        linear-gradient(-45deg, #151515 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #151515 75%),
        linear-gradient(-45deg, transparent 75%, #151515 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.glass-panel,
.hud-panel {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border-radius: 8px;
}

.hud-panel {
    border-left: 2px solid var(--primary);
    position: relative;
    border-radius: 0 8px 8px 0;
}

.hud-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-cyber,
.btn-cyber-filled {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-sci);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-cyber:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--primary);
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    box-shadow: inset 0 0 20px rgba(245, 158, 11, 0.1);
}

.btn-cyber-filled {
    background: var(--primary);
    color: #000;
    border: none;
}

.btn-cyber-filled:hover {
    background: #fbbf24;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.section {
    padding: 6rem 0;
}

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

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

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

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

@media (max-width: 600px) {
    .navbar .brand-logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .navbar .btn-cyber-filled {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

.logo {
    font-family: var(--font-sci);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: var(--primary);
}

.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #ccc;
    max-width: 500px;
}

.hero-highlight {
    color: #fff !important;
    font-size: 1.25rem !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary), transparent 40%, transparent 60%, var(--accent));
    z-index: -1;
    filter: blur(20px);
    opacity: 0.3;
}

.trust-bullets {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #888;
}

.bullet-icon {
    color: var(--accent);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.comparison-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comparison-card.is-problem {
    border-color: rgba(255, 59, 48, 0.2);
    background: linear-gradient(145deg, rgba(20, 10, 10, 0.6), rgba(10, 5, 5, 0.8));
}

.comparison-card.is-solution {
    border-color: rgba(6, 182, 212, 0.3);
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.05), rgba(0, 0, 0, 0.4));
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.05);
    position: relative;
    overflow: hidden;
}

.comparison-card.is-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-title {
    font-family: var(--font-sci);
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.card-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.badge-red {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.badge-green {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.2);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.1);
}

.card-desc {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    min-height: 3.3rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #ccc;
    font-size: 1rem;
}

.list-problem li i {
    color: #ff3b30;
    margin-top: 4px;
}

.list-solution li i {
    color: #34d399;
    margin-top: 4px;
}

.comparison-card.is-solution:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.1);
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-sci);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-title {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    color: var(--primary);
    margin-top: 3px;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-sci);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

@media (max-width: 768px) {

    .hero-content,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

.splash-subtext {
    font-family: var(--font-sans);
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: -10px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: subtextAppear 0.4s ease-out 0.4s forwards;
}

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

.nav-link {
    color: #e0e0e0;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.legal-page {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 600;
}

.legal-content p,
.legal-content li {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.static-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

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

    .legal-content {
        padding: 1.5rem;
    }
}

/* International Telephone Input Overrides */
.iti {
    width: 100%;
    display: block;
    margin-bottom: 0;
    /* Let form-group handle margin */
}

.iti__country-list {
    background-color: #050505 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e0e0e0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 9999 !important;
    backdrop-filter: blur(10px);
}

.iti__country {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
}

.iti__country:last-child {
    border-bottom: none;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: rgba(245, 158, 11, 0.15) !important;
}

.iti__country-name {
    color: #e0e0e0 !important;
    font-size: 0.9rem;
}

.iti__dial-code {
    color: #888 !important;
    font-size: 0.85rem;
}

/* Fix Input Padding overlap */
.iti input.form-input {
    width: 100%;
}