/* ============================================================
   KENSHIN13-STYLE DESIGN SYSTEM
   gonzi.dev — main.css
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Fonts */
    --font-body: "Satoshi-Variable", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "Consolas", "Monaco", "Andale Mono", monospace;

    /* Color Palette */
    --color-dark-surface:          #0d0015;
    --color-dark-surface-elevated: #150020;
    --color-deep-purple:           #1a0033;
    --color-royal-purple:          #4a0080;
    --color-neon-purple:           #9945ff;
    --color-electric-violet:       #c77dff;
    --color-light-purple:          #e0aaff;
    --color-glass-surface:         rgba(26, 0, 51, 0.7);
    --color-text-primary:          #ffffff;
    --color-text-secondary:        #a8a8b3;
    --color-text-muted:            #6e6e80;

    /* Semantic Aliases */
    --accent:       #9945ff;
    --accent-dark:  #4a0080;
    --accent-hover: #c77dff;
    --accent-soft:  rgba(153, 69, 255, 0.12);
    --border:       rgba(153, 69, 255, 0.15);
    --border-glow:  rgba(153, 69, 255, 0.3);

    /* Gradients */
    --gradient-primary:  linear-gradient(135deg, #1a0033 0%, #4a0080 100%);
    --gradient-neon:     linear-gradient(135deg, #4a0080 0%, #9945ff 100%);
    --gradient-glass:    linear-gradient(180deg, rgba(153, 69, 255, 0.1), rgba(26, 0, 51, 0.3));
    --gradient-hero-bg:  radial-gradient(ellipse at 50% 0%, #4a0080 0%, #1a0033 55%, #0d0015 100%);
    --gradient-title:    linear-gradient(135deg, #e0aaff 0%, #9945ff 50%, #c77dff 100%);

    /* Shadows */
    --shadow-sm:           0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md:           0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg:           0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl:           0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow:         0 0 20px rgba(153, 69, 255, 0.5);
    --shadow-glow-intense: 0 0 40px rgba(153, 69, 255, 0.8);

    /* Easing */
    --ease-out-expo:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast:  150ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base:  300ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow:  600ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing */
    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --radius-2xl:  28px;
    --radius-full: 9999px;
}

/* ============================================================
   2. KEYFRAMES
   ============================================================ */
@keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
    0%   { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0%   { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    0%   { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(153, 69, 255, 0.5); }
    50%       { box-shadow: 0 0 40px rgba(153, 69, 255, 0.8), 0 0 60px rgba(153, 69, 255, 0.4); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.05); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

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

@keyframes typewriter {
    0%   { width: 0; }
    100% { width: 100%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40%                      { transform: translateX(-50%) translateY(-10px); }
    60%                      { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(153, 69, 255, 0.4); }
    50%       { box-shadow: 0 0 20px rgba(153, 69, 255, 0.8); }
}

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

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    25%       { transform: translateY(-10px); }
    75%       { transform: translateY(5px); }
}

/* ============================================================
   3. BASE / RESET
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-dark-surface);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(13, 0, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(153, 69, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-brand a:hover {
    color: var(--color-neon-purple);
}

.dev-blue,
.tech-blue {
    color: var(--color-neon-purple);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
    transition: color var(--transition-fast);
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-neon-purple);
    border-radius: 1px;
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-text-primary);
}

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

.nav-link.active {
    color: var(--color-neon-purple) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-base);
    border-radius: 1px;
}

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

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

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

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(153, 69, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(74, 0, 128, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding-top: 72px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    will-change: transform;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--color-light-purple);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    margin: 0;
    line-height: 1.1;
}

.hero-name {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    background: var(--gradient-title);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    line-height: 1.1;
    will-change: background-position;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--color-text-secondary);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    align-items: center;
}

/* Hero Content (legacy — centered layout fallback) */
.hero-content {
    max-width: 800px;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--ease-out-expo) forwards;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-greeting {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.2), transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 0, 128, 0.3), transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: -3s;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    will-change: transform;
    z-index: 2;
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: var(--color-neon-purple);
    border-radius: 1px;
    animation: scrollGlow 2s ease-in-out infinite;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    will-change: transform;
}

.btn:focus {
    outline: 2px solid var(--color-neon-purple);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--gradient-neon);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-neon-purple);
    border: 2px solid var(--color-neon-purple);
}

.btn-secondary:hover {
    background: var(--accent-soft);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================================
   7. SECTION LABELS & TITLES
   ============================================================ */
.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-neon-purple);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-text-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    will-change: opacity, transform;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-neon-purple);
    border-radius: 2px;
    margin-top: var(--space-md);
}

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

.section-title--center::after {
    margin: var(--space-md) auto 0;
}

/* ============================================================
   8. CODE EDITOR MOCK
   ============================================================ */
