/* ============================================
   INNERA — Premium Awwwards-style Design
   ============================================ */

:root {
    /* Colors */
    --bg: #0a0a0a;
    --bg-soft: #0f0f0f;
    --surface: #161616;
    --surface-elevated: #1a1a1a;
    --text: #f5f5f5;
    --text-muted: rgba(245, 245, 245, 0.65);
    --text-dim: rgba(245, 245, 245, 0.4);
    --accent: #4ade80;
    --accent-hover: #5eea94;
    --accent-dim: rgba(74, 222, 128, 0.1);
    --accent-glow: rgba(74, 222, 128, 0.2);
    /* Very soft text gradient: stays near white, just a whisper of green (no obvious white→green line) */
    --gradient-text-soft: linear-gradient(135deg, #f5f5f5 0%, #f2f8f5 25%, #eef6f2 50%, #e8f4ef 75%, #dff0e8 100%);
    --gradient-text-soft-green: linear-gradient(135deg, #e5f5ec 0%, #d4efe0 40%, #b8e6ce 75%, #9dd9b8 100%);
    
    /* Typography */
    --font-head: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --radius: 24px;
    --radius-lg: 32px;
    --radius-sm: 16px;
    
    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== Base Styles ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Scroll targets */
[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

/* ========== Custom Cursor (disabled for performance) ========== */
.cursor {
    display: none;
}

/* ========== Scroll Progress ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: opacity 0.3s;
}

/* ========== Container ========== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 3vw, 32px) clamp(24px, 5vw, 80px);
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: clamp(16px, 2.5vw, 24px) clamp(24px, 5vw, 80px);
}

.logo {
    position: relative;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    letter-spacing: -0.03em;
    color: var(--text);
    text-decoration: none;
    z-index: 1;
}

.logo-inner {
    position: relative;
    display: inline-block;
    background: var(--gradient-text-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s var(--ease-out);
}

.logo:hover .logo-inner {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: color 0.3s var(--ease-out);
    overflow: hidden;
}

.nav-link span {
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========== Dil seçici (ephora ile aynı tasarım): transparan, dünya + dil kodu + aşağı ok ========== */
.lang-selector {
    position: relative;
}
.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 8px 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.lang-trigger:hover {
    color: var(--text);
}
.lang-trigger:focus-visible {
    outline: none;
    color: var(--text);
}
.lang-trigger-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    opacity: 0.9;
}
.lang-trigger-value {
    font-weight: 600;
    letter-spacing: 0.03em;
}
.lang-trigger-chevron {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    opacity: 0.8;
    transition: transform 0.2s ease;
}
.lang-selector.open .lang-trigger-chevron {
    transform: rotate(180deg);
}
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    min-width: 160px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    padding: 4px 0;
    max-height: 280px;
    overflow-y: auto;
    z-index: 1001;
}
.lang-selector.open .lang-dropdown {
    display: block;
}
.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    -webkit-tap-highlight-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lang-option:last-child {
    border-bottom: none;
}
.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}
.lang-option.active {
    color: var(--accent);
    background: var(--accent-dim);
}
.lang-option:focus-visible {
    outline: none;
    background: rgba(255, 255, 255, 0.04);
}
@media (max-width: 767px) {
    .lang-dropdown {
        min-width: 140px;
        max-height: 260px;
    }
    .lang-option {
        min-height: 48px;
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.menu-btn.open span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.open span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(120px, 15vw, 160px) clamp(24px, 5vw, 80px) clamp(100px, 12vw, 140px);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(74, 222, 128, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(74, 222, 128, 0.04) 0%, transparent 50%);
    opacity: 0;
    animation: fadeIn 1.5s var(--ease-out) 0.3s forwards;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: 100px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-head);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line[data-line="1"] {
    font-size: clamp(3.5rem, 12vw, 7rem);
    background: var(--gradient-text-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(100%);
    animation: revealLine 1s var(--ease-out) 0.5s forwards;
}

.hero-title .line[data-line="2"] {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.5em;
    opacity: 0;
    transform: translateY(100%);
    animation: revealLine 1s var(--ease-out) 0.7s forwards;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.3s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(16px, 2.5vw, 20px) clamp(28px, 4vw, 36px);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.hero-cta span,
.hero-cta svg {
    position: relative;
    z-index: 1;
}

.hero-cta--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--bg);
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.25);
}

.hero-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74, 222, 128, 0.35);
}

