/* ============================================
   OTSUMU — AWWWARDS-LEVEL DESIGN SYSTEM
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #181818;
  --text: #F5F5F0;
  --text-muted: rgba(245, 245, 240, 0.5);
  --text-faint: rgba(245, 245, 240, 0.25);
  --accent: #7B61FF;
  --accent-2: #00D4AA;
  --accent-glow: rgba(123, 97, 255, 0.3);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(123, 97, 255, 0.5);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Noise Overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-inner {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--text);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
}

.cursor.hovering .cursor-inner {
  width: 40px; height: 40px;
  background: var(--accent);
}

@media (hover: none) { .cursor { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  text-align: center;
  width: 100%;
  max-width: 480px;
  padding: 0 32px;
}

.preloader-logo {
  margin-bottom: 40px;
}

.preloader-logo svg {
  width: 56px; height: 56px;
  margin: 0 auto;
}

.preloader-text {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  overflow: hidden;
}

.preloader-word {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  transform: translateY(100%);
}

.preloader-word:last-child {
  color: var(--accent);
}

.preloader-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.preloader-bar {
  width: 100%;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Logo ---------- */
.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.logo-mark svg { width: 36px; height: 36px; }

/* ---------- Desktop Nav ---------- */
.nav {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

/* ---------- Magnetic Button ---------- */
.magnetic-btn {
  position: relative;
  overflow: hidden;
}

.btn-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: scale(0);
  transition: transform 0.4s var(--ease-out);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.nav-cta span { position: relative; z-index: 1; }

.nav-cta .btn-bg {
  background: var(--accent);
  border-radius: 100px;
}

.nav-cta:hover .btn-bg { transform: scale(1); }
.nav-cta:hover { color: var(--text); }

/* ---------- Menu Toggle ---------- */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

@media (min-width: 1024px) { .menu-toggle { display: none; } }

.menu-icon {
  width: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-icon span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

.menu-toggle.active .menu-icon span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active .menu-icon span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- Fullscreen Menu ---------- */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 60px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.menu-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.menu-nav {
  position: relative;
  z-index: 1;
}

.menu-nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  margin-bottom: 8px;
}

.menu-nav-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  width: 28px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}

.fullscreen-menu.active .menu-nav-num {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--i, 0) * 60ms + 100ms);
}

.menu-nav-item:nth-child(1) .menu-nav-num { --i: 1; }
.menu-nav-item:nth-child(2) .menu-nav-num { --i: 2; }
.menu-nav-item:nth-child(3) .menu-nav-num { --i: 3; }
.menu-nav-item:nth-child(4) .menu-nav-num { --i: 4; }
.menu-nav-item:nth-child(5) .menu-nav-num { --i: 5; }

.menu-nav-link {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  display: block;
  overflow: hidden;
}

.menu-nav-link .link-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease-out);
  color: var(--text);
  transition-property: transform, color;
}

.fullscreen-menu.active .menu-nav-link .link-inner {
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 60ms + 80ms);
}

.menu-nav-item:nth-child(1) .link-inner { --i: 1; }
.menu-nav-item:nth-child(2) .link-inner { --i: 2; }
.menu-nav-item:nth-child(3) .link-inner { --i: 3; }
.menu-nav-item:nth-child(4) .link-inner { --i: 4; }
.menu-nav-item:nth-child(5) .link-inner { --i: 5; }

.menu-nav-link:hover .link-inner { color: var(--accent); }

.menu-footer {
  position: absolute;
  bottom: 60px; left: 60px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  font-size: 13px;
  color: var(--text-muted);
}

.menu-social {
  display: flex;
  gap: 24px;
}

.social-link {
  transition: color 0.3s;
}

.social-link:hover { color: var(--text); }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 60px;
  overflow: hidden;
}

.title-line {
  overflow: hidden;
  display: block;
}

.title-word {
  display: inline-block;
  transform: translateY(110%);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  flex-wrap: wrap;
}

