/* ============================================================
   SELF-HOSTED VARIABLE FONTS
   Source: Google Fonts. Files are variable — one .woff2 per subset
   covers all weights via the wght axis. Latin + Cyrillic only.
   ============================================================ */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('fonts/manrope-var-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('fonts/manrope-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('fonts/unbounded-var-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('fonts/unbounded-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('fonts/jetbrainsmono-var-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('fonts/jetbrainsmono-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Fraunces italic — latin only (no cyrillic subset).
   Cyrillic italic text falls back to Georgia / system serif italic. */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/fraunces-italic-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===========================================================
   JEVAN STUDIO® / 2026
   =========================================================== */

:root {
  --bg: #0A0A0B;
  --bg-2: #111114;
  --bg-3: #1A1A1F;
  --fg: #EFEDE2;
  --fg-muted: #7A7A78;
  --fg-faint: #3D3D3B;
  --border: rgba(239, 237, 226, 0.09);
  --border-strong: rgba(239, 237, 226, 0.18);
  --accent: #4F7FFF;
  --accent-2: #7FB2FF;
  --cyan: #00E5FF;
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --display: 'Unbounded', 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
  --r: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; color: inherit; }
em { font-style: normal; font-family: var(--serif); font-weight: 500; font-style: italic; }
sup { font-size: 0.4em; vertical-align: super; font-weight: 400; letter-spacing: 0; }

/* TYPOGRAPHY UTILITIES */
.mono-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg);
}
.mono-label.muted { color: var(--fg-faint); }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================================================
   LOADER
   =========================================================== */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-frame {
  width: 100%; height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px 40px;
  gap: 28px;
}

.loader-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}

.ll-label {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--fg-muted);
}

.loader-top .ll-label:first-child { color: var(--fg); }

.loader-stage {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding-bottom: 8px;
}

.loader-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: ll-fade 0.6s var(--ease) 0.05s forwards;
}
.ll-eyebrow-line {
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--accent);
}

