:root {
    --color-background: #000000;
    --color-surface: #080A10;
    --color-bg-alt: #05070d;
    --color-primary: #38bdf8;
    --color-primary-soft: rgba(125, 211, 252, 0.18);
    --color-secondary: #f472b6;
    --color-secondary-soft: rgba(240, 171, 252, 0.16);
    --color-ink: #f8fafc;
    --color-muted: #aeb8c7;
    --color-white: #ffffff;

    --font-heading: "Shippori Mincho", serif;
    --font-body: "Zen Kaku Gothic New", sans-serif;

    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 34px;
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    --transition: 0.28s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background:
        radial-gradient(circle at 18% 14%, rgba(243, 156, 188, 0.17), transparent 46%),
        radial-gradient(circle at 86% 10%, rgba(158, 200, 246, 0.2), transparent 42%),
        var(--color-background);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: min(1100px, calc(100% - 2.2rem));
    margin: 0 auto;
}

.section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.bg-secondary {
    background: linear-gradient(170deg, rgba(236, 244, 255, 0.88), rgba(255, 247, 241, 0.9));
}

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

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 251, 247, 0.88);
    border-bottom: 1px solid rgba(88, 108, 133, 0.12);
}

.nav-container {
    width: min(1140px, calc(100% - 2.2rem));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 78px;
    gap: 1rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: #2d4155;
}

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

.nav-link {
    font-size: 0.96rem;
    letter-spacing: 0.01em;
    color: var(--color-muted);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(88, 108, 133, 0.18);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.7);
}

.bar {
    width: 22px;
    height: 2px;
    background: #2d4155;
    transition: var(--transition);
}

.hero {
    position: relative;
    padding: 8.4rem 0 4.8rem;
    min-height: 94vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr minmax(420px, 560px);
    align-items: center;
    gap: 2rem;
}

.hero-copy {
    text-align: left;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.8vw, 3.7rem);
    font-weight: 600;
    line-height: 1.15;
    color: #32475b;
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    border-radius: 999px;
    padding: 0.82rem 1.35rem;
    font-weight: 600;
    font-size: 0.97rem;
    border: 0;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.btn-primary {
    background: linear-gradient(120deg, var(--color-primary), #ef85ad);
    color: #fff;
    box-shadow: 0 10px 20px rgba(243, 156, 188, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(243, 156, 188, 0.38);
}

.btn-secondary {
    border: 1px solid rgba(88, 108, 133, 0.24);
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-ink);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.hero-portrait-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.hero-portrait-frame {
    width: min(92vw, 620px);
}

.section-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.portrait-shell {
    position: relative;
    min-height: 500px;
    height: clamp(500px, 72vh, 700px);
    border-radius: 38% 62% 43% 57% / 33% 40% 60% 67%;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 68px rgba(88, 108, 133, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.portrait-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34, 49, 64, 0.01), rgba(34, 49, 64, 0.18));
    pointer-events: none;
}

.portrait-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
}

.hero-bg-orb-one {
    width: 320px;
    height: 320px;
    top: 110px;
    left: -60px;
    background: radial-gradient(circle, rgba(243, 156, 188, 0.38), rgba(243, 156, 188, 0));
    animation: floatY 8s ease-in-out infinite;
}

