/* ═══════════════════════════════════════════
   01株式会社 — メインスタイルシート
   Brand color: #00A6A6（ロゴから抽出）
═══════════════════════════════════════════ */

/* ── リセット & 変数 ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #00A6A6;
  --teal-light: #E6F7F7;
  --teal-mid:   #B3E6E6;
  --black:      #0C0C0C;
  --white:      #FFFFFF;
  --gray-bg:    #F5F5F3;
  --gray-100:   #F0F0F0;
  --gray-500:   #6B7280;
  --font-sans:  'Helvetica Neue', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── ユーティリティ ─────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.container-sm   { max-width: 860px;  margin: 0 auto; padding: 0 56px; }
@media (max-width: 768px) {
  .container, .container-sm { padding: 0 28px; }
}

/* ── FadeIn アニメーション ───────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.fade-in--left  { transform: translateX(-28px); }
.fade-in.fade-in--right { transform: translateX(28px); }
.fade-in.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.fade-in[data-delay="100"]  { transition-delay: 0.1s; }
.fade-in[data-delay="200"]  { transition-delay: 0.2s; }
.fade-in[data-delay="300"]  { transition-delay: 0.3s; }
.fade-in[data-delay="400"]  { transition-delay: 0.4s; }
.fade-in[data-delay="500"]  { transition-delay: 0.5s; }

/* ── TextDecoder ─────────────────────────── */
.text-decoder        { transition: color 0.3s; }
.text-decoder.decoding { font-family: monospace; opacity: 0.3; }

/* ── Navbar ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  padding: 16px 56px;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
  .navbar, .navbar.scrolled { padding: 20px 28px; }
}

.navbar__logo img {
  height: 32px;
  width: auto;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 900px) { .navbar__nav { display: none; } }

.navbar__nav a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--teal); }

.navbar__cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.25s;
}
.navbar__cta:hover {
  background: var(--teal);
  color: #fff;
}
@media (max-width: 768px) { .navbar__cta { display: none; } }

/* ── ボタン ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn--teal   { background: var(--teal); color: #fff; }
.btn--teal:hover { opacity: 0.82; }
.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn--outline-white:hover { border-color: var(--teal); color: var(--teal); }
.btn--outline-dark {
  background: transparent;
  color: var(--gray-500);
  border: 1px solid var(--gray-100);
}
.btn--outline-dark:hover { border-color: #aaa; }

/* テキストリンク */
.link-teal {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.link-teal:hover { gap: 8px; }

/* ── Marquee ─────────────────────────────── */
.marquee-strip {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-item span { color: var(--teal); }
.marquee-dot { color: rgba(255,255,255,0.08); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── セクション共通 ──────────────────────── */
.section       { padding: 96px 0; }
.section--lg   { padding: 140px 0; }
.section--dark { background: var(--black); }
.section--gray { background: var(--gray-bg); }
.section--white { background: var(--white); }

.eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}
.eyebrow--dark { color: rgba(255,255,255,0.4); }
.eyebrow--dark::before { background: rgba(255,255,255,0.2); }

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}
.section-title--white { color: #fff; }
.section-title--teal  { color: var(--teal); }

/* ── Hero ────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 56px 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .hero { padding: 120px 28px 60px; } }

.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero__symbol {
  position: absolute;
  top: 100px; right: 80px;
  pointer-events: none;
}
.hero__symbol-sm {
  position: absolute;
  bottom: 120px; left: 32px;
  pointer-events: none;
  opacity: 0.35;
}
@media (max-width: 768px) {
  .hero__symbol { right: 24px; top: 90px; }
  .hero__symbol-sm { display: none; }
}

.hero__content { position: relative; z-index: 1; }

.hero__concept {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.35em; color: var(--teal);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero__concept::before {
  content: ''; display: block;
  width: 20px; height: 1px;
  background: var(--teal); flex-shrink: 0;
}

.hero__main {
  font-size: clamp(52px, 9.5vw, 130px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.hero__main--white { color: rgba(255,255,255,0.92); }
.hero__main--teal  { color: var(--teal); }

.hero__divider {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 40px 0;
}

.hero__mission-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 769px) {
  .hero__mission-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 64px;
  }
}

.hero__mission-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.hero__mission-label::before {
  content: ''; display: block;
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.18); flex-shrink: 0;
}

.hero__mission-heading {
  font-size: clamp(24px, 3.6vw, 46px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__mission-body {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  max-width: 460px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__scroll {
  position: absolute;
  right: 40px; bottom: 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
@media (max-width: 768px) { .hero__scroll { display: none; } }
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--teal));
}
.hero__scroll-text {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--teal);
  writing-mode: vertical-rl;
}

/* ── VisualGrid ──────────────────────────── */
.visual-grid {
  background: var(--black);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 10px;
}
@media (min-width: 769px) {
  .visual-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.vg-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  cursor: pointer;
}
.vg-card--large {
  grid-column: span 2;
  min-height: 280px;
}
@media (min-width: 769px) {
  .vg-card--large {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 380px;
  }
}
.vg-card__bg { position: absolute; inset: 0; }
.vg-card__grid-overlay {
  position: absolute; inset: 0;
  opacity: 0.18;
}
.vg-card__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.vg-card__content {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.vg-card__label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em;
}
.vg-card__title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900; color: #fff;
  transition: transform 0.25s;
}
.vg-card:hover .vg-card__title { transform: translateX(3px); }
.vg-card__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.vg-card__arrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em;
  display: flex; align-items: center; gap: 4px;
}

