@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Jost:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════
   MARLON B SIQUEIRA — DESIGN SYSTEM v2
   Light/Dark mode via [data-theme] on <html>
═══════════════════════════════════════════════ */

/* ── Light mode tokens ─────────────────────── */
:root {
    --blue-900: #080f38;
    --blue-800: #0a1628;
    --blue-700: #0f2780;
    --blue-500: #1a3fff;
    --blue-300: #6b8fff;
    --blue-100: #dde6ff;
    --blue-050: #f0f4ff;
    --sky:      #0099ff;
    --teal:     #00b8a9;
    --gold:     #BFA05A;

    --bg:           #ffffff;
    --bg-2:         #f5f8ff;
    --bg-3:         #eef2ff;
    --surface:      #ffffff;
    --surface-2:    #f5f8ff;
    --text:         #0a1628;
    --text-2:       #344466;
    --text-3:       #5a6e99;
    --primary:      var(--blue-500);
    --primary-dim:  rgba(26, 63, 255, 0.07);
    --border:       rgba(26, 63, 255, 0.13);
    --border-light: rgba(26, 63, 255, 0.07);
    --border-card:  rgba(10, 22, 40, 0.07);

    --shadow-sm:    0 2px 14px rgba(10, 22, 40, 0.06);
    --shadow-md:    0 8px 36px rgba(10, 22, 40, 0.11);
    --shadow-lg:    0 20px 64px rgba(10, 22, 40, 0.14);
    --shadow-blue:  0 8px 32px rgba(26, 63, 255, 0.22);

    --radius:       20px;
    --radius-sm:    10px;
    --container:    1240px;
    --section-v:    120px;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', system-ui, sans-serif;
    --theme-icon-color: #344466;
    --orb-opacity: 1;
    --grid-opacity: 1;
}

/* ── Dark mode tokens ──────────────────────── */
[data-theme="dark"] {
    --bg:           #0d1117;
    --bg-2:         #131a26;
    --bg-3:         #161f30;
    --surface:      #161f30;
    --surface-2:    #1a2540;
    --text:         #e8edf7;
    --text-2:       #a8b8d8;
    --text-3:       #7a8fb5;
    --primary:      #4d73ff;
    --primary-dim:  rgba(77, 115, 255, 0.12);
    --border:       rgba(77, 115, 255, 0.18);
    --border-light: rgba(77, 115, 255, 0.1);
    --border-card:  rgba(255, 255, 255, 0.07);
    --shadow-sm:    0 2px 14px rgba(0, 0, 0, 0.3);
    --shadow-md:    0 8px 36px rgba(0, 0, 0, 0.4);
    --shadow-lg:    0 20px 64px rgba(0, 0, 0, 0.5);
    --shadow-blue:  0 8px 32px rgba(77, 115, 255, 0.3);
    --theme-icon-color: #a8b8d8;
    --orb-opacity: 0.6;
    --grid-opacity: 0.5;
}

/* ── Smooth theme transition ───────────────── */
*, *::before, *::after {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.1s ease;
}
.reveal, img, .eyebrow-dot, .accent::after {
    transition: none;
}
.reveal {
    transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
                transform 0.72s cubic-bezier(0.22,1,0.36,1) !important;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-weight: 400;
}
body.menu-open { overflow: hidden; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

/* ── Background ─────────────────────────────── */
.site-bg {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-orb {
    position: absolute; border-radius: 50%; filter: blur(110px);
    opacity: var(--orb-opacity); transition: opacity 0.3s ease;
}
.orb-1 {
    width: 640px; height: 640px; top: -180px; right: -140px;
    background: radial-gradient(circle, rgba(26, 63, 255, 0.07) 0%, transparent 65%);
}
.orb-2 {
    width: 480px; height: 480px; bottom: 28%; left: -170px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.06) 0%, transparent 65%);
}
.bg-grid {
    position: absolute; inset: 0;
    opacity: var(--grid-opacity); transition: opacity 0.3s ease;
    background-image:
        linear-gradient(rgba(26, 63, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 63, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 85% 55% at 50% 0%, black 0%, transparent 75%);
}

/* ── Layout ─────────────────────────────────── */
main, header, footer { position: relative; z-index: 1; width: 100%; }
section {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: var(--section-v) 8%;
}
section[id] { scroll-margin-top: 88px; }

/* ── Section headers ────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600; font-style: italic;
    line-height: 1.1; letter-spacing: -0.01em;
    color: var(--text); display: inline-block;
}
.section-title::after {
    content: ""; display: block;
    width: 52px; height: 3px; border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--sky));
    margin-top: 14px;
}
.section-subtitle {
    margin-top: 14px; color: var(--text-2);
    font-size: 1rem; font-weight: 400;
    max-width: 520px; line-height: 1.65;
}
.subsection-title {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 600; font-style: italic;
    margin-bottom: 40px; color: var(--text-2);
}
.section-description {
    max-width: 880px; line-height: 1.95;
    margin: 0 auto; font-size: 1.02rem; color: var(--text-2);
}

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; border: none;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
    border-radius: 999px; padding: 12px 28px;
    font-family: var(--font-body); font-weight: 600;
    font-size: 0.9rem; letter-spacing: 0.01em; color: #fff;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(26, 63, 255, 0.34);
}
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--border); background: transparent;
    border-radius: 999px; padding: 11px 26px;
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.9rem; color: var(--text); cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease !important;
}
.btn-ghost:hover {
    border-color: var(--primary); background: var(--primary-dim);
    color: var(--primary); transform: translateY(-2px);
}
.btn-ghost i { font-size: 0.8rem; transition: transform 0.25s ease !important; }
.btn-ghost:hover i { transform: translateX(4px); }

/* ── Focus ──────────────────────────────────── */
.btn-primary:focus-visible, .btn-ghost:focus-visible,
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--primary); outline-offset: 3px;
}

