/* =============================================================
styles.css
Author: K1ngw1ng
Description: Stylesheet for kingstoncaz.com. 
Version: 1.0
Last Updated: April 6, 2026
"Let me be a dreamer...Let me Float, I can see the whole world...From my own little cloud, Up by the Milky way..." - Laufey
============================================================= */

/*  Variables  */
:root {
    --base:    #1e1e2e;
    --mantle:  #181825;
    --crust:   #11111b;
    --surface0: #313244;
    --surface1: #45475a;
    --surface2: #585b70;
    --overlay0: #6c7086;

    --text:     #cdd6f4;
    --subtext1: #bac2de;
    --subtext0: #a6adc8;

    --rosewater: #f5e0dc;
    --flamingo:  #f2cdcd;
    --pink:      #f5c2e7;
    --mauve:     #cba6f7;
    --red:       #f38ba8;
    --maroon:    #eba0ac;
    --peach:     #fab387;
    --yellow:    #f9e2af;
    --green:     #a6e3a1;
    --teal:      #94e2d5;
    --sky:       #89dceb;
    --sapphire:  #74c7ec;
    --blue:      #89b4fa;
    --lavender:  #b4befe;

    /* Special Colors */
    --kingwing-mauve: #8b71b4;

    /* Accent colors and gradients */

    --accent:  var(--mauve);
    --accent2: var(--blue);
    --primary-gradient: linear-gradient(135deg, var(--mauve) 0%, var(--blue) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--blue) 0%, var(--sapphire) 100%);

    --font-display: 'IBM Plex Serif', serif;
    --font-body:    'IBM Plex Serif', serif;
    --font-italic:  'IBM Plex Serif', serif;
    --font-mono:    'IBM Plex Mono', monospace;

    --container: 1400px;
    --pad: 4rem;
}

/*  Reset  */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--base);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

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

/*  Grain overlay  */
.grain-overlay {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9999; opacity: 0.07;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
    animation: grain 8s steps(10) infinite;
}
@keyframes grain {
    0%,100% { transform:translate(0,0) }
    10%  { transform:translate(-5%,-10%) }
    20%  { transform:translate(-15%,5%) }
    30%  { transform:translate(7%,-25%) }
    40%  { transform:translate(-5%,25%) }
    50%  { transform:translate(-15%,10%) }
    60%  { transform:translate(15%,0%) }
    70%  { transform:translate(0%,15%) }
    80%  { transform:translate(3%,35%) }
    90%  { transform:translate(-10%,10%) }
}

/*  Scanline texture  */
body::after {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(137,180,250,0.012) 2px, rgba(137,180,250,0.012) 4px
    );
}

/*  Container  */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/*  Navigation  */

nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 1.8rem var(--pad);
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px); 
    background: rgba(17,17,27,0.82);
    border-bottom: 1px solid transparent;
    transition: all 0.35s ease;
}
nav.scrolled {
    padding: 1.1rem var(--pad);
    border-bottom-color: var(--surface0);
    box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-wordmark {
    font-family: var(--font-mono);
    font-size: 1.1rem; font-weight: 600; letter-spacing: 2px;
    color: var(--subtext1); cursor: default;
}
.nav-wordmark .accent  { color: var(--mauve); }
.nav-wordmark .bracket { color: var(--surface2); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    color: var(--subtext0);
    font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 1px;
    text-transform: lowercase; position: relative; transition: color 0.3s ease;
}
.nav-links a::before {
    content: '//'; color: var(--surface2); margin-right: 0.4rem;
    font-size: 0.75rem; transition: color 0.3s ease;
}
.nav-links a:hover          { color: var(--blue); }
.nav-links a:hover::before  { color: var(--blue); opacity: 0.6; }

.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--subtext1); border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 75vw; max-width: 320px;
    background: var(--mantle); border-left: 1px solid var(--surface0);
    z-index: 999; padding: 6rem 2.5rem 3rem;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.nav-drawer.open { right: 0; }
.nav-drawer ul   { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
.nav-drawer a {
    font-family: var(--font-mono); font-size: 1rem; color: var(--subtext1);
    letter-spacing: 2px; text-transform: lowercase; transition: color 0.3s ease;
}
.nav-drawer a::before { content: '// '; color: var(--surface2); }
.nav-drawer a:hover { color: var(--blue); }


/* Hero Section */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 var(--pad);
    gap: 4rem;
}

/* Ambient background blobs */
.hero-ambient {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(137,180,250,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 70%, rgba(148,226,213,0.07) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(203,166,247,0.05) 0%, transparent 40%);
}

