/* ============================================
   NOVALINK Careers — Awwwards Edition
   Black × Violet, Editorial Tech
   ============================================ */
:root {
  --accent: #8B5CF6;
  --accent-dim: rgba(139,92,246,0.08);
  --accent-glow: rgba(139,92,246,0.25);
  --bg: #000000;
  --bg-alt: #0A0A0A;
  --bg-card: #111111;
  --surface: #181818;
  --text: #F0EDE8;
  --text-muted: #7A7670;
  --border: rgba(255,255,255,0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', 'Noto Sans JP', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

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

/* ============================================
   Typography
   ============================================ */
.t-display {
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.t-heading {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.t-subheading {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
}
.t-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.t-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  font-family: 'Sora', sans-serif;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn svg { transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(8) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--accent-glow); }

/* ============================================
   Header
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
}
header.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(240,237,232,0.45);
  transition: color 0.3s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.desktop-nav a:hover { color: var(--text); }
.header-cta {
  padding: 10px 24px;
  font-size: 12px;
  border-radius: 100px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100dvh;
  background: var(--bg);
  z-index: 1001;
  transition: right 0.5s var(--ease);
  padding: 100px 48px 48px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block;
  padding: 20px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover { color: var(--accent); padding-left: 8px; }
.mobile-menu-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  color: var(--text-muted);
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 1000;
}
.overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 80px) clamp(60px, 8vh, 120px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.85) 100%);
}
/* Animated gradient overlay */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(139,92,246,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(139,92,246,0.08) 0%, transparent 70%);
  animation: gradientShift 12s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.2s forwards;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease) 0.4s forwards;
}
.hero-title .accent { color: var(--accent); }
.hero-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(240,237,232,0.5);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.9s forwards;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(24px, 5vw, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 1.2s forwards;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--accent);
  opacity: 0.3;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.5); opacity: 0.1; }
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  flex-shrink: 0;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.08);
  white-space: nowrap;
  padding: 0 20px;
}
.marquee-item .sep {
  display: inline-block;
  color: var(--accent);
  opacity: 0.3;
  margin: 0 20px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Mission
   ============================================ */
.mission {
  padding: clamp(120px, 14vw, 200px) 0;
  background: var(--bg);
  text-align: center;
}
.mission-statement {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto;
}
.mission-statement .accent { color: var(--accent); }
.mission-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 32px auto 0;
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(64px, 8vw, 100px);
}
.value-card {
  padding: clamp(32px, 4vw, 48px);
  background: var(--bg-card);
  text-align: left;
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card:hover { background: var(--surface); }
.value-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.6s var(--ease);
}
.value-card:hover::before { transform: scaleX(1); }
.value-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(139,92,246,0.1);
  line-height: 1;
  margin-bottom: 20px;
}
.value-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Full-bleed Image Break
   ============================================ */
.image-break {
  position: relative;
  height: clamp(280px, 35vw, 450px);
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
}
.image-break-text {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.image-break-text span {
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.5);
}

/* ============================================
   Members
   ============================================ */
.members {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg-alt);
}
.members-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.member-card {
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  transition: background 0.4s var(--ease);
}
.member-card:hover { background: var(--surface); }
.member-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.member-card:hover .member-img img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.member-info {
  padding: 20px 24px;
}
.member-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.member-role {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   Culture
   ============================================ */
.culture {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg);
}
.culture-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.culture-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.culture-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.culture-item:last-child { border-bottom: 1px solid var(--border); }
.culture-item:nth-child(even) .culture-img { order: -1; }
.culture-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.culture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.culture-item:hover .culture-img img { transform: scale(1.05); }
.culture-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 64px);
  gap: 16px;
}
.culture-number {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
}
.culture-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.culture-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Jobs
   ============================================ */