/* ── Reveal ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); }
.reveal.left  { transform: translateX(-44px); }
.reveal.right { transform: translateX(44px); }
.reveal.show  { opacity: 1; transform: translate(0,0); }

/* ── Numbers section ────────────────────────── */
#numbers {
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
    width: 100%; max-width: 100%; padding: 64px 8%;
}
.numbers-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0; max-width: var(--container); margin: 0 auto;
}
.number-card {
    flex: 1 1 160px; text-align: center; padding: 28px 24px; position: relative;
}
.number-card + .number-card::before {
    content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 1px; background: rgba(255,255,255,0.12);
}
.number-value {
    display: block; font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 700; font-style: italic;
    color: #ffffff; line-height: 1; letter-spacing: -0.02em;
}
.number-label {
    display: block; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); margin-top: 10px;
    max-width: 120px; margin-left: auto; margin-right: auto; line-height: 1.4;
}

/* ── What I Deliver section ─────────────────── */
#deliver {
    background: var(--bg-2);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    width: 100%; max-width: 100%;
}
#deliver > * { max-width: var(--container); margin-left: auto; margin-right: auto; }

.bring-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: var(--container); margin: 0 auto;
}
.bring-card {
    background: var(--surface); padding: 36px 30px;
    border-radius: var(--radius); border: 1px solid var(--border-card);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    position: relative; overflow: hidden;
}
.bring-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.bring-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.bring-card:hover::before { transform: scaleX(1); }
.bring-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--primary-dim); border: 1px solid rgba(26, 63, 255, 0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.15rem; margin-bottom: 20px;
}
.bring-card h3 {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 700; font-style: italic;
    letter-spacing: -0.01em; margin-bottom: 14px; color: var(--text);
}
.bring-card p {
    color: var(--text-2); font-size: 0.94rem;
    line-height: 1.8; margin-bottom: 20px;
}
.bring-list {
    list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px;
    border-top: 1px solid var(--border-light); padding-top: 16px;
}
.bring-list li {
    font-size: 0.85rem; color: var(--text-3);
    padding-left: 18px; position: relative; line-height: 1.5;
}
.bring-list li::before {
    content: '›'; position: absolute; left: 0;
    color: var(--primary); font-weight: 700; font-size: 1rem;
}

