/* Industrial/Rough Theme */
:root {
    --bg-color: #121212;
    --text-color: #e6e6e6;
    --accent: #ff5722; /* Changed from blue to orange/rust */
    --secondary: #3d3d3d;
    --border: #2d2d2d;
    --rust-dark: #b23c17;
}

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

/* Noise overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    border-top: 4px solid var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23222222' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header/Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 50px;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: lowercase;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    padding: 5px 10px;
    transition: all 0.2s ease;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.nav-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero Section */
#hero {
    padding: 50px 0 70px;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z' fill='%23222222' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    max-width: 800px;
    letter-spacing: -1px;
}

.glitch {
    position: relative;
    color: var(--accent);
    display: inline-block;
}

.glitch::before, 
.glitch::after {
    content: 'AI';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: var(--rust-dark);
    z-index: -1;
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    animation-delay: 0.1s;
}

.glitch::after {
    color: #ffcc00;
    z-index: -2;
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    animation-delay: 0.2s;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: #999;
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        var(--accent),
        var(--accent) 10px,
        var(--rust-dark) 10px,
        var(--rust-dark) 20px
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    color: var(--bg-color);
}

.cta-button:hover::before {
    opacity: 1;
}

/* Credentials section */
.compact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 80px;
    background-color: rgba(20, 20, 20, 0.7);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.compact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23333333' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: -1;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right:20px;    
}

.divider {
    width: 1px;
    height: 70px;
    background-color: var(--border);
}

.icon-placeholder {
    width: 100px;
    height: 40px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    color: var(--text-color);
    margin-right: 5px;
    margin-left: 20px;        
}
.icon-placeholder img{
    width:100px;
}
#kings {
}

#wharton {
    
}

#auckland {
    

}

.credential-item p {
    font-size: 0.95rem;
    color: #aaa;
}

.credential-item strong {
    color: var(--text-color);
}

/* Product Section */
#product {
    padding: 70px 0;
}

#product h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: -1px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
}

#product h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    width: 80px;
    height: 2px;
    background: var(--rust-dark);
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.feature {
    background-color: #111;
    padding: 30px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(to bottom, 
            rgba(30, 30, 30, 0.3) 0%, 
            rgba(10, 10, 10, 0.3) 100%),
        url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 12c0-.622-.095-1.221-.27-1.785A5.982 5.982 0 0 0 10 12c1.67 0 3.182-.683 4.27-1.785A5.998 5.998 0 0 0 14 12h2a4 4 0 0 1 4-4V6c-1.67 0-3.182.683-4.27 1.785C15.905 7.22 16 6.622 16 6c0-.622-.095-1.221-.27-1.785A5.982 5.982 0 0 0 20 6V4a4 4 0 0 1-4-4h-2c0 .622.095 1.221.27 1.785A5.982 5.982 0 0 0 10 0C8.33 0 6.818.683 5.73 1.785 5.905 1.22 6 .622 6 0H4a4 4 0 0 1-4 4v2c1.67 0 3.182.683 4.27 1.785A5.998 5.998 0 0 1 4 6c0-.622.095-1.221.27-1.785A5.982 5.982 0 0 1 0 6v2a4 4 0 0 1 4 4h2zm-4 0a2 2 0 0 0-2-2v2h2zm16 0a2 2 0 0 1 2-2v2h-2zM0 4a2 2 0 0 0 2-2H0v2zm20 0a2 2 0 0 1-2-2h2v2zm-10 4a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0-6a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm6 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0-6a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm-12 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0-6a2 2 0 1 0 0-4 2 2 0 0 0 0 4z' fill='%23333333' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent), var(--rust-dark));
    transition: height 0.3s ease;
}

.feature:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
    background: #1a1a1a;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.feature-icon img{
    border-radius: 100%;
    width: 100px;
}
.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 0 30px;
    color: #666;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    border-top: 1px solid var(--border);
    position: relative;
    margin-top: 60px;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: var(--accent);
}

/* Media Queries */
@media (max-width: 768px) {
    .compact-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .divider {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }
    
    .credential-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    #product h2 {
        font-size: 2rem;
    }
}

