@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Inter+Tight:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Sans+Mono+JP:wght@400;500;700&display=swap');

:root {
  --ink: #1A1815;
  --sand: #E8DFCF;
  --cream: #F5F0E6;
  --orange: #E85D2F;
  --asphalt: #2A2826;
  --steel: #4A6B82;
  --stone: #6B6457;
  --gravel: #C8B89A;
  --rust: #B8501A;
  --shadow: 6px 6px 0 0 rgba(232, 93, 47, 0.85);
  --shadow-ink: 6px 6px 0 0 rgba(26, 24, 21, 0.85);
  --shadow-soft: 2px 2px 0 0 rgba(26, 24, 21, 0.12);
}

strong, p, span, b {
  color: inherit;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter Tight', 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--sand);
  background-image:
    radial-gradient(circle at 18% 22%, rgba(200, 184, 154, 0.32) 0px, transparent 320px),
    radial-gradient(circle at 82% 68%, rgba(184, 174, 160, 0.28) 0px, transparent 380px),
    radial-gradient(circle at 48% 88%, rgba(216, 194, 162, 0.30) 0px, transparent 360px),
    radial-gradient(circle at 12% 78%, rgba(168, 158, 146, 0.26) 0px, transparent 340px),
    radial-gradient(circle at 92% 18%, rgba(152, 142, 128, 0.24) 0px, transparent 300px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.mono {
  font-family: 'IBM Plex Mono', 'Noto Sans Mono JP', monospace;
}

.jp {
  font-family: 'Noto Sans JP', sans-serif;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--orange);
}

.wrapper {
  margin-left: 304px;
  min-height: 100vh;
}

.bg-sand { background-color: var(--sand); color: var(--ink); }
.bg-cream { background-color: var(--cream); color: var(--ink); }
.bg-ink { background-color: var(--ink); color: var(--cream); }
.bg-orange { background-color: var(--orange); color: var(--cream); }

.text-orange { color: var(--orange) !important; }
.text-ink { color: var(--ink) !important; }
.text-cream { color: var(--cream) !important; }
.text-stone { color: var(--stone) !important; }

.left-rail {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 570px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  box-shadow: 6px 6px 0 0 rgba(232, 93, 47, 0.85);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.left-rail.collapsed {
  width: 80px;
  padding: 16px 8px;
}

.logo-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.logo-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.left-rail.collapsed .logo-mark {
  width: 48px;
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-domain {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  font-variation-settings: "wdth" 115;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(26, 24, 21, 0.7);
  text-transform: uppercase;
  margin-top: 4px;
}

.logo-jp .accent { color: var(--orange); }

.left-rail.collapsed .logo-jp,
.left-rail.collapsed .rail-info,
.left-rail.collapsed .rail-side-text,
.left-rail.collapsed .rail-label,
.left-rail.collapsed .logo-domain {
  display: none;
}

.left-rail.collapsed .logo-domain {
  font-size: 13px;
  word-break: break-all;
}

.rail-divider {
  height: 1px;
  background: var(--ink);
  margin: 24px 0;
  width: 100%;
}

.rail-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rail-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(26, 24, 21, 0.12);
  position: relative;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rail-nav a .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(26, 24, 21, 0.7);
  letter-spacing: 0.04em;
}

.rail-nav a:hover {
  background: rgba(232, 93, 47, 0.08);
  color: var(--orange);
  padding-left: 20px;
}

.rail-nav a:hover .num {
  color: var(--orange);
}

.rail-nav a:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

.rail-nav a.active {
  background: rgba(232, 93, 47, 0.12);
  color: var(--orange);
}

.rail-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

.rail-nav a.active .num {
  color: var(--orange);
}

.left-rail.collapsed .rail-nav a {
  padding: 0;
  justify-content: center;
}

.rail-info {
  margin-top: auto;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(26, 24, 21, 0.8);
  line-height: 1.7;
}

.rail-toggle {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 32px;
  background: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rail-toggle::before {
  content: "▶";
  color: var(--cream);
  font-size: 8px;
  transform: rotate(0deg);
}

.left-rail.collapsed .rail-toggle::before {
  content: "◀";
}

.rail-side-text {
  position: absolute;
  right: -28px;
  top: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(26, 24, 21, 0.6);
  text-transform: uppercase;
}

.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  z-index: 60;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}

.mobile-bar .logo-block {
  flex: 0 1 auto;
}

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

.mobile-bar .logo-domain {
  font-size: 14px;
}

.mobile-bar .logo-jp {
  font-size: 9px;
}

.burger {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 55;
  padding: 96px 32px 32px;
  transform: translateX(100%);
  transition: transform 480ms cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .logo-block {
  margin-bottom: 32px;
}

.mobile-menu h3 {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--ink);
  font-variation-settings: "wdth" 130;
  margin-bottom: 24px;
}

.mobile-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .menu-list li a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 24, 21, 0.18);
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-variation-settings: "wdth" 110;
}

