:root {
  --bg: #0a0a0a;
  --bg-alt: rgba(12, 12, 15, 0.75);
  --bg-card: rgba(20, 20, 25, 0.82);
  --text: #f0ece4;
  --text-dim: #8a8680;
  --accent: #ff6b35;
  --accent-alt: #ff9f1c;
  --accent-glow: rgba(255, 107, 53, 0.3);
  --grain-opacity: 0.03;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: #050508; }

body {
  background: transparent;
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity);
  pointer-events: none;
  z-index: 9999;
}

::selection { background: var(--accent); color: var(--bg); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #050508; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ========== AMBIENT BACKGROUND ========== */
.ambient-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: -1; overflow: hidden;
  background: #050508;
}

#particleCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* Orbs - massive glowing blobs */
.orb {
  position: absolute; border-radius: 50%;
  will-change: transform;
}
.orb-1 {
  width: 1100px; height: 1100px; top: -25%; left: -20%;
  background: radial-gradient(circle, rgba(255,107,53,0.8), rgba(255,107,53,0.25) 35%, transparent 60%);
  filter: blur(30px);
  animation: orbFloat1 20s ease-in-out infinite;
}
.orb-2 {
  width: 1000px; height: 1000px; bottom: -15%; right: -20%;
  background: radial-gradient(circle, rgba(255,159,28,0.7), rgba(255,159,28,0.2) 35%, transparent 60%);
  filter: blur(30px);
  animation: orbFloat2 28s ease-in-out infinite;
}
.orb-3 {
  width: 800px; height: 800px; top: 25%; left: 35%;
  background: radial-gradient(circle, rgba(232,69,48,0.55), transparent 50%);
  filter: blur(40px);
  animation: orbFloat3 35s ease-in-out infinite;
}
.orb-4 {
  width: 700px; height: 700px; top: 55%; left: -10%;
  background: radial-gradient(circle, rgba(255,107,53,0.5), transparent 50%);
  filter: blur(40px);
  animation: orbFloat1 40s ease-in-out infinite reverse;
}

/* Pulse rings */
.pulse-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.4);
  will-change: transform, opacity;
}
.pulse-1 {
  width: 300px; height: 300px; top: 20%; left: 15%;
  animation: pulseExpand 5s ease-out infinite;
}
.pulse-2 {
  width: 250px; height: 250px; top: 50%; right: 20%;
  animation: pulseExpand 7s ease-out infinite 2s;
}
.pulse-3 {
  width: 280px; height: 280px; bottom: 15%; left: 40%;
  animation: pulseExpand 6s ease-out infinite 3.5s;
}

@keyframes pulseExpand {
  0% { transform: scale(0.15); opacity: 1; border-width: 3px; }
  100% { transform: scale(4); opacity: 0; border-width: 0.5px; }
}

/* Light streaks - horizontal scanlines */
.light-streak {
  position: absolute; height: 2px; left: 0; width: 100%;
  will-change: transform, opacity;
}
.streak-1 {
  top: 25%;
  background: linear-gradient(90deg, transparent 5%, rgba(255,107,53,0.7) 30%, rgba(255,159,28,0.5) 70%, transparent 95%);
  animation: streakSweep 7s ease-in-out infinite;
}
.streak-2 {
  top: 55%;
  background: linear-gradient(90deg, transparent 5%, rgba(255,107,53,0.6) 40%, rgba(232,69,48,0.4) 60%, transparent 95%);
  animation: streakSweep 10s ease-in-out infinite 2.5s;
}
.streak-3 {
  bottom: 30%;
  background: linear-gradient(90deg, transparent 5%, rgba(255,159,28,0.6) 35%, rgba(255,107,53,0.4) 65%, transparent 95%);
  animation: streakSweep 9s ease-in-out infinite 5s;
}

@keyframes streakSweep {
  0% { transform: scaleX(0) translateX(-50%); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: scaleX(1) translateX(0); opacity: 0.8; }
  90% { opacity: 1; }
  100% { transform: scaleX(0) translateX(50%); opacity: 0; }
}

/* Geometric wireframes - glowing trapezoids/diamonds */
.geo {
  position: absolute;
  border: 2px solid rgba(255, 107, 53, 0.4);
  will-change: transform; opacity: 0;
  animation-fill-mode: forwards;
  box-shadow: 0 0 20px rgba(255,107,53,0.15), inset 0 0 20px rgba(255,107,53,0.08);
}
.geo-1 {
  width: 450px; height: 450px; top: 6%; right: 2%;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  animation: geoSpin1 25s linear infinite, geoFadeIn 1.5s ease forwards;
}
.geo-2 {
  width: 350px; height: 350px; top: 45%; left: 0%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
  animation: geoSpin2 35s linear infinite, geoFadeIn 1.5s ease 0.3s forwards;
}
.geo-3 {
  width: 280px; height: 280px; bottom: 10%; right: 12%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: geoSpin1 20s linear infinite reverse, geoFadeIn 1.5s ease 0.6s forwards;
}
.geo-4 {
  width: 380px; height: 380px; top: 65%; left: 25%;
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
  animation: geoSpin2 45s linear infinite reverse, geoFadeIn 1.5s ease 0.9s forwards;
}
.geo-5 {
  width: 300px; height: 300px; top: 18%; left: 45%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: geoSpin1 30s linear infinite, geoFadeIn 1.5s ease 1.2s forwards;
}