.hero-bg-orb-two {
    width: 360px;
    height: 360px;
    right: -100px;
    bottom: 30px;
    background: radial-gradient(circle, rgba(158, 200, 246, 0.36), rgba(158, 200, 246, 0));
    animation: floatY 10s ease-in-out infinite reverse;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-container {
    max-width: 860px;
}

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

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    line-height: 1.2;
    margin-bottom: 1.3rem;
    color: #2f455c;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);
    width: 72px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.section-subtext {
    color: var(--color-muted);
    margin-top: 1.1rem;
    font-size: 1.05rem;
}

.cards-grid {
    margin-top: 2.6rem;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.25rem;
    border: 1px solid rgba(88, 108, 133, 0.14);
    box-shadow: 0 10px 24px rgba(88, 108, 133, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(88, 108, 133, 0.13);
    border-color: rgba(243, 156, 188, 0.35);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 0.9rem;
    background: linear-gradient(135deg, rgba(243, 156, 188, 0.18), rgba(158, 200, 246, 0.2));
    color: #38506a;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    margin-bottom: 0.65rem;
    color: #30475d;
    text-align: center;
}

.card-text {
    color: var(--color-muted);
    font-size: 0.95rem;
    text-align: center;
}

.cta-row {
    margin-top: 2rem;
}

.articles-section {
    background: linear-gradient(180deg, rgba(236, 244, 255, 0.65), rgba(255, 250, 245, 0.95));
}

.section-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #687f95;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.profile-link {
    color: #3e5976;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    font-weight: 600;
}

.profile-link:hover {
    color: #2a4159;
}

.carousel-hint {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.articles-shell {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.articles-feed-frame {
    flex: 1;
    overflow: hidden;
}

.articles-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    overscroll-behavior-x: contain;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.1rem 0.1rem 0.5rem;
    scroll-behavior: smooth;
}

.articles-grid::-webkit-scrollbar {
    display: none;
}

.article-card {
    flex: 0 0 calc((100% - 2rem) / 3.2);
    min-width: 0;
    scroll-snap-align: center;
    border-radius: 22px;
    padding: 0.85rem;
    background: #fff;
    border: 1px solid rgba(88, 108, 133, 0.15);
    box-shadow: 0 14px 30px rgba(88, 108, 133, 0.11);
    display: grid;
    gap: 0.75rem;
}

.article-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 4.1;
    background: linear-gradient(130deg, rgba(243, 156, 188, 0.2), rgba(158, 200, 246, 0.25));
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    display: grid;
    gap: 0.72rem;
}

.article-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #5c738a;
}

.article-preview {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.48;
    color: #30475d;
}

.article-link {
    font-weight: 600;
    color: #3f5f7f;
}

.article-link:hover {
    color: #2a435c;
}

.article-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    color: #fff;
    background: linear-gradient(140deg, #3f5f7f, #56799c);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.6rem;
    transition: transform var(--transition), opacity var(--transition);
}

.article-nav:hover:not(:disabled) {
    transform: translateY(-1px);
}

.article-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.skeleton {
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    to { transform: translateX(100%); }
}

.contact-box {
    max-width: 640px;
    margin: 0 auto;
}

.contact-methods {
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.82rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(88, 108, 133, 0.22);
    background: rgba(255, 255, 255, 0.85);
    color: #35516f;
    font-weight: 600;
}

.contact-link:hover {
    background: #ffffff;
}

