/* Reset & Base Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #1a1a1a;
    color: #a0a0a0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mono {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

/* Layout & Overlays */

.halftone-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1000;
}

/* Header */
header {
    border-bottom: 1px solid #404040;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 40px;
}

.header-classification {
    position: absolute;
    top: 10px;
    left: 60px;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #606060;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border: 2px solid #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #909090;
}

.logo-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #909090;
}

.header-location {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #606060;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #808080;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}

.nav-link:hover {
    color: #b0b0b0;
    border-bottom-color: #606060;
}

/* Hero Section */
.hero {
    padding: 100px 60px 80px;
    border-bottom: 1px solid #404040;
    position: relative;
}

.hero-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #606060;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-meta-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-meta-value {
    color: #909090;
    font-weight: 500;
}

h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #b0b0b0;
    letter-spacing: -0.02em;
    max-width: 900px;
}

h1 strong {
    font-weight: 600;
    color: #d0d0d0;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #808080;
    max-width: 700px;
    margin-bottom: 50px;
}

.cta-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: transparent;
    color: #b0b0b0;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid #606060;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #2a2a2a;
    border-color: #808080;
    color: #d0d0d0;
}

.btn-link {
    color: #808080;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 1px solid #404040;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.btn-link:hover {
    color: #b0b0b0;
    border-color: #606060;
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #2a2a2a;
    border: 1px solid #2a2a2a;
    margin-top: 80px;
}

.status-card {
    background: #1a1a1a;
    padding: 40px 30px;
}

.status-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #606060;
    margin-bottom: 15px;
}

.status-value {
    font-size: 36px;
    font-weight: 300;
    color: #b0b0b0;
    font-variant-numeric: tabular-nums;
}

.status-subtext {
    font-size: 11px;
    color: #606060;
    margin-top: 8px;
    letter-spacing: 0.05em;
}

/* Section Header */
.section {
    padding: 120px 60px;
    border-bottom: 1px solid #404040;
}

.section-number {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #606060;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: #b0b0b0;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #2a2a2a;
    border: 1px solid #2a2a2a;
}

.product-card {
    background: #1a1a1a;
    padding: 60px 50px;
    position: relative;
}

.product-id {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: #505050;
    font-family: 'Courier New', monospace;
}

.product-status {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #606060;
    margin-bottom: 20px;
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #303030;
}

.product-name {
    font-size: 32px;
    font-weight: 400;
    color: #b0b0b0;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.product-category {
    font-size: 12px;
    color: #606060;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.product-description {
    font-size: 14px;
    line-height: 1.8;
    color: #707070;
    margin-bottom: 35px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin-bottom: 35px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #505050;
}

.spec-value {
    font-size: 13px;
    color: #909090;
    font-family: 'Courier New', monospace;
}

.product-link {
    color: #808080;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #404040;
    padding-bottom: 2px;
    display: inline-block;
    transition: all 0.3s;
}

.product-link:hover {
    color: #b0b0b0;
    border-color: #606060;
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Technical Diagram */
.technical-section {
    background: #0f0f0f;
}

.diagram-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid #2a2a2a;
    background: #1a1a1a;
    position: relative;
}

.diagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
}

.diagram-title {
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #909090;
}

.diagram-id {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #505050;
    font-family: 'Courier New', monospace;
}

.architecture-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.arch-layer {
    background: #0f0f0f;
    padding: 30px 40px;
    border: 1px solid #2a2a2a;
    position: relative;
}

.arch-layer-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #505050;
    margin-bottom: 10px;
}

.arch-layer-title {
    font-size: 16px;
    color: #909090;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.arch-layer-desc {
    font-size: 12px;
    color: #606060;
    line-height: 1.6;
}

.arch-connector {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #404040;
    font-size: 12px;
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
}

.mission-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #808080;
    margin-bottom: 25px;
}

.principles-list {
    border: 1px solid #2a2a2a;
    padding: 50px 40px;
}

.principles-header {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #606060;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
}

.principle {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #202020;
}

.principle:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.principle-number {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #505050;
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
}

.principle-title {
    font-size: 15px;
    color: #909090;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.principle-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #606060;
}

/* Email Capture Section */
.email-capture-section {
    background: #0f0f0f;
}

.email-capture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
}

.email-capture-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #808080;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 13px;
    color: #707070;
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #202020;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #505050;
}

.email-capture-form-container {
    border: 1px solid #2a2a2a;
    padding: 50px 40px;
    background: #1a1a1a;
}

