/* ================================
   AGSKADS DESIGN SYSTEM v1.0
   Strategic & Silent Power
================================ */

/* 1. VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --font-primary: 'Inter', sans-serif;
    --bg-primary: #0F1115;
    --bg-secondary: #161A20;
    --bg-light: #F5F6F8;
    --bg-dark: #0f172a;
    --bg-green:#098042;
    --bg-gold:#C89B3C;
    --bg-white:#ffffff;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-white:#ffffff;
    --text-gold:#C89B3C;
    --text-green:#098042;

    --accent: #C89B3C;
    --accent-hover: #D6AA4A;

    --max-width: 1200px;
}

/* 2. GLOBAL RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #0f1115;
    color: #e6e8eb;
}


/* 3. LAYOUT */

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


.section {
    padding: 50px 0;
}

.section-light {
    background: var(--bg-light);
    color: #111;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 60px;
}


h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    color: var(--bg-green);
    margin-bottom: 50px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    color: var(--bg-green);
    margin-bottom: 15px;
}

/* 4. NAV */
.navbar {
    
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.nav-inner {
    display: flex;
    height: 150px;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    font-size: 20px;
    display: flex;
    height: 150px;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    font-size: 14.5px;
    color: var(--text-primary);
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    font-size: x-large;
    opacity: 0.7;
}

.nav-cta {
    margin-left: 12px;
}


/* 5. HERO */

.hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(214,168,79,0.15) 0%, transparent 70%);
    z-index: 0;
}

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

.hero-actions {
    display: flex;
    gap: 20px;
}


.hero p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-white);
    font-size: 20px;
}


.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #C89B3C;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 24px;
}




/* 6. BUTTONS */

.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: #C89B3C;
    border: 1px solid var(--text-secondary);
    padding: 14px 28px;
    text-decoration: none;
    color: var(--bg-dark);
    border-radius: 4px;
}

.btn-secondary:hover {
    background: var(--accent-hover);
    color: #000;
}

/* 7. GRID */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* 8. CARDS */

.card {
    background: white;
    padding: 30px;
    border-radius: 6px;
}

.card-dark {
    background: #161a20;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



.card-dark h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.card-dark p {
    color: #000;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}
.btxt {
    color: #000;
}

/* Subtle Card Hover */
.card,
.card-dark {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Dark Card Glow (Very Subtle Amber Hint) */
.card-dark:hover {
    box-shadow: 0 10px 30px rgba(200, 155, 60, 0.15);
}

/* 9. WORKFLOW */

.workflow {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    font-style: bold;
    color: var(--text-white);
    text-align: center;
    margin-top: 60px;
}


.workflow div {
    background: var(--bg-green);
    padding: 22px;
    border: 1px solid #eee;
    border-radius: 12px;
    flex: 1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.workflow div:hover {
    background: var(--accent)
}



/* 10. TRUST */

.trust-list {
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}


/* 11. FINAL CTA */

.final-cta {
    background: var(--bg-primary);
    padding: 120px 0;
    text-align: center;
}

.footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    background: var(--bg-secondary);
}

/* ================================
   ANIMATION SYSTEM
================================ */

/* Fade Base State */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Active State */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* Header Scroll Effect */
.nav.scrolled {
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(6px);
    transition: background 0.3s ease;
}

/* Smooth Link Transition */
a {
    transition: color 0.2s ease;
    color: #098042;
}

/* Hero Refinement */
.hero h1 {
    letter-spacing: -0.5px;
}

.hero {
    position: relative;
}

/* Smooth Button Interaction */

.btn-primary {
    background: var(--accent);
    color: #111;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-decoration: none;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

.icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-top: 4px; /* optical alignment */
}


.card:hover .icon,
.card-dark:hover .icon {
    color: var(--accent);
}

.icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.system-preview {
    position: relative;
    background: #161a20;
    border-radius: 14px;
    margin-top: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 80px rgba(0,0,0,0.4);
    opacity: 0.95;
    transition: all 0.4s ease;
}

.system-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}


.system-preview:hover {
    filter: blur(0);
    opacity: 1;
}

.system-topbar {
    height: 40px;
    background: #1d232c;
}

.system-content {
    display: flex;
}

.system-sidebar {
    width: 22%;
    background: #14181f;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.system-main {
    width: 80%;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.system-block {
    flex: 1;
    min-height: 160px;
    background: linear-gradient(145deg, #1b2028, #171b22);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(255,255,255,0.04);
}



.preview-description {
    margin-top: 30px;
    color: var(--text-secondary);
    max-width: 700px;
}




/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-primary)
    color: var(--text-white);
    padding: 25px 0 18px;
    margin-top: 10px;
    font-size: 14px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    color:var(--br-gold);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-col p {
    line-height: 1.6;
    margin: 0 0 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 24px;
    padding-top: 12px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive: still horizontal, just wraps */
@media (max-width: 900px) {
    .footer-row {
        flex-wrap: wrap;
    }
}
/* AUTH / LOGIN */

.auth-box {
    border: 1px solid #e6e6e6;
    padding: 32px;
    background: #fff;
}

.auth-form .form-group {
    margin-bottom: 16px;
}

.auth-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.btn-block {
    width: 100%;
    margin-top: 12px;
}

.alert-error {
    background: #fff4f4;
    border: 1px solid #f1c0c0;
    padding: 10px;
    margin-bottom: 16px;
    color: #9b1c1c;
}

.auth-note {
    margin-top: 16px;
    font-size: 13px;
    color: #098042;
}

/* =========================
   Platform Overview Blur
   ========================= */

.overview-blur {
    width: 100%;
    border-radius: 8px;
    margin-top: 16px;

    /* Blur effect */
    filter: blur(6px);
    -webkit-filter: blur(6px);

    /* Prevent interaction */
    pointer-events: none;
    user-select: none;

    /* Subtle dim for seriousness */
    opacity: 0.85;
}

/* Optional: softer blur on smaller screens */
@media (max-width: 768px) {
    .overview-blur {
        filter: blur(4px);
        -webkit-filter: blur(4px);
    }
}

