/* Dreaming Drones — software / dev studio (dark tech) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-ui: "Space Grotesk", system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;

    --void: #050508;
    --surface: #0c0e14;
    --elevated: #12151f;
    --border: rgba(120, 200, 255, 0.12);
    --border-glow: rgba(0, 245, 255, 0.35);

    --text: #e8ecf4;
    --text-dim: #94a3b8;
    --text-muted: #64748b;

    --cyan: #22d3ee;
    --cyan-dim: rgba(34, 211, 238, 0.15);
    --violet: #a78bfa;
    --magenta: #e879f9;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;

    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);

    --pop-green: #34d399;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    background: var(--void);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(34, 211, 238, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(167, 139, 250, 0.08), transparent 50%);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    background: rgba(8, 9, 14, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
}

.logo-icon {
    color: var(--cyan);
    font-size: 1.15rem;
    text-shadow: 0 0 18px rgba(34, 211, 238, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 112px 22px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 15%, transparent 70%);
}

.grid-pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -12deg,
        transparent,
        transparent 80px,
        rgba(167, 139, 250, 0.03) 80px,
        rgba(167, 139, 250, 0.03) 160px
    );
    pointer-events: none;
}

.glow-effect {
    position: absolute;
    width: min(90vw, 560px);
    height: min(90vw, 560px);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: conic-gradient(from 180deg, transparent, var(--cyan-dim), rgba(232, 121, 249, 0.1), transparent);
    filter: blur(60px);
    opacity: 0.7;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.85;
        transform: translateX(-50%) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.38rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(18, 21, 31, 0.8);
    margin-bottom: 1.35rem;
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.08);
}

.hero-title {
    font-family: var(--font-ui);
    font-size: clamp(2.5rem, 8vw, 4.25rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.title-word {
    display: block;
    margin-bottom: 0.05rem;
    color: var(--text);
}

.title-word.highlight {
    background: linear-gradient(120deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 0.85rem 1.65rem;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-ui);
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #0891b2, #6366f1);
    color: #fff;
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background: var(--elevated);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--border-glow);
}

.btn-outline:hover {
    background: var(--cyan-dim);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-box {
    text-align: center;
    padding: 1rem 0.4rem;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.stat-value {
    font-family: var(--font-mono);
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mouse {
    width: 20px;
    height: 32px;
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    position: relative;
}

.mouse::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--cyan);
    border-radius: 1px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(8px);
    }
}

section {
    padding: 88px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 0.65rem;
}

.section-title {
    font-family: var(--font-ui);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.games-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.games-showcase {
    margin-bottom: 3rem;
}

.featured-game {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 0;
    align-items: stretch;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.game-media {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.game-1 {
    background: linear-gradient(145deg, #0e7490 0%, #312e81 50%, #1e1b4b 100%);
}

.game-2 {
    background: linear-gradient(160deg, #164e63, #0c4a6e);
}

.game-3 {
    background: linear-gradient(160deg, #4c1d95, #312e81);
}

.game-4 {
    background: linear-gradient(160deg, #831843, #4c0519);
}

.game-5 {
    background: linear-gradient(160deg, #134e4a, #115e59);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-media:hover .game-overlay {
    opacity: 1;
}

.game-media:hover .game-image {
    transform: scale(1.04);
}

.game-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 0.3rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(5, 5, 8, 0.75);
}

.game-badge.featured {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(167, 139, 250, 0.25));
    border-color: var(--border-glow);
    color: #fff;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--elevated);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.game-info {
    padding: 1.85rem 1.65rem;
}

.game-meta {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.game-platform,
.game-year {
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.game-platform {
    color: var(--cyan);
}

.game-year {
    color: var(--violet);
}

.game-title {
    font-family: var(--font-ui);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.game-genre {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--magenta);
    margin-bottom: 0.85rem;
    letter-spacing: 0.06em;
}

.game-description {
    color: var(--text-dim);
    margin-bottom: 1.15rem;
    line-height: 1.75;
    font-size: 0.95rem;
}

.game-features {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.15rem;
    flex-wrap: wrap;
}

.feature-tag {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.game-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    gap: 1rem;
}

.game-card {
    background: var(--elevated);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.08);
}

.game-card .game-image {
    height: 150px;
}

.game-content {
    padding: 1.1rem 1.15rem 1.3rem;
}

.game-card .game-title {
    font-size: 1.05rem;
}

.game-card .game-description {
    font-size: 0.86rem;
}

.game-link {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.game-link:hover {
    color: var(--magenta);
}

.studio-section {
    border-top: 1px solid var(--border);
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
    align-items: center;
}

.studio-description {
    color: var(--text-dim);
    margin-bottom: 0.9rem;
    line-height: 1.78;
    font-size: 0.98rem;
}

.studio-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.value-item {
    text-align: center;
    padding: 1.1rem 0.65rem;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s ease;
}

.value-item:hover {
    border-color: rgba(167, 139, 250, 0.35);
}

.value-icon {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--cyan);
    margin-bottom: 0.4rem;
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.value-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.studio-visual {
    position: relative;
}

.studio-image {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(160deg, #1e1b4b, #0c4a6e 50%, #134e4a);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    padding: 0.65rem 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    background: rgba(12, 14, 20, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    animation: float 4s ease-in-out infinite;
    color: var(--text-dim);
}

.floating-card .card-text {
    color: var(--text);
    font-weight: 500;
}

.card-1 {
    top: 12px;
    right: -6px;
}

.card-2 {
    bottom: 56px;
    left: -10px;
    animation-delay: 1s;
}

.card-3 {
    top: 42%;
    right: -12px;
    animation-delay: 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

.card-icon {
    color: var(--violet);
    font-size: 0.75rem;
}

.team-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.team-member {
    background: var(--elevated);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.35);
}

.member-photo {
    margin-bottom: 0.85rem;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(167, 139, 250, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan);
    border: 1px solid var(--border);
}

.member-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.member-role {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.55rem;
}

.member-bio {
    color: var(--text-dim);
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.member-social {
    display: flex;
    justify-content: center;
}

.member-social a {
    padding: 0.35rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--cyan);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
}

.member-social a:hover {
    background: var(--cyan-dim);
    border-color: var(--border-glow);
}

.careers-section {
    border-top: 1px solid var(--border);
}

.careers-content {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.careers-description {
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    line-height: 1.75;
    font-size: 0.96rem;
}

.open-positions {
    margin: 1.5rem 0;
}

.open-positions h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.position-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    gap: 0.75rem;
}

.position-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.position-location {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

.careers-image {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(165deg, #312e81, #0e7490);
    box-shadow: var(--shadow-lg);
}

.news-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
    gap: 1rem;
}

.news-card {
    background: var(--elevated);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.25);
}

.news-card.featured-news {
    grid-column: span 2;
}

.news-image {
    height: 160px;
    transition: transform 0.45s ease;
}

.news-1 {
    background: linear-gradient(135deg, #0e7490, #4338ca);
}

.news-2 {
    background: linear-gradient(135deg, #7c3aed, #be185d);
}

.news-3 {
    background: linear-gradient(135deg, #0f766e, #155e75);
}

.news-card:hover .news-image {
    transform: scale(1.02);
}

.news-content {
    padding: 1.1rem 1.15rem;
}

.news-date {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    display: block;
}

.news-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.news-excerpt {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.65rem;
}

.news-link {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--cyan);
    text-decoration: none;
}

.news-link:hover {
    color: var(--magenta);
}

.contact-section {
    border-top: 1px solid var(--border);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-card,
.social-media {
    padding: 1.1rem;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.info-icon {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--cyan);
    margin-bottom: 0.35rem;
}

.info-card h4,
.social-media h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.info-card p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.65;
}

.info-card p a {
    color: var(--cyan);
    text-decoration: none;
    word-break: break-all;
}

.info-card p a:hover {
    color: var(--magenta);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.social-link {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.social-link:hover {
    color: var(--cyan);
    border-color: var(--border-glow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px var(--cyan-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: #020203;
    padding: 2.5rem 0 1.25rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    color: var(--text);
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0.75rem 0 1rem;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 0.45rem;
}

.social-icon {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.social-icon:hover {
    color: var(--cyan);
    border-color: var(--border-glow);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 560px;
}

.footer-column h4 {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.86rem;
}

.footer-column a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .featured-game {
        grid-template-columns: 1fr;
    }

    .game-media {
        min-height: 240px;
    }

    .studio-content,
    .careers-content {
        grid-template-columns: 1fr;
    }

    .news-card.featured-news {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        width: 100%;
        background: rgba(8, 9, 14, 0.97);
        padding: 1rem 0 1.5rem;
        border-top: 1px solid var(--border);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu li {
        padding: 0.55rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .studio-values {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    section {
        padding: 72px 0;
    }

    .hero {
        padding: 96px 18px 64px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .game-actions {
        flex-direction: column;
    }

    .position-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
