/* ============================================
   Domain Expansion: Infinite Void — Portfolio
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --void-black: #000000;
    --void-deep: #030012;
    --cosmos-cyan: #00e5ff;
    --purple-accent: #7c4dff;
    --aesthetic-purple: #b794f4;
    --text-primary: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow: hidden;
    background-color: var(--void-black);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

body.scrollable {
    overflow-y: auto;
    overflow-x: hidden;
}

/* ============================================
   Film Grain Overlay
   ============================================ */
#grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    animation: grain-shift 0.3s steps(4) infinite;
}

@keyframes grain-shift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-2px, 2px);
    }

    50% {
        transform: translate(2px, -1px);
    }

    75% {
        transform: translate(-1px, -2px);
    }

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

/* ============================================
   Hand Gesture Splash
   ============================================ */
#gesture-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#gesture-splash.fade-out {
    opacity: 0;
    pointer-events: none;
}

#gesture-splash img {
    max-height: 50vh;
    max-width: 80vw;
    object-fit: contain;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.3));
}

.gesture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gesture-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 15px;
    color: var(--aesthetic-purple);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(183, 148, 244, 0.6);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInSlideUp 0.8s ease forwards 0.2s;
}

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

/* ============================================
   Intro Overlay — Video + Titles
   ============================================ */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1.5s ease;
}

#intro-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Fullscreen Video */
#intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark gradient overlay on top of video for text readability */
.intro-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%);
}

/* Title Group — horizontal row: kanji | title | enter */
.intro-title-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.intro-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: var(--cosmos-cyan);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1.2s ease 0.5s forwards;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.intro-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-top: 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--aesthetic-purple) 50%, var(--purple-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: titleReveal 1.8s ease 3.2s forwards;
    filter: drop-shadow(0 0 40px rgba(183, 148, 244, 0.4));
}

.intro-kanji {
    font-family: serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 0;
    opacity: 0;
    animation: fadeIn 2s ease 4s forwards;
    text-shadow: 0 0 20px rgba(183, 148, 244, 0.3);
}

/* Enter CTA Button */
.enter-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
    /* Delayed by 6s to appear after the intro sequence */
    animation: fadeSlideUp 1.5s ease 6s forwards;
    padding: 10px;
}

.enter-cta-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    /* Blue color as requested */
    color: #4da6ff;
    text-shadow: 0 0 15px rgba(77, 166, 255, 0.6);
    transition: all 0.3s ease;
}

.enter-cta-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4da6ff, transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(77, 166, 255, 0.5);
}

.enter-cta:hover .enter-cta-text {
    color: #80c1ff;
    text-shadow: 0 0 25px rgba(128, 193, 255, 0.8);
    transform: translateY(-2px);
}

.enter-cta:hover .enter-cta-line {
    width: 100%;
}

/* Cross Gesture Icon */
.cross-gesture {
    margin-top: 60px;
    opacity: 0;
    animation: fadeIn 1.5s ease 5s forwards;
    position: relative;
    z-index: 2;
}

.cross-gesture svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.cross-gesture-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 6px;
    color: var(--cosmos-cyan);
    text-transform: uppercase;
    margin-top: 12px;
    text-align: center;
    opacity: 0.6;
}

/* ─── Portfolio Navbar ──────────────────────── */
.portfolio-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 60px;
    background: rgba(3, 0, 18, 0.65);
    backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(183, 148, 244, 0.08);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    pointer-events: none;
}

.portfolio-navbar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.navbar-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff 40%, var(--aesthetic-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(183, 148, 244, 0.15));
    transition: filter 0.3s ease;
}

.navbar-logo span {
    background: linear-gradient(135deg, var(--aesthetic-purple), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo:hover {
    filter: drop-shadow(0 0 20px rgba(183, 148, 244, 0.35));
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(183, 148, 244, 0.55);
    padding: 8px 20px;
    border-radius: 24px;
    border: 1px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.navbar-link:hover {
    color: #ffffff;
    border-color: rgba(183, 148, 244, 0.25);
    background: rgba(183, 148, 244, 0.08);
    box-shadow: 0 0 20px rgba(183, 148, 244, 0.1), inset 0 0 20px rgba(183, 148, 244, 0.03);
    transform: translateY(-1px);
}

.navbar-link-icon {
    font-size: 0.9rem;
    transition: text-shadow 0.35s ease, transform 0.35s ease;
}

.navbar-link:hover .navbar-link-icon {
    text-shadow: 0 0 12px rgba(183, 148, 244, 0.8);
    transform: scale(1.15);
}

.navbar-divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(183, 148, 244, 0.2), transparent);
    margin: 0 4px;
}

/* ============================================
   Portfolio Content
   ============================================ */
#portfolio-content {
    position: relative;
    z-index: 8;
    min-height: 100vh;
    background: transparent;
    opacity: 0;
    transition: opacity 1.5s ease;
    display: none;
}

#portfolio-content.visible {
    display: block;
    opacity: 1;
}