.hero {
  min-height: 100vh;
  padding: 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: var(--sand);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.hero-tile {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  overflow: hidden;
  position: relative;
  transition: all 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-tile:hover {
  z-index: 5;
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
  border-width: 2px;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-tile.tile-1 {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: 520/400;
}

.hero-tile.tile-2 {
  grid-column: span 4;
  grid-row: span 1;
  aspect-ratio: 320/200;
}

.hero-tile.tile-3 {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 200/400;
}

.hero-tile.tile-4 {
  grid-column: span 4;
  grid-row: span 1;
  aspect-ratio: 420/200;
}

.hero-tile.tile-5 {
  grid-column: span 3;
  grid-row: span 1;
  aspect-ratio: 240/140;
}

.hero-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 144px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "wdth" 130;
}

.hero-bar {
  width: 320px;
  height: 3px;
  background: var(--orange);
  margin: 24px 0;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 720px;
}

.hero-specs {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 24px;
  text-transform: uppercase;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--cream);
  border: 2px solid var(--ink);
  padding: 0 28px;
  height: 88px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 0 var(--ink);
  cursor: pointer;
  transition: all 240ms cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-orange:hover {
  transform: translate(4px, 4px);
  box-shadow: 10px 10px 0 0 var(--ink);
  color: var(--cream);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 0 28px;
  height: 64px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 240ms cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.live-marker {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 12px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  line-height: 1.5;
  color: var(--ink);
  text-transform: uppercase;
}

.live-marker .red-bar {
  height: 4px;
  background: var(--rust);
  margin: -12px -16px 8px;
}

.dot-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  position: relative;
  margin-right: 8px;
  animation: pulse 1.4s infinite;
}

.dot-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
  animation: pulseRing 1.4s infinite;
}

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

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

.section {
  padding: 96px 48px;
  position: relative;
}

.section-tight {
  padding: 64px 48px;
}

.section-cream { background: var(--cream); color: var(--ink); }
.section-sand { background: var(--sand); color: var(--ink); }
.section-ink { background: var(--ink); color: var(--cream); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 96px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "wdth" 130;
  text-transform: uppercase;
}

.section-title.jumbo {
  font-size: 144px;
}

.section-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: rgba(26, 24, 21, 0.7);
  margin-top: 8px;
  display: block;
}

.section-bar {
  width: 480px;
  height: 3px;
  background: var(--orange);
  margin: 16px 0;
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--orange);
  max-width: 480px;
}

.section-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(26, 24, 21, 0.7);
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 24px 0;
  margin-top: 48px;
}

.marquee-track {
  display: inline-flex;
  gap: 64px;
  animation: marquee 60s linear infinite;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 28px;
  color: rgba(26, 24, 21, 0.7);
}

.marquee-track span.accent { color: var(--orange); }

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.about-cols {
  column-count: 3;
  column-gap: 32px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.about-cols-2 {
  column-count: 2;
  column-gap: 32px;
}

.pull-quote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 36px;
  line-height: 1.3;
  color: var(--orange);
  margin: 48px 0;
  padding: 24px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.standards-strip {
  background: rgba(184, 80, 26, 0.12);
  border: 1px solid var(--ink);
  padding: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
  margin: 32px 0;
}

.data-panel {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--ink);
  margin: 32px 0;
  break-inside: avoid;
}