@keyframes geoSpin1 {
  0% { transform: rotate(0deg) translate(0, 0); }
  25% { transform: rotate(90deg) translate(25px, -20px); }
  50% { transform: rotate(180deg) translate(-15px, 15px); }
  75% { transform: rotate(270deg) translate(20px, 25px); }
  100% { transform: rotate(360deg) translate(0, 0); }
}
@keyframes geoSpin2 {
  0% { transform: rotate(0deg) translate(0, 0); }
  25% { transform: rotate(-90deg) translate(-20px, 15px); }
  50% { transform: rotate(-180deg) translate(15px, -25px); }
  75% { transform: rotate(-270deg) translate(-25px, -15px); }
  100% { transform: rotate(-360deg) translate(0, 0); }
}

/* Grid overlay */
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridShift 50s linear infinite;
}

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

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(250px, 180px) scale(1.25); }
  50% { transform: translate(-120px, 300px) scale(0.8); }
  75% { transform: translate(180px, -100px) scale(1.2); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-220px, -250px) scale(1.2); }
  50% { transform: translate(180px, -120px) scale(0.75); }
  75% { transform: translate(-100px, 100px) scale(1.15); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(300px, -180px) scale(1.3); }
  66% { transform: translate(-220px, 150px) scale(0.8); }
}
@keyframes geoFadeIn {
  to { opacity: 1; }
}

/* ========== NAV ========== */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; mix-blend-mode: difference;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 6px;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}

.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }

.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  color: var(--text); text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; z-index: 1001;
}
.menu-toggle span { width: 24px; height: 1px; background: var(--text); transition: all 0.3s ease; }

.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 6px;
  color: var(--text); text-decoration: none; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative; padding: 0 40px; overflow: hidden;
  background: transparent;
}

.hero-bg-lines { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-bg-lines .line {
  position: absolute; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.06), transparent);
}
.hero-bg-lines .line:nth-child(1) { left: 20%; }
.hero-bg-lines .line:nth-child(2) { left: 40%; }
.hero-bg-lines .line:nth-child(3) { left: 60%; }
.hero-bg-lines .line:nth-child(4) { left: 80%; }

.hero-content { text-align: center; position: relative; z-index: 2; }

.hero-label {
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 6px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 40px; opacity: 0; animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 15vw, 200px); line-height: 0.9; letter-spacing: 10px;
  margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-title .outline { -webkit-text-stroke: 1px var(--text); color: transparent; }
.hero-title .accent-dot { color: var(--accent); }

.hero-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: clamp(11px, 1.2vw, 14px); letter-spacing: 4px; color: var(--text-dim);
  margin-bottom: 60px; opacity: 0; animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 40px; border: 1px solid var(--accent);
  color: var(--accent); text-decoration: none;
  font-family: 'Space Mono', monospace; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  position: relative; overflow: hidden; transition: all 0.4s ease;
  opacity: 0; animation: fadeUp 0.8s ease forwards 1.4s;
}
.hero-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--accent);
  transition: left 0.4s ease; z-index: -1;
}
.hero-cta:hover { color: var(--bg); }
.hero-cta:hover::before { left: 0; }
.hero-cta .arrow { transition: transform 0.3s ease; }
.hero-cta:hover .arrow { transform: translateX(6px); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 1.7s;
}
.hero-scroll span {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dim); writing-mode: vertical-rl;
}
.hero-scroll .scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-corner {
  position: absolute; font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--text-dim); letter-spacing: 2px;
  opacity: 0; animation: fadeIn 0.8s ease forwards 2s;
}
.hero-corner.top-left { top: 100px; left: 40px; }
.hero-corner.top-right { top: 100px; right: 40px; text-align: right; }

/* ========== SECTION COMMON ========== */
section { padding: 120px 40px; position: relative; z-index: 1; }

.section-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 120px);
  color: transparent; -webkit-text-stroke: 1px rgba(255, 107, 53, 0.15);
  position: absolute; top: 80px; right: 40px; line-height: 1; user-select: none;
}

.section-label {
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 6px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px; display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--accent); }

.section-title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 900;
  font-size: clamp(32px, 5vw, 56px); letter-spacing: 2px;
  line-height: 1.2; margin-bottom: 20px;
}

.section-desc { font-size: 15px; color: var(--text-dim); max-width: 600px; line-height: 1.8; }

.divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 107, 53, 0.25), transparent);
  position: relative; z-index: 1;
}

/* ========== SERVICES ========== */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: 60px; background: rgba(255, 107, 53, 0.06);
}

.service-card {
  background: var(--bg-alt); padding: 48px 36px;
  position: relative; overflow: hidden; cursor: default; transition: all 0.5s ease;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg-card); }