.loader-mark {
  font-family: var(--display);
  font-size: clamp(4rem, 16vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.86;
  display: flex; align-items: baseline;
  color: var(--fg);
}

.lt {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  animation: lt-up 0.7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes lt-up {
  to { transform: translateY(0); opacity: 1; }
}

.lt-star {
  font-family: var(--serif);
  font-style: italic; font-weight: 300;
  color: var(--accent);
  font-size: 0.5em;
  margin-left: 0.06em;
  display: inline-block;
  transform: scale(0) rotate(-90deg);
  transform-origin: center;
  animation: star-in 0.7s var(--ease) 0.5s forwards;
}
@keyframes star-in {
  to { transform: scale(1) rotate(0deg); }
}

.loader-sub {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  color: var(--fg-muted);
  margin-top: 14px;
  letter-spacing: 0;
  opacity: 0;
  animation: ll-fade 0.6s var(--ease) 0.75s forwards;
}
.loader-sub .ll-r {
  font-family: var(--sans);
  font-size: 0.32em;
  font-style: normal;
  vertical-align: super;
  color: var(--accent);
  margin-left: 0.2em;
  font-weight: 400;
}

.loader-bottom { display: flex; flex-direction: column; gap: 14px; }

.loader-bar {
  width: 100%;
  height: 1px;
  background: var(--border);
  overflow: hidden;
  position: relative;
}
.loader-bar-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transition: width 0.2s ease-out;
}

.ll-pct {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.ll-pct sup {
  font-family: var(--mono);
  font-size: 0.65em;
  vertical-align: super;
  color: var(--fg-muted);
  margin-left: 1px;
  font-weight: 500;
}

@keyframes ll-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .loader-frame { padding: 20px 18px; gap: 18px; }
  .loader-top { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ===========================================================
   GRAIN OVERLAY
   =========================================================== */
.grain {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
}

/* ===========================================================
   CUSTOM CURSOR
   =========================================================== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border: 1.5px solid var(--fg);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s, border-color 0.3s, border-radius 0.3s;
  mix-blend-mode: difference;
}
.cursor-label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bg);
  opacity: 0; white-space: nowrap;
  transition: opacity 0.2s;
}
body.cursor-hover .cursor { width: 60px; height: 60px; background: var(--fg); border-color: var(--fg); mix-blend-mode: difference; }
body.cursor-hover .cursor-label { opacity: 1; }
body:not(.has-cursor) .cursor { display: none; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,11,0.7);
  border-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
}
.logo {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 17px;
  line-height: 1;
}
.logo-jevan {
  font-family: var(--display);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.logo-star {
  font-family: var(--serif);
  font-style: italic; font-weight: 300;
  color: var(--accent);
  font-size: 0.85em;
  transform: translateY(-0.05em);
  display: inline-block;
  margin: 0 1px;
}
.logo-studio {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  color: var(--fg-muted);
  font-size: 0.78em;
  letter-spacing: 0;
  margin-left: 2px;
}

.nav-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  justify-self: center;
}
.nav-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.nav-time { color: var(--fg); }

.nav-actions {
  display: flex; align-items: center; gap: 14px;
  justify-self: end;
}

.lang-switcher {
  display: flex; gap: 1px;
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.lang-btn {
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  border-radius: 100px;
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--fg); }
.lang-btn.active { background: var(--fg); color: var(--bg); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px 9px 20px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover { background: var(--accent); color: var(--fg); transform: translateY(-1px); }
.nav-cta-arrow { font-size: 11px; transition: transform 0.25s; }
.nav-cta:hover .nav-cta-arrow { transform: translate(2px,-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--fg); }
.mobile-menu { display: none; flex-direction: column; padding: 0 32px 20px; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 100px 32px 32px;
  overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero-aurora {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none; z-index: 0;
}
.aurora-1 {
  width: 800px; height: 800px; top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(79,127,255,0.14) 0%, transparent 70%);
  animation: aurora-drift 14s ease-in-out infinite;
}
.aurora-2 {
  width: 600px; height: 600px; bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
  animation: aurora-drift 18s ease-in-out infinite reverse;
}
@keyframes aurora-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(50px,-40px) scale(1.12); }
}

.hero-top { position: relative; z-index: 2; }
.hero-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.hero-main {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  padding: 40px 0;
}
.hero-headline {
  font-size: clamp(3.5rem, 14vw, 13rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.05em;
  width: 100%;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-word {
  display: inline-block;
  transform: translateY(110%);
  animation: word-reveal 1s var(--ease) forwards;
}
.hero-line:nth-child(2) .hero-word { animation-delay: 0.15s; }
.hero-line:nth-child(3) .hero-word { animation-delay: 0.3s; }
@keyframes word-reveal { to { transform: translateY(0); } }

.hero-word-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-r {
  font-family: var(--serif);
  font-size: 0.35em;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  margin-left: 0.1em;
  -webkit-text-fill-color: var(--accent);
}

.hero-bottom { position: relative; z-index: 2; }
.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  align-items: end;
}
.hero-info-col { display: flex; flex-direction: column; gap: 6px; }
.hero-info-val {
  font-size: 1rem; font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-scroll {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--fg); }
.hero-scroll-icon { animation: bob 2s ease-in-out infinite; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ===========================================================
   BIG MARQUEE
   =========================================================== */
.big-marquee {
  position: relative;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.big-marquee-track {
  display: flex; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 36px;
  padding: 0 36px;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--fg);
}
.marquee-item em {
  font-style: italic; font-weight: 500;
  color: var(--accent);
}
.marquee-star {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  color: var(--accent);
  font-size: 0.75em;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================================
   SECTIONS
   =========================================================== */
.section { padding: 140px 0; position: relative; }
.section-tight { padding: 100px 0; }

.section-meta {
  display: flex; gap: 24px; align-items: center;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 64px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.section-meta > span:first-child { color: var(--fg); }

.section-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 60px;
}
.section-title em { font-weight: 500; }

/* ===========================================================
   MANIFESTO
   =========================================================== */
.manifesto-text {
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 80px;
}
.manifesto-text em { color: var(--accent); }
.manifesto-fade { color: var(--fg-faint); display: block; }

.manifesto-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.manifesto-detail p {
  font-size: 1.1rem; line-height: 1.6; color: var(--fg-muted);
}

/* ===========================================================
   WORK
   =========================================================== */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.work-item-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; }
.work-item-featured .work-visual { aspect-ratio: 16 / 11; }
.work-item-featured .work-info { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; background: var(--bg-2); }

.work-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease);
  background: var(--bg-2);
}
.work-item:hover { border-color: var(--border-strong); }
.work-item:hover .work-visual img { transform: scale(1.06); }

.work-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-3);
}
.work-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.1);
  transition: transform 0.8s var(--ease);
}
.work-overlay {
  position: absolute; inset: 0;
  z-index: 2;
}
.work-overlay-1 {
  background:
    linear-gradient(135deg, rgba(10,10,11,0.55) 0%, rgba(79,127,255,0.35) 100%),
    radial-gradient(circle at 70% 30%, rgba(0,229,255,0.25), transparent 50%);
}
.work-overlay-2 {
  background:
    linear-gradient(135deg, rgba(10,10,11,0.55) 0%, rgba(127,79,255,0.3) 100%),
    radial-gradient(circle at 30% 70%, rgba(255,127,0,0.18), transparent 50%);
}
.work-overlay-3 {
  background:
    linear-gradient(135deg, rgba(10,10,11,0.55) 0%, rgba(255,100,130,0.3) 100%),
    radial-gradient(circle at 60% 40%, rgba(255,200,150,0.2), transparent 50%);
}
.work-watermark {
  position: absolute; bottom: 22px; left: 28px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(239,237,226,0.55);
  text-transform: uppercase;
}

