/* ===== FONT FACES ===== */
@font-face {
    font-family: 'Redaction';
    src: url('fonts/Redaction-mL8P5.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Redaction';
    src: url('fonts/RedactionBold-d9yOZ.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Redaction';
    src: url('fonts/RedactionItalic-lgB8w.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Redaction10';
    src: url('fonts/Redaction10-1GX2v.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Redaction10';
    src: url('fonts/Redaction10Bold-w1gB6.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Redaction10';
    src: url('fonts/Redaction10Italic-nRYrO.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Redaction20';
    src: url('fonts/Redaction20-YzPy2.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Redaction20';
    src: url('fonts/Redaction20Bold-2ODWX.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Redaction35';
    src: url('fonts/Redaction35-BWXjw.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Redaction35';
    src: url('fonts/Redaction35Bold-MV3LP.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Redaction50';
    src: url('fonts/Redaction50-8Mg4n.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Redaction70';
    src: url('fonts/Redaction70-RpXqE.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Redaction100';
    src: url('fonts/Redaction100-vmXR9.otf') format('opentype');
    font-weight: 400;
}

/* ===== CSS VARIABLES ===== */
:root {
    --bg-color: #ffffff;
    --hero-bg: #f3f3f3;
    --bg-white: #ffffff;
    --text-color: #000000;
    --text-muted: #666666;
    --text-light: #999999;
    --accent-blue: #0A84FF;
    --border-color: #eeeeee;
    --border-light: #f5f5f5;
    --card-bg: #ffffff;
    --section-bg: #f9f9f9;
    --nav-height: 80px;
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-secondary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --max-width: 1200px;
    --side-padding: 2.5rem;
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--font-secondary);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    max-width: 100vw;
    line-height: 1.7;
    cursor: default;
}

/* Remove custom cursor completely for this theme */
.custom-cursor {
    display: none !important;
}

a,
button,
input,
select,
textarea,
html,
body {
    cursor: auto !important;
}

/* ===== PAGE TRANSITIONS ===== */
.page-transition-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

main {
    width: 100%;
    will-change: transform;
}

.slide-out {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    animation: slideOutLeft 0.8s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    pointer-events: none;
}

.slide-in {
    position: relative;
    z-index: 20;
    animation: slideInRight 0.8s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    background: var(--bg-color);
}

@keyframes slideOutLeft {
    from { 
        transform: translateX(0); 
    }
    to { 
        transform: translateX(-100%); 
    }
}

@keyframes slideInRight {
    from { 
        transform: translateX(100%); 
    }
    to { 
        transform: translateX(0); 
    }
}

/* Hide content during fetch if needed */
.is-transitioning {
    pointer-events: none;
    cursor: wait;
}

body.is-transitioning {
    overflow: hidden !important;
}



/* ===== NEW NAVBAR (Pill Design) ===== */
.navbar-new {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
}

.navbar-pill-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 0.6rem 2.8rem;
    display: flex;
    gap: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-pill-container a {
    text-decoration: none;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Inner glow for glassmorphism */
.nav-links-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
}

.nav-links-pill a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links-pill a:hover {
    opacity: 0.7;
}

.my-realm-btn {
    background: linear-gradient(135deg, #FFB8FF 0%, #E0EBFF 25%, #FFEEFF 50%, #D1D1FF 75%, #B8B8FF 100%);
    background-size: 200% 200%;
    animation: meshGradient 20s infinite alternate linear;
    border-radius: 100px;
    padding: 1rem 2.8rem;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 
        0 10px 25px rgba(184, 184, 255, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.my-realm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(184, 184, 255, 0.3),
        0 6px 15px rgba(0, 0, 0, 0.08);
}

@keyframes meshGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* ===== DECORATIVE BLOBS ===== */
.hero-blobs {
    display: none;
}

.hero::before,
.hero::after {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('resources/cloud_hero_background.png') no-repeat center top;
    background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: 3;
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image-staircase {
    display: none;
}

.hero-text {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-main {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1rem;
    text-align: center;
    max-width: 900px;
}

.designs-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 100px;
    padding: 0.5rem 1.4rem;
    margin: 0 0.5rem;
    vertical-align: middle;
    height: clamp(2.5rem, 8vw, 4.5rem);
    width: auto;
    gap: 0.6rem;
}

.star-icon {
    color: #79C2FF;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    filter: drop-shadow(0 0 5px rgba(121, 194, 255, 0.4));
    line-height: 1;
}

.star-icon:nth-child(2) {
    font-size: clamp(1rem, 3vw, 1.6rem);
    transform: translateY(-5px);
}

.hero-sub {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 700px;
    line-height: 1.4;
    font-weight: 500;
}

.explore-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1.2rem;
    border: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.explore-btn:hover {
    transform: translateY(-3px);
    background: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.explore-btn:active {
    transform: translateY(1px);
    background: rgba(255, 255, 255, 0.4);
}

/* ===== ABOUT / PROCESS SECTION ===== */
.spotify-section {
    display: none;
}

.process-new {
    padding: 5rem var(--side-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.section-title-small {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-style: normal;
}

.process-grid {
    display: none;
}

.process-progress-bar {
    display: none;
}

/* ===== ABOUT ME SECTION ===== */
.about-section {
    padding: 4rem var(--side-padding);
    background: transparent;
    border-top: 1px solid var(--border-color);
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    border: none;
}

.about-list li::before {
    display: none;
}

.about-list a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
}

.about-list a:hover {
    text-decoration: underline;
}

.about-list strong {
    font-weight: 700;
    color: var(--text-color);
}

/* ===== PROJECTS SECTION ===== */
.projects-vertical {
    padding: 5rem var(--side-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.project-item-vertical {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    display: flex;
    flex-direction: row;
    height: auto;
    transition: box-shadow 0.3s ease;
}

.project-item-vertical:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.project-label-chip {
    position: relative;
    top: auto;
    left: auto;
    background: transparent;
    color: var(--text-color);
    padding: 2rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: none;
}

.project-label-chip.white,
.project-label-chip.dark {
    background: transparent;
    color: var(--text-color);
    border: none;
}

.project-image-full {
    width: 50%;
    min-height: 200px;
    max-height: none;
    overflow: hidden;
    flex-shrink: 0;
}

.project-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: none;
}

.project-item-vertical:hover .project-image-full img {
    transform: scale(1.03);
}

.see-more-container {
    margin-top: 2.5rem;
}

.see-more-btn {
    display: inline-block;
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    color: var(--text-color);
    padding: 0.85rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
    transition: all 0.15s ease;
    box-shadow: 0 1px 0 1px #b0b0b0, 0 4px 8px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.see-more-btn:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--text-color);
    box-shadow: 0 1px 0 1px #b0b0b0, 0 5px 12px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,1);
    transform: translateY(-1px);
}

.see-more-btn:active {
    background: linear-gradient(180deg, #e0e0e0 0%, #d5d5d5 100%);
    box-shadow: 0 0px 0 1px #b0b0b0, 0 1px 2px rgba(0,0,0,0.06), inset 0 1px 2px rgba(0,0,0,0.08);
    transform: translateY(1px);
}


/* ===== FOOTER ===== */
.footer {
    padding: 5rem var(--side-padding);
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer-left {
    flex: 1;
    position: relative;
    z-index: 2;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.footer-title h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text-color);
}

.footer-emote {
    width: 32px;
    height: 32px;
    margin-top: -5px;
}

.footer-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
}

.email-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.email-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.connect-btn {
    padding: 0.55rem 1.2rem;
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    border: 1px solid #c8c8c8;
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 7px;
    box-shadow: 0 1px 0 1px #b0b0b0, 0 3px 6px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.connect-btn:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--text-color);
    box-shadow: 0 1px 0 1px #b0b0b0, 0 4px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,1);
    transform: translateY(-1px);
}

.connect-btn:active {
    background: linear-gradient(180deg, #e0e0e0 0%, #d5d5d5 100%);
    box-shadow: 0 0px 0 1px #b0b0b0, 0 1px 2px rgba(0,0,0,0.06), inset 0 1px 2px rgba(0,0,0,0.08);
    transform: translateY(1px);
}

.socials h4 {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.socials ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.socials li {
    margin-bottom: 0;
}

.chip,
.chip.orange,
.chip.dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.4rem 0.85rem;
    border: 1px solid #c8c8c8;
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
    border-radius: 6px;
    -webkit-text-stroke: 0;
    text-shadow: none;
    border-image: none;
    box-shadow: 0 1px 0 1px #b0b0b0, 0 2px 4px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}

.chip:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--text-color);
    border-color: #c0c0c0;
    transform: translateY(-1px);
    filter: none;
    box-shadow: 0 1px 0 1px #b0b0b0, 0 4px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,1);
}

.chip:active {
    background: linear-gradient(180deg, #e0e0e0 0%, #d5d5d5 100%);
    box-shadow: 0 0px 0 1px #b0b0b0, 0 1px 2px rgba(0,0,0,0.06), inset 0 1px 2px rgba(0,0,0,0.08);
    transform: translateY(1px);
}

.chip .arrow {
    font-size: 11px;
    color: inherit;
    -webkit-text-stroke: 0px transparent;
}

.footer-right {
    display: none;
}

/* ===== PAGE HERO (projects, contact pages) ===== */
.page-hero {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 120px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-bg-grid {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.page-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--accent-pink);
    font-style: normal;
}

.page-subtitle {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 1;
}

.page-emote {
    display: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 3rem var(--side-padding);
    background: transparent;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.contact-info {
    margin-bottom: 2.5rem;
    border: none;
    background: transparent;
    padding: 0;
}

.legendary-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.3;
}

.info-row {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-weight: 400;
}

.info-row .highlight {
    color: var(--accent-pink);
    font-weight: 600;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: var(--card-bg);
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-pink);
}

.form-group textarea {
    resize: none;
}

.contact-submit-btn {
    margin-top: 8px;
    padding: 14px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #fff;
    border: 1px solid #333;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    letter-spacing: 0.05em;
    border-radius: 8px;
    box-shadow: 0 1px 0 1px #000, 0 4px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.contact-submit-btn:hover {
    background: linear-gradient(180deg, #3a3a3a 0%, #252525 100%);
    color: #fff;
    box-shadow: 0 1px 0 1px #000, 0 5px 12px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

.contact-submit-btn:active {
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    box-shadow: 0 0px 0 1px #000, 0 1px 2px rgba(0,0,0,0.15), inset 0 1px 2px rgba(0,0,0,0.3);
    transform: translateY(1px);
}

/* ===== CUSTOM FORM VALIDATION ===== */
.custom-alert {
    position: absolute;
    top: calc(100% + 6px);
    left: 8px;
    background: var(--accent-pink);
    color: #fff;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 0.8rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: alertPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 100;
    pointer-events: none;
    border: none;
    box-shadow: 0 4px 12px rgba(214, 19, 91, 0.3);
}

.custom-alert::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 12px;
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent var(--accent-pink) transparent;
}

.custom-alert::after {
    display: none;
}

.alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #fff;
    color: var(--accent-pink);
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.7rem;
}

.invalid-input {
    outline: 2px solid var(--accent-pink) !important;
    outline-offset: -2px;
}

@keyframes alertPopIn {
    0% { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ===== CREATIONS / PROJECTS PAGE ===== */
.creation-grid {
    padding: 3rem var(--side-padding);
    background: transparent;
}

.creation-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.creation-item {
    display: flex;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    aspect-ratio: auto;
    transition: box-shadow 0.3s ease;
}

.creation-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.creation-text {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.creation-text h2 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.creation-text p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}

.creation-tags {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.creation-image {
    flex: 1;
    border-left: 1px solid var(--border-color);
    background: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.creation-item.reverse .creation-text {
    border-left: 1px solid var(--border-color);
}

.creation-item.reverse .creation-image {
    border-left: none;
}

.creation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
}

/* ===== PROJECT DETAIL PAGES ===== */
.project-detail-main {
    padding-top: 140px;
    background: transparent;
}

.project-detail-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 3rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--side-padding);
}

.project-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--accent-pink);
    font-style: normal;
}

.visit-site-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.visit-site-wrapper:hover {
    color: var(--accent-pink);
}

.visit-site-wrapper svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.project-banner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    padding: 0 var(--side-padding);
    border: none;
    background: transparent;
}

.project-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border-color);
}

.project-description-container {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    padding: 0 var(--side-padding);
    border: none;
    background: transparent;
}

.project-description {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.project-description strong {
    color: var(--text-color);
    font-weight: 600;
}

.project-screenshots-section {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    padding: 0 var(--side-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    background: transparent;
}

.project-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    margin-bottom: 2rem;
}

.project-screenshots-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.project-detail-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
}

.detail-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.85rem;
    border: 1px solid #c8c8c8;
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    -webkit-text-stroke: 0;
    text-shadow: none;
    border-image: none;
    border-radius: 6px;
    box-shadow: 0 1px 0 1px #b0b0b0, 0 2px 4px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.15s ease;
}

/* ===== CASE STUDY ===== */
.cs-container {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    padding: 0 var(--side-padding);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: left;
    border: none;
    background: transparent;
}

.cs-section {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
}

.cs-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: none;
    color: var(--text-color);
    letter-spacing: 0;
    position: sticky;
    top: 90px;
}

.cs-content {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.cs-content p {
    margin-bottom: 1rem;
}

.cs-content strong {
    color: var(--text-color);
    font-weight: 600;
}

.cs-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.cs-meta div {
    display: flex;
    flex-direction: column;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

.cs-meta div strong {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-pink);
    margin-bottom: 4px;
}

.cs-full-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 0;
    display: block;
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.cs-grid-image {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 1.5rem;
}

.cs-grid-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: transform 0.3s ease;
}

.cs-grid-image img:hover {
    transform: translateY(-3px);
}

.cs-divider {
    height: 1px;
    background-color: var(--border-color);
    width: 100%;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cs-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cs-title {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --side-padding: 1.25rem;
    }

    .navbar {
        top: 0.6rem;
        padding: 5px 5px;
        border-radius: 12px;
    }

    .navbar-new {
        top: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .navbar-pill-container {
        width: 100%;
        gap: 0.5rem;
        justify-content: center;
    }

    .nav-links-pill {
        padding: 0.6rem 1.2rem;
        gap: 1rem;
        flex: 1;
        justify-content: space-around;
        border-radius: 100px;
    }

    .nav-links-pill a {
        font-size: 0.85rem;
    }

    .my-realm-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        display: none; /* Hide button on small mobile to save space, or keep it if requested */
    }

    /* Show button on tablets, hide on small mobile */
    @media (min-width: 480px) {
        .my-realm-btn {
            display: block;
        }
        .nav-links-pill {
            flex: initial;
        }
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero::before {
        width: 200px;
        height: 300px;
        top: -60px;
        left: -80px;
    }

    .hero::after {
        width: 220px;
        height: 300px;
        top: 40px;
        right: -90px;
    }

    .hero-title-main {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .project-item-vertical {
        flex-direction: column;
    }

    .project-image-full {
        width: 100%;
        min-height: 180px;
    }

    .project-label-chip {
        padding: 1.2rem;
        font-size: 1.2rem;
    }

    .page-hero {
        margin-top: 90px;
    }

    .creation-item,
    .creation-item.reverse {
        flex-direction: column-reverse;
    }

    .creation-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-left: none;
        border-bottom: 1px solid var(--border-color);
    }

    .creation-item.reverse .creation-text {
        border-left: none;
    }

    .creation-item.reverse .creation-image {
        border-bottom: 1px solid var(--border-color);
    }

    .footer {
        flex-direction: column;
        padding: 3rem var(--side-padding);
    }

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

    .project-detail-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

@media (max-width: 480px) {
    .navbar-new {
        top: 0.8rem;
    }

    .nav-links-pill {
        padding: 0.5rem 1rem;
        gap: 0.8rem;
    }

    .nav-links-pill a {
        font-size: 0.75rem;
    }

    .hero-title-main {
        font-size: clamp(2.2rem, 14vw, 3.5rem);
    }

    .project-screenshots-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MAIN WRAPPER ===== */
main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border: none;
    position: relative;
}

main > section,
main > footer {
    padding-left: 0;
    padding-right: 0;
    border-top: none;
}

/* ==========================================================================
   UNIFIED PROJECT DETAIL PAGE LAYOUT (Creative & Aligned)
   ========================================================================== */

.project-detail-main {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 32px 32px; /* Subtle creative grid */
    min-height: 100vh;
    animation: fadeInPage 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modernized Project Hero Section */
.project-detail-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

/* Soft Decorative Blob for Hero */
.project-detail-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(214, 19, 91, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.project-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(4.5rem, 14vw, 9rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: var(--accent-pink);
    margin-bottom: 2.5rem;
    font-style: normal;
    font-weight: 400;
}

/* Floating Project info Card */
.project-summary-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    width: 100%;
    margin-bottom: 4rem;
}

.project-summary-left {
    flex: 2;
}

.project-summary-right {
    flex: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.visit-site-wrapper {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    color: var(--text-color);
    padding: 0.9rem 2.2rem;
    border-radius: 14px;
    border: 1px solid #c8c8c8;
    box-shadow: 0 1px 0 1px #b0b0b0, 0 12px 32px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.visit-site-wrapper:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
    box-shadow: 0 1px 0 1px #b0b0b0, 0 16px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,1);
}

.visit-site-wrapper:active {
    transform: translateY(1px);
    box-shadow: 0 0px 0 1px #b0b0b0, 0 2px 4px rgba(0,0,0,0.06), inset 0 1px 2px rgba(0,0,0,0.08);
}

.project-description {
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.project-description strong {
    color: var(--text-color);
    font-weight: 700;
    background: linear-gradient(120deg, rgba(214, 19, 91, 0.1) 0%, rgba(214, 19, 91, 0.1) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 95%;
}

/* Big Cinematic Banner */
.project-banner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto 6rem;
    padding: 0 var(--side-padding);
}

.project-banner img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    border: none;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-banner:hover img {
    transform: scale(1.01);
}

/* Premium Screenshots Gallery */
.project-screenshots-section {
    max-width: var(--max-width);
    margin: 0 auto 8rem;
    padding: 0 var(--side-padding);
}

.project-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.project-screenshots-grid img {
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.project-screenshots-grid img:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.project-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 4rem;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Custom Tag style */
.detail-tag {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    color: var(--text-muted);
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-tag:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: translateY(-3px) scale(1.05);
    background: #fff;
}

/* Adjustments for Mobile */
@media (max-width: 768px) {
    .project-detail-hero { padding-top: 8rem; }
    .project-summary-box { flex-direction: column; gap: 2.5rem; align-items: flex-start; }
    .project-summary-right { align-items: flex-start; }
    .project-screenshots-grid { grid-template-columns: 1fr; gap: 2rem;}
    .project-banner img { border-radius: 20px; }
    .project-detail-title { font-size: 3.5rem; }
}

/* ========================================================================== 
   HOME HERO REFERENCE MATCH (Index only)
   ========================================================================== */
body.home-hero-page {
    background: #ffffff;
}

/* ===== MINIMAL NAV (Reference Match) ===== */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-family: var(--font-secondary);
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* ===== MODERN HERO (Reference Match) ===== */
.hero-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #f0f0f0; /* Softer grey like the reference */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    padding-top: 80px;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    pointer-events: none;
    white-space: normal;
}

.bg-name {
    font-family: var(--font-secondary);
    font-size: 14vw;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #000;
    mix-blend-mode: normal;
    line-height: 0.9;
    display: inline-block;
}

.hero-image-wrap {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.1) brightness(1);
    transform-origin: center bottom;
}

.hero-sidebar-left {
    position: absolute;
    bottom: 3.5rem;
    left: 4rem;
    z-index: 10;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0.6; /* Start with soft opacity */
}

.social-links-vertical a {
    color: #000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links-vertical a:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.hero-footer-right {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
    text-align: left;
}

.role-display {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.role-line {
    font-family: var(--font-secondary);
    font-size: 3.5rem; /* Large role text */
    font-weight: 500;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .bg-name { font-size: 14vw; }
    .role-line { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-minimal { padding: 1.5rem; }
    .nav-links { gap: 1.5rem; }
    .bg-name { font-size: 14vw; }
    .role-line { font-size: 2rem; }
    .hero-img { height: 70vh; }
    .hero-bg-text { transform: translate(-50%, -40%); }
}

@media (max-width: 480px) {
    .nav-links { display: none; } /* Hide links on very small mobile or use a hamburger */
    .bg-name { font-size: 18vw; white-space: normal; width: 100%; }
    .hero-img { height: 60vh; }
    .role-line { font-size: 1.5rem; }
    .hero-footer-right { bottom: 2rem; right: 1.5rem; }
    .hero-sidebar-left { bottom: 2rem; left: 1.5rem; }
}

body.home-hero-page .explore-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #2e3339 0%, #0c1015 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 25px rgba(0, 0, 0, 0.3);
}

body.home-hero-page .explore-btn:active {
    transform: translateY(0);
}

body.home-hero-page .citizen-card-section {
    width: 100%;
    margin-top: -0.75rem;
    padding: 0 var(--side-padding) 3.5rem;
}

body.home-hero-page .citizen-card-wrap {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    overflow: hidden;
    transform-origin: center top;
}

body.home-hero-page .citizen-card-image {
    width: 100%;
    display: block;
    height: auto;
}

[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(46px) scale(0.98);
    transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-scroll-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    /* Unified Mobile Navbar Styles */
    .navbar-new {
        top: 1rem;
        width: 100%;
        padding: 0 0.8rem;
    }

    .navbar-pill-container {
        width: 100%;
        gap: 0.4rem;
    }

    .nav-links-pill {
        flex: 1;
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
        justify-content: space-around;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 100px;
    }

    .nav-links-pill a {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }

    .my-realm-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        border-radius: 100px;
    }

    body.home-hero-page .hero {
        min-height: auto;
        padding-top: 8.7rem;
        padding-bottom: 4rem;
        background-position: center top;
    }

    body.home-hero-page .citizen-card-section {
        margin-top: 0;
        padding: 0 var(--side-padding) 2.4rem;
    }

    body.home-hero-page .citizen-card-wrap {
        border-radius: 16px;
        box-shadow: 0 14px 30px rgba(9, 15, 26, 0.16);
    }

    body.home-hero-page .hero::before,
    body.home-hero-page .hero::after {
        display: none;
    }

    .hero-blob {
        width: 20rem;
    }

    .left-blob {
        top: 2rem;
        left: -8rem;
    }

    .right-blob {
        bottom: -4rem;
        right: -8rem;
    }

    body.home-hero-page .hero-title-main {
        font-size: clamp(1.9rem, 8.2vw, 3rem);
        line-height: 1.06;
    }

    body.home-hero-page .hero-line-1 {
        white-space: normal;
    }

    body.home-hero-page .hero-sub {
        font-size: clamp(0.84rem, 2.5vw, 1.05rem);
        line-height: 1.3;
        margin-bottom: 1.8rem;
    }

    body.home-hero-page .explore-btn {
        font-size: clamp(0.95rem, 3.6vw, 1.2rem);
        padding: 0.65rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-blob {
        width: 14rem;
    }

    .left-blob {
        top: 1rem;
        left: -5rem;
    }

    .right-blob {
        bottom: -2rem;
        right: -5rem;
    }

    body.home-hero-page .hero::before,
    body.home-hero-page .hero::after {
        display: none;
    }

    body.home-hero-page .hero-chip-img {
        width: clamp(2.7rem, 12vw, 3.3rem);
    }

    [data-scroll-reveal] {
        transform: translateY(28px) scale(0.99);
    }
}