.hero-cta--primary::before {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.hero-cta--primary:hover::before {
    opacity: 1;
}

.hero-cta--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: max(clamp(24px, 4vw, 40px), env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 1.5s forwards;
    z-index: 10;
    pointer-events: none;
}

.scroll-line {
    width: 1px;
    height: clamp(36px, 5vw, 52px);
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Hero: imleç ile highlight (desktop) */
.hero-cursor-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(74, 222, 128, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.hero:hover .hero-cursor-glow,
.hero.hero--cursor-active .hero-cursor-glow {
    opacity: 1;
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes revealLine {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========== Section Common Styles ========== */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-num {
    color: var(--text-dim);
    margin-right: 0.75em;
}

.section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text);
}

/* Reveal animations – sadece opacity, metin hareket etmez */
.reveal,
.section-reveal {
    opacity: 0;
    transform: none;
    transition: opacity 0.6s var(--ease-out);
}

.reveal.visible,
.section-reveal.visible {
    opacity: 1;
    transform: none;
}

/* ========== Work Section ========== */
.work {
    position: relative;
    padding: clamp(100px, 15vw, 180px) 0;
    background: var(--bg);
}

.work-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(48px, 8vw, 80px);
    align-items: center;
}

.work-header .section-title {
    margin-bottom: 1rem;
}

.work-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: clamp(32px, 5vw, 48px);
}

.work-slide-info {
    margin-bottom: 1.5rem;
}

.work-slide-num {
    display: block;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    background: var(--gradient-text-soft-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-slide-name {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    letter-spacing: -0.01em;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.work-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    max-width: 150px;
}

.work-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 4px;
    width: 16.666%;
    transition: width 0.6s var(--ease-out);
}

.work-showcase-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 5vw, 48px);
}

.screen-stage {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.screen-stage-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.12) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(40px);
}

.phone-mockup--hero {
    position: relative;
    width: min(340px, 85vw);
    max-width: 380px;
    border-radius: 52px;
    padding: 16px;
    background: linear-gradient(165deg, #1a1a1a 0%, #0f0f0f 50%, #141414 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 0 3px rgba(74, 222, 128, 0.15),
        0 50px 100px -20px rgba(0, 0, 0, 0.8),
        0 0 120px -30px rgba(74, 222, 128, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: all 0.6s var(--ease-out);
}

.phone-mockup--hero:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 0 3px rgba(74, 222, 128, 0.3),
        0 60px 120px -20px rgba(0, 0, 0, 0.7),
        0 0 140px -20px rgba(74, 222, 128, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.08);
}

.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 32px;
    background: var(--bg);
    border-radius: 0 0 24px 24px;
    z-index: 2;
}

.phone-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5;
    border-radius: 40px;
    overflow: hidden;
    background: var(--surface);
}

.phone-screen .screen-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
}

.phone-screen .screen-img.is-active {
    opacity: 1;
    z-index: 1;
}

.showcase-controls {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
}

.showcase-counter {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    min-width: 60px;
    text-align: center;
}

.showcase-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.showcase-btn:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--accent);
    transform: scale(1.05);
}

.showcase-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s var(--ease-out);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.dot.is-active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.work-swipe-hint {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: none;
}

@media (min-width: 1025px) {
    .work-row {
        grid-template-columns: 0.85fr 1.15fr;
        gap: clamp(64px, 8vw, 100px);
    }
}

/* ========== About Section ========== */
.about {
    position: relative;
    padding: clamp(100px, 15vw, 180px) 0;
    background: var(--bg-soft);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(56px, 10vw, 120px);
    align-items: center;
}

.about-visual-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-visual {
    position: relative;
    max-width: 380px;
    opacity: 0;
    transform: none;
    transition: opacity 0.6s var(--ease-out);
}

.about.in-view .about-visual {
    opacity: 1;
    transform: none;
}

.about-visual-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-visual-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(74, 222, 128, 0.1) 100%);
    pointer-events: none;
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text .section-title {
    margin-bottom: 2rem;
}

.about-title-line {
    display: block;
    opacity: 0;
    transform: none;
    transition: opacity 0.6s var(--ease-out);
}

.about.in-view .about-title-line:nth-child(1) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none;
}

