:root {
  --black: #050505;
  --white: #ffffff;
  --white-soft: rgba(255,255,255,0.78);
  --white-faint: rgba(255,255,255,0.6);
  --accent: #ffffff;
  --glass-border: rgba(255,255,255,0.12);
  --glass-bg: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-jp: "Plus Jakarta Sans", sans-serif;
  --evr-background: 0 0% 0%;
  --evr-foreground: 0 0% 100%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color: var(--white);
  background: radial-gradient(circle at 12% 10%, rgba(255,255,255,0.08), transparent 38%), var(--black);
}

body.menu-open {
  overflow: hidden;
}

/* Temporary visibility toggle: remove this class to republish */
.is-temporarily-hidden {
  display: none !important;
}

/* ===== EVR HERO ===== */
.evr-hero {
  position: relative;
  min-height: 100vh;
  background: hsl(var(--evr-background));
  color: hsl(var(--evr-foreground));
  font-family: "Geist", sans-serif;
}

.evr-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 37% center;
}

.evr-hero-service {
  background: hsl(var(--evr-background));
}

.service-orb-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.service-orb-video {
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%) scale(1.25);
  width: min(78vw, 1100px);
  aspect-ratio: 1/1;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: hue-rotate(-55deg) saturate(250%) brightness(1.2) contrast(1.1);
}

.evr-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2% 3.4%;
}

.evr-pill {
  border: 1px solid hsl(var(--evr-foreground) / 0.3);
  border-radius: 999px;
  color: hsl(var(--evr-foreground));
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(11px, 0.9vw, 14px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 12px 18px;
  cursor: pointer;
}

.evr-menu-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.evr-menu-bars span {
  width: 28px;
  height: 2px;
  background: hsl(var(--evr-foreground));
  display: block;
}

.evr-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: hsl(var(--evr-foreground));
}

.evr-nav-right {
  display: none;
}

.evr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(11px, 0.9vw, 14px);
  text-decoration: none;
  color: #000;
  background: linear-gradient(to right, hsl(220 70% 78%), hsl(40 80% 82%));
}

.evr-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: hsl(var(--evr-foreground));
  color: hsl(var(--evr-background));
  clip-path: circle(0% at 80px 40px);
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 2.2% 3.4% 2%;
}

.evr-menu-overlay.is-open {
  clip-path: circle(150% at 80px 40px);
  pointer-events: auto;
}

.evr-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.evr-close-btn {
  border-color: hsl(var(--evr-background) / 0.25);
  color: hsl(var(--evr-background));
}

.evr-close-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.evr-close-icon::before,
.evr-close-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
  background: hsl(var(--evr-background));
}

.evr-close-icon::before { transform: rotate(45deg); }
.evr-close-icon::after { transform: rotate(-45deg); }

.evr-menu-logo {
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.evr-menu-links {
  list-style: none;
  margin: auto 0;
  padding: 0;
}

.evr-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--evr-background));
  border-bottom: 1px solid hsl(var(--evr-background) / 0.1);
  padding: 18px 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: calc(0.15s + var(--i) * 0.08s);
}

.evr-menu-overlay.is-open .evr-menu-link {
  transform: translateX(0);
  opacity: 1;
}

.evr-menu-link .evr-arrow {
  transition: transform 0.25s ease;
}

.evr-menu-link:hover {
  transform: translateX(4px);
}

.evr-menu-link:hover .evr-arrow {
  transform: translateX(2px);
}

.evr-menu-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: hsl(var(--evr-background) / 0.4);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.evr-main-content {
  position: relative;
  z-index: 10;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1.5rem 0.5rem;
}