/* ─── Landing Background Image ────────────── */
.landing-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('landing_bg.JPG') center center / contain no-repeat;
    pointer-events: none;
}

.landing-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.92) 100%),
        linear-gradient(180deg, rgba(0, 0, 20, 0.5) 0%, rgba(5, 0, 21, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
}

/* ─── Golden Kanji — Bright Horizontal Bottom Quote ── */
.golden-kanji-wrapper {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    z-index: 9;
    pointer-events: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.golden-kanji-star {
    font-size: 1.4rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.4);
    animation: kanjiStarPulse 3s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes kanjiStarPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.golden-kanji-bg {
    font-family: 'Noto Serif JP', 'Yu Mincho', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.25em;
    background: linear-gradient(135deg, #ffd700 0%, #f5c842 25%, #e8a317 50%, #ffd700 75%, #fff4b0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.85;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 50px rgba(255, 215, 0, 0.2));
    animation: goldenShimmer 4s ease-in-out infinite;
    line-height: 1.4;
    text-align: center;
}

@keyframes goldenFloat {

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

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

@keyframes goldenShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ─── Hero Section ──────────────────────────── */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
}

.hero-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--aesthetic-purple);
    border: 1px solid rgba(183, 148, 244, 0.3);
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 28px;
    background: rgba(183, 148, 244, 0.05);
    animation: fadeSlideUp 1s ease 0.2s both;
}

.hero-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 10px;
    background: linear-gradient(180deg, #ffffff 0%, var(--aesthetic-purple) 60%, var(--purple-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: titleReveal 1.2s ease 0.5s both;
    filter: drop-shadow(0 0 60px rgba(183, 148, 244, 0.25));
}

.hero-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(183, 148, 244, 0.7);
    margin-top: 16px;
    animation: fadeSlideUp 1s ease 0.8s both;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aesthetic-purple), transparent);
    margin: 28px auto;
    animation: fadeIn 1s ease 1s both;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(224, 224, 224, 0.65);
    max-width: 520px;
    animation: fadeSlideUp 1s ease 1.2s both;
}

.hero-social-links {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    animation: fadeSlideUp 1s ease 1.5s both;
}

.social-icon-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(183, 148, 244, 0.2);
    background: rgba(183, 148, 244, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(183, 148, 244, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-link:hover {
    background: rgba(183, 148, 244, 0.15);
    border-color: var(--aesthetic-purple);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 148, 244, 0.25);
}

.navbar-resume {
    border-color: rgba(183, 148, 244, 0.25);
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.12), rgba(183, 148, 244, 0.05));
}

.navbar-resume:hover {
    border-color: var(--aesthetic-purple);
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.3), rgba(183, 148, 244, 0.12));
    box-shadow: 0 0 25px rgba(183, 148, 244, 0.2), inset 0 0 20px rgba(183, 148, 244, 0.05);
}

/* ─── Section Shared Styles ─────────────────── */
.portfolio-section {
    padding: 100px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--aesthetic-purple);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff 30%, rgba(183, 148, 244, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Skills Section ────────────────────────── */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.skill-category {
    background: rgba(183, 148, 244, 0.03);
    border: 1px solid rgba(183, 148, 244, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-category:hover {
    border-color: rgba(183, 148, 244, 0.25);
    background: rgba(183, 148, 244, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(183, 148, 244, 0.08);
}

.skill-category-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.skill-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 8px 18px;
    border-radius: 20px;
    color: rgba(224, 224, 224, 0.8);
    border: 1px solid rgba(183, 148, 244, 0.15);
    background: rgba(183, 148, 244, 0.04);
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    border-color: rgba(183, 148, 244, 0.4);
    background: rgba(183, 148, 244, 0.1);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(183, 148, 244, 0.15);
}

.skill-tag.tag-ai {
    border-color: rgba(124, 77, 255, 0.25);
    background: rgba(124, 77, 255, 0.06);
    color: rgba(183, 148, 244, 0.9);
}

.skill-tag.tag-ai:hover {
    border-color: rgba(124, 77, 255, 0.5);
    background: rgba(124, 77, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(124, 77, 255, 0.2);
}

/* ─── Achievements Section ──────────────────── */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(183, 148, 244, 0.03);
    border: 1px solid rgba(183, 148, 244, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover {
    border-color: rgba(183, 148, 244, 0.25);
    background: rgba(183, 148, 244, 0.06);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(183, 148, 244, 0.05);
}

.achievement-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(183, 148, 244, 0.06);
    border: 1px solid rgba(183, 148, 244, 0.1);
}

.achievement-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.achievement-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.achievement-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aesthetic-purple);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(183, 148, 244, 0.3);
    background: rgba(183, 148, 244, 0.08);
    white-space: nowrap;
}

/* ─── Internships Section ──────────────────── */
.internships-timeline {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.internships-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(183, 148, 244, 0.2) 15%, rgba(183, 148, 244, 0.2) 85%, transparent);
}

.internship-card {
    position: relative;
    padding: 32px 32px 32px 72px;
    background: rgba(183, 148, 244, 0.03);
    border: 1px solid rgba(183, 148, 244, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.internship-card:hover {
    border-color: rgba(183, 148, 244, 0.25);
    background: rgba(183, 148, 244, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(183, 148, 244, 0.08);
}

.internship-accent {
    position: absolute;
    left: -1px;
    top: 24px;
    bottom: 24px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--aesthetic-purple), var(--purple-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.internship-card:hover .internship-accent {
    opacity: 1;
}

.internship-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.internship-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(183, 148, 244, 0.06);
    border: 1px solid rgba(183, 148, 244, 0.12);
    flex-shrink: 0;
    position: absolute;
    left: 5px;
    top: 32px;
}

.internship-meta {
    flex: 1;
    min-width: 150px;
}

.internship-role {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.internship-company {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aesthetic-purple);
    margin-top: 2px;
}

.internship-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.internship-duration {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(183, 148, 244, 0.6);
    text-transform: uppercase;
}

.internship-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(224, 224, 224, 0.4);
    letter-spacing: 1px;
}

.internship-summary {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(224, 224, 224, 0.6);
    margin-bottom: 16px;
}

.internship-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.internship-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(224, 224, 224, 0.7);
    padding-left: 18px;
    position: relative;
}

.internship-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aesthetic-purple);
    opacity: 0.5;
}