/* ── Statement ───────────────────────────── */
.statement { padding: 112px 56px; background: var(--white); overflow: hidden; position: relative; }
@media (max-width: 768px) { .statement { padding: 80px 28px; } }
.statement__bg-deco {
  position: absolute; top: 0; right: 0;
  width: 280px; height: 280px;
  border-radius: 0 0 0 100%;
  background: var(--teal);
  opacity: 0.04;
  pointer-events: none;
}
.statement__eyebrow { margin-bottom: 20px; }
.statement__title {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--black);
  margin-bottom: 40px;
}
.statement__body-row {
  display: flex; flex-direction: column; gap: 32px;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .statement__body-row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 80px; }
}
.statement__body {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--gray-500);
  line-height: 1.85; max-width: 480px;
}
.statement__nums {
  display: flex; flex-wrap: wrap; gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-100);
  margin-top: 48px;
}
.statement__num-val {
  font-size: 36px; font-weight: 900;
  font-family: monospace; color: var(--black);
  line-height: 1; margin-bottom: 6px;
}
.statement__num-label {
  font-size: 10px; color: var(--gray-500);
  white-space: pre-line;
}

/* ── System Section ──────────────────────── */
.system-split {
  display: flex; flex-direction: column;
  min-height: 70vh;
}
@media (min-width: 769px) { .system-split { flex-direction: row; } }

.system-split__left {
  background: var(--black);
  padding: 64px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
@media (min-width: 769px) {
  .system-split__left { width: 50%; border-right: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 768px) { .system-split__left { padding: 48px 28px; } }

.system-split__right {
  position: relative;
  min-height: 320px;
  background: linear-gradient(160deg, #021f1f 0%, #001212 100%);
}
@media (min-width: 769px) { .system-split__right { width: 50%; } }

.system-phases { display: flex; flex-direction: column; gap: 24px; }
.phase-item     { display: flex; gap: 20px; }
.phase-num {
  font-family: monospace; font-size: 11px;
  font-weight: 700; color: var(--teal);
  flex-shrink: 0; padding-top: 2px;
}
.phase-title {
  font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
  transition: transform 0.2s;
}
.phase-item:hover .phase-title { transform: translateX(2px); }
.phase-desc {
  font-size: 11px; color: rgba(255,255,255,0.35);
}

/* System right visual */
.system-visual {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.system-visual__label {
  position: absolute; bottom: 32px; right: 32px;
  text-align: right;
}
.system-visual__label-sub {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--teal);
  margin-bottom: 4px;
}
.system-visual__label-main { font-size: 11px; font-weight: 700; color: #fff; }

/* ── Tenplus ─────────────────────────────── */
.tenplus-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 56px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 768px) { .tenplus-bar { padding: 16px 28px; } }
.tenplus-bar__labels { display: flex; align-items: center; gap: 16px; }
.tenplus-bar__tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--teal);
}
.tenplus-bar__sep {
  width: 1px; height: 14px; background: var(--gray-100);
}
.tenplus-bar__sub {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--gray-500);
}

