/* ============================================================
   BLUEPRINT FUTURISTIC MINIMALIST — Landing Redesign
   Sections: Manifesto, Capability Cards, System Table, Contact
   ============================================================ */

/* Global Grid Overlay */
.bp-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(30, 41, 59, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, 0.25) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Section Base */
.bp-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  border-top: 1px solid var(--bp-line-subtle);
}

.bp-section__header {
  margin-bottom: 48px;
}

.bp-section__label {
  font-family: var(--bp-font-mono);
  font-size: 0.7rem;
  color: var(--bp-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bp-section__label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--bp-cyan);
}

.bp-section__title {
  font-family: var(--bp-font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bp-text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.bp-section__desc {
  font-family: var(--bp-font-body);
  font-size: 1rem;
  color: var(--bp-text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

/* Container */
.bp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   MANIFESTO (refactored from About)
   ============================================================ */
.bp-manifesto {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 48px;
  align-items: start;
}

.bp-manifesto__vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--bp-cyan);
  text-transform: uppercase;
  border-left: 1px solid var(--bp-cyan);
  padding-left: 12px;
  height: 100%;
  min-height: 280px;
}

.bp-manifesto__blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bp-manifesto__block {
  border: 1px solid var(--bp-line-subtle);
  padding: 24px;
  background: rgba(13, 31, 60, 0.5);
  transition: var(--bp-transition);
}

.bp-manifesto__block:hover {
  border-color: var(--bp-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.08);
}

.bp-manifesto__block:nth-child(1) { margin-left: 0; }
.bp-manifesto__block:nth-child(2) { margin-left: 32px; }
.bp-manifesto__block:nth-child(3) { margin-left: 64px; }

.bp-manifesto__block-id {
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  color: var(--bp-cyan);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.bp-manifesto__block h3 {
  font-family: var(--bp-font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bp-text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.bp-manifesto__block p {
  font-family: var(--bp-font-body);
  font-size: 0.9rem;
  color: var(--bp-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CAPABILITY CARDS (merged Values + Services)
   ============================================================ */
.bp-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bp-line-subtle);
  border: 1px solid var(--bp-line-subtle);
}

.bp-cap-card {
  background: var(--bp-bg);
  padding: 32px 24px;
  position: relative;
  border: 1px solid transparent;
  transition: var(--bp-transition);
}

.bp-cap-card:hover {
  border-color: var(--bp-cyan);
  background: rgba(0, 242, 255, 0.03);
  box-shadow: inset 0 0 30px rgba(0, 242, 255, 0.04);
}

.bp-cap-card__id {
  font-family: var(--bp-font-mono);
  font-size: 0.6rem;
  color: var(--bp-cyan);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: block;
}

.bp-cap-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--bp-cyan);
}

.bp-cap-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.bp-cap-card__title {
  font-family: var(--bp-font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bp-text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.bp-cap-card__desc {
  font-family: var(--bp-font-body);
  font-size: 0.8rem;
  color: var(--bp-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SYSTEM TABLE (refactored from Technologies)
   ============================================================ */
.bp-systable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--bp-font-mono);
}

.bp-systable thead th {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bp-cyan);
  font-weight: 500;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--bp-cyan);
}

.bp-systable tbody tr {
  border-bottom: 1px solid var(--bp-line-subtle);
  transition: var(--bp-transition);
}

.bp-systable tbody tr:hover {
  background: rgba(0, 242, 255, 0.03);
}

.bp-systable td {
  padding: 14px 16px;
  font-size: 0.8rem;
  color: var(--bp-text-secondary);
  vertical-align: middle;
}

.bp-systable td:first-child {
  color: var(--bp-text-tertiary);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bp-systable td:nth-child(2) {
  color: var(--bp-text-primary);
  font-weight: 500;
}

.bp-status-tag {
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border: 1px solid var(--bp-line);
  display: inline-block;
}

.bp-status-tag--stable {
  color: var(--bp-green);
  border-color: rgba(0, 208, 144, 0.3);
  background: rgba(0, 208, 144, 0.06);
}

.bp-status-tag--beta {
  color: var(--bp-accent);
  border-color: rgba(255, 122, 77, 0.3);
  background: rgba(255, 122, 77, 0.06);
}

.bp-status-tag--active {
  color: var(--bp-cyan);
  border-color: rgba(0, 242, 255, 0.3);
  background: rgba(0, 242, 255, 0.06);
}

/* ============================================================
   CONTACT — Terminal + Form
   ============================================================ */
.bp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.bp-terminal {
  border: 1px solid var(--bp-line-subtle);
  background: rgba(5, 10, 15, 0.8);
  font-family: var(--bp-font-mono);
  overflow: hidden;
}

.bp-terminal__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--bp-line-subtle);
  background: rgba(13, 31, 60, 0.4);
}

.bp-terminal__dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--bp-line);
}