.code-editor {
    background: #1a1a2e;
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(153, 69, 255, 0.1);
    overflow: hidden;
    font-family: var(--font-mono);
    width: 100%;
    max-width: 520px;
}

.editor-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #161625;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28CA42; }

.editor-filename {
    margin-left: auto;
    font-size: 0.75rem;
    color: #6e6e80;
}

.editor-body {
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
}

.editor-line {
    display: flex;
    gap: 16px;
}

.ln  { color: #3e3e4e; min-width: 20px; text-align: right; user-select: none; }
.kw  { color: #569cd6; }
.fn  { color: #dcdcaa; }
.str { color: #ce9178; }
.cm  { color: #6a9955; }
.var { color: #9cdcfe; }
.pn  { color: #d4d4d4; }

.cursor-blink::after {
    content: '█';
    animation: blink 1s step-end infinite;
    color: #9945ff;
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about {
    background: var(--color-deep-purple);
    padding: var(--space-5xl) 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

/* About left column */
.about-left {
    display: flex;
    flex-direction: column;
}

/* Legacy about-content / about-text */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
}

/* About links */
.about-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: var(--transition-base);
    will-change: transform;
}

.about-link:hover,
.about-link:focus {
    border-color: var(--color-neon-purple);
    transform: translateX(6px);
    background: var(--accent-soft);
    box-shadow: var(--shadow-glow);
}

.link-icon {
    font-size: 1.2rem;
}

/* Offer Heading */
.offer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
}

/* Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.offer-item {
    padding: var(--space-lg);
    background: rgba(153, 69, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), border-color var(--transition-base), background var(--transition-base);
    will-change: opacity, transform;
}

.offer-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.offer-item:hover {
    border-color: var(--color-neon-purple);
    background: var(--accent-soft);
    transform: translateY(-3px);
}

.offer-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.offer-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text-primary);
}

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

/* Stats */
.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.stat-card {
    flex: 1;
    padding: var(--space-lg);
    background: rgba(153, 69, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), border-color var(--transition-base), box-shadow var(--transition-base);
    will-change: opacity, transform;
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    border-color: var(--color-neon-purple);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--color-neon-purple);
    line-height: 1;
}

.stat-suffix {
    color: var(--color-electric-violet);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

/* About Skills (legacy) */
.about-skills {
    display: grid;
    gap: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo) 0.2s, transform 0.8s var(--ease-out-expo) 0.2s;
}

.about-skills.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline */
.about-timeline {
    position: relative;
    padding-left: var(--space-3xl);
}

.timeline-line {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #9945ff 15%, #9945ff 85%, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-3xl);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-neon-purple);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
    will-change: opacity, transform;
}

.timeline-dot {
    position: absolute;
    left: calc(-1 * var(--space-3xl) + 4px);
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-neon-purple);
    box-shadow: 0 0 12px rgba(153, 69, 255, 0.8);
    border: 2px solid var(--color-dark-surface);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.timeline-item.visible .timeline-year {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   10. SKILLS SECTION
   ============================================================ */
.skills {
    background: var(--color-dark-surface);
    padding: var(--space-5xl) 0;
}

.skills-header {
    text-align: center;
    margin-bottom: var(--space-5xl);
}

.skills-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-md);
}

.skill-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid rgba(153, 69, 255, 0.08);
}

.skill-item:has(.skill-info:only-child),
.skill-item:not(:has(.skill-visual-wrap)) {
    grid-template-columns: 1fr;
    max-width: 680px;
}

.skill-item:nth-child(even) .skill-info   { order: 2; }
.skill-item:nth-child(even) .skill-visual { order: 1; }

.skill-info {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    will-change: opacity, transform;
}

.skill-item:nth-child(even) .skill-info {
    transform: translateX(40px);
}

.skill-visual-wrap {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-out-expo) 0.2s, transform 0.8s var(--ease-out-expo) 0.2s;
    will-change: opacity, transform;
}

.skill-item.visible .skill-info        { opacity: 1; transform: translateX(0); }
.skill-item.visible .skill-visual-wrap { opacity: 1; transform: scale(1); }

.skill-index {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-neon-purple);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.skill-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
}

.skill-desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.skill-tag {
    padding: 4px 12px;
    font-size: 0.8rem;
    background: var(--accent-soft);
    color: var(--color-electric-violet);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.skill-tag:hover {
    background: rgba(153, 69, 255, 0.25);
    box-shadow: 0 0 8px rgba(153, 69, 255, 0.4);
}

/* Progress Bar */
.skill-level-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.skill-level-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.skill-pct {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-neon-purple);
}

.skill-track {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    border-radius: 2px;
    width: 0;
    background: linear-gradient(90deg, #9945ff, #c77dff);
    transition: width 1.2s var(--ease-out-expo);
    box-shadow: 0 0 8px rgba(153, 69, 255, 0.5);
    will-change: width;
}

/* Skill Visual */
.skill-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ── Skill Stats Visual (Skill 01) ── */
.skill-stats-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.skill-stat-card {
    background: rgba(153, 69, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.skill-stat-card:hover {
    border-color: rgba(153, 69, 255, 0.35);
    background: rgba(153, 69, 255, 0.1);
}

.skill-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.skill-stat-label {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-align: right;
    max-width: 120px;
    line-height: 1.3;
}

/* ── Skill Tech Grid (Skill 02) ── */
.skill-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 280px;
    margin: 0 auto;
}

.skill-tech-badge {
    padding: 10px 18px;
    background: rgba(153, 69, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-electric-violet);
    font-family: var(--font-mono);
    transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.skill-tech-badge:hover {
    border-color: var(--color-neon-purple);
    background: rgba(153, 69, 255, 0.15);
    transform: translateY(-2px);
}

/* ── Skill Brands Visual (Skill 03) ── */
.skill-brands-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.skill-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.skill-brand-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out-expo), filter 0.4s var(--ease-out-expo);
    animation: float 6s ease-in-out infinite;
}

.skill-brand-img:nth-child(1) { animation-delay: 0s; }

.skill-brand--fivem {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.skill-brand--discord {
    animation-delay: -3s;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.5));
}

.skill-brand-item:hover .skill-brand-img {
    transform: scale(1.1) translateY(-4px);
}

.skill-brand-item:hover .skill-brand--fivem {
    filter: drop-shadow(0 0 32px rgba(255, 107, 53, 0.8));
}

.skill-brand-item:hover .skill-brand--discord {
    filter: drop-shadow(0 0 32px rgba(88, 101, 242, 0.8));
}

.skill-brand-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================================
   11. PROJECTS SECTION
   ============================================================ */
.projects {
    background: var(--color-deep-purple);
    padding: var(--space-5xl) 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.project-card {
    background: linear-gradient(145deg, rgba(26, 0, 51, 0.8), rgba(13, 0, 21, 0.95));
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), border-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    will-change: transform;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(153, 69, 255, 0.4), 0 16px 48px rgba(0, 0, 0, 0.5);
    border-color: rgba(153, 69, 255, 0.4);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.project-card:hover::before {
    left: 100%;
}

.project-card.coming-soon {
    opacity: 0.7;
}

.project-image {
    height: 200px;
    overflow: hidden;
    background: rgba(153, 69, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.project-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out-expo);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

/* Legacy placeholder */
.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-soft);
    border-radius: var(--radius-full);
    border: 2px solid var(--accent);
    transition: var(--transition-base);
}

.project-card:hover .project-placeholder {
    box-shadow: var(--shadow-glow-intense);
    transform: scale(1.1);
}

.project-icon {
    font-size: 1.5rem;
}

.project-content {
    padding: var(--space-xl);
    position: relative;
    z-index: 2;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
    line-height: 1.3;
}

.project-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.tech-tag {
    padding: 3px 10px;
    font-size: 0.75rem;
    background: var(--accent-soft);
    color: var(--color-electric-violet);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tech-tag:hover {
    background: rgba(153, 69, 255, 0.25);
    box-shadow: 0 0 8px rgba(153, 69, 255, 0.4);
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.project-link {
    color: var(--color-neon-purple);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition-fast);
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #9945ff, #c77dff);
    transition: width 0.3s ease;
}

.project-link:hover::after,
.project-link:focus::after {
    width: 100%;
}

.project-link:hover,
.project-link:focus {
    color: var(--color-electric-violet);
    text-shadow: 0 0 8px rgba(153, 69, 255, 0.5);
}

/* ============================================================
   12. LINKS SECTION (legacy)
   ============================================================ */
.links {
    background: var(--color-dark-surface-elevated);
    padding: var(--space-5xl) 0;
}

.links-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.links-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.link-category {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.link-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-neon-purple);
    border-radius: var(--radius-full);
}

.link-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.link-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(26, 0, 51, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: var(--transition-base);
    will-change: transform;
}

.link-item:hover,
.link-item:focus {
    border-color: var(--color-neon-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-soft);
}

.link-item .link-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-full);
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.link-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text-primary);
}

