:root {
  --bp-bg: #FAFBFB;
  --bp-ink: #1A2030;
  --bp-cyan: #00B3C4;
  --bp-electric: #175CD3;
  --bp-warm: #6E737A;
  --bp-line: rgba(26, 32, 48, 0.28);
  --bp-grid: rgba(0, 179, 196, 0.05);
  --bp-glass: rgba(250, 251, 251, 0.88);
  --bp-shadow: 4px 4px 0 rgba(0, 179, 196, 0.25);
  --bp-shadow-strong: 6px 6px 0 rgba(0, 179, 196, 0.5);
  --bp-ink-shadow: 4px 4px 0 #1A2030;
  --font-display: "Helvetica Neue", "Inter", "Arial", sans-serif;
  --font-body: "Inter", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", "Menlo", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bp-bg);
  color: var(--bp-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

strong, p, span, li, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

strong, p { color: inherit; }

a { color: var(--bp-electric); text-decoration: none; }
a:hover { color: var(--bp-cyan); }

.bg-dark, .bg-dark * { color: var(--bp-bg); }
.bg-white, .bg-white * { color: var(--bp-ink); }

.bp-kanji { font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", "Noto Sans JP", sans-serif; }

.bp-kinetic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(var(--bp-grid) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, var(--bp-grid) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--bp-bg);
}

.bp-marquee {
  position: absolute;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-weight: 200;
  font-size: 200px;
  line-height: 1;
  color: var(--bp-ink);
  opacity: 0.07;
  letter-spacing: -0.02em;
  animation: bp-scroll 90s linear infinite;
}

.bp-marquee.m2 { animation-duration: 130s; animation-direction: reverse; opacity: 0.05; }
.bp-marquee.m3 { animation-duration: 70s; opacity: 0.09; }
.bp-marquee.m4 { animation-duration: 150s; animation-direction: reverse; opacity: 0.06; }

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

.bp-page {
  position: relative;
  z-index: 1;
}

.bp-pill-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, calc(100% - 32px));
  height: 64px;
  background: var(--bp-glass);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  border: 1.5px solid rgba(0, 179, 196, 0.3);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1050;
}

.bp-pill-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bp-pill-logo svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.bp-pill-text { display: flex; flex-direction: column; line-height: 1.05; }
.bp-pill-domain {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--bp-ink);
  letter-spacing: -0.01em;
}
.bp-pill-jp {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  color: var(--bp-ink);
  opacity: 0.7;
  margin-top: 2px;
}
.bp-pill-jp b { color: var(--bp-cyan); font-weight: 700; }

.bp-pill-nav {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  align-items: center;
}

.bp-pill-nav a {
  color: var(--bp-ink);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  display: inline-block;
  transform: scale(1);
}
.bp-pill-nav a:hover {
  color: var(--bp-cyan);
  border-bottom-color: var(--bp-cyan);
  transform: scale(1.04);
}

.bp-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--bp-line);
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}
.bp-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bp-ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.bp-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bp-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bp-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.bp-mobile-menu {
  position: fixed;
  top: 88px;
  left: 4%;
  width: 92%;
  background: var(--bp-glass);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  border: 1.5px solid rgba(0, 179, 196, 0.3);
  padding: 24px;
  z-index: 1049;
  display: none;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.bp-mobile-menu.open { display: flex; animation: bp-slide 0.5s ease forwards; }
.bp-mobile-menu a { color: var(--bp-ink); padding: 10px 0; border-bottom: 1px solid var(--bp-line); }

@keyframes bp-slide {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.bp-hero {
  min-height: 100vh;
  padding: 130px 24px 80px;
  position: relative;
}

.bp-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto auto;
  gap: 24px;
}

.bp-bento {
  background: #FFFFFF;
  border: 1px solid var(--bp-line);
  padding: 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, z-index 0s;
}
.bp-bento:hover {
  border-color: var(--bp-cyan);
  border-width: 2px;
  padding: 27px;
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow);
  z-index: 10;
}

.bp-hero-headline {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.bp-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--bp-ink);
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.bp-hero-title span { display: block; }

.bp-divider {
  width: 220px;
  height: 3px;
  background: var(--bp-cyan);
  margin: 24px 0;
}

.bp-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--bp-ink);
  opacity: 0.85;
  margin: 0;
  max-width: 540px;
}

.bp-hero-photo {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.bp-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.bp-photo-callout {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(250, 251, 251, 0.92);
  border: 1px solid var(--bp-cyan);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bp-ink);
  letter-spacing: 0.05em;
}

