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

:root {
    --green: #046A38;
    --green-dark: #00482B;
    --green-deep: #003320;
    --gold: #CBA052;
    --gold-deep: #AE8643;
    --gold-light: #F8E08E;
    --black: #101820;
    --off-white: #F2F1F0;
    --beige: #DCD59A;
    --faded-gold: #E7E3C6;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--off-white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(16, 24, 32, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(203, 160, 82, 0.15);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
}

.nav-logo img {
    height: 60px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.2;
}

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

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-badge {
    font-size: 0.7rem;
    background: var(--green);
    color: var(--gold-light);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 80%, rgba(4, 106, 56, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(203, 160, 82, 0.07) 0%, transparent 60%),
        var(--black);
}

.hero-parchment-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 39px,
            rgba(203, 160, 82, 0.04) 39px,
            rgba(203, 160, 82, 0.04) 40px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(203, 160, 82, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 999px;
}

/* .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
} */

.hero-logo-large {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 40px rgba(4, 106, 56, 0.4));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(242, 241, 240, 0.6);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(242, 241, 240, 0.7);
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: var(--off-white);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: not-allowed;
    opacity: 0.6;
    transition: background 0.2s;
    position: relative;
}

.btn-primary .coming-soon-tag {
    font-size: 0.65rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(203, 160, 82, 0.4);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: not-allowed;
    opacity: 0.6;
    transition: border-color 0.2s, color 0.2s;
}

.hero-wsu {
    font-size: 0.75rem;
    color: rgba(242, 241, 240, 0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-wsu span {
    color: var(--gold);
    opacity: 0.7;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.4;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.7;
        transform: translateX(-50%) translateY(5px);
    }
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── SECTION BASE ── */
section {
    padding: 6rem 2rem;
    position: relative;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.divider {
    border: none;
    border-top: 1px solid rgba(203, 160, 82, 0.12);
    margin: 0;
}

/* ── ABOUT ── */
.about-section {
    background: var(--green-deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(242, 241, 240, 0.7);
    margin-bottom: 1.25rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--gold);
    font-weight: 500;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: rgba(4, 106, 56, 0.25);
    border: 1px solid rgba(203, 160, 82, 0.15);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    min-width: 80px;
}

.stat-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(242, 241, 240, 0.65);
}

/* ── FEATURES ── */
.features-section {
    background: var(--black);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(203, 160, 82, 0.12);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
    border-color: rgba(203, 160, 82, 0.3);
    background: rgba(4, 106, 56, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--green);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(4, 106, 56, 0.2);
    border: 1px solid rgba(4, 106, 56, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(242, 241, 240, 0.6);
}

/* ── FOUNDERS ── */
.founders-section {
    background: linear-gradient(to bottom, var(--black), var(--green-deep));
}

.founders-intro {
    max-width: 600px;
    margin-bottom: 3rem;
}

.founders-intro p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(242, 241, 240, 0.6);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.founder-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(203, 160, 82, 0.12);
    border-radius: 4px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
}

.founder-card:hover {
    border-color: rgba(203, 160, 82, 0.35);
    transform: translateY(-4px);
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(203,160,82,0.3);
  margin: 0 auto 1rem;
  overflow: hidden;
  background: var(--green);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(60%);
  transition: filter 0.3s;
}

.founder-card:hover .founder-avatar img {
  filter: grayscale(0%);
}

.founder-initial {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.founder-role {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    opacity: 0.75;
    text-transform: uppercase;
}

.founders-more {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: rgba(242, 241, 240, 0.4);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* ── MEDIA ── */
.media-section {
    background: var(--green-deep);
}

.media-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.media-tag {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(203, 160, 82, 0.15);
    color: var(--gold);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(203, 160, 82, 0.2);
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.media-card {
    background: rgba(0, 72, 43, 0.3);
    border: 1px solid rgba(203, 160, 82, 0.12);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.media-card:hover {
    border-color: rgba(203, 160, 82, 0.3);
}

.media-card-thumb {
    width: 100%;
    height: 160px;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.media-thumb-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(4, 106, 56, 0.5) 0%, var(--green-deep) 70%);
}

.media-thumb-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(203, 160, 82, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-thumb-icon svg {
    width: 18px;
    height: 18px;
}

.media-card-body {
    padding: 1.25rem;
}

.media-card-type {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 0.4rem;
}

.media-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.media-card-desc {
    font-size: 0.8rem;
    color: rgba(242, 241, 240, 0.5);
    line-height: 1.6;
}

.media-new-badge {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--green);
    color: var(--gold-light);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-weight: 600;
}

/* ── MISSION ── */
.mission-section {
    background: var(--black);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(203, 160, 82, 0.1);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
}

.mission-block::after {
    content: attr(data-quote);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(203, 160, 82, 0.06);
    line-height: 1;
    pointer-events: none;
}

.mission-block-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.mission-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(242, 241, 240, 0.65);
}

/* ── DOWNLOAD CTA ── */
.download-section {
    background: var(--green);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.04) 20px,
            rgba(0, 0, 0, 0.04) 21px);
    pointer-events: none;
}

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

.download-section .section-title {
    color: var(--gold-light);
}

.download-section p {
    font-size: 1.05rem;
    color: rgba(242, 241, 240, 0.75);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.store-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--black);
    color: var(--off-white);
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    opacity: 0.5;
    cursor: not-allowed;
    transition: opacity 0.2s;
    border: 1px solid rgba(203, 160, 82, 0.2);
}

.store-btn-icon {
    font-size: 1.5rem;
}

.store-btn-text {
    text-align: left;
}

.store-btn-text small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242, 241, 240, 0.5);
}

.store-btn-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.coming-soon-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(242, 241, 240, 0.45);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* ── FOOTER ── */
footer {
    background: var(--green-deep);
    border-top: 1px solid rgba(203, 160, 82, 0.1);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(242, 241, 240, 0.45);
    max-width: 220px;
}

.footer-dept {
    font-size: 0.75rem;
    color: rgba(242, 241, 240, 0.35);
    letter-spacing: 0.05em;
}

.footer-dept span {
    color: var(--gold);
    opacity: 0.6;
}

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(242, 241, 240, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(203, 160, 82, 0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(242, 241, 240, 0.25);
}

.footer-bottom a {
    color: rgba(203, 160, 82, 0.4);
    text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.hero-content>* {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.hero-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.35s;
}

.hero-content>*:nth-child(4) {
    animation-delay: 0.45s;
}

.hero-content>*:nth-child(5) {
    animation-delay: 0.55s;
}

.hero-content>*:nth-child(6) {
    animation-delay: 0.65s;
}

.hero-content>*:nth-child(7) {
    animation-delay: 0.75s;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .about-grid,
    .mission-grid,
    .media-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}