/* ==========================================================================
   Terminal Meets Editorial - Technical Precision + Creative Impact
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

:root {
    --bg: #08080c;
    --surface: #111116;
    --surface-elevated: #18181f;
    --surface-light: rgba(255,255,255,0.03);
    --text: rgba(255,255,255,0.9);
    --text-muted: rgba(255,255,255,0.5);
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-warm: #f59e0b;
    --accent-warm-light: #fbbf24;
    --gradient-start: #1d4ed8;
    --gradient-end: #60a5fa;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Satoshi', -apple-system, sans-serif;
    font-size: 19px;
    line-height: 1.55;
    background: var(--bg);
    color: var(--text);
}

/* Subtle grain texture overlay - disabled on mobile */
@media (min-width: 901px) {
    body > *:first-child::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1000;
        opacity: 0.03;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    }
}

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

/* Italic accent with animated gradient */
.italic-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}

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

/* ==========================================================================
   Global gradient orbs - spans entire page
   ========================================================================== */

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 600px;
    height: 600px;
    background: var(--gradient-start);
    top: -200px;
    right: -200px;
    animation: float1 20s ease-in-out infinite;
}

body::after {
    width: 500px;
    height: 500px;
    background: var(--gradient-end);
    bottom: 20%;
    left: -150px;
    animation: float2 25s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-80px, 100px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, -80px); }
}

/* ==========================================================================
   Container
   ========================================================================== */

section {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Hero - Editorial Impact with Technical Details
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

/* Technical grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, black 20%, transparent 70%);
}


@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

/* Decorative bracket */
.hero-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 60px;
    height: 60px;
    border-left: 2px solid var(--accent-warm);
    border-top: 2px solid var(--accent-warm);
    opacity: 0;
    animation: bracketReveal 0.6s ease 0.3s forwards;
}

@keyframes bracketReveal {
    from { opacity: 0; width: 0; height: 0; }
    to { opacity: 0.6; width: 60px; height: 60px; }
}

.hero-title {
    font-size: clamp(4.5rem, 14vw, 9rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: titleReveal 0.8s ease 0.1s forwards;
}

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

.hero-title .last-name {
    display: block;
    background: linear-gradient(135deg, var(--text) 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    color: var(--accent-warm);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: heroFadeIn 0.6s ease 0.4s forwards;
}

.hero-tagline::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent-warm);
}

.hero-description {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    opacity: 0;
    animation: heroFadeIn 0.6s ease 0.5s forwards;
}

.hero-description .italic-accent {
    font-size: 1.6rem;
    color: var(--accent-light);
}

.hero-cta {
    margin-top: 3.5rem;
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: heroFadeIn 0.6s ease 0.7s forwards;
}

.btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-warm);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--accent-warm-light);
    box-shadow:
        0 10px 40px rgba(245, 158, 11, 0.3),
        0 0 0 1px rgba(245, 158, 11, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}


.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-warm), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* ==========================================================================
   About
   ========================================================================== */

#about {
    padding: 10rem 4rem;
    background: linear-gradient(to bottom,
        var(--bg) 0%,
        var(--bg) 20%,
        var(--surface) 80%,
        var(--surface) 100%
    );
}

.about-content {
    max-width: 900px;
    display: grid;
    grid-template-columns: 4px 1fr;
    gap: 3rem;
}

.about-accent {
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
    background-size: 100% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.about-statement {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.about-details {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-details p {
    margin-bottom: 1.25rem;
}

.about-details strong {
    color: var(--text);
    font-weight: 600;
}

/* ==========================================================================
   Tools - Interface/Terminal Style Cards
   ========================================================================== */

#tools {
    padding: 6rem 4rem 10rem;
    background: linear-gradient(to bottom,
        var(--surface) 0%,
        var(--bg) 30%,
        var(--bg) 100%
    );
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-family: 'Satoshi', sans-serif;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
}

.tool-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Window-style header bar */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: var(--surface-elevated);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Status indicator dot */
.tool-card::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 16px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 12px rgba(34, 197, 94, 0.8); }
}

.tool-card-inner {
    padding: 3.5rem 1.75rem 1.75rem;
}

/* Corner brackets on image */
.tool-card .tool-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.tool-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.tool-card .tool-image-wrapper::before,
.tool-card .tool-image-wrapper::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--accent-warm);
    border-style: solid;
    opacity: 0;
    transition: all 0.3s ease;
}

.tool-card .tool-image-wrapper::before {
    top: -6px;
    left: -6px;
    border-width: 2px 0 0 2px;
}