.bp-hero-metrics {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.bp-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  font-family: var(--font-mono);
}

.bp-metric {
  border: 1px solid var(--bp-line);
  padding: 14px 12px;
}

.bp-metric-label {
  font-size: 10px;
  color: var(--bp-warm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.bp-metric-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--bp-ink);
}

.bp-metric-val em { font-style: normal; color: var(--bp-cyan); }

.bp-hero-cta {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 56px;
  white-space: nowrap;
}

.bp-btn-primary {
  background: var(--bp-cyan);
  color: #FFFFFF;
  border-color: var(--bp-cyan);
  box-shadow: var(--bp-ink-shadow);
}
.bp-btn-primary:hover {
  color: #FFFFFF;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--bp-ink);
}

.bp-btn-outline {
  background: #FFFFFF;
  color: var(--bp-ink);
  border-color: var(--bp-ink);
}
.bp-btn-outline:hover {
  background: var(--bp-ink);
  color: #FFFFFF;
}

.bp-btn-dark {
  background: var(--bp-ink);
  color: #FFFFFF;
  border-color: var(--bp-ink);
}
.bp-btn-dark:hover { color: #FFFFFF; background: var(--bp-cyan); border-color: var(--bp-cyan); }

.bp-section {
  padding: 100px 24px;
  position: relative;
  border-top: 1px solid var(--bp-line);
}

.bp-section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.bp-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bp-cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bp-section-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--bp-cyan);
}

.bp-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bp-ink);
  margin: 0 0 18px 0;
  text-transform: uppercase;
}

.bp-section-lede {
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
  color: var(--bp-ink);
  opacity: 0.85;
  margin: 0 0 48px 0;
}

.bp-split {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 56px;
  align-items: start;
}

.bp-split-photo {
  border: 1px solid var(--bp-line);
  position: relative;
  overflow: hidden;
}
.bp-split-photo:hover {
  border-color: var(--bp-cyan);
  border-width: 2px;
}
.bp-split-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.bp-split-photo:hover img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.02);
}

.bp-split-callout {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--bp-bg);
  border: 1px solid var(--bp-cyan);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--bp-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bp-split-text { display: flex; flex-direction: column; gap: 18px; }

.bp-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--bp-line);
  margin-top: 24px;
}
.bp-stat {
  padding: 18px 16px;
  border-right: 1px solid var(--bp-line);
  font-family: var(--font-mono);
}
.bp-stat:last-child { border-right: none; }
.bp-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--bp-cyan);
  display: block;
}
.bp-stat-lbl {
  font-size: 10px;
  color: var(--bp-warm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bp-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.18;
  color: var(--bp-ink);
  border-left: 4px solid var(--bp-cyan);
  padding-left: 18px;
  margin: 8px 0 0 0;
  text-decoration: underline;
  text-decoration-color: var(--bp-cyan);
  text-underline-offset: 6px;
}

.bp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bp-service-card {
  border: 1px solid var(--bp-line);
  background: #FFFFFF;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  min-height: 360px;
}

.bp-service-card:hover {
  grid-column: span 2;
  grid-row: span 1;
  border-color: var(--bp-cyan);
  border-width: 2px;
  box-shadow: var(--bp-shadow-strong);
  z-index: 10;
}

.bp-service-media {
  height: 180px;
  background: #1A2030;
  position: relative;
  overflow: hidden;
}
.bp-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.bp-service-card:hover .bp-service-media img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.bp-service-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bp-bg);
  border: 1px solid var(--bp-cyan);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--bp-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bp-service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bp-service-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  color: var(--bp-ink);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.bp-service-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--bp-ink);
  opacity: 0.8;
  margin: 0 0 16px 0;
  flex: 1;
}
.bp-service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bp-line);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.bp-service-price {
  color: var(--bp-cyan);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.bp-service-link {
  color: var(--bp-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bp-service-link:hover { color: var(--bp-cyan); }

.bp-process-graph {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.bp-process-node {
  border: 1px solid var(--bp-line);
  background: #FFFFFF;
  padding: 22px 18px;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}
.bp-process-node:hover {
  border-color: var(--bp-cyan);
  border-width: 2px;
  padding: 21px 17px;
  box-shadow: var(--bp-shadow);
  z-index: 10;
}
.bp-process-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bp-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.bp-process-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--bp-ink);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  line-height: 1.2;
}
.bp-process-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bp-warm);
  margin-bottom: 12px;
}
.bp-process-desc {
  font-size: 13px;
  color: var(--bp-ink);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

.bp-stack-wrap {
  position: relative;
  height: 480px;
}

.bp-stack-card {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  border: 1px solid var(--bp-line);
  padding: 32px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.bp-stack-card:nth-child(1) { top: 0; left: 0; transform: translate(0, 0); z-index: 5; }
.bp-stack-card:nth-child(2) { top: 18px; left: 18px; z-index: 4; }
.bp-stack-card:nth-child(3) { top: 36px; left: 36px; z-index: 3; }
.bp-stack-card:nth-child(4) { top: 54px; left: 54px; z-index: 2; }
.bp-stack-card:nth-child(5) { top: 72px; left: 72px; z-index: 1; }
.bp-stack-card:hover {
  transform: translate(-12px, -12px);
  border-color: var(--bp-cyan);
  border-width: 2px;
  padding: 31px;
  box-shadow: var(--bp-shadow-strong);
  z-index: 20;
}
.bp-stack-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bp-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.bp-stack-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--bp-ink);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  line-height: 1.1;
}
.bp-stack-desc {
  font-size: 14px;
  color: var(--bp-ink);
  opacity: 0.8;
  margin: 0;
}