.bp-terminal__dot:nth-child(1) { border-color: var(--bp-red); }
.bp-terminal__dot:nth-child(2) { border-color: var(--bp-accent); }
.bp-terminal__dot:nth-child(3) { border-color: var(--bp-green); }

.bp-terminal__title {
  font-size: 0.65rem;
  color: var(--bp-text-tertiary);
  letter-spacing: 0.1em;
  margin-left: 8px;
}

.bp-terminal__body {
  padding: 20px;
  min-height: 320px;
}

.bp-terminal__line {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--bp-text-tertiary);
  margin: 0;
}

.bp-terminal__line .prompt {
  color: var(--bp-cyan);
}

.bp-terminal__line .ok {
  color: var(--bp-green);
}

.bp-terminal__line .warn {
  color: var(--bp-accent);
}

.bp-terminal__line .cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--bp-cyan);
  animation: bp-blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

@keyframes bp-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.bp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bp-form-group {
  position: relative;
}

.bp-form-group label {
  display: block;
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bp-text-tertiary);
  margin-bottom: 8px;
}

.bp-form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--bp-line-subtle);
  padding: 10px 0;
  font-family: var(--bp-font-body);
  font-size: 0.9rem;
  color: var(--bp-text-primary);
  outline: none;
  transition: var(--bp-transition);
}

.bp-form-input:focus {
  border-bottom-color: var(--bp-cyan);
  box-shadow: 0 1px 0 0 var(--bp-cyan);
}

.bp-form-input::placeholder {
  color: var(--bp-text-muted);
}

textarea.bp-form-input {
  resize: vertical;
  min-height: 80px;
}

.bp-form-submit {
  font-family: var(--bp-font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bp-bg);
  background: var(--bp-cyan);
  border: 1px solid var(--bp-cyan);
  padding: 16px 32px;
  cursor: pointer;
  transition: var(--bp-transition);
  align-self: flex-start;
}