.link-info p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
    background: var(--color-dark-surface);
    border-top: 1px solid rgba(153, 69, 255, 0.1);
    padding: var(--space-2xl) 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.footer-brand h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

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

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

/* Footer columns */
.footer-links h4,
.footer-projects h4,
.footer-contact h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.footer-links ul,
.footer-projects ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-projects a,
.footer-contact a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-projects a:hover,
.footer-contact a:hover,
.footer-links a:focus,
.footer-projects a:focus,
.footer-contact a:focus {
    color: var(--color-neon-purple);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--border);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 1rem;
    will-change: transform;
}

.footer-social a:hover {
    border-color: var(--color-neon-purple);
    color: var(--color-neon-purple);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* Legal */
.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover,
.footer-legal a:focus {
    color: var(--color-neon-purple);
}

/* Legacy grid layout (backward compat) */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(153, 69, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--space-lg);
}

/* ============================================================
   14. UTILITY CLASSES
   ============================================================ */
.text-accent     { color: var(--color-neon-purple); }
.text-secondary  { color: var(--color-text-secondary); }

.hidden  { opacity: 0; transform: translateY(20px); }
.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* ============================================================
   15. RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-link {
        flex: 1;
        min-width: 200px;
    }

    .skill-item {
        grid-template-columns: 1fr;
    }

    .skill-item:nth-child(even) .skill-info   { order: 1; }
    .skill-item:nth-child(even) .skill-visual { order: 2; }

    .links-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