.evr-subheading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.evr-subheading svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: hsl(var(--evr-foreground));
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.evr-content-flex {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.evr-heading {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-size: clamp(2rem, 6vw, 5rem);
}

.evr-heading span {
  font-weight: 300;
}

.evr-heading-display {
  font-family: "Gilda Display", serif;
  font-weight: 400;
}

.evr-marquee-bar {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem 1.5rem;
}

.evr-marquee-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.evr-marquee-head span:last-child {
  display: none;
}

.evr-marquee-track-wrap {
  margin-top: 10px;
  border-top: 1px solid hsl(var(--evr-foreground) / 0.1);
  overflow: hidden;
  padding: 20px 0;
}

.evr-marquee-track {
  display: inline-flex;
  min-width: max-content;
  gap: 64px;
  animation: evr-marquee 20s linear infinite;
}

.evr-marquee-track span {
  color: hsl(var(--evr-foreground) / 0.5);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@keyframes evr-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .evr-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .evr-main-content {
    justify-content: flex-end;
    padding: 0 2.5rem 4rem;
  }

  .evr-marquee-bar {
    padding: 0 2.5rem 1.5rem;
  }

  .evr-marquee-head span:last-child {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .evr-content-flex {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

}

@media (max-width: 767px) {
  .service-orb-video {
    right: -38%;
    width: min(120vw, 760px);
  }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2.4% 5.2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2%;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 28px);
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-link {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.nav-link:hover { opacity: 1; }

.glass-panel,
.service-card,
.process-step,
.case-card,
.about-grid,
.ceo-visual,
.contact-link {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
}

.glass-panel::after,
.service-card::after,
.process-step::after,
.case-card::after,
.about-grid::after,
.ceo-visual::after,
.contact-link::after {
  content: "";
  position: absolute;
  top: -32%;
  left: -22%;
  width: 52%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0) 72%);
  pointer-events: none;
}

/* ===== ABOUT PAGE ===== */
.about-page nav {
  mix-blend-mode: normal;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245,243,239,0.08);
}

.about {
  min-height: 100vh;
  padding: 11% 5.2% 8%;
}

.about-label {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 1.8%;
}

.about h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-intro {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  line-height: 1.9;
  color: var(--white-soft);
  max-width: 760px;
  margin-bottom: 3.6%;
}

.about-grid {
  border-radius: 18px;
}

.about-row {
  display: grid;
  grid-template-columns: 24% 1fr;
}

.about-row + .about-row {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.about-term {
  padding: 2% 2.2%;
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.about-desc {
  padding: 2% 2.2%;
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  line-height: 1.9;
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11% 5.2% 8.5%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,255,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 2.8%;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--white);
  margin-top: 2.3%;
  font-weight: 300;
  letter-spacing: 0.01em;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-lead {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  color: var(--white-soft);
  margin-top: 1.8%;
  line-height: 1.95;
  max-width: 620px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 4%;
  left: 5.2%;
  display: flex;
  align-items: center;
  gap: 0.8%;
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-faint);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--grey-light);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease infinite;
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,243,239,0.15) 20%, rgba(245,243,239,0.15) 80%, transparent);
}

/* ===== WHY ===== */
.why {
  padding: 11% 5.2%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  align-items: start;
}

.why-label {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 24px;
}

.why h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-style: italic;
}

.why-copy {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  line-height: 1.95;
  color: var(--white-soft);
  font-weight: 300;
  padding-top: 24px;
}

.why-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.why-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.why-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== WHAT WE DO ===== */
.what {
  padding: 8.5% 5.2% 11%;
}

.what-label {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 64px;
}

.what-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.what-copy {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  color: var(--white-soft);
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 56px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6%;
}

.service-card {
  padding: 4% 3.2%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover { border-color: rgba(255,255,255,0.24); }

.service-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 56px);
  color: rgba(255,255,255,0.18);
  margin-bottom: 24px;
  font-style: italic;
}

.service-title {
  font-size: clamp(16px, 1.35vw, 26px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.05vw, 20px);
  line-height: 1.9;
  color: var(--white-soft);
  font-weight: 300;
}

/* ===== HOW / PROCESS ===== */
.how {
  padding: 8.5% 5.2% 11%;
}

.how-label {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 24px;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  font-style: italic;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6%;
}