.jobs {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg-alt);
}
.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
  gap: 24px;
}
.job-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.job-filter {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.04em;
  font-family: 'Sora', sans-serif;
}
.job-filter:hover { border-color: rgba(240,237,232,0.2); color: var(--text); }
.job-filter.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  background: var(--bg-card);
  transition: background 0.3s var(--ease);
  cursor: pointer;
  gap: 24px;
}
.job-card:hover { background: var(--surface); }
.job-card-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.job-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.job-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.job-tag {
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.job-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.job-card:hover .job-arrow {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}

/* ============================================
   Benefits
   ============================================ */
.benefits {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg);
}
.benefits-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.benefit-card {
  padding: 32px;
  background: var(--bg-card);
  transition: background 0.3s var(--ease);
}
.benefit-card:hover { background: var(--surface); }
.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.benefit-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.benefit-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Entry CTA
   ============================================ */
.entry-cta {
  padding: clamp(120px, 14vw, 200px) 0;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.entry-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.entry-cta-content {
  position: relative;
  z-index: 1;
}
.entry-cta .t-display {
  margin-bottom: 24px;
}
.entry-cta .t-body {
  max-width: 500px;
  margin: 0 auto 40px;
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: #050505;
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: #4A463F;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-nav {
  display: flex;
  gap: 48px;
}
.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-nav-group a {
  display: block;
  font-size: 13px;
  color: #4A463F;
  padding: 4px 0;
  transition: color 0.3s;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-nav-group a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #2A2620;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-item { grid-template-columns: 1fr; }
  .culture-item:nth-child(even) .culture-img { order: 0; }
  .culture-img { aspect-ratio: 16/9; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-cta.desktop-only { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(40px, 14vw, 72px); }
  .hero-scroll { display: none; }

  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-header { flex-direction: column; align-items: flex-start; }
  .job-card { padding: 20px 24px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .members-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .job-filters { gap: 4px; }
  .job-filter { padding: 6px 14px; font-size: 11px; }
}

/* ============================================
   サブページ共通スタイル（Phase 3 追加）
   ============================================ */
.nav-link.active { color: var(--accent) !important; font-weight: 600; }

.page-hero {
  padding: clamp(140px, 18vw, 180px) 0 clamp(40px, 5vw, 60px);
  background: var(--bg-alt);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.1); }
.page-title {
  font-size: clamp(40px, 6vw, 64px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1;
}
.page-subtitle {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: 12px;
}

.cta-band {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg-alt); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; position: relative; }
.cta-band p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; position: relative; }

.section-more { text-align: center; margin-top: clamp(32px, 4vw, 48px); }
.more-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.04em; transition: gap 0.3s var(--ease);
}
.more-link:hover { gap: 12px; }

/* Sub-page sections */
.sub-section { padding: clamp(80px, 10vw, 120px) 0; }
.sub-section:nth-child(even) { background: var(--bg-alt); }

/* Profile cards for members page */
.profile-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.profile-card {
  background: var(--bg-card); padding: 40px;
  transition: background 0.3s var(--ease);
}
.profile-card:hover { background: var(--surface); }
.profile-card-header {
  display: flex; gap: 20px; align-items: center; margin-bottom: 20px;
}
.profile-card-header img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  filter: grayscale(100%); transition: filter 0.4s var(--ease);
}
.profile-card:hover .profile-card-header img { filter: grayscale(0%); }
.profile-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.profile-card .profile-role {
  font-size: 11px; color: var(--accent); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.profile-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* Job detail cards */
.job-detail-card {
  background: var(--bg-card); padding: 40px; margin-bottom: 2px;
  transition: background 0.3s var(--ease);
}
.job-detail-card:hover { background: var(--surface); }
.job-detail-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.job-detail-card .job-tag { margin-bottom: 16px; display: inline-block; }
.job-detail-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.job-detail-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.job-detail-meta dt { font-weight: 600; color: var(--text); }
.job-detail-meta dd { margin-bottom: 12px; }

/* Contact form (dark theme) */
.contact-grid-dark {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
}
.form-group-dark { margin-bottom: 24px; }
.form-group-dark label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group-dark input,
.form-group-dark select,
.form-group-dark textarea {
  width: 100%; padding: 14px 16px; font-size: 14px;
  border: 1px solid var(--border); border-radius: 0;
  background: var(--bg-card); color: var(--text);
  font-family: inherit; transition: border-color 0.2s;
  outline: none;
}
.form-group-dark input:focus,
.form-group-dark select:focus,
.form-group-dark textarea:focus {
  border-color: var(--accent);
}
.form-group-dark textarea { min-height: 140px; resize: vertical; }
.form-group-dark select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7670' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-group-dark input::placeholder,
.form-group-dark textarea::placeholder {
  color: #4A463F;
}

.selection-steps {
  display: flex; gap: 2px; margin-top: 32px;
}
.selection-step {
  flex: 1; padding: 32px; background: var(--bg-card); text-align: center;
  transition: background 0.3s var(--ease);
}
.selection-step:hover { background: var(--surface); }
.selection-step-num {
  font-size: 11px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.15em; margin-bottom: 12px;
}
.selection-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.selection-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 15px; font-weight: 600;
  color: var(--text); cursor: pointer; background: none;
  border: none; width: 100%; text-align: left; font-family: inherit;
}
.faq-question::after {
  content: '+'; font-size: 24px; font-weight: 300;
  color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.8; padding-bottom: 20px; }