.service-icon-geo { width: 32px; height: 32px; margin-bottom: 28px; color: var(--accent); }
.service-icon-geo svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: 1px; margin-bottom: 16px; color: var(--text);
}
.service-card p { font-size: 13px; color: var(--text-dim); line-height: 1.9; }
.service-card .service-num {
  position: absolute; bottom: 20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif; font-size: 48px;
  color: rgba(255, 107, 53, 0.05); line-height: 1;
}

/* ========== ABOUT ========== */
.about-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; margin-top: 60px;
}

.about-text p { font-size: 15px; color: var(--text-dim); margin-bottom: 24px; line-height: 1.9; }
.about-text .highlight { color: var(--text); font-weight: 700; }

.about-info { display: flex; flex-direction: column; }

.info-row {
  display: flex; gap: 40px; padding: 20px 0;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1); align-items: baseline;
}
.info-row:first-child { border-top: 1px solid rgba(255, 107, 53, 0.1); }

.info-label {
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dim); min-width: 100px; flex-shrink: 0;
}
.info-value { font-size: 14px; color: var(--text); }
.info-value a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.info-value a:hover { color: var(--accent); }

/* ========== PHILOSOPHY ========== */
.philosophy { background: var(--bg-alt); text-align: center; padding: 140px 40px; }

.philosophy-hero { max-width: 800px; margin: 0 auto 80px; }
.philosophy-hero h2 {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 900;
  font-size: clamp(28px, 4.5vw, 48px); line-height: 1.4; margin-bottom: 32px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), #ffcc70, var(--accent-alt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.philosophy-sub { font-size: 14px; color: var(--text-dim); line-height: 2; }

.philosophy-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 107, 53, 0.2), transparent);
  margin-bottom: 80px;
}

.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 1100px; margin: 0 auto; text-align: left;
}
.philosophy-card { padding: 0 20px; }
.philosophy-label {
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 5px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.philosophy-card h3 {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: 18px; line-height: 1.6; margin-bottom: 16px; color: var(--text);
}
.philosophy-card p { font-size: 13px; color: var(--text-dim); line-height: 1.9; }

/* ========== MARQUEE ========== */
.marquee-wrapper {
  overflow: hidden; padding: 40px 0;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 8px;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 107, 53, 0.15);
  user-select: none; flex-shrink: 0;
}

/* ========== WORKS ========== */
.works { background: var(--bg-alt); overflow: hidden; }

.works-scroll-container { margin-top: 60px; }

.works-row {
  overflow: hidden;
  margin-bottom: 4px;
}

.works-track {
  display: flex;
  gap: 4px;
  width: max-content;
}

.works-track img {
  height: 140px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.scroll-left { animation: worksScrollLeft 250s linear infinite; }
.scroll-right { animation: worksScrollRight 250s linear infinite; }

.works-row:hover .works-track {
  animation-play-state: paused;
}

@keyframes worksScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes worksScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ========== PROCESS ========== */
.process-timeline { margin-top: 80px; position: relative; padding-left: 60px; }
.process-timeline::before {
  content: ''; position: absolute; left: 20px; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), rgba(255, 107, 53, 0.08));
}
.process-step { position: relative; padding: 0 0 60px 40px; }
.process-step::before {
  content: ''; position: absolute; left: -49px; top: 8px;
  width: 10px; height: 10px; border: 2px solid var(--accent);
  border-radius: 50%; background: var(--bg);
}
.process-step .step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 14px;
  letter-spacing: 4px; color: var(--accent); margin-bottom: 8px;
}
.process-step h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px;
  letter-spacing: 3px; margin-bottom: 12px;
}
.process-step p { font-size: 13px; color: var(--text-dim); max-width: 500px; line-height: 1.8; }

/* ========== CONTACT ========== */
.contact { background: var(--bg-alt); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px;
}
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  letter-spacing: 2px; margin-bottom: 24px;
}
.contact-desc {
  font-size: 14px; color: var(--text-dim); line-height: 1.9;
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group label {
  display: block; font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 0; background: transparent;
  border: none; border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  color: var(--text); font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }

.submit-btn {
  align-self: flex-start; padding: 16px 48px;
  background: transparent; border: 1px solid var(--accent);
  color: var(--accent); font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; position: relative; overflow: hidden; transition: all 0.4s ease;
}
.submit-btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--accent);
  transition: left 0.4s ease; z-index: -1;
}
.submit-btn:hover { color: var(--bg); }
.submit-btn:hover::before { left: 0; }

/* ========== FOOTER ========== */
footer { padding: 60px 40px; border-top: 1px solid rgba(255, 107, 53, 0.1); position: relative; z-index: 1; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 6px;
  display: flex; align-items: center; gap: 10px;
}
.footer-logo-img { width: 28px; height: 28px; object-fit: contain; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  text-align: center; margin-top: 40px;
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: var(--text-dim); letter-spacing: 2px;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== KEYFRAMES ========== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  nav { padding: 16px 24px; }
  section { padding: 80px 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-corner { display: none; }
  .footer-content { flex-direction: column; gap: 24px; text-align: center; }
  .philosophy { padding: 100px 24px; }
  .works-track img { height: 100px; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 32px; }
  .info-row { flex-direction: column; gap: 8px; }
  .works-track img { height: 80px; }
}
