@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
    line-height: 1.6;
    color: #E2E8F0; /* Light silver/grey text for premium dark mode contrast */
    background-color: #030712; /* Extreme dark background */
}

h1, h2, h3, .logo h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* New Masculine Tactical Colors */
:root {
    --bg-dark: #030712;
    --navy-panel: #0B1528;
    --charcoal-card: #111827;
    --accent-orange: #FF5A1F; /* Sharp, high-visibility contrast */
    --text-light: #FFFFFF;
    --text-muted: #9CA3AF;
}

/* Navbar */
.navbar {
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-muted);
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 4px; /* Harder, squared-off corners instead of fully round pills */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #e0440b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 90, 31, 0.25);
}

/* Hero Section with Animation */
.hero {
    background: linear-gradient(rgba(3, 7, 18, 0.85), rgba(3, 7, 18, 0.95)), url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
    color: var(--text-light);
    padding: 180px 20px 120px;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.btn-hero {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 16px 42px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.trust {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections & Grids */
.section {
    padding: 120px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.bg-navy {
    background: var(--navy-panel);
}

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-light);
    font-weight: 700;
}

.about-text {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-light);
}

/* Interactive Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: var(--charcoal-card);
    padding: 3rem 2.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Accent mark for structural visual interest */
.benefit-card h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--accent-orange);
}

.benefit-card p {
    color: var(--text-muted);
}

/* Smooth micro-movements on user focus */
.benefit-card:hover {
    transform: translateY(-8px);
    background: #1f2937;
    border-color: rgba(255, 90, 31, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Journey Layout */
.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Call to Action */
.cta {
    background: var(--charcoal-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 120px 20px;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta strong {
    color: var(--accent-orange);
}

/* Forms Alignment */
.form-container {
    min-height: 100vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.form-card {
    background: var(--charcoal-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
    width: 100%;
    padding: 50px 40px;
    border-radius: 6px;
}

.form-card h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.form-subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #030712;
    border: 1px solid #374151;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-light);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.order-summary {
    background: #030712;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-orange);
}

.order-summary h3 {
    color: var(--text-light);
}

.price {
    font-size: 1.7rem;
    font-family: 'Oswald', sans-serif;
    color: var(--text-light);
}

.secure-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.2rem;
}

.full-width {
    width: 100%;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Success Layout */
.thankyou-container {
    min-height: 100vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thankyou-card {
    background: var(--charcoal-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 700px;
    padding: 60px 40px;
    border-radius: 6px;
    text-align: center;
}

.success-message {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
}

.details ul {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
    color: var(--text-muted);
}

.details li {
    margin-bottom: 0.5rem;
}

.community h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-community {
    display: inline-block;
    background: #1f2937;
    color: var(--text-light);
    padding: 14px 32px;
    margin: 10px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}

.btn-community:hover {
    background: #374151;
}

footer {
    background: #01040a;
    color: var(--text-muted);
    padding: 40px 20px;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Animations Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Configurations */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background-color: var(--text-light);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.3rem;
    }
}

/* Countdown Ticker Core Architecture styling rules */
.countdown-wrapper {
    background: rgba(11, 21, 40, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 90, 31, 0.15);
    max-width: 450px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.countdown-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
}

.countdown-ticker {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
}

.countdown-ticker div {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-ticker span {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-light);
}

.countdown-ticker small {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}