/* ── Career Highlights ──────────────────────── */
#highlights { background: var(--bg); }
.highlights-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.highlight-card {
    background: var(--surface); border: 1px solid var(--border-card);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    display: flex; flex-direction: column;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.highlight-meta {
    padding: 20px 24px 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.highlight-company {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 700; font-style: italic; color: var(--text);
}
.highlight-tag {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid rgba(26, 63, 255, 0.15);
    border-radius: 999px; padding: 3px 10px;
}
.highlight-title {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 600; font-style: italic; color: var(--text);
    letter-spacing: -0.01em; padding: 12px 24px 0; line-height: 1.3;
}
.highlight-body {
    padding: 16px 24px 24px; display: flex; flex-direction: column;
    gap: 14px; flex: 1;
}
.highlight-step { padding-left: 14px; border-left: 2px solid var(--border-light); }
.highlight-outcome {
    border-left-color: var(--teal);
    background: rgba(0, 184, 169, 0.04);
    border-radius: 0 8px 8px 0; padding: 12px 14px; margin-left: 0;
}
.step-label {
    display: block; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-3); margin-bottom: 6px;
}
.highlight-outcome .step-label { color: var(--teal); }
.highlight-step p { font-size: 0.88rem; color: var(--text-2); line-height: 1.75; }

/* ── Experience rows ────────────────────────── */
.row {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: center; gap: 40px; margin-bottom: 28px;
    padding: 36px 40px; background: var(--surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    position: relative; overflow: hidden;
}
.row::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.row:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.row:hover::before { transform: scaleX(1); }
.row:last-of-type { margin-bottom: 0; }
.row.reverse {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    background: var(--surface-2);
}
.row.reverse img { order: 2; }
.row.reverse .text { order: 1; }
.row img {
    width: 100%; height: auto; min-height: 0; max-height: 320px;
    border-radius: 18px; object-fit: contain; object-position: center;
    background: transparent; box-shadow: var(--shadow-md);
}
.current-role {
    border: 1.5px solid rgba(0, 184, 169, 0.3);
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(0, 184, 169, 0.1);
}
.current-role::before {
    background: linear-gradient(90deg, var(--teal), var(--primary));
}
.company-meta { margin-bottom: 16px; }
.company-meta h4 {
    font-family: var(--font-display); font-size: 1.45rem;
    font-weight: 700; font-style: italic;
    letter-spacing: -0.01em; color: var(--text); margin-bottom: 8px;
}
.company-meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.company-tag {
    display: inline-block; font-size: 0.71rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary);
    background: var(--primary-dim); border: 1px solid rgba(26, 63, 255, 0.15);
    border-radius: 999px; padding: 4px 13px;
}
.current-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #00b8a9; background: rgba(0, 184, 169, 0.1);
    border: 1px solid rgba(0, 184, 169, 0.25);
    border-radius: 999px; padding: 4px 12px;
}
.current-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #00b8a9; box-shadow: 0 0 6px rgba(0, 184, 169, 0.6);
    animation: pulse-dot 2.4s ease-in-out infinite;
}
.outcome-list {
    list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px;
}
.outcome-list li {
    position: relative; padding-left: 20px;
    font-size: 0.94rem; color: var(--text-2); line-height: 1.7;
}
.outcome-list li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--primary); opacity: 0.6;
}
.center-image {
    display: block; margin: 0 auto 72px; width: min(100%, 740px);
    border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.small-image {
    width: min(100%, 700px); display: block; margin: 0 auto 48px;
    border-radius: var(--radius); box-shadow: var(--shadow-md);
}

/* ── Section backgrounds ────────────────────── */
#expertise  { background: var(--bg); }
#automation { background: var(--bg); }
#continuousimprovement {
    background: var(--bg-3);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    width: 100%; max-width: 100%;
}
#continuousimprovement > * { max-width: var(--container); margin-left: auto; margin-right: auto; }
#technicalskills {
    background: var(--bg);
    border-top: 1px solid var(--border-light);
    width: 100%; max-width: 100%;
}
#technicalskills > * { max-width: var(--container); margin-left: auto; margin-right: auto; }

/* ── Social buttons ─────────────────────────── */
.social-media-buttons, .contact-social {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.social-media-buttons { justify-content: flex-start; }
.contact-social { justify-content: center; margin-top: 32px; }
.social-media-buttons a, .contact-social a {
    font-size: 1.05rem; color: var(--text-2);
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--surface);
    border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, background 0.25s ease,
                color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}
.social-media-buttons a:hover, .contact-social a:hover {
    transform: translateY(-4px); color: #fff; border-color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--blue-700));
    box-shadow: var(--shadow-blue);
}

/* ── Skills ──────────────────────────────────── */
.skills-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 24px; margin-top: 12px;
}
.skill-box {
    background: var(--surface); padding: 32px 28px;
    border-radius: var(--radius); border: 1px solid var(--border-card);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    position: relative; overflow: hidden;
}
.skill-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.skill-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.skill-box:hover::before { transform: scaleX(1); }
.skill-box-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--primary-dim); border: 1px solid rgba(26, 63, 255, 0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.05rem; margin-bottom: 18px;
}
.skill-box h3 {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 600; font-style: italic;
    letter-spacing: -0.01em; margin-bottom: 16px; color: var(--text);
}
.skill-tier-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 12px; margin-top: 4px;
}
.skill-tier-secondary {
    color: var(--text-3); margin-top: 18px; padding-top: 14px;
    border-top: 1px solid var(--border-light);
}
.skills-icons { display: flex; flex-direction: column; gap: 10px; }
.skill-item { display: flex; align-items: center; gap: 12px; }
.skill-item img { width: 26px; height: 26px; flex-shrink: 0; }
.skill-item span { font-size: 0.93rem; color: var(--text-2); }
.skills-icons-secondary .skill-item img, .skill-item-secondary img { opacity: 0.65; }
.skills-icons-secondary .skill-item span, .skill-item-secondary span { color: var(--text-3); }
.skills-list { list-style: none; padding-left: 0; display: flex; flex-direction: column; gap: 9px; }
.skills-list li { position: relative; padding-left: 22px; font-size: 0.93rem; color: var(--text-2); }
.skills-list.tech li::before, .skills-list.cert li::before {
    position: absolute; left: 0; font-size: 12px; top: 6px;
}
.skills-list.tech li::before { content: "⚙"; color: var(--primary); }
.skills-list.cert li::before { content: "✔"; color: var(--teal); }
.skills-list-secondary li { color: var(--text-3); }
.skills-list-secondary.tech li::before { opacity: 0.5; }