.tenplus-body {
  display: flex; flex-direction: column;
  background: var(--white);
}
@media (min-width: 769px) { .tenplus-body { flex-direction: row; } }

.tenplus-visual {
  position: relative; min-height: 340px;
  background: linear-gradient(160deg, #001818 0%, #003030 100%);
}
@media (min-width: 769px) { .tenplus-visual { width: 42%; } }

.tenplus-visual__num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.tenplus-visual__big {
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 900; font-family: monospace;
  line-height: 1; color: var(--teal);
  opacity: 0.88;
}
.tenplus-visual__name {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; color: #fff; margin-top: 8px;
}
.tenplus-visual__grid {
  position: absolute; inset: 0; pointer-events: none;
}

.tenplus-content { padding: 56px; }
@media (min-width: 769px) {
  .tenplus-content { width: 58%; display: flex; flex-direction: column; justify-content: center; }
}
@media (max-width: 768px) { .tenplus-content { padding: 40px 28px; } }

.tenplus-content h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--black);
  margin-bottom: 20px;
}
.tenplus-content p {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.85; max-width: 420px; margin-bottom: 32px;
}
.tenplus-nums {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 32px; max-width: 360px;
}
.tenplus-num-card {
  background: var(--teal-light);
  border-radius: 14px; padding: 20px;
  text-align: center;
}
.tenplus-num-val {
  font-size: 26px; font-weight: 900;
  font-family: monospace; color: var(--teal);
  line-height: 1; margin-bottom: 6px;
}
.tenplus-num-label { font-size: 10px; color: var(--gray-500); }

/* ── Works ───────────────────────────────── */
.works-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 769px) { .works-grid { grid-template-columns: 1fr 1fr 1fr; } }

.work-card {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  min-height: 180px;
}
.work-card--wide { grid-column: span 2; min-height: 240px; }
@media (min-width: 769px) {
  .work-card--wide { grid-column: span 2; min-height: 260px; }
}
.work-card__bg { position: absolute; inset: 0; }
.work-card__grid-overlay { position: absolute; inset: 0; opacity: 0.15; }
.work-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}
.work-card__content {
  position: absolute; inset: 0;
  padding: 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.work-card__cat {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em;
}
.work-card__title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900; color: #fff;
  transition: transform 0.25s;
}
.work-card:hover .work-card__title { transform: translateX(2px); }
.work-card__sub {
  font-size: 11px; color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ── News ────────────────────────────────── */
.news-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; padding-bottom: 16px;
  border-bottom: 2px solid var(--black);
  margin-bottom: 0;
}