/* ============================================================
   16. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(13, 0, 21, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(153, 69, 255, 0.15);
        padding: var(--space-lg) 0;
        z-index: 999;
    }

    .nav-menu.active .nav-link {
        padding: var(--space-md) var(--space-xl);
        display: block;
        font-size: 1.1rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .about-links {
        flex-direction: column;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    #particle-canvas {
        opacity: 0.4;
    }
}

/* ============================================================
   17. RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .hero-name {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .skill-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .nav-container {
        padding: 0 var(--space-md);
    }
}

/* ============================================================
   18. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-name {
        animation: none;
        background-position: 0% 50%;
    }

    .hero-scroll {
        animation: none;
    }

    .scroll-indicator {
        animation: none;
    }

    .hero-orb {
        animation: none;
    }

    .skill-circle::before {
        animation: none;
    }

    .floating-dot {
        animation: none;
    }

    .cursor-blink::after {
        animation: none;
    }

    .project-card {
        opacity: 1;
        transform: none;
    }

    .section-title {
        opacity: 1;
        transform: none;
    }

    .skill-info,
    .skill-visual-wrap {
        opacity: 1;
        transform: none;
    }

    .timeline-year {
        opacity: 1;
        transform: none;
    }

    .about-text,
    .about-skills,
    .links-content,
    .link-category,
    .offer-item,
    .stat-card {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 120px 0;
    background: var(--color-dark-surface);
}

.services-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 80px;
}

/* ── Service Block ── */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
    border-top: 1px solid transparent;
    background-image: linear-gradient(var(--color-dark-surface), var(--color-dark-surface)),
                      linear-gradient(90deg, transparent, rgba(153,69,255,0.2), transparent);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-image: linear-gradient(90deg, transparent, rgba(153,69,255,0.15), transparent) 1;
}

.service-block--discord {
    direction: rtl;
}
.service-block--discord > * {
    direction: ltr;
}

/* ── Wordmark ── */
.service-wordmark {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-wordmark--fivem {
    color: #ff6b35;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.service-wordmark--discord {
    color: #5865f2;
    text-shadow: 0 0 40px rgba(88, 101, 242, 0.4);
}

/* Unterstrich-Akzent wie bei Kenshin */
.service-wordmark::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 12px;
    border-radius: 2px;
}
.service-wordmark--fivem::after { background: #ff6b35; }
.service-wordmark--discord::after { background: #5865f2; }

.service-desc {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

/* ── Offer Card ── */
.service-offer-card {
    background: rgba(153, 69, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
}

.service-offer-title {
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-offer-list li {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.service-offer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px rgba(153,69,255,0.6);
}

/* ── Logo Visual ── */
.service-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    position: relative;
}

.service-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(60px);
    z-index: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.service-logo-wrap--fivem::before {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.35) 0%, transparent 70%);
}

.service-logo-wrap--discord::before {
    background: radial-gradient(circle, rgba(88, 101, 242, 0.35) 0%, transparent 70%);
}

.service-logo-wrap:hover::before { opacity: 1; }

.service-logo-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.4s var(--ease-out-expo);
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

.service-logo-wrap--fivem .service-logo-img {
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

.service-logo-wrap--discord .service-logo-img {
    filter: drop-shadow(0 0 30px rgba(88, 101, 242, 0.5));
}

.service-logo-wrap:hover .service-logo-img {
    transform: scale(1.06) translateY(-6px);
}

/* ── Scroll Reveal ── */
.service-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.service-block.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Legal Disclaimer ── */
.legal-disclaimer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 680px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }
    .service-block--discord {
        direction: ltr;
    }
    .service-logo-wrap {
        width: 200px;
        height: 200px;
    }
    .service-logo-img {
        width: 140px;
        height: 140px;
    }
    .service-wordmark {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}