/* ── Contact ────────────────────────────────── */
.contact { text-align: center; }
.contact .section-header { display: flex; flex-direction: column; align-items: center; }
.contact .section-title::after { margin-left: auto; margin-right: auto; }
.contact .section-subtitle { text-align: center; max-width: 480px; }
.contact form {
    max-width: 640px; margin: 24px auto 0;
    display: flex; flex-direction: column; gap: 16px;
    background: var(--surface); padding: 40px;
    border-radius: var(--radius); box-shadow: var(--shadow-md);
    border: 1px solid var(--border-card); text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-3);
}
.contact input, .contact textarea {
    width: 100%; padding: 13px 18px; border-radius: var(--radius-sm);
    border: 1.5px solid rgba(26, 63, 255, 0.1);
    background: var(--bg-2); color: var(--text); font-size: 0.94rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}
.contact input::placeholder, .contact textarea::placeholder { color: var(--text-3); }
.contact textarea { min-height: 140px; resize: vertical; }
.contact input:focus, .contact textarea:focus {
    outline: none; border-color: var(--primary); background: var(--surface);
    box-shadow: 0 0 0 4px rgba(26, 63, 255, 0.08);
}
.contact form .btn-primary { align-self: center; padding: 13px 40px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-3); margin-top: -4px; }

/* ── Footer ──────────────────────────────────── */
footer { position: relative; z-index: 1; }
.footer-content {
    text-align: center; padding: 52px 20px;
    background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-700) 100%);
    color: #fff;
}
.footer-name {
    font-family: var(--font-display); font-size: 1.4rem;
    font-weight: 600; font-style: italic; letter-spacing: -0.01em;
}
.footer-tagline {
    margin-top: 10px; font-size: 0.82rem;
    color: rgba(255,255,255,0.52); letter-spacing: 0.07em; text-transform: uppercase;
}
.footer-copy { margin-top: 14px; font-size: 0.77rem; color: rgba(255,255,255,0.32); }

/* ── Keyframes ───────────────────────────────── */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1100px) {
    section { padding: 90px 6%; }
    .row, .row.reverse { grid-template-columns: 1fr; gap: 28px; padding: 28px 32px; }
    .row.reverse img, .row.reverse .text { order: initial; }
    .skills-container { grid-template-columns: repeat(2, 1fr); }
    .bring-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .social-media-buttons { justify-content: center; }
}
@media (max-width: 768px) {
    :root { --section-v: 80px; }
    .center-image, .small-image { width: 100%; }
    .row img { border-radius: 16px; }
    .contact form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .numbers-grid { gap: 0; }
    .number-card + .number-card::before { display: none; }
    .number-card { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .number-card:last-child { border-bottom: none; }
    .skills-container { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    section { padding: 68px 5%; }
    .section-title { font-size: 1.85rem; }
    .section-description, .row .text p,
    .skill-item span, .skills-list li { font-size: 0.93rem; }
    .social-media-buttons a, .contact-social a { width: 44px; height: 44px; font-size: 1rem; }
    .skill-box { padding: 24px 20px; }
    .row { padding: 22px 20px; }
    .bring-card { padding: 24px 20px; }
    .highlight-body { padding: 14px 18px 20px; }
    .highlight-title { padding: 10px 18px 0; }
    .highlight-meta { padding: 16px 18px 0; }
}
@media (max-width: 1024px) {
    .row, .row.reverse { grid-template-columns: 1fr; gap: 26px; padding: 28px; }
    .row.reverse img, .row.reverse .text { order: initial; }
    .row img { min-height: 260px; }
}
@media (max-width: 640px) {
    .row img { min-height: 220px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
}