.news-list { list-style: none; }
.news-item a {
  display: flex; flex-direction: column;
  gap: 10px; padding: 28px 16px;
  margin: 0 -16px;
  border-bottom: 1px solid var(--gray-100);
  border-radius: 12px;
  transition: background 0.2s;
}
.news-item a:hover { background: var(--gray-bg); }
@media (min-width: 769px) {
  .news-item a { flex-direction: row; align-items: center; gap: 32px; }
}
.news-meta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.news-date  { font-size: 10px; font-family: monospace; color: var(--gray-500); width: 60px; }
.news-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px; border-radius: 100px;
  white-space: nowrap;
}
.news-tag--pr   { background: var(--teal-light); color: var(--teal); }
.news-tag--info { background: var(--gray-bg); color: var(--gray-500); }
.news-title     { font-size: 13px; font-weight: 700; color: #444; transition: color 0.2s; }
.news-item a:hover .news-title { color: var(--black); }

/* ── CTA Section ─────────────────────────── */
.cta-section {
  background: var(--black);
  padding: 140px 56px;
  position: relative; overflow: hidden;
}
@media (max-width: 768px) { .cta-section { padding: 96px 28px; } }
.cta-section__bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.cta-title {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.cta-body {
  font-size: 14px; color: rgba(255,255,255,0.4);
  line-height: 1.85; max-width: 400px;
  margin-bottom: 40px; position: relative; z-index: 1;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }

/* ── Footer mini ─────────────────────────── */
.footer-mini {
  position: relative; z-index: 1;
  margin-top: 80px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .footer-mini { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-mini__logo img {
  height: 24px; width: auto;
  mix-blend-mode: screen; filter: brightness(1.1);
}
.footer-mini__copy { font-size: 10px; color: rgba(255,255,255,0.22); }
.footer-mini__links { display: flex; gap: 24px; }
.footer-mini__links a { font-size: 10px; color: rgba(255,255,255,0.22); transition: color 0.2s; }
.footer-mini__links a:hover { color: #fff; }

/* ── PageHero（内部ページ用）─────────────── */
.page-hero {
  background: var(--white);
  padding: 160px 56px 80px;
  border-bottom: 1px solid var(--gray-100);
}
@media (max-width: 768px) { .page-hero { padding: 140px 28px 60px; } }
.page-hero h1 {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.03em; color: var(--black);
  margin-bottom: 24px;
}
.page-hero p {
  font-size: 16px; color: var(--gray-500);
  line-height: 1.85; max-width: 560px;
}

/* ── フルフッター（各ページ下部）────────── */
.site-footer { background: var(--white); padding: 80px 56px 32px; border-top: 1px solid var(--gray-100); }
@media (max-width: 768px) { .site-footer { padding: 60px 28px 24px; } }
.footer-cta {
  background: var(--teal-light);
  border-radius: 24px; padding: 64px 56px;
  text-align: center; margin-bottom: 64px;
}
@media (max-width: 768px) { .footer-cta { padding: 48px 28px; } }
.footer-cta h2 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; color: var(--black); margin-bottom: 20px; }
.footer-cta p  { color: var(--gray-500); font-size: 14px; margin-bottom: 32px; line-height: 1.8; }
.footer-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (min-width: 769px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-logo img {
  height: 28px; width: auto; margin-bottom: 16px;
}
.footer-logo p   { font-size: 11px; color: var(--gray-500); line-height: 1.8; }
.footer-col h4   { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; color: var(--gray-500); margin-bottom: 20px; }
.footer-col ul   { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a    { font-size: 13px; font-weight: 600; color: var(--gray-500); transition: color 0.2s; }
.footer-col a:hover { color: var(--black); }
.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
@media (min-width: 769px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p   { font-size: 11px; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 11px; color: var(--gray-500); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--black); }

/* ── Mission ページ固有 ──────────────────── */
.mission-split {
  display: flex; flex-direction: column;
  gap: 48px;
}
@media (min-width: 769px) {
  .mission-split { flex-direction: row; gap: 80px; align-items: flex-start; }
  .mission-split__left  { width: 40%; flex-shrink: 0; }
  .mission-split__right { flex: 1; }
}
.value-list     { list-style: none; display: flex; flex-direction: column; }
.value-item     { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--gray-100); }
.value-num      { font-family: monospace; font-weight: 900; color: var(--teal); font-size: 20px; flex-shrink: 0; }
.value-title    { font-size: 17px; font-weight: 900; margin-bottom: 6px; }
.value-desc     { font-size: 13px; color: var(--gray-500); line-height: 1.8; }
.mission-nums {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.mission-num-card { background: var(--teal-light); border-radius: 16px; padding: 28px; text-align: center; }
.mission-num-val  { font-size: 36px; font-weight: 900; font-family: monospace; color: var(--teal); margin-bottom: 8px; }
.mission-num-label{ font-size: 11px; color: var(--gray-500); }

/* ── System ページ固有 ───────────────────── */
.compare-grid {
  display: grid; gap: 16px;
}
@media (min-width: 769px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-card { border-radius: 20px; padding: 36px; }
.compare-card--old { border: 1px solid var(--gray-100); background: var(--white); }
.compare-card--new { border: 2px solid var(--teal); background: var(--teal-light); }
.compare-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.compare-icon {
  width: 32px; height: 32px; border-radius: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.compare-icon--old { background: var(--gray-100); }
.compare-icon--new { background: var(--teal); color: #fff; }
.compare-title { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.compare-dot {
  width: 6px; height: 6px; border-radius: 100%;
  flex-shrink: 0; margin-top: 5px;
}

.phase-detail { border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-100); }
.phase-detail__head { padding: 36px; background: var(--white); }
.phase-detail__body { padding: 28px 36px; background: var(--teal-light); }
.phase-detail__num  { font-family: monospace; font-size: 11px; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.phase-detail__title{ font-size: 24px; font-weight: 900; margin-bottom: 6px; }
.phase-detail__sub  { font-size: 12px; color: var(--gray-500); margin-bottom: 16px; }
.phase-detail__desc { font-size: 13px; color: var(--gray-500); line-height: 1.85; }
.phase-detail__items{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; }
.phase-detail__items li { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #333; }

/* ── Tenplus ページ固有 ──────────────────── */
.feature-row {
  display: flex; flex-direction: column;
  gap: 0; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--gray-100); margin-bottom: 16px;
}
@media (min-width: 769px) { .feature-row { flex-direction: row; } }
.feature-row__head { padding: 36px; }
@media (min-width: 769px) { .feature-row__head { width: 50%; } }
.feature-row__body { background: var(--teal-light); padding: 28px 36px; }
@media (min-width: 769px) { .feature-row__body { width: 50%; } }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.feature-title { font-size: 18px; font-weight: 900; margin-bottom: 12px; }
.feature-desc  { font-size: 13px; color: var(--gray-500); line-height: 1.85; }
.feature-points{ list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-points li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #333; }

.pricing-card {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: 24px; padding: 48px;
  text-align: center; max-width: 560px; margin: 0 auto;
}
.pricing-card__badge {
  display: inline-block;
  background: var(--teal); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.pricing-card__price {
  font-size: 64px; font-weight: 900;
  font-family: monospace; color: var(--teal); line-height: 1;
}
.pricing-card__unit { font-size: 20px; color: var(--gray-500); }
.pricing-card__note { font-size: 12px; color: var(--gray-500); margin: 12px 0 24px; }
.pricing-card__features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; text-align: left; margin: 28px 0;
}
.pricing-card__features li { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #444; }

/* FAQ */
.faq-item { border: 1px solid var(--gray-100); border-radius: 14px; overflow: hidden; margin-bottom: 10px; }
.faq-item summary {
  padding: 20px 24px; font-size: 13px; font-weight: 700;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; list-style: none;
  transition: background 0.2s;
}
.faq-item summary:hover { background: var(--gray-bg); }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--gray-500); }
.faq-item[open] summary::after { content: '−'; color: var(--teal); }
.faq-item__body { padding: 0 24px 20px; font-size: 13px; color: var(--gray-500); line-height: 1.85; border-top: 1px solid var(--gray-100); padding-top: 16px; }

/* ── Service ページ固有 ──────────────────── */
.service-list { list-style: none; }
.service-item {
  padding: 40px 16px; margin: 0 -16px;
  border-top: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 16px;
  border-radius: 12px; transition: background 0.2s;
}
.service-item:hover { background: var(--gray-bg); }
@media (min-width: 769px) {
  .service-item { flex-direction: row; align-items: flex-start; gap: 40px; }
}
.service-item__num {
  font-family: monospace; font-size: 18px;
  color: var(--gray-100); font-weight: 900;
  flex-shrink: 0;
}
.service-item__head { flex-shrink: 0; }
@media (min-width: 769px) { .service-item__head { width: 220px; } }
.service-item__title { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.service-item__badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  background: var(--teal-light); color: var(--teal);
}
.service-item__desc { font-size: 13px; color: var(--gray-500); line-height: 1.85; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 11px; font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 4px 12px; border-radius: 100px;
}

/* ── Works ページ固有 ────────────────────── */
.works-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 769px) {
  .works-full-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.work-full-card { border-radius: 16px; overflow: hidden; cursor: pointer; }
.work-full-thumb {
  aspect-ratio: 4/3; position: relative;
  border-radius: 12px; overflow: hidden; margin-bottom: 16px;
}
.work-full-thumb__bg { position: absolute; inset: 0; }
.work-full-thumb__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.work-full-card:hover .work-full-thumb__overlay { opacity: 1; }
.work-full-info { border-bottom: 1px solid var(--gray-100); padding-bottom: 16px; }
.work-full-cat  { font-size: 10px; font-weight: 700; color: var(--gray-500); letter-spacing: 0.2em; margin-bottom: 4px; }
.work-full-title{ font-size: 17px; font-weight: 900; margin-bottom: 4px; transition: color 0.2s; }
.work-full-card:hover .work-full-title { color: var(--teal); }
.work-full-desc { font-size: 12px; color: var(--gray-500); }
.work-full-year { float: right; font-size: 11px; font-family: monospace; color: #ccc; }

/* ── News ページ固有 ─────────────────────── */
.news-filter { display: flex; gap: 8px; margin-bottom: 32px; }
.news-filter-btn {
  font-size: 11px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: all 0.2s; background: var(--gray-100); color: var(--gray-500);
}
.news-filter-btn.active { background: var(--teal); color: #fff; }

.news-full-item { border-bottom: 1px solid var(--gray-100); }
.news-full-item a {
  display: block; padding: 32px 16px; margin: 0 -16px;
  border-radius: 12px; transition: background 0.2s;
}
.news-full-item a:hover { background: var(--gray-bg); }
.news-full-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-full-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.6; }
.news-full-summary { font-size: 13px; color: var(--gray-500); line-height: 1.85; }

/* ── Company ページ固有 ──────────────────── */
.company-split {
  display: flex; flex-direction: column; gap: 48px;
}
@media (min-width: 769px) {
  .company-split { flex-direction: row; gap: 64px; }
  .company-split__table { flex: 1; }
  .company-split__side  { width: 380px; flex-shrink: 0; }
}
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--gray-100); }
.company-table td { padding: 20px 0; font-size: 13px; vertical-align: top; }
.company-table td:first-child {
  font-size: 11px; font-weight: 700;
  color: var(--gray-500); letter-spacing: 0.1em;
  width: 110px; padding-right: 24px;
}
.company-table td:last-child { color: #333; line-height: 1.8; }

.recruit-card {
  background: var(--black); border-radius: 20px;
  padding: 36px; color: #fff; margin-top: 20px;
}
.recruit-card__eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--teal); margin-bottom: 16px;
}
.recruit-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 14px; }
.recruit-card p  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.85; margin-bottom: 24px; }
.vision-card {
  background: var(--teal-light); border-radius: 20px; padding: 36px;
}
.vision-card__eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--teal); margin-bottom: 12px;
}
.vision-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.vision-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.85; }

/* ── Contact ページ固有 ──────────────────── */
.contact-split {
  display: flex; flex-direction: column; gap: 48px;
}
@media (min-width: 769px) {
  .contact-split { flex-direction: row; gap: 64px; }
  .contact-split__form { flex: 1; }
  .contact-split__info { width: 340px; flex-shrink: 0; }
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: #555; margin-bottom: 8px;
}
.form-label span { color: var(--teal); margin-left: 4px; }
.form-input, .form-textarea {
  width: 100%; font-size: 14px; font-family: var(--font-sans);
  border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 14px 16px; color: var(--black);
  transition: border-color 0.2s; outline: none;
  background: var(--white);
}
.form-input:focus, .form-textarea:focus { border-color: var(--teal); }
.form-textarea { resize: none; height: 160px; }
.form-types { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.form-type-btn {
  font-size: 11px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--gray-100);
  cursor: pointer; transition: all 0.2s;
  background: var(--white); color: var(--gray-500);
}
.form-type-btn.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.info-card {
  border: 1px solid var(--gray-100); border-radius: 16px;
  padding: 24px; margin-bottom: 14px;
}
.info-card__label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--gray-500); margin-bottom: 10px;
}
.info-card__val { font-size: 14px; font-weight: 700; color: var(--teal); }
.info-card p   { font-size: 12px; color: var(--gray-500); line-height: 1.8; }

/* ═══════════════════════════════════════════
   V2 追加スタイル
═══════════════════════════════════════════ */

/* ── メンバーカード ──────────────────────── */
.members-section { padding: 96px 0; background: var(--gray-bg); }
.members-lead {
  font-size: 14px; color: var(--gray-500);
  margin-bottom: 56px; line-height: 1.8;
}
.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 769px) {
  .members-grid { grid-template-columns: repeat(3, 1fr); }
}
.member-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s, transform 0.3s;
}
.member-card:hover {
  box-shadow: 0 12px 40px rgba(0,166,166,0.10);
  transform: translateY(-3px);
}
.member-card__photo {
  width: 100%; aspect-ratio: 1/1;
  background: var(--black);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.member-card__photo-placeholder {
  font-size: 48px; opacity: 0.15; color: var(--teal);
  font-weight: 900; font-family: monospace;
}
.member-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  /* ロゴと同様、黒背景PNGはscreenで透過 */
}
.member-card__photo-accent {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--teal);
}
.member-card__body { padding: 28px; }
.member-card__name {
  font-size: 22px; font-weight: 900; color: var(--black);
  margin-bottom: 6px; line-height: 1.2;
}
.member-card__title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; color: var(--teal);
  margin-bottom: 16px;
}
.member-card__desc {
  font-size: 13px; color: var(--gray-500);
  line-height: 1.85;
}
.member-card__placeholder-note {
  font-size: 11px; color: #CCC;
  font-style: italic; margin-top: 12px;
}