.hero-desc {
  flex: 1;
  min-width: 260px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 360px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.btn-primary .btn-text, .btn-primary .btn-arrow {
  position: relative; z-index: 1;
}

.btn-primary .btn-arrow {
  width: 18px; height: 18px;
  display: flex;
}

.btn-primary .btn-arrow svg { width: 100%; height: 100%; }

.btn-primary .btn-bg {
  background: var(--text);
  border-radius: 100px;
}

.btn-primary:hover .btn-bg { transform: scale(1); }
.btn-primary:hover { color: var(--bg); }

/* Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border: 1px solid var(--border-hover);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s;
}

.btn-outline .btn-text { position: relative; z-index: 1; }

.btn-outline .btn-bg {
  background: var(--accent);
  border-radius: 100px;
}

.btn-outline:hover .btn-bg { transform: scale(1); }
.btn-outline:hover { color: var(--text); border-color: var(--accent); }

/* Ghost Button */
.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--text); }

/* Text Link Button */
.btn-text-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.btn-text-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.btn-text-link:hover { color: var(--text); }
.btn-text-link:hover svg { transform: translate(3px, -3px); }

/* ---------- Scroll Indicator ---------- */
.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-indicator {
  width: 1px;
  height: 48px;
  background: var(--border);
  overflow: hidden;
}

.scroll-line {
  width: 100%;
  height: 40%;
  background: var(--accent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(350%); }
}

/* ---------- Hero Stats ---------- */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  gap: 0;
}

.stat-item {
  flex: 1;
  padding: 0 40px 0 0;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin-right: 40px;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--text), var(--text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.stat-symbol { -webkit-text-fill-color: var(--accent); }

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 20s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-dot { color: var(--accent); font-size: 8px; }

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

/* ============================================
   SECTIONS — SHARED
   ============================================ */

.section { padding: 140px 0; }

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  overflow: hidden;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
}

.section-header {
  margin-bottom: 80px;
  max-width: 600px;
}

/* ---------- Reveal Animations ---------- */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text-block { overflow: hidden; }

.reveal-text {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
}

.reveal-text.visible { transform: translateY(0); }

/* ============================================
   BUSINESS SECTION
   ============================================ */

.business-section { background: var(--bg-2); }

.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

@media (min-width: 768px) {
  .business-grid { grid-template-columns: repeat(2, 1fr); }
}

.biz-card {
  position: relative;
  display: block;
  padding: 48px;
  background: var(--bg-3);
  overflow: hidden;
  transition: background 0.4s;
}

.biz-card:hover { background: #1e1e1e; }

.biz-card-inner { position: relative; z-index: 1; }

.biz-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.biz-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}

.biz-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}

.biz-icon svg {
  width: 22px; height: 22px;
  stroke: var(--text-muted);
  transition: stroke 0.3s;
}

.biz-card:hover .biz-icon {
  border-color: var(--accent);
  background: rgba(123, 97, 255, 0.1);
}

.biz-card:hover .biz-icon svg { stroke: var(--accent); }

.biz-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.biz-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.biz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.biz-tags span {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  transition: border-color 0.3s, color 0.3s;
}

.biz-card:hover .biz-tags span {
  border-color: var(--border-hover);
  color: var(--text-muted);
}

.biz-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.biz-arrow svg {
  width: 16px; height: 16px;
  stroke: var(--text-muted);
  transition: stroke 0.3s, transform 0.3s;
}

.biz-card:hover .biz-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(0deg);
}

.biz-card:hover .biz-arrow svg {
  stroke: var(--text);
  transform: translate(1px, -1px);
}

/* Hover glow effect */
.biz-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(123,97,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.biz-card:hover .biz-card-bg { opacity: 1; }

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.philosophy-section { background: var(--bg); }

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}

@media (min-width: 1024px) {
  .philosophy-inner {
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
  }
}

.philosophy-quote blockquote {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
}

.philosophy-quote blockquote em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 300;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.value-item:first-child { border-top: 1px solid var(--border); }

.value-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-top: 4px;
  flex-shrink: 0;
}

.value-content h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}

.value-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   NEWS SECTION
   ============================================ */

.news-section { background: var(--bg-2); }

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.news-list {
  border-top: 1px solid var(--border);
}