.about-photo {
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 0 rgba(26, 24, 21, 0.18);
}

.about-photo img {
  width: 100%;
  display: block;
}

.about-photo .caption {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(26, 24, 21, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  background: var(--cream);
  border-top: 1.5px solid var(--ink);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}

.bento-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 24px;
  position: relative;
  box-shadow: 2px 2px 0 0 rgba(26, 24, 21, 0.12);
  transition: all 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  overflow: hidden;
}

.bento-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 6px 6px 0 0 rgba(232, 93, 47, 0.85);
  z-index: 10;
}

.bento-card.size-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-card.size-2x1 { grid-column: span 2; grid-row: span 1; }
.bento-card.size-1x2 { grid-column: span 1; grid-row: span 2; }

.marker-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 56px;
  height: 56px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  z-index: 2;
}

.bento-card:hover .marker-tag {
  width: 72px;
  height: 72px;
  font-size: 16px;
}

.bento-card.size-2x2 .marker-tag { top: 20px; left: 20px; }

.bento-card img, .bento-card .bento-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.bento-card.with-photo {
  padding: 0;
}

.bento-spec {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 24, 21, 0.06);
  border-top: 2px solid var(--ink);
  padding: 12px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  line-height: 1.5;
  text-transform: uppercase;
}

.bento-card.size-2x2 .bento-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}

.bento-card.size-2x2 .bento-content .bento-spec {
  background: var(--cream);
  border-top: 2px solid var(--ink);
  padding: 16px 20px;
  font-size: 12px;
}

.bento-content-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(245, 240, 230, 0.92);
  border: 1.5px solid var(--ink);
  padding: 8px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 60%;
}

.bento-pattern {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.pattern-icon {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 64px;
  color: var(--orange);
  font-weight: 700;
}

.bento-card-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.bento-card-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.bento-card-text .jp-tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: rgba(26, 24, 21, 0.6);
  margin-top: 4px;
}

.bento-card-text .bento-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px solid var(--ink);
  padding-top: 8px;
}

.process-graph {
  position: relative;
  min-height: 700px;
  padding: 32px 0;
}

.node-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  width: 180px;
  min-height: 140px;
  padding: 16px;
  position: absolute;
  box-shadow: 4px 4px 0 0 rgba(26, 24, 21, 0.18);
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  cursor: grab;
}

.node-card:hover {
  transform: scale(1.06);
  box-shadow: 8px 8px 0 0 rgba(232, 93, 47, 0.85);
  border-color: var(--orange);
  border-width: 2.5px;
  z-index: 10;
}

.node-card .step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.node-card .step-icon {
  width: 48px;
  height: 48px;
  margin: 8px 0;
}

.node-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.node-card p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  color: rgba(26, 24, 21, 0.8);
  margin-top: 6px;
  line-height: 1.3;
}

.node-card .step-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: rgba(26, 24, 21, 0.7);
  margin-bottom: 4px;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.adv-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 28px;
  position: relative;
  box-shadow: 2px 2px 0 0 rgba(26, 24, 21, 0.08);
  transition: all 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  cursor: pointer;
}

.adv-card:hover {
  transform: translate(4px, 4px) scale(1.05);
  box-shadow: 6px 6px 0 0 rgba(232, 93, 47, 0.85);
  z-index: 10;
}

.adv-card .big-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 88px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.14;
  position: absolute;
  bottom: -16px;
  right: 12px;
  line-height: 1;
}

.adv-card .ico {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.adv-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.adv-card p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(26, 24, 21, 0.8);
  line-height: 1.4;
  margin-top: 12px;
}

.masonry {
  column-count: 3;
  column-gap: 16px;
}

.case-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 0 rgba(26, 24, 21, 0.12);
  padding: 0;
  margin-bottom: 16px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  transition: all 280ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.case-card:hover {
  transform: translate(6px, 6px);
  box-shadow: 8px 8px 0 0 rgba(232, 93, 47, 0.85);
  z-index: 10;
}