.about.in-view .about-title-line:nth-child(2) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none;
    background: var(--gradient-text-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-reveal {
    opacity: 0;
    transform: none;
    transition: opacity 0.6s var(--ease-out);
}

.about.in-view .about-reveal {
    opacity: 1;
    transform: none;
}

.about.in-view .about-reveal[data-delay="1"] { transition-delay: 0.6s; }
.about.in-view .about-reveal[data-delay="2"] { transition-delay: 0.8s; }

.about-p {
    color: var(--text-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

@media (min-width: 1025px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

/* ========== Content Sections ========== */
.content-section {
    padding: clamp(100px, 15vw, 160px) 0;
}

.content-section:nth-of-type(even) {
    background: var(--bg);
}

.content-section:nth-of-type(odd) {
    background: var(--bg-soft);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block .section-title {
    margin-bottom: 2rem;
}

.content-p {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.content-bullets {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
}

.content-bullets li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    font-size: clamp(1.05rem, 1.4vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-muted);
}

.content-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.4);
}

.content-quotes {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-quotes blockquote {
    font-family: var(--font-head);
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--accent);
    background: rgba(74, 222, 128, 0.03);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    position: relative;
}

.content-quotes blockquote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}

.content-p--closing {
    margin-top: 2.5rem;
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
    font-weight: 500;
    color: var(--text);
}

/* ========== CTA Section ========== */
.cta {
    padding: clamp(100px, 15vw, 160px) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(74, 222, 128, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    background: var(--gradient-text-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.cta-btn span,
.cta-btn svg {
    position: relative;
    z-index: 1;
}

.cta-btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--bg);
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.cta-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(74, 222, 128, 0.4);
}

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

.cta-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* ========== Footer ========== */
.footer {
    padding: clamp(60px, 10vw, 80px) clamp(24px, 5vw, 80px);
    background: var(--bg-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-main .logo {
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s var(--ease-out);
}

.footer-social-link:hover {
    color: var(--accent);
    background: var(--accent-dim);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-company {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-company:hover {
    color: var(--accent);
}

/* ========== Legal Pages (Privacy, Terms) ========== */
.legal-page {
    padding: clamp(140px, 18vw, 200px) 0 clamp(80px, 12vw, 120px);
    background: var(--bg);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: var(--gradient-text-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.legal-content h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-content h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-muted);
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
}

.legal-contact {
    margin-top: 0.5rem;
}

.legal-contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.legal-contact a:hover {
    color: var(--accent-hover);
}

/* ========== Contact Page ========== */
.contact-subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(48px, 8vw, 80px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    outline: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--text-dim);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(245,245,245,0.4)' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-select option {
    background: var(--surface);
    color: var(--text);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--bg);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.25);
    align-self: flex-start;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74, 222, 128, 0.35);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form success message */
.form-success {
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) 2rem;
}

.form-success-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact info cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: border-color 0.3s var(--ease-out);
}

.contact-info-card:hover {
    border-color: rgba(74, 222, 128, 0.2);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}

.contact-info-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-info-link:hover {
    color: var(--accent-hover);
}

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

.contact-social-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.contact-social-links a:hover {
    color: var(--accent-hover);
}

/* Footer legal links */
.footer-legal {
    display: flex;
    gap: clamp(16px, 3vw, 32px);
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-legal-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s var(--ease-out);
}

.footer-legal-link:hover {
    color: var(--accent);
}

@media (min-width: 769px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(12px);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease-out);
    }
    
    body.menu-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        padding: 0 40px;
        background: transparent;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        z-index: 999;
    }
    
    .nav.open {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: clamp(2rem, 8vw, 3rem);
        font-weight: 800;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s var(--ease-out);
    }
    
    .nav.open .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav.open .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav.open .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .nav.open .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .nav.open .nav-link:nth-child(4) { transition-delay: 0.25s; }
    .nav.open .nav-link:nth-child(5) { transition-delay: 0.3s; }
    
    .menu-btn {
        display: flex;
    }
    
    /* Work section mobile */
    .work-swipe-hint {
        display: block;
        margin-top: 1rem;
    }
    
    .phone-mockup--hero {
        transform: none;
    }
    
    .phone-mockup--hero:hover {
        transform: scale(1.02);
    }
    
    /* Footer mobile */
    .footer-inner {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Touch devices */
@media (hover: none) {
    .cursor {
        display: none;
    }
}