/*  Left panel  */
.hero-left {
    z-index: 1;
    padding-top: 6rem;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-kicker {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.2rem;
    animation: fadeInLeft 0.7s ease 0.2s backwards;
}
.hero-kicker-line { width: 40px; height: 1px; background: var(--mauve); flex-shrink: 0; }
.hero-kicker-text {
    font-family: var(--font-mono); font-size: 0.82rem;
    color: var(--subtext0); letter-spacing: 3px; text-transform: uppercase;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6.5vw, 6rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text);
    animation: fadeInLeft 0.8s ease 0.3s backwards;
}

/* "Dominguez" in normal weight, "Kingston" in italic */
.name-king {
    display: block;
    -webkit-text-stroke: 2px var(--text);
    color: transparent;
    font-style: normal;
}
.name-ston {
    display: block;
    color: var(--kingwing-mauve);
    font-style: italic;
    margin-left: 0.08em; /* slight optical indent */
}

.hero-alias {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 2.25vw, 1.75rem);
    color: var(--surface2);
    letter-spacing: 3px;
    margin-top: 1.2rem;
    animation: fadeInLeft 0.8s ease 0.45s backwards;
}
.hero-alias .alias-at { color: var(--green); margin-right: 0.1em; }

.hero-tagline {
    font-family: var(--font-italic);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--subtext1);
    line-height: 1.55;
    margin-top: 2rem;
    animation: fadeInLeft 0.8s ease 0.6s backwards;
}
.hero-tagline em { color: var(--text); font-style: italic; }

.hero-cta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInLeft 0.8s ease 0.75s backwards;
}

.hero-scroll {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 4rem;
    font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--surface2); letter-spacing: 2px;
    animation: fadeInLeft 0.8s ease 1s backwards;
}
.scroll-line {
    width: 0; height: 1px; background: var(--surface1);
    animation: growLine 1.5s ease 1.5s forwards;
}
@keyframes growLine { to { width: 50px; } }

/*  Right panel — terminal  */
.hero-right {
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.9s ease 0.5s backwards;
}

.terminal-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(137,180,250,0.08) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 20px;
}

.terminal {
    width: 100%;
    max-width: 560px;
    background: var(--crust);
    border: 1px solid var(--surface0);
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(137,180,250,0.06),
        0 24px 60px rgba(0,0,0,0.6),
        0 0 40px rgba(137,180,250,0.05);
    position: relative;
}
/* Subtle inner glow on top edge */
.terminal::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(137,180,250,0.3), transparent);
}

.terminal-titlebar {
    background: var(--surface0);
    padding: 0.75rem 1.2rem;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--surface1);
}
.terminal-dots { display: flex; align-items: center; gap: 0.5rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: var(--red);    opacity: 0.85; }
.dot-yellow { background: var(--yellow); opacity: 0.85; }
.dot-green  { background: var(--green);  opacity: 0.85; }
.terminal-title {
    font-family: var(--font-mono); font-size: 0.78rem;
    color: var(--subtext0); letter-spacing: 1px;
}

.terminal-body {
    padding: 1.5rem 1.8rem 2rem;
    min-height: 340px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
}

/* Terminal line types */
.t-line { display: flex; align-items: baseline; gap: 0.3rem; }
.t-prompt-user    { color: var(--green); }
.t-prompt-host    { color: var(--blue); }
.t-prompt-dir     { color: var(--peach); }
.t-prompt-symbol  { color: var(--overlay0); }
.t-command        { color: var(--text); }
.t-output         { color: var(--subtext0); display: block; padding-left: 0; }
.t-output-key     { color: var(--mauve); }
.t-output-val     { color: var(--green); }
.t-output-num     { color: var(--peach); }
.t-output-bool    { color: var(--sapphire); }
.t-output-comment { color: var(--surface2); font-style: italic; }
.t-blank          { display: block; height: 0.6rem; }

.t-cursor {
    display: inline-block; width: 9px; height: 1.1em;
    background: var(--blue); vertical-align: text-bottom;
    animation: blink 1.1s step-end infinite;
    margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }


/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.95rem 2rem;
    font-family: var(--font-mono); font-size: 0.82rem; font-weight: 400;
    letter-spacing: 1.5px; text-transform: lowercase;
    border-radius: 4px;
    border: 1px solid var(--surface1);
    position: relative; overflow: hidden;
    transition: all 0.3s ease; cursor: pointer;
    text-decoration: none;
}
.btn::before {
    content: ''; position: absolute; inset: 0; left: -100%;
    transition: left 0.4s ease; z-index: -1;
}
.btn-primary { background: var(--surface0); color: var(--text); }
.btn-primary::before { background: var(--primary-gradient); opacity: 0.18; }
.btn-primary:hover { border-color: var(--blue); box-shadow: 0 0 20px rgba(137,180,250,0.2); }
.btn-primary:hover::before { left: 0; }
.btn-ghost { background: transparent; color: var(--subtext1); border-color: var(--surface2); }
.btn-ghost:hover { border-color: var(--sapphire); color: var(--text); }