.email-signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #606060;
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    padding: 80px 60px 40px;
    border-top: 1px solid #404040;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #909090;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.8;
    color: #606060;
    margin-bottom: 30px;
}

.footer-section-title {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #505050;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #707070;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #909090;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #505050;
}

.footer-classification {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.15em;
}

/* Registration mark */
.reg-mark {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #606060;
    border-radius: 50%;
    text-align: center;
    line-height: 12px;
    font-size: 8px;
    margin-left: 4px;
    vertical-align: super;
}

/* Blog Styles */

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
}

.blog-placeholder {
    border: 1px solid #2a2a2a;
    padding: 80px 60px;
    text-align: center;
    background: #1a1a1a;
}

.blog-placeholder .placeholder-title {
    font-size: 24px;
    color: #909090;
    margin-bottom: 20px;
    margin-top: 20px;
}

.blog-post-card {
    border: 1px solid #2a2a2a;
    padding: 40px;
    background: #1a1a1a;
    transition: border-color 0.3s;
}

.blog-post-card:hover {
    border-color: #404040;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #606060;
}

.blog-post-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.blog-post-title a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post-title a:hover {
    color: #d0d0d0;
}

.blog-post-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #707070;
    margin-bottom: 20px;
}

.blog-post-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #606060;
    border: 1px solid #303030;
    padding: 4px 10px;
}

.blog-read-more {
    color: #808080;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #404040;
    padding-bottom: 2px;
    display: inline-block;
    transition: all 0.3s;
}

.blog-read-more:hover {
    color: #b0b0b0;
    border-color: #606060;
}

/* Product Page Styles */

.btn-primary.solid {
    background: #2a2a2a;
    color: #d0d0d0;
    border-color: #2a2a2a;
}

.btn-primary.solid:hover {
    background: #3a3a3a;
    border-color: #3a3a3a;
    color: #ffffff;
}

.warlock-hero {
    padding-bottom: 100px;
}

.warlock-value-prop {
    font-size: 14px;
    color: #909090;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    max-width: 700px;
}

.waitlist-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin-bottom: 20px;
}

.email-input {
    flex: 1;
    background: transparent;
    border: 1px solid #606060;
    color: #b0b0b0;
    padding: 16px 20px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: #808080;
    background: #202020;
}

.email-input::placeholder {
    color: #505050;
}

.form-status {
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 12px 20px;
    border: 1px solid transparent;
    min-height: 45px;
}

.form-status.success {
    color: #70a070;
    border-color: #304030;
    background: #1a2a1a;
}

.form-status.error {
    color: #a07070;
    border-color: #403030;
    background: #2a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #2a2a2a;
    border: 1px solid #2a2a2a;
}

.gallery-item {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-caption {
    padding: 30px 40px;
    border-top: 1px solid #2a2a2a;
}

.gallery-caption-title {
    font-size: 14px;
    color: #909090;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.gallery-caption-desc {
    font-size: 12px;
    color: #606060;
    line-height: 1.6;
}

.gallery-placeholder {
    background: #1a1a1a;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #2a2a2a;
}

.placeholder-content {
    text-align: center;
    padding: 40px;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.placeholder-text {
    font-size: 12px;
    color: #505050;
    letter-spacing: 0.1em;
    font-family: 'Courier New', monospace;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #808080;
    margin-bottom: 25px;
}

.about-text strong {
    color: #a0a0a0;
    font-weight: 600;
}

.about-specs {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #2a2a2a;
    border: 1px solid #2a2a2a;
    align-self: flex-start;
}

.spec-card {
    background: #1a1a1a;
    padding: 30px 35px;
}

.spec-card-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #505050;
    margin-bottom: 10px;
}

.spec-card-value {
    font-size: 16px;
    color: #909090;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    font-family: 'Courier New', monospace;
}

.spec-card-desc {
    font-size: 12px;
    color: #606060;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 52px;
    }

    .section-title {
        font-size: 32px;
    }

    .products-grid,
    .mission-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .email-capture-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    header,
    .hero,
    .section,
    footer {
        padding-left: 30px;
        padding-right: 30px;
    }

    h1 {
        font-size: 36px;
    }

    .header-classification {
        left: 30px;
    }

    .diagram-container {
        padding: 30px;
    }

    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 20px;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-card {
        padding: 40px 30px;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .email-input {
        width: 100%;
    }

    .gallery-placeholder {
        min-height: 300px;
    }

    .main-nav {
        display: none;
    }

    header {
        gap: 20px;
    }
}