/* ============================================
   Subpage: Culture (about.html)
   ============================================ */
.numbers-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
}
.numbers-grid-sub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  text-align: center;
}
.number-item-sub {
  padding: clamp(32px, 4vw, 48px);
  background: var(--bg-card);
}
.number-value-sub {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.number-label-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Subpage: Jobs (service.html)
   ============================================ */
.jobs-banner {
  padding: 20px 0;
  background: var(--accent-dim);
  border-bottom: 1px solid rgba(139,92,246,0.15);
}
.jobs-banner-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--accent);
}
.jobs-banner-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s ease-in-out infinite;
}
.process-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.process-step {
  padding: 32px;
  background: var(--bg-card);
  text-align: center;
  transition: background 0.3s var(--ease);
}
.process-step:hover { background: var(--surface); }
.process-step-number {
  font-size: 36px;
  font-weight: 800;
  color: rgba(139,92,246,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Subpage: Members (works.html)
   ============================================ */
.interview-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
}
.interview-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.interview-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  background: var(--bg-card);
  transition: background 0.3s var(--ease);
  overflow: hidden;
}
.interview-card:hover { background: var(--surface); }
.interview-card-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.interview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease);
}
.interview-card:hover .interview-card-img img { filter: grayscale(0%); }
.interview-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.interview-card-meta {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.interview-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.interview-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* Timeline / Day at Novalink */
.timeline-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-alt);
}
.timeline-list {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 24px 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 32px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  z-index: 1;
}
.timeline-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Subpage: Entry (contact.html)
   ============================================ */
.entry-form-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
}
.entry-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.entry-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group .required {
  color: var(--accent);
  font-size: 11px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4A463F;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7670' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.entry-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card-dark {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 0;
}
.sidebar-card-dark h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.sidebar-card-dark p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
}

/* FAQ Dark */
.faq-section-dark {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-alt);
}
.faq-list-dark {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item-dark {
  border-bottom: 1px solid var(--border);
}
.faq-item-dark:first-child { border-top: 1px solid var(--border); }
.faq-question-dark {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question-dark:hover { color: var(--accent); }
.faq-question-dark svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.4s var(--ease);
}
.faq-item-dark.open .faq-question-dark svg { transform: rotate(180deg); }
.faq-answer-dark {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item-dark.open .faq-answer-dark {
  max-height: 200px;
  padding-bottom: 24px;
}
.faq-answer-dark p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Phase 3 responsive additions
   ============================================ */
@media (max-width: 1024px) {
  .profile-grid { grid-template-columns: 1fr; }
  .contact-grid-dark { grid-template-columns: 1fr; }
  .numbers-grid-sub { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .entry-layout { grid-template-columns: 1fr; }
  .interview-card { grid-template-columns: 160px 1fr; }
}
@media (max-width: 768px) {
  .selection-steps { flex-direction: column; }
  .numbers-grid-sub { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .interview-card { grid-template-columns: 1fr; }
  .interview-card-img { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .numbers-grid-sub { grid-template-columns: 1fr; }
}
