/* ----------------------------------------------------
   Cracken Released, Ltd. Co. - Custom Stylesheet
   Theme: Bio-luminescent Deep Sea (Cyan, Aquamarine, Amber)
   ---------------------------------------------------- */

/* Reset & Base Variables */
:root {
    --bg-dark: #03070c;
    --bg-card: rgba(8, 18, 30, 0.65);
    --bg-nav: rgba(4, 10, 18, 0.85);
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-amber: #f77f00;
    --accent-iris: #5d3fd3; /* Dutch Iris Purple */
    --text-primary: #f0f4f8;
    --text-secondary: #90a4ae;
    --text-muted: #607d8b;
    --border-color: rgba(0, 242, 254, 0.15);
    --border-hover: rgba(0, 242, 254, 0.35);
    --glow-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    --glow-shadow-strong: 0 0 25px rgba(0, 242, 254, 0.45);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Gradients & Ocean depth */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 60%, rgba(0, 242, 254, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 15% 85%, rgba(93, 63, 211, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 90%, rgba(247, 127, 0, 0.03) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* Cursor Glow Tracking */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, rgba(93, 63, 211, 0.02) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Navigation Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background-color: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.logo-text .highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 12px rgba(0, 242, 254, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.35);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-iris), var(--accent-cyan));
    box-shadow: 0 0 8px var(--accent-cyan);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.contact-btn {
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-shadow);
}

.contact-btn:hover {
    background: rgba(0, 242, 254, 0.15);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-shadow-strong);
}

.contact-btn::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('CrackenReleased_Detailed_Logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 35% 50%, rgba(3, 7, 12, 0.65) 0%, rgba(3, 7, 12, 0.98) 85%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.glow-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 242, 254, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    box-shadow: var(--glow-shadow);
    margin-bottom: 2rem;
    animation: pulseGlow 3s infinite alternate;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 50%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.15));
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.65);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Hero Graphic Frame */
.hero-logo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-outer-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulseGlow 3s infinite alternate;
}

.logo-frame {
    width: 380px;
    height: 380px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: rgba(8, 18, 30, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--glow-shadow), inset 0 0 25px rgba(0, 242, 254, 0.1);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.logo-frame:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-shadow-strong), inset 0 0 35px rgba(0, 242, 254, 0.2);
}

.main-logo-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.25));
}

.logo-frame:hover .main-logo-graphic {
    transform: scale(1.03);
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.55));
}

/* Sections Shared Elements */
section {
    padding: 7rem 0;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
}

.pre-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.title-bar {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.section-desc {
    max-width: 650px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Philosophy Section */
.philosophy-section {
    background-color: rgba(3, 7, 12, 0.4);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.philosophy-card:hover .card-icon {
    background: rgba(0, 242, 254, 0.15);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.philosophy-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ventures Section */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
}

.venture-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.venture-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

.venture-image-placeholder {
    height: 180px;
    background: linear-gradient(135deg, rgba(8, 25, 45, 0.9) 0%, rgba(3, 7, 12, 0.95) 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.venture-icon-glow {
    font-size: 3.5rem;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.5));
    animation: pulseLogo 4s infinite alternate;
}

.venture-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(247, 127, 0, 0.15);
    border: 1px solid rgba(247, 127, 0, 0.35);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.venture-info {
    padding: 2.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.venture-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.venture-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.venture-body {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.venture-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.venture-tech span {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Architect Section (Interactive CV) */
.cv-layout {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 3.5rem;
    align-items: start;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 2rem;
}

.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    color: var(--accent-cyan);
    margin: 0 auto 1.5rem auto;
    box-shadow: var(--glow-shadow);
}

.profile-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.role-desc {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-bottom: 1.8rem;
}

.architect-meta {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.architect-meta div {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.architect-meta i {
    color: var(--accent-cyan);
    width: 16px;
}

.cv-stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.01);
    border-left: 3px solid var(--accent-cyan);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.stat-item h4 {
    font-size: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Tabs & Main CV Content */
.cv-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--accent-cyan);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-iris));
    box-shadow: 0 0 8px rgba(93, 63, 211, 0.5);
}

.tab-content-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-height: 500px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

/* Experience Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-cyan);
    border: 2px solid var(--bg-dark);
    box-shadow: 0 0 10px var(--accent-cyan);
    transform: translateX(-5px);
    z-index: 2;
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.timeline-content h4 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.timeline-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style-type: none;
    padding-left: 1rem;
}

.timeline-content li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: -1rem;
    color: var(--accent-cyan);
}

/* Skills Tab Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.skill-category h4 {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.skill-category h4 i {
    color: var(--accent-cyan);
}

.skill-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skill-category li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-category li::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-cyan);
}

/* Values Content Tab */
.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--accent-cyan);
}

.value-block p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: rgba(3, 7, 12, 0.4);
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.9rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-status {
    font-size: 0.95rem;
    text-align: center;
    min-height: 24px;
    transition: var(--transition-smooth);
}

.form-status.success {
    color: var(--accent-cyan);
}

.form-status.error {
    color: var(--accent-amber);
}

/* Footer styling */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 0;
    background-color: var(--bg-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulseDot 2s infinite alternate;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.6));
    }
}

@keyframes pulseDot {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 4px var(--accent-cyan);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 12px var(--accent-cyan);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }
    
    .cv-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-nav);
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .ventures-grid {
        grid-template-columns: 1fr;
    }
}

/* Dutch Iris Purple Theme Accents */
.venture-card.theme-iris {
    border-color: rgba(93, 63, 211, 0.15);
}

.venture-card.theme-iris:hover {
    border-color: rgba(93, 63, 211, 0.45);
    box-shadow: 0 0 15px rgba(93, 63, 211, 0.2);
}

.venture-card.theme-iris .venture-icon-glow {
    color: var(--accent-iris);
    filter: drop-shadow(0 0 15px rgba(93, 63, 211, 0.6));
}

.venture-card.theme-iris .venture-tag {
    background: rgba(93, 63, 211, 0.12);
    border-color: rgba(93, 63, 211, 0.3);
    color: #a38cff;
}

.venture-card.theme-iris .venture-sub {
    color: #a38cff;
}

/* Teal/Cyan Theme Accents (for AI Hub) */
.venture-card.theme-teal .venture-tag,
.venture-card.theme-cyan .venture-tag {
    background: rgba(0, 242, 254, 0.12);
    border-color: rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
}