.work-info {
  padding: 28px;
}
.work-info-top {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.work-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.work-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 50ch;
}
.work-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.tag {
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.work-view {
  display: inline-block;
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: transform 0.3s;
}
.work-item:hover .work-view { transform: translateX(4px); }

/* ===========================================================
   SERVICES — ROW LIST
   =========================================================== */
.services-list {
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.5fr) minmax(0, 2fr) auto 36px;
  gap: 32px;
  align-items: center;
  padding: 32px 8px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
}
.service-row::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(79,127,255,0.05) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
}
.service-row:hover { padding: 40px 24px; }
.service-row:hover::before { opacity: 1; }
.service-row:hover .service-title { color: var(--accent); }
.service-row:hover .service-arrow { color: var(--accent); transform: translateX(8px) rotate(-45deg); }

.service-num {
  font-family: var(--mono);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.service-title {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.3s;
}
.service-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.service-en {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  text-transform: uppercase;
}
.service-arrow {
  font-size: 1.5rem;
  color: var(--fg-muted);
  transition: color 0.3s, transform 0.4s var(--ease);
}

/* ===========================================================
   AI SPOTLIGHT
   =========================================================== */
.ai-spot { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ai-spot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}
.ai-spot-lead {
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-top: 32px;
  margin-bottom: 36px;
  max-width: 50ch;
  line-height: 1.6;
}
.ai-spot-image {
  position: relative;
  margin-top: 40px;
  aspect-ratio: 16/9;
  border-radius: var(--r);
  overflow: hidden;
}
.ai-spot-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
}
.ai-spot-image-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,11,0.55) 0%, rgba(79,127,255,0.4) 100%);
}

.ai-stat {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 24px;
}
.ai-stat-num {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.ai-stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 36ch;
}

.ai-features {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg);
}
.ai-feat {
  padding: 18px 24px;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, color 0.3s, padding 0.3s var(--ease);
  color: var(--fg);
}
.ai-feat:last-child { border-bottom: none; }
.ai-feat:hover { background: var(--bg-3); padding-left: 32px; color: var(--accent); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 24px;
  background: var(--accent);
  color: var(--fg);
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: all 0.25s var(--ease);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(79,127,255,0.35); }