.bp-form-submit:hover {
  background: transparent;
  color: var(--bp-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bp-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bp-manifesto {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bp-manifesto__vertical-label {
    writing-mode: horizontal-tb;
    border-left: none;
    border-bottom: 1px solid var(--bp-cyan);
    padding-left: 0;
    padding-bottom: 8px;
    min-height: auto;
    height: auto;
  }

  .bp-manifesto__block:nth-child(1),
  .bp-manifesto__block:nth-child(2),
  .bp-manifesto__block:nth-child(3) {
    margin-left: 0;
  }

  .bp-cap-grid {
    grid-template-columns: 1fr;
  }

  .bp-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bp-section {
    padding: 48px 0;
  }

  .bp-section__title {
    font-size: 1.5rem;
  }

  .bp-systable {
    font-size: 0.7rem;
  }

  .bp-systable thead th,
  .bp-systable td {
    padding: 10px 8px;
  }
}

@media (max-width: 480px) {
  .bp-container {
    padding: 0 16px;
  }

  .bp-form-submit {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
    NAVBAR.SYS — Industrial / Minimalist Redesign
    ============================================================ */
.bp-nav {
  background: rgba(5, 10, 15, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--bp-line-subtle);
  padding: 0;
}

.bp-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* Brand */
.bp-nav__brand {
  font-family: var(--bp-font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--bp-text-primary);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.2;
}

.bp-nav__brand ruby rb {
  font-family: var(--bp-font-body);
  font-size: 1rem;
  color: var(--bp-cyan);
}

.bp-nav__brand ruby rt {
  font-size: 0.55em;
  color: var(--bp-text-tertiary);
  font-family: var(--bp-font-mono);
  letter-spacing: 0.15em;
}

/* Nav Links */
.bp-nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.bp-nav__links a {
  font-family: var(--bp-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--bp-text-tertiary);
  text-decoration: none;
  padding: 8px 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--bp-transition);
  position: relative;
  min-height: 36px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
}

.bp-nav__links a:hover {
  color: var(--bp-cyan);
  background: rgba(0, 212, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.15);
}

.bp-nav__links a::before {
  content: '/';
  opacity: 0.3;
  margin-right: 4px;
  font-weight: 400;
}

/* CTA Button */
.bp-nav__links a.bp-nav__cta {
  color: var(--bp-bg);
  background: var(--bp-cyan);
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid var(--bp-cyan);
  border-radius: 0;
  margin-left: 8px;
}

.bp-nav__links a.bp-nav__cta:hover {
  background: transparent;
  color: var(--bp-cyan);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

.bp-nav__links a.bp-nav__cta::before {
  display: none;
}

/* Theme Toggle */
.bp-nav__theme-toggle {
  background: transparent;
  border: 1px solid var(--bp-line-subtle);
  border-radius: 0;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  transition: var(--bp-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.bp-nav__theme-toggle:hover {
  border-color: var(--bp-cyan);
  background: var(--bp-cyan-dim);
}

/* Profile Avatar */
.bp-nav__avatar {
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 1px solid var(--bp-cyan);
  cursor: pointer;
  box-shadow: none;
}

/* Mobile Toggle */
.bp-nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--bp-line-subtle);
  color: var(--bp-cyan);
  font-size: 1.2rem;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 0;
  min-height: 36px;
  min-width: 36px;
}

@media (max-width: 900px) {
  .bp-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .bp-nav__links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(5, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 12px 32px;
    gap: 0;
    border-bottom: 1px solid var(--bp-line-subtle);
  }
  
  .bp-nav__links--open {
    display: flex;
  }
  
  .bp-nav__links a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
  }
}

/* ============================================================
    HERO.SYS — Industrial / Minimalist Redesign
    ============================================================ */
.bp-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--bp-line-subtle);
}

/* Hero Coordinate Label */
.bp-hero__coord {
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  color: var(--bp-green);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(0, 208, 144, 0.2);
  background: rgba(0, 208, 144, 0.04);
}

/* Hero Title — Restore original shuffle/title styling */
.bp-hero__title {
  font-family: var(--bp-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: var(--bp-text-primary);
  margin-bottom: 8px;
  text-transform: none;
}

.bp-hero__title .bp-kanji {
  color: var(--bp-cyan);
  text-shadow: 0 0 30px var(--bp-cyan-glow);
}

.bp-hero__title .bp-kanji rt {
  font-size: 0.35em;
  color: var(--bp-text-tertiary);
  letter-spacing: 0.1em;
  font-family: var(--bp-font-body);
  text-transform: none;
}

.bp-hero__title .bp-title-text {
  font-family: var(--bp-font-display);
  display: inline;
}

/* Shuffle animation for hero text */
.bp-hero__title .shuffling {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero Subtitle */
.bp-hero__subtitle {
  font-family: var(--bp-font-body);
  font-size: 1.1rem;
  color: var(--bp-text-secondary);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.6;
}

/* Hero Slider — Terminal Style */
.bp-hero__slider {
  max-width: 640px;
  margin-bottom: 48px;
  text-align: left;
  border: 1px solid var(--bp-line-subtle);
  background: rgba(5, 10, 15, 0.7);
  padding: 0;
}

.bp-hero__slides {
  position: relative;
  min-height: 80px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bp-line-subtle);
}

.bp-hero__slide {
  position: absolute;
  font-family: var(--bp-font-body);
  font-size: 0.95rem;
  color: var(--bp-text-secondary);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  max-width: 100%;
}

.bp-hero__slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.bp-hero__slide::before {
  content: '> ';
  color: var(--bp-cyan);
  font-family: var(--bp-font-mono);
}

/* Hero Indicators */
.bp-hero__indicators {
  display: flex;
  gap: 0;
  padding: 12px 24px;
  background: rgba(13, 31, 60, 0.3);
}

.bp-hero__dot {
  width: 32px;
  height: 3px;
  border-radius: 0;
  border: none;
  background: var(--bp-line-subtle);
  cursor: pointer;
  transition: var(--bp-transition);
  padding: 0;
}

.bp-hero__dot:hover {
  background: var(--bp-cyan-dim);
}

.bp-hero__dot--active {
  background: var(--bp-cyan);
  box-shadow: none;
}

/* Hero Actions */
.bp-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.bp-hero__actions .bp-btn {
  font-family: var(--bp-font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  border: 1px solid var(--bp-line-subtle);
  background: transparent;
  color: var(--bp-text-primary);
  cursor: pointer;
  transition: var(--bp-transition);
}

.bp-hero__actions .bp-btn:hover {
  border-color: var(--bp-cyan);
  background: rgba(0, 212, 255, 0.04);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.bp-hero__actions .bp-btn.bp-btn--primary {
  background: var(--bp-cyan);
  color: var(--bp-bg);
  border-color: var(--bp-cyan);
}

.bp-hero__actions .bp-btn.bp-btn--primary:hover {
  background: transparent;
  color: var(--bp-cyan);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
}

/* Status Indicator */
.bp-hero .bp-status {
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bp-green);
}

.bp-hero .bp-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--bp-green);
  box-shadow: none;
}

/* Hero Background Decorative Elements — Restore original opacities */
.bp-hero__bg .bp-wave {
  opacity: 0.95;
}

.bp-hero__bg .bp-enso {
  opacity: 0.7;
}

.bp-hero__bg .bp-torii {
  opacity: 0.58;
}

.bp-hero__bg .bp-seigaiha {
  opacity: 0.5;
}

.bp-hero__bg .bp-fuji {
  opacity: 0.32;
}

/* Crosshair Adjustments — keep original */
.bp-hero__crosshair {
  opacity: 0.4;
}

.bp-hero__crosshair::before,
.bp-hero__crosshair::after {
  background: var(--bp-line-subtle);
}

/* ============================================================
    HERO.SYS RESPONSIVE
    ============================================================ */
@media (max-width: 768px) {
  .bp-hero {
    padding: 100px 16px 60px;
  }

  .bp-hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .bp-hero__slider {
    max-width: 100%;
  }

  .bp-hero__slides {
    min-height: 100px;
    padding: 16px 20px;
  }

  .bp-hero__indicators {
    padding: 10px 20px;
  }

  .bp-hero__dot {
    width: 24px;
  }

  .bp-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .bp-hero__actions .bp-btn {
    width: 100%;
  }

  .bp-nav__inner {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .bp-hero__coord {
    font-size: 0.55rem;
    padding: 4px 12px;
  }

  .bp-hero__subtitle {
    font-size: 0.9rem;
  }

  .bp-hero__slide {
    font-size: 0.85rem;
  }
}

/* ============================================================
    GLOBAL SHARP CORNERS — Industrial Theme Override
    ============================================================ */
.bp-input,
.bp-btn,
.bp-btn--primary,
.bp-btn--secondary,
.bp-card,
.bp-card__header,
.bp-oss-item,
.bp-oss-card,
.bp-wf-card,
.bp-radar-card,
.bp-radar-legend,
.bp-pill,
.bp-modal,
.bp-surface,
.bp-surface-light,
.mp-prod,
.mp-prod__img,
.mp-prod__btn,
.mp-prod__ln,
.mp-cat,
.mp-search__btn,
.mp-skeleton,
.mp-fab,
.bl-art,
.bl-card,
.bl-feat__main,
.bl-feat__sb,
.bl-tag,
.bl-search__btn,
.bl-skeleton,
.bl-skeleton__cat,
.bl-skeleton__title,
.bl-skeleton__title-sm,
.bl-skeleton__text,
.bl-skeleton__meta,
.bl-modal,
.bl-modal__input,
.bl-modal__select,
.bl-modal__textarea,
.bl-modal__btn,
.bl-modal__close,
.bl-fab,
.id-social__btn,
.id-error,
.id-success,
.pd-img,
.pd-tech-card,
.pd-tech-item,
.pd-info__sect,
.cm-widget,
.cm-post,
.cm-composer,
.cm-nav,
.cm-user-card,
.cm-header__search-input,
.cm-header__dropdown,
.cm-profile__header,
.cm-edit-modal__content,
.cm-stories__avatar-inner,
.cm-profile__skeleton-pill,
.cm-profile__skeleton-tab,
.bl-modal-overlay {
  border-radius: 0 !important;
}

/* Preserve FAB circular shape */
.mp-fab,
.bl-fab {
  border-radius: 50% !important;
}

/* Avatar circles should remain round */
img[style*="border-radius: 50%"],
.pf-hero__avatar,
.bp-author-card__img,
.cm-header__avatar,
.cm-post__avatar,
.cm-stories__avatar-img,
.cm-stories__avatar-ring,
.cm-profile__avatar,
.cm-profile__avatar-ring,
.cm-user-card__avatar,
.cm-composer__avatar,
.cm-suggested__avatar,
.cm-profile__skeleton-avatar {
  border-radius: 50% !important;
}

/* ============================================================
    FOOTER.SYSTEM.V2
    Blueprint Industrial / Minimalist
    ============================================================ */
.bp-footer-sys {
  width: 100%;
  background: #050A0F;
  border-top: 1px solid #1E293B;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.bp-footer-sys__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.bp-footer-sys__top {
  display: flex;
  gap: 0;
}

/* LEFT COL — Brand */
.bp-footer-sys__brand {
  width: 40%;
  padding-right: 48px;
  border-right: 1px solid #1E293B;
}

.bp-footer-sys__logo {
  font-family: var(--bp-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bp-text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  transition: var(--bp-transition);
}

.bp-footer-sys__logo:hover {
  color: var(--bp-cyan);
}

.bp-footer-sys__logo-kanji {
  font-family: var(--bp-font-body);
  font-weight: 400;
  font-size: 0.9rem;
  display: block;
  color: var(--bp-text-tertiary);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.bp-footer-sys__desc {
  font-family: var(--bp-font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--bp-text-secondary);
  margin: 16px 0 24px 0;
  max-width: 360px;
}

.bp-footer-sys__status {
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #00F2FF;
  display: inline-block;
  padding: 4px 0;
  border-top: 1px solid rgba(0, 242, 255, 0.2);
  padding-top: 10px;
  margin-top: auto;
}

.bp-footer-sys__status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00F2FF;
  margin-right: 8px;
  animation: bp-pulse-status 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes bp-pulse-status {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px #00F2FF; }
  50% { opacity: 0.4; box-shadow: none; }
}

/* RIGHT COL — Links Grid */
.bp-footer-sys__links {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bp-footer-sys__col {
  padding: 0 24px;
  border-left: 1px solid #1E293B;
}

.bp-footer-sys__col:first-child {
  padding-left: 32px;
}

.bp-footer-sys__cat {
  font-family: var(--bp-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bp-cyan);
  margin-bottom: 20px;
  display: block;
}

.bp-footer-sys__cat::before {
  content: '[ ';
  opacity: 0.5;
}

.bp-footer-sys__cat::after {
  content: ' ]';
  opacity: 0.5;
}

.bp-footer-sys__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bp-footer-sys__list a {
  font-family: var(--bp-font-body);
  font-size: 0.875rem;
  color: #cbd5e1;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.bp-footer-sys__list a:hover {
  color: #00F2FF;
  transform: translateX(4px);
}

/* BOTTOM ROW */
.bp-footer-sys__bottom {
  border-top: 1px solid #111D29;
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
}

.bp-footer-sys__copy {
  font-family: var(--bp-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748B;
  margin: 0;
}

/* ============================================================
   FOOTER.V2 RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bp-footer-sys__top {
    flex-direction: column;
    gap: 40px;
  }

  .bp-footer-sys__brand {
    width: 100%;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #1E293B;
    padding-bottom: 32px;
  }

  .bp-footer-sys__links {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .bp-footer-sys__col {
    border-left: none;
    padding: 0;
  }

  .bp-footer-sys__col:first-child {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .bp-footer-sys__top {
    padding: 0;
  }

  .bp-footer-sys__links {
    grid-template-columns: 1fr;
  }

  .bp-footer-sys__bottom {
    margin-top: 40px;
    padding: 16px 0;
  }

  .bp-footer-sys__copy {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  .bp-footer-sys {
    padding-top: 48px;
  }
}

/* ============================================================
    OSS CARD REDESIGN — Industrial Terminal Style
    ============================================================ */
.bp-oss-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  list-style: none;
}

.bp-oss-card {
  position: relative;
  background: #0A0F1A;
  border: 1px solid #1E293B;
  border-left: 2px solid #00D4FF;
  padding: 28px;
  transition: var(--bp-transition);
  overflow: hidden;
}

.bp-oss-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00D4FF 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--bp-transition);
}

.bp-oss-card:hover {
  border-color: #2A3A4B;
  background: #0D1520;
  transform: translateX(4px);
}

.bp-oss-card:hover::before {
  opacity: 1;
}

.bp-oss-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bp-oss-card__index {
  font-family: var(--bp-font-mono);
  font-size: 0.7rem;
  color: #00D4FF;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.bp-oss-card__status {
  font-family: var(--bp-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid;
}

.bp-oss-card__status--active {
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
}

.bp-oss-card__status--stable {
  color: #60A5FA;
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.08);
}

.bp-oss-card__title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

.bp-oss-card__title a {
  color: #F1F5F9;
  text-decoration: none;
  transition: color var(--bp-transition);
}

.bp-oss-card__title a:hover {
  color: #00D4FF;
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.bp-oss-card__title a::after {
  content: ' →';
  display: inline-block;
  margin-left: 6px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--bp-transition);
}

.bp-oss-card__title a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.bp-oss-card__desc {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0 0 20px;
}

.bp-oss-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #1E293B;
}

.bp-oss-card__tag {
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  color: #64748B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.2);
}

/* ============================================================
    WORKFLOW CARD REDESIGN — Agentic System Style
    ============================================================ */
.bp-wf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.bp-wf-card {
  position: relative;
  background: linear-gradient(180deg, #0A0F1A 0%, #080C14 100%);
  border: 1px solid #1E293B;
  padding: 32px;
  transition: var(--bp-transition);
  overflow: hidden;
}

.bp-wf-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00D4FF 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--bp-transition);
}

.bp-wf-card:hover {
  border-color: #2A3A4B;
  background: linear-gradient(180deg, #0D1520 0%, #0A0F1A 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.1);
}

.bp-wf-card:hover::after {
  opacity: 1;
}

.bp-wf-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bp-wf-card__number {
  font-family: var(--bp-font-mono);
  font-size: 0.75rem;
  color: #00D4FF;
  letter-spacing: 0.2em;
  opacity: 0.75;
}

.bp-wf-card__status {
  font-family: var(--bp-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: #00D4FF;
  background: rgba(0, 212, 255, 0.06);
}

.bp-wf-card__status--primary {
  border-color: rgba(16, 185, 129, 0.25);
  color: #10B981;
  background: rgba(16, 185, 129, 0.06);
}

.bp-wf-card__status--secondary {
  border-color: rgba(139, 92, 246, 0.25);
  color: #8B5CF6;
  background: rgba(139, 92, 246, 0.06);
}

.bp-wf-card__status--tertiary {
  border-color: rgba(245, 158, 11, 0.25);
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.06);
}

.bp-wf-card__title {
  font-family: var(--bp-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #F1F5F9;
  margin: 0 0 14px;
  line-height: 1.3;
}

.bp-wf-card__desc {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0 0 24px;
}

.bp-wf-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid #1E293B;
}

.bp-wf-card__tag {
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748B;
  padding: 5px 12px;
  background: rgba(100, 116, 139, 0.08);
  border: 1px solid rgba(100, 116, 139, 0.15);
  transition: var(--bp-transition);
}

.bp-wf-card:hover .bp-wf-card__tag {
  border-color: rgba(100, 116, 139, 0.25);
  color: #94A3B8;
}

/* ============================================================
    TECH RADAR CARD REDESIGN — Signal Classification Style
    ============================================================ */
.bp-radar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.bp-radar-card {
  position: relative;
  background: #0A0F1A;
  border: 1px solid #1E293B;
  padding: 28px;
  transition: var(--bp-transition);
  overflow: hidden;
}

.bp-radar-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 2px;
  transition: width var(--bp-transition);
}

.bp-radar-card--ai::before { background: #10B981; }
.bp-radar-card--platform::before { background: #8B5CF6; }
.bp-radar-card--arch::before { background: #F59E0B; }
.bp-radar-card--ops::before { background: #06B6D4; }

.bp-radar-card:hover::before {
  width: 100%;
}

.bp-radar-card:hover {
  border-color: #2A3A4B;
  background: #0D1520;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bp-radar-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1E293B;
}

.bp-radar-card__domain {
  font-family: var(--bp-font-mono);
  font-size: 0.7rem;
  color: #94A3B8;
  letter-spacing: 0.15em;
}

.bp-radar-card__signal {
  font-family: var(--bp-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid;
}

.bp-radar-card__signal--adopt {
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
}

.bp-radar-card__signal--trial {
  color: #8B5CF6;
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.08);
}

.bp-radar-card__signal--assess {
  color: #F59E0B;
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.08);
}

.bp-radar-card__signal--hold {
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
}

.bp-radar-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-radar-card__list li {
  position: relative;
  font-family: var(--bp-font-body);
  font-size: 0.92rem;
  color: #CBD5E1;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
  transition: var(--bp-transition);
}

.bp-radar-card__list li:last-child {
  border-bottom: none;
}

.bp-radar-card__list li::before {
  content: '>';
  position: absolute;
  left: 0;
  font-family: var(--bp-font-mono);
  font-size: 0.8rem;
  color: #475569;
  transition: color var(--bp-transition);
}

.bp-radar-card__list li:hover {
  color: #F1F5F9;
  padding-left: 24px;
}

.bp-radar-card__list li:hover::before {
  color: #00D4FF;
}

/* Radar Legend */
.bp-radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  padding: 20px 24px;
  background: #0A0F1A;
  border: 1px solid #1E293B;
}

.bp-radar-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bp-radar-legend__dot {
  width: 8px;
  height: 8px;
  display: inline-block;
}

.bp-radar-legend__dot--adopt { background: #10B981; }
.bp-radar-legend__dot--trial { background: #8B5CF6; }
.bp-radar-legend__dot--assess { background: #F59E0B; }
.bp-radar-legend__dot--hold { background: #EF4444; }

.bp-radar-legend__label {
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #94A3B8;
}

.bp-radar-legend__desc {
  font-size: 0.8rem;
  color: #475569;
}

@media (max-width: 768px) {
  .bp-radar-grid {
    grid-template-columns: 1fr;
  }

  .bp-radar-card {
    padding: 24px;
  }

  .bp-radar-legend {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .bp-oss-list {
    grid-template-columns: 1fr;
  }
  
  .bp-oss-card {
    padding: 24px;
  }

  .bp-wf-grid {
    grid-template-columns: 1fr;
  }

  .bp-wf-card {
    padding: 28px;
  }

  .bp-tech-marquee__strip {
    gap: 30px;
  }

  .bp-tech-marquee__item {
    font-size: 0.8rem;
  }
}

/* ============================================================
    TECHNOLOGY MARQUEE — Infinite Scrolling Tech Stack
    ============================================================ */
.bp-tech-marquee {
  width: 100%;
  padding: 32px 0;
  background: #060A10;
  border-top: 1px solid #0F1A2A;
  border-bottom: 1px solid #0F1A2A;
  overflow: hidden;
  position: relative;
}

.bp-tech-marquee::before,
.bp-tech-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.bp-tech-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #060A10 0%, transparent 100%);
}

.bp-tech-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #060A10 0%, transparent 100%);
}

.bp-tech-marquee__label {
  text-align: center;
  font-family: var(--bp-font-mono);
  font-size: 0.65rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.bp-tech-marquee__track {
  overflow: hidden;
  width: 100%;
}

.bp-tech-marquee__strip {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: techMarqueeScroll 30s linear infinite;
  will-change: transform;
}

.bp-tech-marquee__strip:hover {
  animation-play-state: paused;
}

@keyframes techMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bp-tech-marquee__item {
  font-family: var(--bp-font-mono);
  font-size: 0.85rem;
  color: #64748B;
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.bp-tech-marquee__item:hover {
  color: #00D4FF;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.bp-tech-marquee__sep {
  font-size: 0.5rem;
  color: #1E293B;
  opacity: 0.6;
}

