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

:root {
    --bg-color: #FAF9F6;
    --primary-color: #A13E26; /* Terracotta red from design */
    --text-primary: #2D2D2D;
    --text-secondary: #6B6B6B;
    --card-blue: #E1E8FD;
    --card-green: #B5FFD8;
    --card-cream: #FAF3EC;
    --white: #FFFFFF;
    --max-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}



/* Base resets and smooth behavior */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Only hide cursor if custom cursor is active (added via JS) */
body.has-custom-cursor,
body.has-custom-cursor * {
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

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

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}


body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links a.active {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.btn-hire {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 4px;
}

.btn-hire:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease forwards;
}

.hero-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: block;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title span {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 450px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
}

.explore-link::after {
    content: '';
    width: 80px;
    height: 1.5px;
    background-color: var(--primary-color);
    display: block;
}

.cv-link {
    transition: var(--transition);
    display: inline-block;
}

.cv-link:hover {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 1;
    position: relative;
}

.hero-image-container img {
    border-radius: 12px;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.experience-badge h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.experience-badge p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* Core Disciplines */
.disciplines {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.discipline-card {
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.discipline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.discipline-card.product {
    background-color: var(--card-cream);
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.discipline-card.ui {
    background-color: var(--card-blue);
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.discipline-card.video {
    background-color: var(--card-green);
    grid-column: 1;
    grid-row: 2;
    padding: 4rem 3rem;
}

.quote-card {
    grid-column: 1 / 3;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.discipline-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.discipline-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
}

.discipline-card .tags {
    margin-top: 2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
}

.discipline-card .tags span {
    display: block;
    margin-bottom: 0.5rem;
}

.discipline-card .tags span::before {
    content: '→';
    margin-right: 0.5rem;
}

.discipline-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.quote-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.quote-content blockquote {
    font-family: 'EB Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.quote-author {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Values Section */
.values {
    background-color: #F2F2F2;
    padding: 4rem 0;
    margin-top: 5rem;
}

.values-label {
    text-align: center;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #888;
}

.value-item svg {
    width: 20px;
    height: 20px;
}

.value-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(161, 62, 38, 0.2);
}

/* Works Page Specifics */
.works-header {
    padding-top: 10rem;
    margin-bottom: 4rem;
}

.works-label {
    font-size: 0.7rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.works-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.works-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: flex-end;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border: 1px solid #eee;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background-color: #E1E8FD;
    color: #4A6CF7;
    border-color: #E1E8FD;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    margin-bottom: 6rem;
}

.work-card {
    transition: var(--transition);
}

.work-img-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #f0f0f0;
    aspect-ratio: 1 / 1.1;
}

.work-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.work-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #79D19E; /* Light green from design */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.work-category span.arrow {
    font-size: 1rem;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: var(--transition);
}

.work-card:hover .work-category span.arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.work-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.discover-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
    background-color: #F6F6F6;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8rem;
}

.discover-btn:hover {
    background-color: #f0f0f0;
}

.footer-logo-alt {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Project Detail / Case Study */
.project-detail-hero {
    padding-top: 10rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.case-study-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.project-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.project-detail-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.project-detail-meta {
    display: flex;
    gap: 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.hero-mockup img {
    width: 100%;
    transform: rotate(5deg);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.section-divider {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 4rem 0 2rem 0;
}

.brief-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 8rem;
}

.challenge-box {
    background-color: #F6F6F6;
    padding: 4rem;
    border-radius: 4px;
}

.challenge-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.challenge-box .highlight {
    color: #4A6CF7;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.full-width-image {
    margin-bottom: 8rem;
}

.full-width-image img {
    width: 100%;
    border-radius: 8px;
}

.process-section {
    text-align: center;
    margin-bottom: 6rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 8rem;
}

.process-card {
    background-color: #FAF3EC;
    padding: 3rem;
    border-radius: 8px;
    text-align: left;
}

.process-card .number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

/* Stats Circles */
.stats-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.stat-circle svg {
    transform: rotate(-90deg);
}

.stat-circle circle {
    fill: none;
    stroke-width: 4;
}

.stat-circle .bg {
    stroke: #EEE;
}

.stat-circle .progress {
    stroke: var(--primary-color);
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 2s ease-out;
}

.stat-circle .label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Persona Card */
.persona-card {
    background-color: white;
    border: 1px solid #EEE;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.persona-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Interface Choreography */
.choreography-section {
    background-color: #FAF3EC;
    padding: 8rem 0;
    margin: 0 -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.polaroid-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.polaroid {
    background-color: white;
    padding: 1.5rem 1.5rem 4rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.polaroid:nth-child(2) { transform: rotate(1deg); }
.polaroid:nth-child(3) { transform: rotate(-1deg); }

.polaroid:hover {
    transform: translateY(-10px) rotate(0deg);
}

/* Results section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
    padding: 8rem 0;
}

.result-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.result-item h4.green { color: #79D19E; }
.result-item h4.blue { color: #4A6CF7; }
.artisan-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 5rem;
    margin-bottom: 8rem;
    align-items: flex-start;
}

.artisan-image-wrapper {
    background-color: #FAF3EC;
    padding: 1.5rem;
    border-radius: 4px;
}

.artisan-image-wrapper img {
    border-radius: 2px;
}

.artisan-bio {
    max-width: 550px;
}

.artisan-intro {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 500;
}

.artisan-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.toolbox-card {
    background-color: #FAF9F6;
    border: 1px solid #EEE;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.toolbox-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.skill-level {
    color: var(--text-secondary);
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
}

.skill-bar {
    height: 4px;
    background-color: #EEE;
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-progress.figma { background: var(--primary-color); }
.skill-progress.blender { background: #4A6CF7; }
.skill-progress.davinci { background: #79D19E; }
.skill-progress.unreal { background: #FF7EB3; }

.toolbox-note {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #F2EFE9;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    margin-bottom: 8rem;
}

.contact-info-panel {
    padding: 5rem;
}

.contact-info-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-panel p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.direct-contact {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-icon {
    width: 40px;
    height: 40px;
    background-color: #E8E5DF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.method-details span {
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-details h4 {
    font-size: 1rem;
    font-weight: 600;
}

.map-svg {
    width: 100%;
    height: 150px;
    background-color: #D6E0D8;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.form-panel {
    background-color: #F9F8F6;
    padding: 5rem;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-field label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-primary);
}

.input-field input, .input-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #DDD;
    padding: 0.75rem 0;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-field input:focus, .input-field textarea:focus {
    border-bottom-color: var(--primary-color);
}

.category-selection {
    margin-bottom: 2.5rem;
}

.category-selection label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pill {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #EEE;
    font-size: 0.75rem;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.pill:hover {
    border-color: var(--primary-color);
}

.pill.active {
    background-color: #E1E8FD;
    color: #4A6CF7;
    border-color: #E1E8FD;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-submit span {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .btn-hire {
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .project-detail-title {
        font-size: 3.5rem;
    }
}

/* Accessibility & Utils */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
}

.cursor-dot, .cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
}

.cursor-outline {
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background-color 0.3s;
}

/* Cursor Hover State */
.cursor-hover .cursor-dot {
    width: 0;
    height: 0;
}

.cursor-hover .cursor-outline {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    opacity: 0.15;
    border: none;
}

.btn-secondary:hover span {
    transform: translateX(5px);
}

.btn-secondary span {
    transition: var(--transition);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.copyright {
    font-size: 0.7rem;
    color: #AAA;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 8rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .disciplines-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .discipline-card.ui {
        grid-column: 1;
        grid-row: auto;
    }
    .discipline-card.product {
        flex-direction: column;
        align-items: flex-start;
    }
    .values-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
}