/* Section Shared Styles */
.section { padding: 8rem 0; }

.section-border-top {
    height: 1px;
    background: linear-gradient(90deg, var(--mauve), var(--surface1) 40%, transparent);
    max-width: 80%; margin: 0 auto 4rem;
}

.section-header     { margin-bottom: 4rem; }
.section-header-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 var(--pad);
    display: flex; align-items: baseline; gap: 1.5rem;
}
.section-index {
    font-family: var(--font-mono); font-size: 0.8rem;
    color: var(--mauve); letter-spacing: 2px; flex-shrink: 0;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900; color: var(--text);
    text-transform: lowercase; letter-spacing: 1px; line-height: 1;
}
.section-title-rule {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--surface1), transparent);
    align-self: center;
}
.section-subtitle {
    font-family: var(--font-mono); font-size: 0.8rem;
    color: var(--subtext0); letter-spacing: 2px;
    padding: 0.8rem 0 0 var(--pad); max-width: var(--container);
    margin: 0 auto; padding-left: calc(var(--pad) + 3rem);
    padding-right: var(--pad);
}

.inline-link {
    color: var(--blue); border-bottom: 1px solid rgba(137,180,250,0.35);
    transition: border-color 0.3s ease;
}
.inline-link:hover { border-color: var(--blue); }


/* About section */

.about-content {
    display: flex;
    justify-content: center;
}

/* Code block panel */
.about-panel {
    background: var(--crust); border: 1px solid var(--surface0);
    border-radius: 6px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    width: 100%; max-width: 680px;
}
.panel-titlebar {
    background: var(--surface0); padding: 0.7rem 1.2rem;
    display: flex; align-items: center; gap: 0.55rem;
    border-bottom: 1px solid var(--surface1);
}
.panel-dot { width: 11px; height: 11px; border-radius: 50%; }
.panel-dot.red    { background: var(--red);    opacity: 0.8; }
.panel-dot.yellow { background: var(--yellow); opacity: 0.8; }
.panel-dot.green  { background: var(--green);  opacity: 0.8; }
.panel-filename {
    font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--subtext0); margin-left: 0.5rem; letter-spacing: 1px;
}
.panel-body  { padding: 1.5rem; }
.code-line   { font-family: var(--font-mono); font-size: 0.85rem; line-height: 2; display: flex; gap: 1rem; }
.ln  { color: var(--surface2); min-width: 1.5rem; text-align: right; -webkit-user-select: none; user-select: none; }
.kw  { color: var(--mauve); }
.fn  { color: var(--blue); }
.str { color: var(--green); }
.num { color: var(--peach); }
.op  { color: var(--teal); }


/* Skills */
.skills-section { background: linear-gradient(180deg, rgba(137,180,250,0.025), transparent); }

.skills-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.5rem;
}
.skill-card {
    background: var(--crust); border: 1px solid var(--surface0);
    border-top: 2px solid var(--surface1);
    border-radius: 4px; padding: 2rem 1.5rem;
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.skill-card::after {
    content: ''; position: absolute; top: -1px; left: 0;
    width: 0; height: 2px; background: var(--primary-gradient);
    transition: width 0.4s ease;
}
.skill-card:hover::after { width: 100%; }
.skill-card:hover { border-top-color: transparent; transform: translateY(-6px); box-shadow: 0 14px 32px rgba(137,180,250,0.14); }
.skill-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.skill-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.skill-sub  { font-family: var(--font-mono); font-size: 0.73rem; color: var(--subtext0); letter-spacing: 1px; }


/* Projects */
.projects-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.project-card {
    background: var(--crust); border: 1px solid var(--surface0);
    border-radius: 4px; padding: 2.5rem; display: block;
    position: relative; overflow: hidden;
    transition: all 0.35s ease;
}
/* Left accent bar */
.project-card::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 0;
    width: 3px; background: var(--surface1);
    transition: background 0.35s ease;
}
.project-card:hover::before { background: var(--primary-gradient); }
.project-card:hover {
    border-color: var(--surface1);
    transform: translateX(6px);
    box-shadow: -6px 0 32px rgba(137,180,250,0.12);
}