.footer {
    padding: 4.2rem 0 2rem;
    background: linear-gradient(160deg, #34495f, #253341);
    color: #f2f7ff;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(242, 247, 255, 0.84);
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(242, 247, 255, 0.28);
}

.footer-bottom {
    border-top: 1px solid rgba(242, 247, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(242, 247, 255, 0.82);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-version {
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-card {
        flex-basis: calc((100% - 1rem) / 2.2);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        inset: 78px 0 auto 0;
        background: rgba(255, 252, 248, 0.97);
        flex-direction: column;
        padding: 1.4rem;
        gap: 0.2rem;
        transform: translateY(-120%);
        transition: transform var(--transition);
        border-bottom: 1px solid rgba(88, 108, 133, 0.15);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.8rem 0;
        text-align: center;
    }

    .hamburger {
        display: inline-flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: 7.4rem;
    }

    .hero-actions {
        gap: 0.65rem;
    }

    .btn {
        min-width: min(330px, 100%);
        width: 100%;
    }

    .portrait-shell {
        min-height: 500px;
        height: 560px;
    }

    .article-card {
        flex-basis: 84%;
        min-width: 84%;
    }

    .article-nav {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .portrait-shell {
        min-height: 480px;
        height: 500px;
    }

    .article-nav {
        display: none;
    }

    .articles-grid {
        padding: 0 0.6rem 0.45rem;
    }

    .article-card {
        flex-basis: 86%;
        min-width: 86%;
    }

    .carousel-hint {
        font-weight: 700;
    }

    .carousel-hint::after {
        content: " ->";
    }
}


/* v.0.0.7 black liquid glass visual layer */
:root {
    --glass-bg: rgba(15, 23, 42, 0.54);
    --glass-bg-strong: rgba(8, 13, 24, 0.76);
    --glass-border: rgba(255, 255, 255, 0.16);
    --glass-highlight: rgba(255, 255, 255, 0.28);
}

body {
    background:
        radial-gradient(circle at 16% 10%, rgba(125, 211, 252, 0.16), transparent 42%),
        radial-gradient(circle at 86% 12%, rgba(240, 171, 252, 0.13), transparent 42%),
        radial-gradient(circle at 52% 82%, rgba(14, 165, 233, 0.1), transparent 48%),
        var(--color-background);
}

.navbar {
    background: rgba(5, 7, 13, 0.72);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px) saturate(150%);
}

.nav-logo,
.hero-title,
.section-heading,
.card-title {
    color: #f8fafc;
}

.nav-link:hover,
.profile-link:hover,
.article-link:hover {
    color: var(--color-secondary);
}

.hamburger,
.btn-secondary,
.card,
.article-card,
.contact-link,
.section-image {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px) saturate(145%);
}

.bar {
    background: #f8fafc;
}

.bg-secondary,
.articles-section {
    background: linear-gradient(170deg, rgba(15, 23, 42, 0.76), rgba(5, 7, 13, 0.96));
}

.hero-title {
    text-shadow: 0 20px 70px rgba(125, 211, 252, 0.16);
}

.btn-primary {
    background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
    color: #04111f;
    box-shadow: 0 16px 34px rgba(125, 211, 252, 0.2), 0 0 24px rgba(240, 171, 252, 0.16);
}

.btn-primary:hover {
    box-shadow: 0 20px 42px rgba(125, 211, 252, 0.28), 0 0 32px rgba(240, 171, 252, 0.2);
}

.btn-secondary:hover,
.contact-link:hover {
    background: rgba(255, 255, 255, 0.14);
}

.portrait-shell {
    border: 10px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--glass-highlight);
}

.portrait-shell::before {
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.02), rgba(5, 7, 13, 0.22));
}

.hero-bg-orb-one {
    background: radial-gradient(circle, rgba(125, 211, 252, 0.26), rgba(125, 211, 252, 0));
}

.hero-bg-orb-two {
    background: radial-gradient(circle, rgba(240, 171, 252, 0.22), rgba(240, 171, 252, 0));
}

.card:hover {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 28px rgba(125, 211, 252, 0.14);
    border-color: rgba(125, 211, 252, 0.38);
}

.card-icon,
.article-image {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(240, 171, 252, 0.18));
    color: #e0f2fe;
}

.eyebrow,
.article-tag {
    color: #93c5fd;
}

.profile-link,
.article-link,
.contact-link {
    color: #bae6fd;
}

.article-preview {
    color: #edf6ff;
}

.article-nav {
    background: linear-gradient(140deg, rgba(125, 211, 252, 0.9), rgba(240, 171, 252, 0.86));
    color: #04111f;
}

.footer {
    background: linear-gradient(160deg, #020617, #070b14);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .nav-menu {
        background: rgba(5, 7, 13, 0.94);
        border-bottom: 1px solid var(--glass-border);
        backdrop-filter: blur(18px) saturate(150%);
    }
}

/* v.0.0.7 ultra black modern UX layer */
body {
    background:
        radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.18), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(244, 114, 182, 0.13), transparent 38%),
        linear-gradient(180deg, #000 0%, #030408 42%, #000 100%);
}