.process-step {
  padding: 2.8% 2.4%;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.process-step:hover {
  border-color: rgba(255,255,255,0.24);
}

.process-step-head {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.process-step-title {
  font-size: clamp(16px, 1.35vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.process-step-desc {
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.05vw, 20px);
  line-height: 1.9;
  color: var(--white-soft);
  font-weight: 300;
}

/* ===== CASE STUDIES ===== */
.case {
  padding: 11% 5.2%;
}

.case-label {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 24px;
}

.case h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.case-card {
  padding: 3.2% 2.8%;
  border-radius: 18px;
}

.case-head {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 16px;
}

.case-number {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.case-client {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 32px);
  letter-spacing: -0.01em;
}

.case-card h3 {
  font-family: var(--font-jp);
  font-size: clamp(18px, 1.8vw, 32px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.case-description {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  line-height: 1.9;
  font-weight: 300;
  color: var(--white-soft);
  margin-bottom: 32px;
}

.case-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6%;
}

.case-meta-item {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.2% 1.3%;
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.05vw, 20px);
  color: var(--white-soft);
  line-height: 1.7;
  font-weight: 300;
}

.case-meta-item span {
  display: inline-block;
  min-width: 64px;
  margin-right: 8px;
  font-size: clamp(11px, 0.95vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== WHO WE ARE ===== */
.who {
  padding: 11% 5.2%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  align-items: start;
}

.who-label {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 24px;
}

.who h2 {
  font-family: var(--font-jp);
  font-size: clamp(24px, 2.9vw, 48px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.who-description {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  line-height: 2;
  color: var(--white-soft);
  font-weight: 300;
  padding-top: 60px;
}

/* ===== CEO ===== */
.ceo {
  padding: 11% 5.2%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  align-items: center;
}

.ceo-visual {
  aspect-ratio: 3/4;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ceo-visual-text {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-style: italic;
  color: rgba(245,243,239,0.04);
  user-select: none;
}

.ceo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ceo-role {
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.ceo-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.ceo-name-jp {
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.05vw, 20px);
  font-weight: 300;
  color: var(--white-soft);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.ceo-title {
  font-size: clamp(17px, 1.45vw, 26px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ceo-statement {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  line-height: 1.9;
  font-weight: 300;
  color: var(--white-soft);
  letter-spacing: 0.02em;
}

.ceo-description {
  margin-top: 20px;
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.02vw, 19px);
  line-height: 1.9;
  font-weight: 300;
  color: var(--white-soft);
}

.ceo-career {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.ceo-career-label {
  font-size: clamp(11px, 0.95vw, 18px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 16px;
}

.career-path {
  font-size: clamp(12px, 1.05vw, 20px);
  color: var(--white-soft);
  line-height: 1.8;
  font-weight: 300;
}

.career-path span {
  color: rgba(245,243,239,0.25);
  margin: 0 6px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 11% 5.2%;
  text-align: center;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,255,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-style: italic;
}

.contact p {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.15vw, 22px);
  color: var(--white-soft);
  margin-bottom: 48px;
  font-weight: 300;
}

.contact-form {
  width: min(640px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.contact-field {
  text-align: left;
  display: grid;
  gap: 8px;
}

.contact-field span {
  font-size: clamp(11px, 0.95vw, 16px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.05vw, 18px);
  outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255,255,255,0.45);
}

.contact-link {
  display: inline-block;
  padding: 1.2% 3.2%;
  color: var(--white);
  text-decoration: none;
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  justify-self: center;
}
.contact-link:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  padding: 2.8% 5.2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.35vw, 24px);
  color: var(--white);
}

.footer-copy {
  font-size: clamp(11px, 0.95vw, 18px);
  color: var(--white-faint);
  letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 4.2% 5%; }
  .nav-links { gap: 16px; }
  .hero { padding: 24% 5% 14%; }
  .why { grid-template-columns: 1fr; gap: 8%; padding: 14% 5%; }
  .why-copy { padding-top: 0; }
  .hero-lead { max-width: none; }
  .what { padding: 11% 5% 16%; }
  .what-copy { margin-bottom: 40px; }
  .services { grid-template-columns: 1fr; }
  .how { padding: 11% 5% 16%; }
  .how h2 { margin-bottom: 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 6% 5%; }
  .case { padding: 14% 5%; }
  .case-card { padding: 6.5% 5%; }
  .case-card h3 { font-size: clamp(18px, 5vw, 24px); }
  .case-meta { grid-template-columns: 1fr; }
  .who { grid-template-columns: 1fr; gap: 8%; padding: 14% 5%; }
  .who-description { padding-top: 0; }
  .ceo { grid-template-columns: 1fr; gap: 8%; padding: 14% 5%; }
  .ceo-visual { max-height: 300px; }
  .contact { padding: 14% 5%; }
  .about { padding: 22% 5% 12%; }
  .about-intro { margin-bottom: 32px; }
  .about-row { grid-template-columns: 1fr; }
  .about-term {
    border-right: 0;
    border-bottom: 1px solid rgba(245,243,239,0.08);
    padding-bottom: 12px;
  }
  .about-desc { padding-top: 12px; }
  footer { padding: 8% 5%; flex-direction: column; gap: 3%; }
  .scroll-indicator { display: none; }
}