.case-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1.5px solid var(--ink);
}

.case-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
}

.case-photo {
  width: 100%;
  display: block;
  border-bottom: 1.5px solid var(--ink);
}

.case-body {
  padding: 16px;
}

.case-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.case-body .jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(26, 24, 21, 0.7);
  text-transform: uppercase;
  margin-top: 6px;
}

.case-spec {
  background: rgba(26, 24, 21, 0.06);
  padding: 12px 16px;
  border-top: 1px solid var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

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

.team-row {
  background: var(--cream);
  border: 1px solid var(--ink);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
  transition: all 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.team-row:hover {
  transform: translateX(8px);
  box-shadow: 6px 6px 0 0 rgba(232, 93, 47, 0.85);
  z-index: 10;
  position: relative;
}

.team-row .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-row h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.team-row .en {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(26, 24, 21, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-row .spec {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-style: italic;
  color: var(--orange);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-reveal {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  min-height: 460px;
  position: relative;
  overflow: hidden;
}

.team-reveal-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 420ms cubic-bezier(0.65, 0, 0.35, 1);
}

.team-reveal-inner.active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.team-reveal-inner img {
  flex: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1.5px solid var(--ink);
}

.team-reveal-inner .reveal-body {
  padding: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 0 rgba(26, 24, 21, 0.08);
  position: relative;
  transition: all 460ms cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.faq-card.open {
  box-shadow: 6px 6px 0 0 rgba(232, 93, 47, 0.85);
  z-index: 10;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  min-height: 88px;
}

.faq-q .q-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-q .q-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  flex: 1;
  line-height: 1.2;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 320ms;
}

.faq-card.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 460ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card.open .faq-a {
  max-height: 280px;
}

.faq-a-inner {
  background: rgba(26, 24, 21, 0.05);
  border-left: 4px solid var(--orange);
  padding: 20px 28px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.coverflow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  perspective: 1200px;
}

.coverflow-track {
  position: relative;
  width: 100%;
  height: 560px;
}

.cover-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 480px;
  height: 560px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 0 rgba(26, 24, 21, 0.12);
  transform: translateX(-50%);
  transition: all 600ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.cover-card.pos-0 { transform: translateX(-50%) translateZ(0) scale(1); z-index: 10; opacity: 1; }
.cover-card.pos-1 { transform: translateX(calc(-50% + 320px)) translateZ(-240px) rotateY(-26deg) scale(0.78); z-index: 5; opacity: 0.72; }
.cover-card.pos--1 { transform: translateX(calc(-50% - 320px)) translateZ(-240px) rotateY(26deg) scale(0.78); z-index: 5; opacity: 0.72; }
.cover-card.pos-2 { transform: translateX(calc(-50% + 580px)) translateZ(-360px) rotateY(-26deg) scale(0.6); z-index: 2; opacity: 0.4; }
.cover-card.pos--2 { transform: translateX(calc(-50% - 580px)) translateZ(-360px) rotateY(26deg) scale(0.6); z-index: 2; opacity: 0.4; }
.cover-card.hidden-side { opacity: 0; pointer-events: none; }

.cover-top {
  height: 55%;
  border-bottom: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.cover-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.cover-top .stars {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.cover-top .stars svg {
  width: 22px;
  height: 22px;
}

.cover-top .quote-text {
  position: relative;
  z-index: 1;
}

.cover-bottom {
  height: 45%;
  background: rgba(26, 24, 21, 0.05);
  border-top: 1px solid var(--ink);
  padding: 20px 24px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--ink);
}

.cover-bottom .meta-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

.cover-bottom .meta-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.cover-bottom .meta-loc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(26, 24, 21, 0.7);
}

.cover-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: var(--cream);
  border: 2px solid var(--ink);
  color: var(--orange);
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  box-shadow: 4px 4px 0 0 rgba(26, 24, 21, 0.12);
  transition: all 200ms;
}

.cover-btn:hover {
  border-color: var(--orange);
  border-width: 2.5px;
  box-shadow: 6px 6px 0 0 rgba(26, 24, 21, 0.18);
}

.cover-btn.prev { left: 0; }
.cover-btn.next { right: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 16px;
  align-items: start;
}

.contact-main {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 0 rgba(26, 24, 21, 0.15);
  padding: 32px;
}

.contact-main h3 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  font-variation-settings: "wdth" 125;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 24, 21, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
}

.contact-row .ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-row strong { color: inherit; }

.contact-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 24px;
  position: relative;
  box-shadow: 2px 2px 0 0 rgba(26, 24, 21, 0.08);
  transition: all 280ms;
}

.contact-card:hover {
  transform: translate(6px, 6px);
  box-shadow: 8px 8px 0 0 rgba(232, 93, 47, 0.85);
  z-index: 10;
}

.contact-card .card-head {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(26, 24, 21, 0.7);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-map {
  height: 220px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-map svg { width: 100%; height: 100%; }

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 12px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 3px 3px 0 0 var(--orange);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  background: rgba(232, 93, 47, 0.12);
  border: 1.5px solid var(--orange);
  padding: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--ink);
  text-align: center;
  font-weight: 600;
}

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 48px;
  padding-left:352px;
  border-top: 4px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

.footer-logo .logo-domain {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.footer-logo .logo-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 230, 0.7);
  text-transform: uppercase;
}