.news-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.news-item:hover { background: rgba(255,255,255,0.02); padding-left: 12px; padding-right: 12px; }

.news-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.news-content { flex: 1; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.news-date {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.news-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 8px;
  border: 1px solid rgba(123, 97, 255, 0.3);
  border-radius: 4px;
}

.news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.news-item:hover .news-title { color: var(--accent); }

.news-arrow {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.news-arrow svg {
  width: 14px; height: 14px;
  stroke: var(--text-faint);
  transition: all 0.3s;
}

.news-item:hover .news-arrow {
  background: var(--accent);
  border-color: var(--accent);
}

.news-item:hover .news-arrow svg {
  stroke: var(--text);
  transform: translate(2px, -2px);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--bg);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 20vw, 280px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 28px;
  overflow: hidden;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 48px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-logo .logo-mark svg { width: 32px; height: 32px; }

.footer-nav-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 600px) {
  .footer-nav-groups { grid-template-columns: repeat(2, 1fr); }
}

.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.footer-nav-group a, .footer-nav-group p {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-nav-group a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */

.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-top: 20px;
}

.page-hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 480px;
  line-height: 1.8;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .hero-container { padding: 0 20px; }
  .hero-stats { padding: 0 20px; margin-top: 40px; }
  .stat-item { padding: 0 20px 0 0; }
  .stat-number { font-size: 32px; }
  .stat-divider { margin-right: 20px; }
  .hero-scroll { right: 20px; }
  .section-container { padding: 0 20px; }
  .section { padding: 100px 0; }
  .biz-card { padding: 32px 24px; }
  .news-item { grid-template-columns: 1fr auto; gap: 16px; }
  .news-num { display: none; }
  .cta-section { padding: 100px 0; }
  .footer-inner { padding: 60px 20px 40px; }
  .footer-nav-groups { grid-template-columns: repeat(2, 1fr); }
  .menu-footer { left: 20px; right: 20px; bottom: 40px; }
  .fullscreen-menu { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(50px, 15vw, 80px); }
  .hero-bottom { gap: 40px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; padding-top: 32px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .business-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-intro {
  padding: 80px 0;
  background: var(--bg);
}

.about-lead {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.4;
  color: var(--text);
  max-width: 900px;
}

.about-lead em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 400;
}

.about-grid {
  display: grid;
  gap: 60px;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}

.about-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-text p + p { margin-top: 16px; }

.profile-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.profile-row {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  gap: 6px;
}

.profile-row:last-child { border-bottom: none; }

@media (min-width: 600px) {
  .profile-row {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.profile-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  min-width: 140px;
}

.profile-value {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================
   FORM STYLES (Contact)
   ============================================ */

.form-group { margin-bottom: 28px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-input:focus, .form-textarea:focus {
  background: var(--bg-2);
  border-color: var(--accent);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-faint);
}

.form-row {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

/* Inquiry types */
.inquiry-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .inquiry-types { grid-template-columns: 1fr; }
}

.inquiry-type {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.inquiry-type:hover { border-color: var(--accent); }
.inquiry-type input { accent-color: var(--accent); }

/* ============================================
   JOB CARDS (Careers)
   ============================================ */

.job-list { display: flex; flex-direction: column; gap: 12px; }

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s var(--ease-out);
}

.job-card:hover {
  border-color: var(--accent);
  background: rgba(123,97,255,0.04);
  transform: translateX(4px);
}

.job-content { flex: 1; }

.job-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.job-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.job-tags { display: flex; gap: 8px; }

.job-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.job-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.job-arrow svg {
  width: 16px; height: 16px;
  stroke: var(--text-faint);
  transition: all 0.3s;
}

.job-card:hover .job-arrow {
  background: var(--accent);
  border-color: var(--accent);
}

.job-card:hover .job-arrow svg {
  stroke: var(--text);
  transform: translate(2px, -2px);
}

/* Tags */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

/* Category buttons */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.category-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s;
  background: transparent;
}

.category-btn:hover { border-color: var(--text-muted); color: var(--text); }

.category-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.page-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.page-btn:hover:not(:disabled) { border-color: var(--text-muted); color: var(--text); }
.page-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.page-btn svg { width: 16px; height: 16px; }

/* Privacy */
.privacy-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

.privacy-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.privacy-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.privacy-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 15px;
}

/* Highlight box */
.highlight-box {
  padding: 28px 32px;
  background: rgba(123,97,255,0.05);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}

/* Number badge */
.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  border-radius: 10px;
}