.bp-masonry {
  columns: 3;
  column-gap: 24px;
}

.bp-case-card {
  break-inside: avoid;
  border: 1px solid var(--bp-line);
  background: #FFFFFF;
  margin-bottom: 24px;
  display: block;
  transition: all 0.3s ease;
  overflow: hidden;
}
.bp-case-card:hover {
  border-color: var(--bp-cyan);
  border-width: 2px;
  box-shadow: var(--bp-shadow);
  transform: translateY(-4px);
}
.bp-case-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(40%);
  transition: filter 0.3s ease;
}
.bp-case-card:hover img { filter: grayscale(0%); }
.bp-case-body { padding: 16px; font-family: var(--font-mono); }
.bp-case-loc { font-size: 11px; color: var(--bp-warm); text-transform: uppercase; letter-spacing: 0.08em; }
.bp-case-meta { font-size: 13px; color: var(--bp-ink); margin-top: 6px; font-weight: 600; }

.bp-team-canvas {
  position: relative;
  height: 520px;
  border: 1px solid var(--bp-line);
  background: #FFFFFF;
}

.bp-team-card {
  position: absolute;
  width: 180px;
  border: 1px solid var(--bp-line);
  background: #FFFFFF;
  padding: 0;
  cursor: grab;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, z-index 0s;
  z-index: 1;
}
.bp-team-card.dragging {
  z-index: 50;
  cursor: grabbing;
  border-color: var(--bp-cyan);
  border-width: 2px;
  box-shadow: var(--bp-shadow-strong);
}
.bp-team-card.others { opacity: 0.7; }
.bp-team-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: grayscale(60%);
  pointer-events: none;
}
.bp-team-card.dragging img { filter: grayscale(0%); }
.bp-team-body {
  padding: 12px;
  font-family: var(--font-mono);
}
.bp-team-name { font-size: 13px; font-weight: 800; color: var(--bp-ink); }
.bp-team-role { font-size: 10px; color: var(--bp-warm); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.bp-faq-list {
  border-top: 1px solid var(--bp-line);
}

.bp-faq-item {
  border-bottom: 1px solid var(--bp-line);
}

.bp-faq-toggle {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--bp-ink);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  min-height: 64px;
}

.bp-faq-toggle:hover { color: var(--bp-cyan); }

.bp-faq-icon {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  color: var(--bp-cyan);
}

.bp-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.bp-faq-body-inner {
  padding: 0 4px 24px 4px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--bp-ink);
  border-left: 4px solid var(--bp-cyan);
  padding-left: 16px;
  margin-bottom: 16px;
}

.bp-faq-item.open .bp-faq-body { max-height: 600px; }
.bp-faq-item.open .bp-faq-toggle { color: var(--bp-cyan); }