.project-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.project-type {
    font-family: var(--font-mono); font-size: 0.73rem;
    color: var(--mauve); letter-spacing: 2px; text-transform: uppercase;
}
.project-arrow { color: var(--surface2); font-size: 1.3rem; transition: all 0.3s ease; }
.project-card:hover .project-arrow { color: var(--blue); transform: translate(3px,-3px); }

.project-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; line-height: 1.1; }
.project-desc  { font-size: 1.1rem; color: var(--subtext0); line-height: 1.8; margin-bottom: 2rem; }

.project-tags  { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.project-tag   {
    font-family: var(--font-mono); font-size: 0.72rem;
    padding: 0.3rem 0.8rem; background: var(--surface0);
    border: 1px solid var(--surface1); border-radius: 3px;
    color: var(--subtext0); letter-spacing: 1px;
}


/* Contact */

.contact-body {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start; margin-top: 3rem;
}
.contact-text h2 {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; color: var(--text); line-height: 1.1; margin-bottom: 1.5rem;
}
.contact-text h2 em { color: var(--mauve); font-style: italic; }
.contact-text p {
    font-family: var(--font-italic); font-size: 1.3rem;
    color: var(--subtext0); line-height: 1.9; font-style: italic; margin-bottom: 2.5rem;
}

.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
    display: flex; align-items: center; gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--crust); border: 1px solid var(--surface0);
    border-radius: 4px; color: var(--subtext1);
    font-family: var(--font-mono); font-size: 0.88rem; letter-spacing: 1px;
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.contact-link::before {
    content: ''; position: absolute; inset: 0; left: -100%;
    background: rgba(137,180,250,0.05); transition: left 0.4s ease;
}
.contact-link:hover::before { left: 0; }
.contact-link:hover { border-color: var(--blue); color: var(--text); }
.contact-link-icon  { color: var(--blue); font-size: 1.1rem; flex-shrink: 0; }
.contact-link-label { flex: 1; }
.contact-link-arrow { color: var(--surface2); transition: all 0.3s ease; }
.contact-link:hover .contact-link-arrow { color: var(--blue); transform: translateX(4px); }


/* Footer */

footer {
    padding: 3rem var(--pad);
    border-top: 1px solid var(--surface0);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 2rem;
}
.footer-left {
    font-family: var(--font-mono); font-size: 0.85rem;
    color: var(--subtext0); letter-spacing: 1px;
}
.footer-left span { color: var(--mauve); }
.footer-ornament {
    font-family: var(--font-display); color: var(--mauve);
    font-size: 1.3rem; opacity: 0.35; letter-spacing: 0.5rem;
}
.footer-links { display: flex; gap: 2.5rem; }
.footer-links a {
    font-family: var(--font-mono); font-size: 0.78rem;
    color: var(--subtext0); letter-spacing: 1px;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--blue); }


/* Scroll reveal */

.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }


/* Keyframes */

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


/* Responsive */

@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; padding-top: 2rem; gap: 0; }
    .hero-left  { padding-top: 7rem; padding-bottom: 2rem; }
    .hero-right { padding-top: 0; padding-bottom: 4rem; justify-content: flex-start; }
    .terminal   { max-width: 100%; }
    .hero-scroll { display: none; }
}

@media (max-width: 900px) {
    .projects-grid { grid-template-columns: 1fr; }
    .contact-body  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --pad: 2rem; }
    nav          { padding: 1.5rem var(--pad); }
    nav.scrolled { padding: 1rem var(--pad); }
    .nav-links     { display: none; }
    .nav-hamburger { display: flex; }
    .section { padding: 5rem 0; }
    .section-subtitle { padding-left: var(--pad); }

    /* Hero */
    .hero-left  { padding-top: 6.5rem; padding-bottom: 1.5rem; }
    .terminal-body { min-height: 240px; }

    /* Contact */
    .contact-text { margin-bottom: 0; }
    .contact-text h2 { font-size: clamp(2rem, 8vw, 3rem); }

    /* Footer: stack cleanly, hide ornament, wrap links */
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 2.5rem var(--pad);
    }
    .footer-ornament { display: none; }
    .footer-links { flex-wrap: wrap; gap: 1.2rem 2rem; }
}

@media (max-width: 480px) {
    :root { --pad: 1.5rem; }
    .hero-name  { font-size: clamp(2.6rem, 13vw, 4.5rem); }
    .hero-alias { font-size: clamp(0.95rem, 4.5vw, 1.3rem); }
    .skills-grid { grid-template-columns: 1fr 1fr; }
    .hero-right { padding-bottom: 3rem; }
    .hero-cta   { flex-direction: column; }
    .btn        { justify-content: center; }
}