@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@500;700;800&display=swap');

:root {
    --cool-white: #f4f7f9;
    --pure-white: #ffffff;
    --charcoal: #2b303a;
    --charcoal-light: #4a5568;
    --orange: #e65c00;
    --orange-hover: #cc5200;
    --orange-transparent: rgba(230, 92, 0, 0.08);
    --accent-slate: #8f9caa;
    --border-color: #cbd5e1;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cool-white);
    color: var(--charcoal);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, .nav-links a, button, .filter-btn {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

header {
    background: var(--pure-white);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: var(--accent-slate);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-left {
    align-self: flex-start;
}

.logo-right {
    align-self: flex-end;
}

.logo-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-dot {
    display: inline-block;
    width: 2px;
    height: 2.2rem;
    background-color: var(--accent-slate);
}

.logo-acronym {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    left: 0;
    background-color: var(--charcoal);
    transition: width 0.3s ease;
    transform: skewX(-20deg);
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--orange);
    font-size: 1.8rem;
    cursor: pointer;
}

.subscribe-btn {
    background-color: var(--orange);
    color: var(--pure-white) !important;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background-color 0.2s;
    margin-left: 1.5rem;
    display: inline-block;
}

.subscribe-btn:hover {
    background-color: var(--orange-hover);
    color: var(--pure-white) !important;
}

main {
    flex-grow: 1;
}

.page-section {
    padding: 4rem 0;
}

.dark-section {
    background-color: var(--charcoal);
    color: var(--pure-white);
    padding: 4rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    border-bottom: 1px solid color-mix(in srgb, currentColor 40%, transparent);
    padding-bottom: 0.75rem;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--charcoal);
}

.dark-section .section-header {
    color: var(--pure-white);
}

.hero-full {
    width: 100vw;
    background-color: var(--charcoal);
    display: flex;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: flex-start; 
    padding: 8vw 5vw; 
    box-sizing: border-box;
}

.hero-slogan {
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    /* changed to 95% opacity using rgba */
    background-color: rgba(230, 92, 0, 0.90); 
    padding: 2.5rem 3rem;
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px); 
}

.hero-slogan h1 {
    color: var(--pure-white);
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    margin: 0;
}

p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.card-wrapper {
    filter: drop-shadow(0px 8px 16px rgba(43, 48, 58, 0.12));
    transition: transform 0.2s;
}

.card-wrapper:hover {
    transform: translateY(-4px);
}

.card {
    background: var(--pure-white);
    padding: 2.5rem;
    position: relative;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    border-top: 4px solid var(--orange);
    color: var(--charcoal);
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--charcoal);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.card .lucide {
    color: var(--orange);
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--orange);
}

.application-form {
    background: var(--pure-white);
    padding: 3rem;
    position: relative;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    border-top: 4px solid var(--orange);
}

.form-group {
    margin-bottom: 1.8rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

input[type="text"], input[type="email"], select, textarea {
    width: 100%;
    padding: 1rem;
    background: var(--cool-white);
    border: 2px solid transparent;
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s, background-color 0.2s;
}

input[type="text"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--pure-white);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
}

.checkbox-group input {
    margin-top: 0.35rem;
}

.checkbox-group label {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-weight: 400;
    font-size: 1rem;
}

button[type="submit"] {
    background: var(--orange);
    color: var(--pure-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    width: 100%;
    margin-top: 1rem;
}

button[type="submit"]:hover {
    background: var(--orange-hover);
}

footer {
    background-color: var(--charcoal);
    color: var(--pure-white);
    padding-top: 4rem;
    padding-bottom: 2rem;
    font-size: 1.15rem;
}

footer p {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
}

footer img {
    filter: invert(1);
}

.dark-section a, footer a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s;
}

.dark-section a:hover, footer a:hover {
    color: var(--pure-white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--pure-white);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        padding: 1rem 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { text-align: center; padding: 1rem 0; }
    .logo-large { display: none; }
    .logo-dot { display: none; }
}