.navbar,
.card,
.article-card,
.contact-link,
.section-image,
.btn-secondary {
    background: linear-gradient(145deg, rgba(12, 14, 22, 0.86), rgba(255, 255, 255, 0.035));
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-title,
.section-heading {
    letter-spacing: -0.035em;
}

.btn-primary {
    background: linear-gradient(120deg, #38bdf8, #f472b6);
    color: #020617;
}

body.theme-light {
    background:
        radial-gradient(circle at 14% 10%, rgba(56, 189, 248, 0.14), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(244, 114, 182, 0.12), transparent 38%),
        linear-gradient(180deg, #fbf8f3 0%, #f6f1e9 42%, #ffffff 100%);
    color: #243447;
}

body.theme-light .navbar {
    background: rgba(255, 252, 248, 0.76);
    border-bottom: 1px solid rgba(120, 131, 150, 0.16);
    box-shadow: 0 18px 50px rgba(88, 108, 133, 0.09);
}

body.theme-light .bg-secondary,
body.theme-light .articles-section {
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 233, 0.98));
}

body.theme-light .nav-logo,
body.theme-light .hero-title,
body.theme-light .section-heading,
body.theme-light .card-title,
body.theme-light .footer-heading {
    color: #263445;
}

body.theme-light .nav-link,
body.theme-light .section-subtext,
body.theme-light .card-text,
body.theme-light .article-preview,
body.theme-light .footer-text,
body.theme-light .carousel-hint,
body.theme-light .article-tag,
body.theme-light .eyebrow {
    color: #5c6c7d;
}

body.theme-light .btn-secondary,
body.theme-light .card,
body.theme-light .article-card,
body.theme-light .contact-link,
body.theme-light .section-image {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(120, 131, 150, 0.16);
    box-shadow: 0 22px 52px rgba(88, 108, 133, 0.12);
}

body.theme-light .btn-secondary {
    color: #0f172a !important;
    border-color: rgba(15, 23, 42, 0.16);
}

body.theme-light .card-icon,
body.theme-light .article-image {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(244, 114, 182, 0.16));
    color: #35516f;
}

body.theme-light .btn-primary {
    background: linear-gradient(120deg, #0f172a, #334155);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

body.theme-light .btn-secondary:hover,
body.theme-light .contact-link:hover {
    background: rgba(255, 255, 255, 0.96);
}

body.theme-light .contact-link {
    color: #1d4f73 !important;
    border-color: rgba(29, 79, 115, 0.16);
}

body.theme-light .contact-link span,
body.theme-light .contact-link i {
    color: inherit !important;
}

body.theme-light .hero-actions .btn-secondary {
    color: #0f172a !important;
    background: rgba(255, 255, 255, 0.94);
}

body.theme-light .hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
}

body.theme-light .hero-bg-orb-one {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22), rgba(56, 189, 248, 0));
}

body.theme-light .hero-bg-orb-two {
    background: radial-gradient(circle, rgba(244, 114, 182, 0.18), rgba(244, 114, 182, 0));
}

body.theme-light .portrait-shell {
    border: 10px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 30px 68px rgba(88, 108, 133, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.72);
}

body.theme-light .portrait-shell::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(34, 49, 64, 0.08));
}

body.theme-light .footer {
    background: linear-gradient(160deg, #f8fafc, #ece7de);
    color: #243447;
}

body.theme-light .footer-bottom {
    border-top: 1px solid rgba(120, 131, 150, 0.18);
    color: rgba(36, 52, 71, 0.78);
}

body.theme-light .social-links a {
    border-color: rgba(120, 131, 150, 0.22);
}

@media (max-width: 768px) {
    body.theme-light .nav-menu {
        background: rgba(255, 252, 248, 0.96);
        border-bottom: 1px solid rgba(120, 131, 150, 0.16);
        backdrop-filter: blur(18px) saturate(150%);
    }
}