.internship-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.internship-tech-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 16px;
    color: rgba(183, 148, 244, 0.85);
    border: 1px solid rgba(124, 77, 255, 0.2);
    background: rgba(124, 77, 255, 0.06);
    transition: all 0.3s ease;
    cursor: default;
    letter-spacing: 0.5px;
}

.internship-tech-tag:hover {
    border-color: rgba(124, 77, 255, 0.45);
    background: rgba(124, 77, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.15);
}

/* ─── Contact Section ───────────────────────── */
.contact-section {
    padding: 100px 24px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(183, 148, 244, 0.7);
    text-decoration: none;
    padding: 14px 32px;
    border: 1px solid rgba(183, 148, 244, 0.15);
    border-radius: 30px;
    background: rgba(183, 148, 244, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover {
    color: #ffffff;
    border-color: var(--aesthetic-purple);
    background: rgba(183, 148, 244, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 148, 244, 0.2);
}

.footer-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: rgba(183, 148, 244, 0.3);
    margin-top: 60px;
    text-transform: uppercase;
}


/* ─── Blog CTA Section ──────────────────────── */
.blog-cta-section {
    padding: 60px 24px 100px;
}

.blog-cta-card {
    position: relative;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    background: rgba(183, 148, 244, 0.03);
    border: 1px solid rgba(183, 148, 244, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-cta-card:hover {
    border-color: rgba(183, 148, 244, 0.25);
    background: rgba(183, 148, 244, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(183, 148, 244, 0.08);
}

.blog-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: ctaGlowPulse 4s ease-in-out infinite;
}

@keyframes ctaGlowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

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

.blog-cta-icon {
    font-size: 2.5rem;
    color: var(--aesthetic-purple);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(183, 148, 244, 0.5);
}

.blog-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(180deg, #ffffff 0%, var(--aesthetic-purple) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.blog-cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(224, 224, 224, 0.5);
    margin-bottom: 32px;
}

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 30px;
    border: 1px solid var(--aesthetic-purple);
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.25), rgba(183, 148, 244, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-cta-button:hover {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.45), rgba(183, 148, 244, 0.25));
    box-shadow: 0 0 40px rgba(183, 148, 244, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .portfolio-navbar {
        padding: 0 16px;
        height: 52px;
    }

    .navbar-logo {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .navbar-link {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 6px 12px;
        gap: 5px;
    }

    .navbar-link-icon {
        font-size: 0.75rem;
    }

    .intro-title-group {
        flex-direction: column;
        gap: 24px;
    }

    .intro-kanji {
        writing-mode: horizontal-tb;
        letter-spacing: 16px;
    }

    .enter-cta {
        align-items: center;
    }

    .intro-subtitle {
        font-size: 0.75rem;
        letter-spacing: 6px;
    }

    .cross-gesture svg {
        width: 45px;
        height: 45px;
    }

    .hero-name {
        letter-spacing: 4px;
    }

    .hero-tagline {
        letter-spacing: 4px;
        font-size: 0.85rem;
    }

    .hero-badge {
        letter-spacing: 3px;
        font-size: 0.7rem;
    }

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

    .achievement-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .internships-timeline::before {
        display: none;
    }

    .internship-card {
        padding: 24px 20px 24px 60px;
    }

    .internship-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: 4px;
        top: 24px;
    }

    .internship-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .internship-details {
        align-items: flex-start;
        flex-direction: row;
        gap: 12px;
    }

    .achievement-card {
        padding: 20px;
        gap: 16px;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .contact-link {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .gesture-text {
        font-size: 1rem;
        letter-spacing: 8px;
    }

    .portfolio-section {
        padding: 60px 20px;
    }

    .hero-social-links {
        gap: 14px;
    }

    .social-icon-link {
        width: 42px;
        height: 42px;
    }
}