/* ── Alliance バナー ─────────────────────── */
.alliance-banner {
  margin-top: 56px; padding: 40px 48px;
  background: var(--black);
  border-radius: 20px; color: var(--white);
  position: relative; overflow: hidden;
}
@media (max-width: 768px) { .alliance-banner { padding: 32px 24px; } }
.alliance-banner::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--teal); opacity: 0.06;
}
.alliance-banner__eye {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--teal);
  margin-bottom: 12px;
}
.alliance-banner h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900; margin-bottom: 16px; line-height: 1.3;
}
.alliance-banner p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.85; max-width: 640px;
}

/* ── 自走化デモセクション ────────────────── */
.demo-section {
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: 20px; padding: 48px;
  margin-top: 48px;
}
@media (max-width: 768px) { .demo-section { padding: 32px 24px; } }
.demo-section__eye {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--teal);
  margin-bottom: 12px;
}
.demo-section h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900; margin-bottom: 16px; color: var(--black);
}
.demo-section p {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.9; margin-bottom: 12px;
}
.demo-flow {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin-top: 24px;
}
.demo-flow__step {
  background: var(--white);
  border: 1px solid var(--teal-mid);
  border-radius: 10px; padding: 8px 16px;
  font-size: 12px; font-weight: 700; color: var(--black);
}
.demo-flow__arrow {
  font-size: 16px; color: var(--teal); font-weight: 900;
}