.bp-reviews-stage {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.bp-review {
  position: absolute;
  width: min(560px, 80%);
  background: #FFFFFF;
  border: 1px solid var(--bp-line);
  padding: 32px;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.bp-review.active {
  opacity: 1;
  z-index: 5;
  transform: translateX(0) scale(1);
  border-color: var(--bp-cyan);
  border-width: 2px;
  padding: 31px;
  box-shadow: var(--bp-shadow);
  pointer-events: auto;
}
.bp-review.prev { opacity: 0.4; transform: translateX(-65%) scale(0.85) rotateY(15deg); z-index: 2; }
.bp-review.next { opacity: 0.4; transform: translateX(65%) scale(0.85) rotateY(-15deg); z-index: 2; }
.bp-review.far-prev { opacity: 0; transform: translateX(-110%) scale(0.7); }
.bp-review.far-next { opacity: 0; transform: translateX(110%) scale(0.7); }

.bp-review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--bp-ink);
  margin: 0 0 20px 0;
}
.bp-review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--bp-line);
  padding-top: 16px;
  font-family: var(--font-mono);
}
.bp-review-meta img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  border: 1px solid var(--bp-cyan);
  object-fit: cover;
  filter: grayscale(40%);
}
.bp-review-name { font-size: 13px; font-weight: 800; color: var(--bp-ink); }
.bp-review-role { font-size: 10px; color: var(--bp-warm); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.bp-review-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.bp-review-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1.5px solid var(--bp-ink);
  color: var(--bp-ink);
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 800;
  transition: all 0.2s ease;
  min-height: 44px;
}
.bp-review-btn:hover {
  background: var(--bp-cyan);
  border-color: var(--bp-cyan);
  color: #FFFFFF;
}

.bp-contact-capsule {
  border: 1px solid var(--bp-line);
  background:
    linear-gradient(rgba(0,179,196,0.04) 1px, transparent 1px) 0 0 / 100% 32px,
    linear-gradient(90deg, rgba(0,179,196,0.04) 1px, transparent 1px) 0 0 / 32px 100%,
    #FFFFFF;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

.bp-contact-info { display: flex; flex-direction: column; gap: 18px; }
.bp-contact-line {
  border-top: 1px solid var(--bp-line);
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.bp-contact-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--bp-warm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: 100px;
  flex-shrink: 0;
}
.bp-contact-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--bp-ink);
}
.bp-contact-val a { color: var(--bp-ink); }
.bp-contact-val a:hover { color: var(--bp-cyan); }

.bp-live-strip {
  border: 1px solid var(--bp-line);
  background: var(--bp-ink);
  color: var(--bp-bg);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
}
.bp-live-strip .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--bp-cyan);
  border-radius: 50%;
  margin-right: 8px;
  animation: bp-pulse 1.6s infinite;
}
@keyframes bp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.bp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bp-form .full { grid-column: 1 / -1; }

.bp-field { display: flex; flex-direction: column; gap: 6px; }
.bp-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--bp-ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.bp-field input, .bp-field textarea, .bp-field select {
  border: 1px solid var(--bp-ink);
  border-radius: 0;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--bp-ink);
  background: #FFFFFF;
  min-height: 48px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bp-field input:focus, .bp-field textarea:focus, .bp-field select:focus {
  border-color: var(--bp-cyan);
  box-shadow: 0 0 0 3px rgba(0,179,196,0.15);
}
.bp-field textarea { resize: vertical; min-height: 120px; }
.bp-field input::placeholder, .bp-field textarea::placeholder { color: var(--bp-warm); }

.bp-form-success {
  display: none;
  border: 2px solid var(--bp-cyan);
  background: #FFFFFF;
  color: var(--bp-ink);
  padding: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
}
.bp-form-success.show { display: block; }

.bp-footer {
  background: var(--bp-ink);
  color: var(--bp-bg);
  padding: 80px 24px 32px;
  position: relative;
  z-index: 1;
}

.bp-footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 251, 251, 0.2);
}

.bp-footer-brand .bp-pill-domain { color: var(--bp-bg); font-size: 22px; }
.bp-footer-brand .bp-pill-jp { color: var(--bp-bg); opacity: 0.7; }
.bp-footer-brand .bp-pill-jp b { color: var(--bp-cyan); }
.bp-footer-desc {
  margin-top: 20px;
  font-size: 14px;
  color: var(--bp-bg);
  opacity: 0.75;
  line-height: 1.6;
  max-width: 360px;
}

.bp-footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bp-cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 18px 0;
}

.bp-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bp-footer-col a { color: var(--bp-bg); opacity: 0.8; font-size: 14px; transition: opacity 0.2s ease, color 0.2s ease; }
.bp-footer-col a:hover { color: var(--bp-cyan); opacity: 1; }

.bp-footer-bottom {
  max-width: 1240px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bp-bg);
  opacity: 0.6;
}
.bp-footer-bottom address { font-style: normal; }