.tool-card .tool-image-wrapper::after {
    bottom: -6px;
    right: -6px;
    border-width: 0 2px 2px 0;
}

.tool-card:hover .tool-image-wrapper::before,
.tool-card:hover .tool-image-wrapper::after {
    opacity: 1;
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(245, 158, 11, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tool-card:hover .tool-image-wrapper {
    border-color: rgba(245, 158, 11, 0.3);
}

.tool-number {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-warm);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tool-type {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tool-card > p:last-of-type,
.tool-card-inner > p:last-of-type {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.tool-tech {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ==========================================================================
   Experience
   ========================================================================== */

#experience {
    padding: 6rem 4rem 10rem;
    background: linear-gradient(to bottom,
        var(--bg) 0%,
        var(--surface) 25%,
        var(--surface) 100%
    );
}

.experience-list {
    max-width: 700px;
    position: relative;
    padding-left: 2.5rem;
}

.experience-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end), transparent);
    border-radius: 1px;
}

.job {
    position: relative;
    padding-bottom: 2.5rem;
}

.job::before {
    content: '';
    position: absolute;
    left: calc(-2.5rem - 3px);
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--surface);
}

.job:last-child {
    padding-bottom: 0;
}

.job h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.job-role {
    font-size: 0.95rem;
    color: var(--accent-light);
    margin-bottom: 0.6rem;
}

.job > p:last-child {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.55;
}

/* ==========================================================================
   Work - Horizontal Carousel
   ========================================================================== */

#work {
    padding: 6rem 4rem 10rem;
    background: linear-gradient(to bottom,
        var(--surface) 0%,
        var(--bg) 30%,
        var(--bg) 70%,
        var(--surface) 100%
    );
}

#work .section-header {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.carousel-nav {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.work-carousel-wrapper {
    position: relative;
    overflow: visible;
}

.work-carousel {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: 320px;
    gap: 1rem;
    padding: 0.5rem 0 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.work-carousel::-webkit-scrollbar {
    display: none;
}

.work-card {
    width: 320px;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    scroll-snap-align: start;
}

/* Numbered index */
.work-card::before {
    counter-increment: work-counter;
    content: counter(work-counter, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.12);
    letter-spacing: 0.05em;
}

.work-carousel {
    counter-reset: work-counter;
}

/* Hover glow line at top */
.work-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover::after {
    transform: scaleX(1);
}

.work-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.12);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(245, 158, 11, 0.05);
}

.work-header {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.work-context {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.work-context::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent-warm);
    border-radius: 1px;
    transform: rotate(45deg);
}

.work-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    padding-right: 1.5rem;
}

.work-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-body > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.55;
    flex: 1;
}

.work-outcome {
    margin-top: 1.25rem;
    padding: 0.875rem 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    position: relative;
}

.work-outcome::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #22c55e, #16a34a);
    border-radius: 2px 0 0 2px;
}

.work-outcome-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.work-outcome-label::before {
    content: '→';
}

.work-outcome p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Contact - Clean + Technical
   ========================================================================== */

.contact-section {
    padding: 10rem 4rem;
    text-align: center;
    background: var(--surface);
    position: relative;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-intro {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-links a {
    padding: 1rem 2rem;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.contact-links a:first-child {
    background: var(--accent-warm);
    color: #000;
}

.contact-links a:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3);
}

.contact-links a:last-child {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
}

.contact-links a:last-child:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background: var(--surface);
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding: 2rem 4rem;
    font-size: 0.8rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .hero {
        padding: 6rem 2rem;
    }

    .hero-content::before {
        top: -1.5rem;
        left: -1rem;
        width: 40px;
        height: 40px;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-accent {
        width: 50px;
        height: 4px;
    }

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

    #about,
    #tools,
    #experience,
    #work,
    .contact-section {
        padding: 5rem 2rem;
    }

    #work {
        padding: 5rem 2rem;
    }

    .work-carousel {
        grid-template-rows: 1fr;
        grid-auto-columns: 280px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .work-card {
        width: 280px;
        min-width: 280px;
    }

    body::before,
    body::after {
        opacity: 0.25;
    }

    body::before {
        width: 200px;
        height: 200px;
        right: 0;
        top: 0;
    }

    body::after {
        width: 150px;
        height: 150px;
        left: 0;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 4rem 1.5rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        text-align: center;
        width: 100%;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .tool-card-inner {
        padding: 3rem 1.25rem 1.5rem;
    }

    .work-card h3 {
        font-size: 1.1rem;
    }
}