/* ===========================================================
   PROCESS
   =========================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-2);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.process-step:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.process-num {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 32px;
}
.process-step h4 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact { padding: 120px 0; }
.contact-heading {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 60px;
}
.contact-heading em { font-weight: 500; color: var(--accent); }

.book-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 48px;
  padding: 16px 32px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.book-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(79,127,255,0.35);
}
.book-call-icon {
  font-style: normal;
  font-size: 1.1rem;
  display: inline-block;
  transform: rotate(20deg);
}

.contact-email-huge {
  display: inline-block;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--fg);
  transition: color 0.3s, border-color 0.3s;
}
.contact-email-huge:hover { color: var(--accent); border-color: var(--accent); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.contact-channels {
  display: flex; flex-direction: column;
}
.contact-channels .mono-label { margin-bottom: 24px; }
.contact-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: -0.02em;
  transition: padding 0.3s, color 0.3s;
}
.contact-link:hover { color: var(--accent); padding-left: 12px; }
.contact-link span:last-child { font-size: 0.9rem; color: var(--fg-muted); }
.contact-link:hover span:last-child { color: var(--accent); transform: translate(2px,-2px); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .mono-label { margin-bottom: 8px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  font-size: 1rem;
  font-family: inherit;
  color: var(--fg);
  outline: none; resize: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%237A7A78' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.contact-form select option {
  background: var(--bg);
  color: var(--fg);
}
.contact-form select:invalid { color: var(--fg-faint); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--fg-faint); }

.contact-form button {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 16px;
  padding: 14px 24px 14px 26px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: all 0.25s var(--ease);
}
.contact-form button:hover { background: var(--accent); color: var(--fg); transform: translateY(-1px); }
.contact-form button:disabled { opacity: 0.5; }

.form-success {
  font-size: 0.95rem;
  color: #4ade80;
  margin-top: 16px;
}
.hidden { display: none !important; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-mark {
  font-family: var(--display);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.85;
  margin-bottom: 80px;
  color: var(--fg);
}
.footer-mark sup {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  font-size: 0.25em;
  -webkit-text-fill-color: var(--accent);
}
.footer-star {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 0.05em;
  display: inline-block;
  transform: translateY(-0.2em);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-col .mono-label { margin-bottom: 14px; }
.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-muted);
}
.footer-col a { color: var(--fg-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .work-item-featured { grid-template-columns: 1fr; }
  .ai-spot-grid { gap: 48px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .container, .hero { padding-left: 20px; padding-right: 20px; }
  .nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
  }
  .nav-meta { display: none; }
  .nav-actions > .lang-switcher,
  .nav-actions > .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .nav-actions { gap: 0; }
  .logo { font-size: 15px; }
  .logo-studio { display: none; }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 56px;
    background: var(--bg);
    z-index: 98;
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; flex-direction: column; }
  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 32px 24px 40px;
    min-height: calc(100dvh - 56px);
    gap: 48px;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-nav-link {
    font-family: var(--display);
    font-size: clamp(2rem, 9vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--fg);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-nav-link:last-child { border-bottom: none; }
  .mobile-nav-link:active { color: var(--accent); padding-left: 6px; }

  .mobile-menu-bottom {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 16px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
  }
  .mobile-cta-arrow { font-size: 14px; }

  .mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }
  .mobile-menu-contact a {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--fg);
    transition: color 0.2s;
    text-decoration: none;
  }
  .mobile-menu-contact a:active { color: var(--accent); }

  .mobile-lang {
    display: inline-flex;
    gap: 2px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 999px;
    align-self: flex-start;
  }
  .mobile-lang .lang-btn {
    padding: 8px 18px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
    border-radius: 100px;
    transition: all 0.18s;
  }
  .mobile-lang .lang-btn.active { background: var(--accent); color: #fff; }

  .hero-info { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-info-col:nth-child(3) { grid-column: 1/-1; }
  .hero-scroll { grid-column: 1/-1; margin-top: 20px; }
  .work-grid { grid-template-columns: 1fr; }
  .ai-spot-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .manifesto-detail { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 100px 0; }
  .service-row { grid-template-columns: 40px 1fr auto; gap: 16px; padding: 24px 0; }
  .service-row .service-desc, .service-row .service-en { display: none; }
  .service-row:hover { padding: 24px 0; }
}

@media (max-width: 380px) {
  .logo-star { font-size: 0.75em; }
  .logo { font-size: 14px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