.bp-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  background: var(--bp-ink);
  color: var(--bp-bg);
  padding: 20px;
  border: 1.5px solid var(--bp-cyan);
  z-index: 2000;
  box-shadow: var(--bp-shadow);
}
.bp-cookie-banner.is-hidden { display: none; }
.bp-cookie-banner h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bp-bg);
}
.bp-cookie-banner p { font-size: 12px; line-height: 1.5; margin: 0 0 14px 0; color: var(--bp-bg); opacity: 0.85; }
.bp-cookie-actions { display: flex; gap: 8px; }
.bp-cookie-btn {
  flex: 1;
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--bp-bg);
  background: transparent;
  color: var(--bp-bg);
  cursor: pointer;
  min-height: 40px;
  transition: all 0.2s ease;
}
.bp-cookie-btn.accept { background: var(--bp-cyan); border-color: var(--bp-cyan); color: #FFFFFF; }
.bp-cookie-btn:hover { background: var(--bp-bg); color: var(--bp-ink); }
.bp-cookie-btn.accept:hover { background: #FFFFFF; color: var(--bp-cyan); border-color: var(--bp-cyan); }

.bp-thanks-card {
  max-width: 720px;
  margin: 0 auto;
  border: 2px solid var(--bp-cyan);
  background: #FFFFFF;
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--bp-shadow);
}

.bp-pulse-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--bp-cyan);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: bp-pulse 1.6s infinite;
}

.bp-fade-in { opacity: 0; transform: translateY(6px); animation: bp-fade 0.7s ease forwards; }
@keyframes bp-fade {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .bp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-service-card:hover { grid-column: span 2; }
  .bp-process-graph { grid-template-columns: repeat(2, 1fr); }
  .bp-footer-grid { grid-template-columns: 1fr 1fr; }
  .bp-hero-inner { grid-template-columns: 1fr; }
  .bp-hero-photo { grid-column: 1 / -1; grid-row: auto; }
  .bp-hero-headline, .bp-hero-metrics, .bp-hero-cta { grid-column: 1 / -1; grid-row: auto; }
  .bp-hero-photo img { height: 320px; }
}

@media (max-width: 768px) {
  .bp-pill-header { width: 92%; height: 56px; padding: 0 14px; }
  .bp-pill-domain { font-size: 15px; }
  .bp-pill-jp { font-size: 9px; }
  .bp-pill-nav { display: none; }
  .bp-burger { display: flex; }
  .bp-hero { padding: 110px 16px 60px; }
  .bp-hero-title { font-size: 44px; }
  .bp-section { padding: 64px 16px; }
  .bp-services-grid { grid-template-columns: 1fr; }
  .bp-service-card:hover { grid-column: span 1; }
  .bp-masonry { columns: 1; }
  .bp-process-graph { grid-template-columns: 1fr; }
  .bp-split { grid-template-columns: 1fr; gap: 32px; }
  .bp-metric-row { grid-template-columns: 1fr; }
  .bp-footer-grid { grid-template-columns: 1fr; }
  .bp-stack-wrap { height: auto; }
  .bp-stack-card { position: relative; inset: auto; transform: none !important; margin-bottom: 14px; padding: 24px; }
  .bp-stack-card:nth-child(n) { position: relative; top: auto; left: auto; }
  .bp-contact-capsule { grid-template-columns: 1fr; padding: 28px; }
  .bp-form { grid-template-columns: 1fr; }
  .bp-team-canvas { height: auto; display: flex; flex-direction: column; gap: 12px; }
  .bp-team-card { position: relative; width: 100%; inset: auto !important; transform: none !important; }
  .bp-reviews-stage { height: auto; flex-direction: column; gap: 14px; }
  .bp-review { position: relative; width: 100%; opacity: 1 !important; transform: none !important; inset: auto !important; }
  .bp-review.prev, .bp-review.next, .bp-review.far-prev, .bp-review.far-next { display: none; }
  .bp-thanks-card { padding: 36px 20px; }
  .bp-marquee { font-size: 60px; }
  .bp-cookie-banner { max-width: calc(100% - 40px); left: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .bp-marquee { font-size: 40px; }
  .bp-cookie-banner { max-width: calc(100% - 32px); left: 16px; right: 16px; bottom: 16px; padding: 16px; }
  .bp-cookie-banner h5 { font-size: 12px; }
  .bp-cookie-banner p { font-size: 11px; }
}

@media (min-width: 769px) {
  .bp-burger { display: none; }
}