/* ── Ver.1.4 NEW バッジ ──────────────────── */
.feature-new-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 16px;
}
.feature-ai-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--teal-mid);
  font-size: 13px;
}
.feature-ai-item:last-child { border-bottom: none; }
.feature-ai-item__icon {
  font-size: 16px; flex-shrink: 0; margin-top: 1px;
}
.feature-ai-item__text strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--black); margin-bottom: 2px;
}
.feature-ai-item__text span {
  font-size: 12px; color: var(--gray-500); line-height: 1.7;
}

/* ── ニュース自動化バナー ─────────────────── */
.news-auto-banner {
  background: var(--black); border-radius: 16px;
  padding: 28px 32px; margin-bottom: 40px;
  display: flex; align-items: flex-start; gap: 20px;
}
.news-auto-banner__icon {
  font-size: 24px; flex-shrink: 0; margin-top: 2px;
}
.news-auto-banner__title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--teal); margin-bottom: 6px;
}
.news-auto-banner__body {
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.8;
}

/* ── News v2: スケルトン + カード + 記事詳細 ─── */
@keyframes shimmer { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
.skeleton-card { padding: 24px; border: 1px solid var(--gray-100); border-radius: 12px; margin-bottom: 16px; }
.sk { background: linear-gradient(90deg, var(--gray-bg) 25%, #e8e8e6 50%, var(--gray-bg) 75%); background-size: 800px 100%; animation: shimmer 1.5s infinite; border-radius: 4px; display: block; }
.sk-meta { display: flex; gap: 10px; margin-bottom: 14px; }

/* カード型ニュースリスト */
.news-card { border: 1px solid var(--gray-100); border-radius: 12px; margin-bottom: 16px; transition: border-color 0.2s, transform 0.15s; }
.news-card:hover { border-color: var(--teal-mid); transform: translateY(-1px); }
.news-card a { display: block; padding: 24px 28px; text-decoration: none; color: inherit; }
.news-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-card__date { font-size: 12px; color: var(--gray-500); font-variant-numeric: tabular-nums; }
.news-card__tag { font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.news-card__tag--pr { background: var(--teal-light); color: var(--teal); }
.news-card__tag--info { background: var(--gray-bg); color: var(--gray-500); }
.news-card__title { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.6; }
.news-card__summary { font-size: 13px; color: var(--gray-500); line-height: 1.85; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__readmore { font-size: 12px; color: var(--teal); display: flex; align-items: center; gap: 4px; font-weight: 600; }
.news-card__readmore svg { width: 14px; height: 14px; }

/* 記事詳細ページ */
.article-detail { max-width: 720px; margin: 0 auto; }
.article-detail__breadcrumb { font-size: 12px; color: var(--gray-500); margin-bottom: 28px; display: flex; align-items: center; gap: 6px; }
.article-detail__breadcrumb a { color: var(--teal); text-decoration: none; }
.article-detail__breadcrumb a:hover { text-decoration: underline; }
.article-detail__header { margin-bottom: 32px; }
.article-detail__tag { display: inline-block; font-size: 11px; padding: 4px 12px; border-radius: 20px; font-weight: 600; margin-bottom: 16px; }
.article-detail__title { font-size: 26px; font-weight: 800; line-height: 1.5; color: var(--black); margin-bottom: 16px; }
.article-detail__meta { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); font-size: 13px; color: var(--gray-500); }
.article-detail__body { font-size: 15px; line-height: 2.0; color: #333; padding: 32px 0; }
.article-detail__body p { margin-bottom: 1.5em; }
.article-detail__source { margin-top: 8px; padding: 16px 20px; background: var(--gray-bg); border-radius: 8px; font-size: 12px; color: var(--gray-500); display: flex; align-items: center; gap: 8px; }
.article-detail__source a { color: var(--teal); text-decoration: none; word-break: break-all; }
.article-detail__source a:hover { text-decoration: underline; }
.article-detail__back { display: inline-flex; align-items: center; gap: 6px; margin-top: 40px; padding: 12px 20px; border: 1px solid var(--gray-100); border-radius: 8px; font-size: 13px; color: var(--gray-500); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.article-detail__back:hover { border-color: var(--teal); color: var(--teal); }

@media (max-width: 767px) {
  .news-card a { padding: 18px 20px; }
  .news-card__title { font-size: 15px; }
  .article-detail__title { font-size: 20px; }
  .article-detail__body { font-size: 14px; }
}

/* ── ハンバーガーメニュー ─── */
.navbar__toggle { display:none; background:none; border:none; cursor:pointer; padding:8px; z-index:1001; }
.navbar__toggle span { display:block; width:20px; height:2px; background:#fff; margin:4px 0; transition:all .3s; border-radius:1px; }
.navbar__toggle.open span:nth-child(1) { transform:rotate(45deg) translate(4px,4px); }
.navbar__toggle.open span:nth-child(2) { opacity:0; }
.navbar__toggle.open span:nth-child(3) { transform:rotate(-45deg) translate(4px,-4px); }

@media (max-width: 900px) {
  .navbar__toggle { display:block; }
  .navbar__nav {
    display:flex !important; flex-direction:column; position:fixed; top:0; right:-280px; width:280px; height:100vh;
    background:#0C0C0C; padding:80px 32px 40px; gap:0; z-index:1000; transition:right .3s ease; box-shadow:-4px 0 20px rgba(0,0,0,0.3);
  }
  .navbar__nav.open { right:0; }
  .navbar__nav a { font-size:15px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.08); color:rgba(255,255,255,0.7); }
  .navbar__nav a:hover, .navbar__nav a.active { color:#00A6A6; }
  .navbar__cta { display:inline-block !important; margin-top:20px; text-align:center; }
  .navbar__overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:999; }
  .navbar__overlay.open { display:block; }
}