.footer-logo .accent { color: var(--orange); }

.footer h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
}

.footer a {
  color: var(--cream);
}

.footer a:hover {
  color: var(--orange);
}

.footer .contact-line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(245, 240, 230, 0.85);
  line-height: 1.7;
  margin-top: 12px;
}

.footer .address-line {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.8);
  margin-top: 12px;
  line-height: 1.5;
}

.footer .copy {
  border-top: 1px solid rgba(245, 240, 230, 0.18);
  margin-top: 32px;
  padding-top: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(245, 240, 230, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 720px;
  max-width: calc(100% - 48px);
  margin-left: auto;
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--orange);
  padding: 20px 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 4px 4px 0 0 rgba(232, 93, 47, 0.6);
}

.cookie-text {
  flex: 1;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream);
}

.cookie-text a { color: var(--orange); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-btn {
  background: var(--orange);
  color: var(--cream);
  border: 1.5px solid var(--cream);
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn.decline {
  background: transparent;
  color: var(--cream);
}

.cookie-btn:hover {
  background: var(--cream);
  color: var(--ink);
}

.cookie-btn.decline:hover {
  background: var(--cream);
  color: var(--ink);
}

.page-hero {
  padding: 96px 48px 48px;
  background: var(--sand);
  border-bottom: 2px solid var(--ink);
}

.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 96px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "wdth" 130;
  text-transform: uppercase;
}

.page-hero .h-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  color: rgba(26, 24, 21, 0.7);
  letter-spacing: 0.18em;
  margin-top: 16px;
}

.page-hero .h-bar {
  width: 320px;
  height: 3px;
  background: var(--orange);
  margin: 24px 0;
}

.page-hero p {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  max-width: 720px;
}

.thank-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 64px 48px;
  box-shadow: 8px 8px 0 0 rgba(232, 93, 47, 0.85);
  max-width: 720px;
  margin: 64px auto;
}

.thank-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 16px;
}

.thank-card .bar {
  width: 120px;
  height: 3px;
  background: var(--orange);
  margin: 24px 0;
}

.legal-page {
  padding: 96px 48px;
  background: var(--cream);
}

.legal-page h1 {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.legal-page .legal-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: rgba(26, 24, 21, 0.7);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.legal-page h2 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  margin: 32px 0 12px;
  letter-spacing: 0.02em;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.legal-page p, .legal-page li {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.diagonal-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    -2deg,
    var(--orange) 0 8px,
    transparent 8px 12px
  );
  transform: rotate(-2deg);
  transform-origin: left top;
}

.dashed-divider {
  border: 0;
  border-top: 1px dashed rgba(26, 24, 21, 0.18);
  margin: 32px 0;
}