.text-small {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Feature list */
.feature-list { list-style: none; margin: 20px 0; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 15px;
}

.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* About header */
.about-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.about-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Business visual */
.business-visual {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.visual-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.visual-title { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.visual-desc { font-size: 12px; color: var(--text-faint); }

.business-visual-center {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.business-icon-large {
  width: 80px; height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.business-icon-large.gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.business-icon-large.dark { background: var(--bg); border: 1px solid var(--border); }
.business-icon-large svg { width: 36px; height: 36px; stroke: var(--text); }

/* =====================
   BIZ CARD ENHANCEMENTS
   ===================== */
.biz-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  background: var(--bg-3);
}
.biz-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.biz-card:hover .biz-img img { transform: scale(1.05); }

.biz-img-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-icon-bg {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.biz-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}
.biz-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.biz-link:hover { gap: 10px; }
.biz-link span { font-size: 11px; }

.biz-fund-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-card-wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .biz-card-wide { grid-column: span 1; }
}

/* =====================
   HOW WE WORK SECTION
   ===================== */
.how-section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.step-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.step-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.step-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0.9);
}
.step-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .how-section { padding: 80px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* =====================
   ACCELERATION SECTION
   ===================== */
.accel-section {
  padding: 80px 40px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.accel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.accel-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.accel-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.accel-card img {
  max-width: 240px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0.9) contrast(1.1);
}
.accel-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .accel-section { padding: 60px 20px 80px; }
  .accel-grid { grid-template-columns: 1fr; }
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-section {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
}
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-form-wrap {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-form-wrap iframe {
  display: block;
  background: transparent;
}

/* footer address */
.footer-address {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-faint);
  margin-top: 12px;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-overview-section {
  padding: 0 40px 120px;
}
.about-container {
  max-width: 960px;
  margin: 0 auto;
}
.about-tagline {
  text-align: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.about-tagline h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.info-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.company-info-wrap {
  margin-bottom: 72px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid var(--border);
}
.company-table th {
  padding: 20px 24px 20px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
  vertical-align: top;
  width: 200px;
  white-space: nowrap;
}
.company-table th small {
  font-weight: 400;
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
.company-table td {
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.ceo-section {
  margin-bottom: 72px;
}
.ceo-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}
.ceo-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ceo-process {
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.ceo-process-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ceo-process-item:last-child { border-bottom: none; }
.ceo-process-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.ceo-process-item span {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}
.ceo-profile {
  position: sticky;
  top: 100px;
}
.ceo-profile img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 16px;
  filter: grayscale(10%);
}
.ceo-profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.ceo-profile-info strong {
  font-size: 12px;
  color: var(--text-muted);
}
.ceo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.ceo-bio {
  margin-bottom: 72px;
}
.ceo-bio-inner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.ceo-bio-inner h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.ceo-bio-inner p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.history-section { margin-bottom: 72px; }
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 2px;
}
.timeline-content strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.timeline-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.timeline-content a {
  color: var(--accent);
  text-decoration: none;
}
.timeline-content a:hover { text-decoration: underline; }
.timeline-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .about-overview-section { padding: 0 20px 80px; }
  .ceo-inner { grid-template-columns: 1fr; }
  .ceo-profile { position: static; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .company-table th { width: 120px; font-size: 12px; }
  .company-table td { font-size: 13px; }
}

/* =====================
   PRIVACY / LEGAL PAGE
   ===================== */
.legal-section {
  padding: 0 40px 120px;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px;
}
.legal-container p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.legal-container h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-container ul {
  margin: 0 0 24px 20px;
}
.legal-container li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.legal-container a {
  color: var(--accent);
  text-decoration: none;
}
.legal-container a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .legal-section { padding: 0 20px 80px; }
  .legal-container { padding: 32px 24px; }
}

