/* Deffia-hero CSS Stylesheet */

:root {
    --bg-dark: #07070a;
    --panel-bg: rgba(255, 255, 255, 0.02);
    --panel-border: rgba(255, 255, 255, 0.05);
    --panel-border-hover: rgba(255, 255, 255, 0.1);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --violet: #8b5cf6;
    --violet-glow: rgba(139, 92, 246, 0.1);
    --violet-glow-strong: rgba(139, 92, 246, 0.3);
    
    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.1);
    --cyan-glow-strong: rgba(6, 182, 212, 0.3);
    
    --fuchsia: #d946ef;
    --fuchsia-glow: rgba(217, 70, 239, 0.1);
    
    --emerald: #10b981;
    --emerald-glow: rgba(16, 185, 129, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Aura Glow Blobs */
.aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -10;
    opacity: 0.8;
}

.aura-1 {
    top: -100px;
    left: 20%;
    width: 500px;
    height: 500px;
    background-color: rgba(139, 92, 246, 0.08);
}

.aura-2 {
    top: 60vh;
    right: 15%;
    width: 600px;
    height: 600px;
    background-color: rgba(6, 182, 212, 0.08);
}

.aura-3 {
    bottom: 10%;
    left: 25%;
    width: 450px;
    height: 450px;
    background-color: rgba(217, 70, 239, 0.06);
}

/* Grid Pattern Overlay */
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 14px 24px;
    pointer-events: none;
    z-index: -9;
}

/* Header styling */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--panel-border);
    background-color: rgba(7, 7, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    height: 36px;
    width: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #000;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Glass Panels */
.glass-panel {
    border: 1px solid var(--panel-border);
    background-color: var(--panel-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: var(--panel-border-hover);
    background-color: rgba(255, 255, 255, 0.04);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm {
    padding: 8px 16px;
}

.btn-primary {
    background: linear-gradient(to right, var(--violet) 0%, var(--cyan) 100%);
    color: #000;
    padding: 12px 24px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--panel-border);
    color: var(--text-primary);
    padding: 12px 24px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--panel-border-hover);
}

/* Section Common */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.border-top {
    border-top: 1px solid var(--panel-border);
}

.text-violet { color: var(--violet); }
.text-cyan { color: var(--cyan); }
.text-fuchsia { color: var(--fuchsia); }
.text-emerald { color: var(--emerald); }

.icon-cyan { stroke: var(--cyan); }
.icon-violet { stroke: var(--violet); }

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background-color: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #c084fc;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding-top: 64px;
    padding-bottom: 80px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
    }
}

.text-gradient-white-slate {
    background: linear-gradient(to bottom, #fff 40%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-aurora {
    background: linear-gradient(to right, #a78bfa, #f472b6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    max-width: 680px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

/* Portal Grid */
.portal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
    text-align: left;
}

@media (min-width: 768px) {
    .portal-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.portal-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    height: 96px;
    width: 96px;
    border-radius: 50%;
    filter: blur(40px);
    transition: var(--transition);
    z-index: 1;
}

.group-violet .card-glow { background-color: rgba(139, 92, 246, 0.2); }
.group-cyan .card-glow { background-color: rgba(6, 182, 212, 0.2); }

.portal-card:hover .card-glow {
    transform: scale(1.5);
}

.card-header-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.card-icon-wrapper {
    height: 48px;
    width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-violet .card-icon-wrapper {
    background-color: var(--violet-glow);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.group-cyan .card-icon-wrapper {
    background-color: var(--cyan-glow);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-icon {
    height: 24px;
    width: 24px;
}

.group-violet .card-icon { color: var(--violet); }
.group-cyan .card-icon { color: var(--cyan); }

.card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.group-violet .card-tag {
    background-color: rgba(139, 92, 246, 0.15);
    color: #d8b4fe;
}

.group-cyan .card-tag {
    background-color: rgba(6, 182, 212, 0.15);
    color: #67e8f9;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.group-violet .card-action { color: #a78bfa; }
.group-cyan .card-action { color: #22d3ee; }

.action-arrow {
    height: 16px;
    width: 16px;
    transition: var(--transition);
}

.portal-card:hover .action-arrow {
    transform: translate(2px, -2px);
}

.redirect-nudge {
    margin-top: 32px;
    font-size: 12px;
    color: var(--text-muted);
}

.redirect-nudge a {
    color: var(--text-secondary);
    text-decoration: underline;
    margin-left: 4px;
    transition: var(--transition);
}

.redirect-nudge a:hover {
    color: #fff;
}

/* Experience Section */
.experience-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 1024px) {
    .experience-container {
        grid-template-columns: 1fr 2fr;
    }
}

.section-title-wrapper {
    margin-bottom: 24px;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.bio-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.bio-text p {
    margin-bottom: 16px;
}

.summary-box {
    padding: 24px;
}

.summary-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 16px;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.list-bullet {
    height: 16px;
    width: 16px;
    color: var(--cyan);
    flex-shrink: 0;
}

/* Timeline */
.timeline-column {
    display: flex;
    flex-direction: column;
}

.timeline {
    position: relative;
    border-left: 1px solid var(--panel-border);
    margin-left: 16px;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 32px;
}

.timeline-item {
    position: relative;
}

.timeline-node {
    position: absolute;
    left: -44px;
    top: 6px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.timeline-item:hover .timeline-node {
    transform: scale(1.1);
}

.border-violet { border-color: var(--violet); }
.border-cyan { border-color: var(--cyan); }
.border-fuchsia { border-color: var(--fuchsia); }

.node-dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
}

.bg-violet { background-color: var(--violet); }
.bg-cyan { background-color: var(--cyan); }
.bg-fuchsia { background-color: var(--fuchsia); }

.timeline-card {
    padding: 24px;
}

.timeline-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
    margin-bottom: 8px;
}

.timeline-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Toolkit */
.toolkit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .toolkit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .toolkit-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.toolkit-card {
    padding: 24px;
}

.toolkit-icon-box {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bg-violet-glow { background-color: var(--violet-glow); }
.bg-cyan-glow { background-color: var(--cyan-glow); }
.bg-fuchsia-glow { background-color: var(--fuchsia-glow); }
.bg-emerald-glow { background-color: var(--emerald-glow); }

.toolkit-icon-box i {
    height: 20px;
    width: 20px;
}

.toolkit-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: var(--transition);
}

.chip:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    background-color: rgba(255, 255, 255, 0.06);
}

/* Philosophy */
.philosophy-panel {
    padding: 48px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .philosophy-panel {
        padding: 64px 80px;
    }
}

.panel-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.04);
    filter: blur(80px);
    z-index: 1;
}

.philosophy-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .philosophy-quote {
        font-size: 28px;
    }
}

.philosophy-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 32px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .philosophy-text {
        font-size: 16px;
    }
}

.blockquote-wrapper {
    position: relative;
    z-index: 2;
}

.philosophy-blockquote {
    border-left: 2px solid var(--cyan);
    padding-left: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    display: inline-block;
    text-align: left;
    font-size: 12px;
    font-style: italic;
    color: var(--text-muted);
    max-width: 550px;
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--panel-border);
    background-color: #030305;
    padding: 64px 24px;
    text-align: center;
}

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

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 32px;
    }
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.footer-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .footer-cta-container {
        flex-direction: row;
    }
}

.footer-divider {
    border-top: 1px solid var(--panel-border);
    margin: 48px 0 32px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-secondary);
}

.mb-50 {
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}