@media (max-width: 1199px) {
  .left-rail { display: none; }
  .wrapper { margin-left: 0; }
  .mobile-bar { display: flex; }
  .hero-title { font-size: 96px; }
  .section-title { font-size: 64px; }
  .section-title.jumbo { font-size: 96px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-cols { column-count: 2; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 2; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 32px; }
  .section { padding: 64px 32px; }
  .page-hero { padding: 96px 32px 32px; }
  .page-hero h1 { font-size: 56px; }
  .hero-title { font-size: 56px; }
}

@media (max-width: 767px) {
  .hero { padding: 96px 16px 24px; }
  .hero-title { font-size: 44px; line-height: 0.95; }
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-tile.tile-1 { grid-column: span 2; aspect-ratio: 16/9; }
  .hero-tile.tile-2 { grid-column: span 2; aspect-ratio: 16/9; }
  .hero-tile.tile-3 { grid-column: span 1; aspect-ratio: 1/1; }
  .hero-tile.tile-4 { grid-column: span 1; aspect-ratio: 1/1; }
  .hero-tile.tile-5 { grid-column: span 2; aspect-ratio: 16/9; }
  .hero-bar { width: 100%; }
  .section { padding: 48px 16px; }
  .section-tight { padding: 32px 16px; }
  .page-hero { padding: 96px 16px 24px; }
  .page-hero h1 { font-size: 36px; }
  .section-title { font-size: 36px; }
  .section-title.jumbo { font-size: 56px; }
  .about-cols { column-count: 1; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card.size-2x2, .bento-card.size-2x1, .bento-card.size-1x2 {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .advantages { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 32px 16px; }
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .cookie-buttons { flex-direction: row; }
  .contact-main { padding: 20px; }
  .contact-main h3 { font-size: 28px; }
  .pull-quote { font-size: 24px; }
  .marquee-track { font-size: 20px; }
  .cover-card { width: 90vw; max-width: 360px; height: 480px; }
  .coverflow-track { height: 480px; }
  .cover-card.pos-1, .cover-card.pos--1,
  .cover-card.pos-2, .cover-card.pos--2 { display: none; }
  .process-graph { min-height: auto; }
  .node-card { position: relative; width: 100%; margin-bottom: 16px; }
  .faq-q { padding: 18px 16px; }
  .faq-q .q-text { font-size: 14px; }
  .legal-page { padding: 96px 16px 32px; }
  .legal-page h1 { font-size: 36px; }
  .thank-card { margin: 32px 16px; padding: 32px 20px; }
  .thank-card h2 { font-size: 36px; }
}

@media (max-width: 480px) {
  * { max-width: 100% !important; }
  .hero { padding: 80px 12px 20px; }
  .hero-title { font-size: 36px; line-height: 0.9; }
  .section-title { font-size: 28px; }
  .section-title.jumbo { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-bar { width: 100%; max-width: 200px; }
  .page-hero h1 { font-size: 28px; }
  .section { padding: 32px 12px; }
  .section-tight { padding: 24px 12px; }
  .about-cols { column-count: 1; }
  .bento-card.size-2x2 .bento-spec,
  .bento-card .bento-spec { font-size: 10px; padding: 8px 12px; }
  .bento-content-overlay { font-size: 10px; padding: 6px 8px; max-width: 70%; }
  .pull-quote { font-size: 18px; }
  .marquee-track { font-size: 16px; }
  .cover-card { width: 90vw; max-width: 300px; height: 400px; }
  .coverflow-track { height: 400px; }
  .contact-main { padding: 16px; }
  .contact-main h3 { font-size: 22px; }
  .footer { padding: 24px 12px; }
  .cookie-banner { left: 4px; right: 4px; bottom: 4px; padding: 12px; }
  .live-marker { max-width: 100% !important; }
  .btn-orange { height: 64px; font-size: 14px; padding: 0 20px; }
  .btn-outline { height: 48px; font-size: 12px; padding: 0 16px; }
  .node-card { position: relative; width: 100%; margin-bottom: 12px; }
  .process-graph { min-height: auto; padding: 16px 0; }
}
