@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@300;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 {
  --pulse-base: #F0F4F7;
  --pulse-ink: #14243A;
  --pulse-aqua: #1E8FB5;
  --pulse-aqua-deep: #0F5F7A;
  --pulse-orange: #E85D2F;
  --pulse-steel: #5C6F82;
  --pulse-paper: #FFFFFF;
  --pulse-graphite: #4A5670;
  --pulse-divider: #D8E0E8;
  --pulse-warning: #F5C518;
  --pulse-border-soft: rgba(20, 36, 58, 0.16);
  --pulse-border-mid: rgba(20, 36, 58, 0.18);
  --pulse-border-faint: rgba(20, 36, 58, 0.08);
  --pulse-aqua-line: rgba(30, 143, 181, 0.32);
  --pulse-shadow-soft: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
  --pulse-shadow-aqua: 8px 8px 0 0 rgba(30, 143, 181, 0.24);
  --pulse-shadow-deep: 6px 6px 0 0 rgba(20, 36, 58, 0.18);
  --pulse-radius: 4px;
  --pulse-grid: 32px;
  --pulse-gutter: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter Tight', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--pulse-ink);
  background: var(--pulse-base);
  overflow-x: hidden;
  position: relative;
}

p, strong, b, span, li, td, th {
  color: inherit;
}

strong {
  font-weight: 700;
}

.pulse-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-color: var(--pulse-base);
  background-image:
    linear-gradient(rgba(20, 36, 58, 0.05) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(20, 36, 58, 0.05) 0.5px, transparent 0.5px);
  background-size: 48px 48px;
}

.pulse-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, var(--pulse-aqua) 1px, transparent 1.5px),
                    radial-gradient(circle at 60% 70%, var(--pulse-aqua) 1px, transparent 1.5px),
                    radial-gradient(circle at 80% 20%, var(--pulse-aqua) 1px, transparent 1.5px),
                    radial-gradient(circle at 40% 80%, var(--pulse-aqua) 1px, transparent 1.5px),
                    radial-gradient(circle at 10% 90%, var(--pulse-aqua) 1px, transparent 1.5px),
                    radial-gradient(circle at 90% 60%, var(--pulse-aqua) 1px, transparent 1.5px);
  background-size: 240px 240px;
  background-position: 0 0, 60px 90px, 120px 180px, 180px 30px, 200px 220px, 160px 120px;
  opacity: 0.32;
  animation: pulseDrift 32s ease-in-out infinite alternate;
}

.pulse-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.6), transparent 60%);
  opacity: 0.5;
}

@keyframes pulseDrift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
  100% { transform: translate(-6px, 10px); }
}

.pulse-mono {
  font-family: 'IBM Plex Mono', 'Noto Sans Mono JP', monospace;
  letter-spacing: 0.04em;
}

.pulse-mono-caps {
  font-family: 'IBM Plex Mono', 'Noto Sans Mono JP', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse-display {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-stretch: 125%;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--pulse-ink);
}

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

.pulse-shell {
  position: relative;
  z-index: 2;
}

.pulse-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 96px;
  background: rgba(240, 244, 247, 0.94);
  border-bottom: 1px solid var(--pulse-border-soft);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: border-color 0.3s ease;
}

.pulse-nav.scrolled {
  border-bottom: 1px solid var(--pulse-aqua-line);
}

.pulse-nav-inner {
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.pulse-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--pulse-ink);
  flex-shrink: 0;
}

.pulse-brand-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.pulse-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.pulse-brand-domain {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--pulse-ink);
  font-stretch: 115%;
}

.pulse-brand-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(20, 36, 58, 0.7);
}

.pulse-brand-jp .accent {
  color: var(--pulse-aqua);
}

.pulse-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pulse-nav-item {
  position: relative;
  padding: 0 14px;
  border-right: 1px solid rgba(20, 36, 58, 0.18);
}

.pulse-nav-item:last-child {
  border-right: none;
}

.pulse-nav-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pulse-ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  display: inline-block;
  transition: color 0.2s ease;
}

.pulse-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pulse-aqua);
  transform: translateX(-50%);
  transition: width 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.pulse-nav-link:hover {
  color: var(--pulse-aqua);
}

.pulse-nav-link:hover::after {
  width: 100%;
}

.pulse-status-chip {
  margin-left: 18px;
  height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--pulse-radius);
  background: rgba(30, 143, 181, 0.08);
  border: 1px solid var(--pulse-aqua-line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(20, 36, 58, 0.8);
}

.pulse-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pulse-aqua);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.pulse-burger {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.pulse-burger-line {
  width: 22px;
  height: 2px;
  background: var(--pulse-ink);
  border-radius: 2px;
  transition: 0.3s ease;
}

.pulse-burger[aria-expanded="true"] .pulse-burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.pulse-burger[aria-expanded="true"] .pulse-burger-line:nth-child(2) {
  opacity: 0;
}

.pulse-burger[aria-expanded="true"] .pulse-burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.pulse-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--pulse-base);
  background-image: radial-gradient(circle at 0 0, var(--pulse-base), #DCE5EC 100%);
  display: flex;
  flex-direction: column;
  padding: 64px 32px 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
}

.pulse-mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pulse-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.pulse-mobile-menu-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--pulse-ink);
  font-stretch: 130%;
  margin: 0;
}

.pulse-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pulse-mobile-link {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--pulse-ink);
  text-decoration: none;
  font-stretch: 110%;
  letter-spacing: -0.01em;
  display: inline-block;
  transition: color 0.2s ease;
}

.pulse-mobile-link:hover {
  color: var(--pulse-aqua);
}

.pulse-hero {
  position: relative;
  min-height: 100vh;
  padding: 48px 32px 64px;
  background: var(--pulse-base);
  border-bottom: 1px solid var(--pulse-border-soft);
}

.pulse-hero-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.pulse-hero-tiles {
  display: grid;
  grid-template-columns: 2.7fr 1.6fr 1fr;
  grid-template-rows: minmax(160px, 220px) minmax(160px, 220px);
  gap: 12px;
  position: relative;
}

.pulse-tile {
  position: relative;
  overflow: hidden;
  background: var(--pulse-paper);
  border: 1px solid var(--pulse-border-mid);
  border-radius: 0;
  transition: all 0.3s ease;
}

.pulse-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

.pulse-tile-dom {
  grid-column: 1;
  grid-row: 1 / span 2;
  height: auto;
  min-height: 440px;
}

.pulse-tile-pa {
  grid-column: 2;
  grid-row: 1;
}

.pulse-tile-pb {
  grid-column: 3;
  grid-row: 1;
}

.pulse-tile-pc {
  grid-column: 2;
  grid-row: 2;
}

.pulse-tile-pd {
  grid-column: 3;
  grid-row: 2;
  background: var(--pulse-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.pulse-tile-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(20, 36, 58, 0.7);
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 7px;
  border: 1px solid var(--pulse-border-soft);
}

.pulse-tile-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--pulse-aqua-line);
  padding: 7px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--pulse-aqua);
  opacity: 0;
  transition: opacity 0.3s ease;
  letter-spacing: 0.04em;
}

.pulse-tile:hover .pulse-tile-overlay {
  opacity: 1;
}

.pulse-hero-text {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pulse-mark {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--pulse-aqua);
  margin-bottom: 28px;
  display: block;
}

.pulse-h1 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 98px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-stretch: 140%;
  color: var(--pulse-ink);
  margin: 0 0 24px;
}

.pulse-h1-line {
  display: block;
  overflow: hidden;
}

.pulse-h1-line span {
  display: inline-block;
  animation: heroSlideUp 760ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes heroSlideUp {
  from {
    transform: translateY(32px);
    filter: blur(6px);
    opacity: 0;
  }
  55% {
    filter: blur(0px);
  }
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.pulse-rule {
  width: 320px;
  height: 2px;
  background: var(--pulse-aqua);
  margin: 28px 0;
}

.pulse-subline {
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--pulse-ink);
  margin: 0 0 28px;
  max-width: 580px;
}

.pulse-techbar {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pulse-ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--pulse-border-soft);
  padding: 12px 16px;
  margin-bottom: 32px;
  border-radius: var(--pulse-radius);
  line-height: 1.7;
  max-width: 580px;
}

.pulse-techbar span {
  display: block;
  color: var(--pulse-ink);
}

.pulse-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.pulse-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 88px;
  padding: 0 32px;
  background: var(--pulse-aqua);
  border: 1px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.18);
  color: #FFFFFF;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.pulse-cta:hover {
  transform: translate(4px, 4px);
  box-shadow: 8px 8px 0 0 rgba(20, 36, 58, 0.24);
  color: #FFFFFF;
}

.pulse-cta-secondary {
  background: transparent;
  color: var(--pulse-ink);
  border: 1.5px solid var(--pulse-ink);
  box-shadow: none;
}

.pulse-cta-secondary:hover {
  background: var(--pulse-ink);
  color: #FFFFFF;
}

.pulse-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--pulse-ink);
}

.pulse-live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pulse-aqua);
  position: relative;
  display: inline-block;
}

.pulse-live-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--pulse-aqua);
  opacity: 0.5;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

.pulse-live-pill {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--pulse-paper);
  border: 1px solid var(--pulse-border-mid);
  padding: 12px 16px;
  border-radius: var(--pulse-radius);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--pulse-ink);
  line-height: 1.7;
  border-top: 2px solid var(--pulse-aqua);
  max-width: 280px;
}

.pulse-live-pill span {
  display: block;
}

.pulse-section {
  position: relative;
  padding: 96px 32px;
  border-bottom: 1px solid var(--pulse-border-soft);
}

.pulse-section-light {
  background: var(--pulse-paper);
}

.pulse-section-base {
  background: var(--pulse-base);
}

.pulse-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.pulse-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--pulse-aqua);
  margin-bottom: 16px;
  display: block;
}

.pulse-h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-stretch: 130%;
  color: var(--pulse-ink);
  margin: 0 0 24px;
}

.pulse-h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--pulse-ink);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.pulse-h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--pulse-ink);
  margin: 0 0 12px;
  line-height: 1.3;
}

.pulse-lead {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--pulse-graphite);
  margin: 0 0 20px;
  max-width: 720px;
}

.pulse-grid-overlay {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 48px;
  align-items: start;
}

.pulse-grid-overlay > .pulse-sticky {
  position: sticky;
  top: 120px;
}

.pulse-photo-frame {
  width: 100%;
  aspect-ratio: 460 / 600;
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  box-shadow: 6px 6px 0 0 rgba(20, 36, 58, 0.08);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.pulse-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pulse-photo-frame:hover img {
  transform: scale(1.04);
}

.pulse-photo-frame:hover {
  border-color: var(--pulse-aqua);
  box-shadow: 10px 10px 0 0 rgba(30, 143, 181, 0.24);
}

.pulse-photo-caption {
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: var(--pulse-ink);
  margin: 20px 0 16px;
}

.pulse-techplate {
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(20, 36, 58, 0.8);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.pulse-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.pulse-card {
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 24px;
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  margin-bottom: -4px;
}

.pulse-card-quote {
  border-left: 3px solid var(--pulse-aqua);
  padding: 24px 28px;
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.4;
  color: var(--pulse-aqua);
  box-shadow: 4px 4px 0 0 rgba(30, 143, 181, 0.18);
  background: var(--pulse-paper);
}

.pulse-certstrip {
  background: rgba(30, 143, 181, 0.06);
  border: 1.5px solid var(--pulse-border-mid);
  padding: 18px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--pulse-graphite);
  line-height: 1.8;
  border-radius: var(--pulse-radius);
}

.pulse-certstrip span {
  display: inline-block;
  margin-right: 18px;
  color: var(--pulse-graphite);
}

.pulse-marquee {
  margin-top: 48px;
  overflow: hidden;
  border-top: 1px solid var(--pulse-border-soft);
  border-bottom: 1px solid var(--pulse-border-soft);
  padding: 18px 0;
  background: var(--pulse-base);
}

.pulse-marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marqueeScroll 60s linear infinite;
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 24px;
  color: rgba(20, 36, 58, 0.7);
  font-stretch: 110%;
}

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

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

.pulse-bento-cell {
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
  transition: all 0.32s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.pulse-bento-cell:hover {
  z-index: 10;
  border-color: var(--pulse-aqua);
  box-shadow: 8px 8px 0 0 rgba(30, 143, 181, 0.24);
  transform: translate(-2px, -2px);
}

.pulse-bento-cell .pulse-art {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 56px;
  height: 56px;
  background: rgba(30, 143, 181, 0.06);
  border: 1px solid var(--pulse-aqua-line);
  border-radius: var(--pulse-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--pulse-aqua);
  transition: all 0.32s ease;
}

.pulse-bento-cell:hover .pulse-art {
  width: 72px;
  height: 72px;
  font-size: 16px;
}

.pulse-bento-wide {
  grid-column: span 2;
}

.pulse-bento-tall {
  grid-row: span 2;
}

.pulse-bento-big {
  grid-column: span 2;
  grid-row: span 2;
}

.pulse-bento-cell img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
  border: 1px solid var(--pulse-border-soft);
}

.pulse-bento-spec {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--pulse-border-soft);
  background: rgba(30, 143, 181, 0.06);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pulse-graphite);
  line-height: 1.6;
  padding: 12px;
  margin: 12px -24px -24px;
}

.pulse-bento-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--pulse-ink);
  margin-top: 8px;
  line-height: 1.2;
}

.pulse-bento-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--pulse-graphite);
  margin: 4px 0 0;
}

.pulse-flowgraph {
  position: relative;
  margin: 56px 0;
  min-height: 800px;
}

.pulse-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pulse-flow-node {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 18px;
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.06);
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.pulse-flow-node:hover {
  z-index: 10;
  border-color: var(--pulse-aqua);
  transform: scale(1.08);
  box-shadow: 6px 6px 0 0 rgba(30, 143, 181, 0.24);
}

.pulse-flow-node-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--pulse-aqua);
  line-height: 1;
  font-stretch: 130%;
}

.pulse-flow-node-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--pulse-ink);
  margin: 8px 0 4px;
}

.pulse-flow-node-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--pulse-graphite);
  margin: 0 0 8px;
}

.pulse-flow-node-desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  color: var(--pulse-graphite);
  line-height: 1.5;
}

.pulse-flow-node-1 { top: 40px; left: 6%; }
.pulse-flow-node-2 { top: 160px; left: 32%; }
.pulse-flow-node-3 { top: 380px; left: 60%; }
.pulse-flow-node-4 { top: 100px; right: 8%; }
.pulse-flow-node-5 { top: 320px; left: 18%; }
.pulse-flow-node-6 { top: 540px; right: 22%; }
.pulse-flow-node-7 { top: 480px; left: 44%; }

.pulse-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  align-items: start;
}

.pulse-feature {
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 28px 26px;
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 260px;
}

.pulse-feature:nth-child(1) { transform: translate(0, 0); }
.pulse-feature:nth-child(2) { transform: translate(4px, 4px); }
.pulse-feature:nth-child(3) { transform: translate(8px, 8px); }
.pulse-feature:nth-child(4) { transform: translate(4px, 4px); }
.pulse-feature:nth-child(5) { transform: translate(8px, 8px); }
.pulse-feature:nth-child(6) { transform: translate(0, 0); }

.pulse-feature:hover {
  flex-grow: 1.55;
  transform: translate(0, 0) scale(1.03);
  z-index: 10;
  border-color: var(--pulse-aqua);
  box-shadow: 8px 8px 0 0 rgba(30, 143, 181, 0.24);
}

.pulse-feature-num {
  position: absolute;
  right: 18px;
  bottom: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 88px;
  font-stretch: 130%;
  color: rgba(30, 143, 181, 0.14);
  line-height: 1;
}

.pulse-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 143, 181, 0.06);
  border: 1px solid var(--pulse-aqua-line);
  border-radius: var(--pulse-radius);
  margin-bottom: 18px;
  color: var(--pulse-aqua);
}

.pulse-feature-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--pulse-ink);
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.pulse-feature-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pulse-graphite);
}

.pulse-cases {
  columns: 3;
  column-gap: 16px;
  margin-top: 56px;
}

.pulse-case {
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
  margin-bottom: 16px;
  break-inside: avoid;
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.32s ease;
  overflow: hidden;
}

.pulse-case:hover {
  z-index: 10;
  transform: scale(1.04);
  border-color: var(--pulse-aqua);
  box-shadow: 8px 8px 0 0 rgba(30, 143, 181, 0.24);
}

.pulse-case-photo {
  width: 100%;
  height: 200px;
  border-bottom: 1px solid var(--pulse-border-soft);
  overflow: hidden;
}

.pulse-case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pulse-case:hover .pulse-case-photo img {
  transform: scale(1.05);
}

.pulse-case-body {
  padding: 18px 20px 22px;
}

.pulse-case-tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(30, 143, 181, 0.06);
  border: 1px solid var(--pulse-aqua-line);
  color: var(--pulse-aqua);
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: var(--pulse-radius);
}

.pulse-case-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--pulse-ink);
  margin: 0 0 4px;
  line-height: 1.25;
}

.pulse-case-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--pulse-graphite);
  margin-bottom: 14px;
}

.pulse-case-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--pulse-graphite);
  line-height: 1.7;
  letter-spacing: 0.04em;
  background: rgba(30, 143, 181, 0.06);
  padding: 10px 12px;
  border-top: 1px solid var(--pulse-border-soft);
  margin: 12px -20px -22px;
}

.pulse-case-meta span {
  display: block;
  color: var(--pulse-graphite);
}

.pulse-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}

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

.pulse-team-row {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(20, 36, 58, 0.18);
  text-decoration: none;
  color: var(--pulse-ink);
  position: relative;
  cursor: pointer;
  transition: padding 0.24s ease;
}

.pulse-team-row:hover {
  padding-left: 16px;
}

.pulse-team-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--pulse-aqua);
  transition: width 0.32s ease;
}

.pulse-team-row:hover::before {
  width: 12px;
}

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

.pulse-team-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--pulse-ink);
  margin: 0;
}

.pulse-team-role {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--pulse-graphite);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.pulse-team-spec {
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 12px;
  color: var(--pulse-aqua);
  margin-top: 4px;
}

.pulse-team-photo {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 480 / 600;
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  overflow: hidden;
  box-shadow: 6px 6px 0 0 rgba(20, 36, 58, 0.08);
  margin-left: auto;
}

.pulse-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pulse-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--pulse-border-soft);
}

.pulse-faq-item {
  border-bottom: 1px solid var(--pulse-border-soft);
  background: var(--pulse-paper);
}

.pulse-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--pulse-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.pulse-faq-q span:last-child {
  font-size: 24px;
  color: var(--pulse-aqua);
  font-weight: 400;
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pulse-aqua-line);
  border-radius: 50%;
  background: rgba(30, 143, 181, 0.06);
}

.pulse-faq-item.open .pulse-faq-q span:last-child {
  transform: rotate(45deg);
}

.pulse-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease, padding 0.42s ease;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--pulse-graphite);
  padding: 0 0;
}

.pulse-faq-item.open .pulse-faq-a {
  max-height: 600px;
  padding: 0 0 24px;
}

.pulse-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 32px;
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
}

.pulse-form .full {
  grid-column: 1 / -1;
}

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

.pulse-form input,
.pulse-form textarea,
.pulse-form select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  background: var(--pulse-paper);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--pulse-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pulse-form textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.pulse-form input:focus,
.pulse-form textarea:focus,
.pulse-form select:focus {
  outline: none;
  border-color: var(--pulse-aqua);
  box-shadow: 0 0 0 3px rgba(30, 143, 181, 0.18);
}

.pulse-form-success {
  display: none;
  padding: 32px;
  text-align: center;
  background: rgba(30, 143, 181, 0.08);
  border: 1.5px solid var(--pulse-aqua);
  border-radius: var(--pulse-radius);
  margin-top: 32px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--pulse-aqua-deep);
}

.pulse-form-success.show {
  display: block;
}

.pulse-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.pulse-contact-card {
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 28px;
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
}

.pulse-contact-card h3 {
  margin: 0 0 12px;
}

.pulse-contact-card .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pulse-aqua);
  margin-bottom: 4px;
}

.pulse-contact-card .value {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  color: var(--pulse-ink);
  margin: 0 0 18px;
}

.pulse-contact-card a {
  color: var(--pulse-aqua);
  text-decoration: none;
  font-weight: 600;
}

.pulse-contact-card a:hover {
  color: var(--pulse-aqua-deep);
  text-decoration: underline;
}

.pulse-emergency {
  background: var(--pulse-ink);
  color: #FFFFFF;
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}

.pulse-emergency::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 143, 181, 0.08) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(30, 143, 181, 0.08) 0.5px, transparent 0.5px);
  background-size: 32px 32px;
  opacity: 0.6;
}

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

.pulse-emergency h2,
.pulse-emergency h3,
.pulse-emergency p,
.pulse-emergency span,
.pulse-emergency strong {
  color: #FFFFFF;
}

.pulse-emergency h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 72px;
  font-stretch: 130%;
  color: #FFFFFF;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pulse-emergency-pill {
  display: inline-block;
  background: var(--pulse-orange);
  color: #FFFFFF;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  margin-bottom: 24px;
}

.pulse-cta-emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 64px;
  padding: 0 28px;
  background: var(--pulse-orange);
  border: none;
  color: #FFFFFF;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--pulse-radius);
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.pulse-cta-emergency:hover {
  background: #FF7043;
  transform: translate(2px, 2px);
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

.pulse-blog-card {
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
  overflow: hidden;
  transition: all 0.32s ease;
  display: flex;
  flex-direction: column;
}

.pulse-blog-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 0 rgba(30, 143, 181, 0.24);
  border-color: var(--pulse-aqua);
}

.pulse-blog-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--pulse-border-soft);
  overflow: hidden;
}

.pulse-blog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pulse-blog-body {
  padding: 24px 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pulse-blog-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--pulse-aqua);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.pulse-blog-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--pulse-ink);
  line-height: 1.3;
  margin: 0 0 12px;
}

.pulse-blog-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pulse-graphite);
  margin-bottom: 16px;
}

.pulse-blog-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pulse-aqua);
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-top: auto;
}

.pulse-blog-link:hover {
  color: var(--pulse-aqua-deep);
}

.pulse-careers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.pulse-career {
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 26px;
  box-shadow: 4px 4px 0 0 rgba(20, 36, 58, 0.08);
  transition: all 0.32s ease;
}

.pulse-career:hover {
  border-color: var(--pulse-aqua);
  box-shadow: 8px 8px 0 0 rgba(30, 143, 181, 0.24);
}

.pulse-career h3 {
  margin: 0 0 6px;
  color: var(--pulse-ink);
}

.pulse-career-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pulse-aqua);
  margin-bottom: 14px;
  display: block;
}

.pulse-career p {
  color: var(--pulse-graphite);
  line-height: 1.6;
  font-size: 14px;
  margin: 0 0 16px;
}

.pulse-career-meta {
  display: flex;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--pulse-graphite);
  letter-spacing: 0.04em;
  padding-top: 14px;
  border-top: 1px solid var(--pulse-border-soft);
}

.pulse-career-meta span {
  color: var(--pulse-graphite);
}

.pulse-hero-compact {
  position: relative;
  min-height: 360px;
  padding: 64px 32px 48px;
  background: var(--pulse-base);
  border-bottom: 1px solid var(--pulse-border-soft);
  display: flex;
  align-items: center;
}

.pulse-hero-compact h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-stretch: 140%;
  color: var(--pulse-ink);
  margin: 16px 0 12px;
}

.pulse-hero-compact .pulse-subline {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 18px;
}

.pulse-thanks {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
}

.pulse-thanks-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-radius: var(--pulse-radius);
  padding: 56px 48px;
  box-shadow: 6px 6px 0 0 rgba(20, 36, 58, 0.08);
}

.pulse-thanks-card h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--pulse-ink);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.pulse-thanks-card p {
  color: var(--pulse-graphite);
  line-height: 1.7;
  margin: 0 0 24px;
}

.pulse-footer {
  background: var(--pulse-ink);
  color: #FFFFFF;
  padding: 56px 32px 28px;
  position: relative;
  z-index: 2;
}

.pulse-footer h2,
.pulse-footer h3,
.pulse-footer h4,
.pulse-footer p,
.pulse-footer span,
.pulse-footer a,
.pulse-footer li,
.pulse-footer strong,
.pulse-footer address {
  color: #FFFFFF;
}

.pulse-footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.pulse-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.pulse-footer-h {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pulse-aqua);
  margin: 0 0 18px;
  display: block;
}

.pulse-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pulse-footer-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pulse-footer-link:hover {
  color: var(--pulse-aqua);
}

.pulse-footer-address {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  line-height: 1.7;
  margin: 0;
}

.pulse-footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
}

.pulse-footer-bottom span {
  color: rgba(255, 255, 255, 0.6);
}

.pulse-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 100;
  background: var(--pulse-paper);
  border: 1.5px solid var(--pulse-border-mid);
  border-left: 3px solid var(--pulse-aqua);
  border-radius: var(--pulse-radius);
  padding: 18px 22px;
  box-shadow: 0 12px 28px rgba(20, 36, 58, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--pulse-ink);
}

.pulse-cookie p {
  margin: 0;
  flex: 1 1 380px;
  color: var(--pulse-ink);
  line-height: 1.5;
}

.pulse-cookie p a {
  color: var(--pulse-aqua);
  text-decoration: underline;
}

.pulse-cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pulse-cookie-btn {
  height: 40px;
  padding: 0 18px;
  border-radius: var(--pulse-radius);
  border: 1.5px solid var(--pulse-border-mid);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.pulse-cookie-accept {
  background: var(--pulse-aqua);
  color: #FFFFFF;
  border-color: var(--pulse-aqua);
}

.pulse-cookie-accept:hover {
  background: var(--pulse-aqua-deep);
}

.pulse-cookie-decline {
  background: var(--pulse-paper);
  color: var(--pulse-ink);
}

.pulse-cookie-decline:hover {
  background: var(--pulse-base);
}

.pulse-svg-decor {
  position: absolute;
  pointer-events: none;
}

.pulse-grid-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(240, 244, 247, 0.6) 0%, rgba(240, 244, 247, 0.2) 30%, rgba(240, 244, 247, 0.6) 100%);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .pulse-h1 { font-size: 112px; }
  .pulse-hero-grid { grid-template-columns: 1fr; }
  .pulse-hero-tiles { grid-template-columns: repeat(3, 1fr); width: 100%; max-width: 100%; margin: 0 auto; }
  .pulse-h2 { font-size: 64px; }
  .pulse-bento { grid-template-columns: repeat(2, 1fr); }
  .pulse-features { grid-template-columns: repeat(2, 1fr); }
  .pulse-cases { columns: 2; }
  .pulse-footer-grid { grid-template-columns: 1fr 1fr; }
  .pulse-grid-overlay { grid-template-columns: 1fr; }
  .pulse-grid-overlay > .pulse-sticky { position: relative; top: 0; }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .pulse-nav { height: 64px; }
  .pulse-nav-list, .pulse-status-chip { display: none; }
  .pulse-burger { display: flex; }
  .pulse-nav-inner { padding: 0 16px; }
  .pulse-brand-mark { width: 36px; height: 36px; }
  .pulse-brand-domain { font-size: 14px; }
  .pulse-brand-jp { font-size: 9px; }
  .pulse-hero { padding: 32px 16px 64px; }
  .pulse-hero-tiles {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    max-width: 100%;
    width: 100%;
  }
  .pulse-tile-dom, .pulse-tile-pa, .pulse-tile-pb, .pulse-tile-pc, .pulse-tile-pd {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    min-height: 160px;
  }
  .pulse-tile-dom { grid-column: 1 / -1; min-height: 200px; }
  .pulse-tile img { height: auto; aspect-ratio: 16/10; }
  .pulse-h1 { font-size: 48px; }
  .pulse-rule { width: 100%; max-width: 100%; }
  .pulse-subline { font-size: 18px; }
  .pulse-cta { height: 64px; padding: 0 22px; font-size: 14px; }
  .pulse-live-pill { position: relative; top: 0; right: 0; margin-top: 18px; max-width: 100%; }
  .pulse-section { padding: 64px 16px; }
  .pulse-h2 { font-size: 48px; }
  .pulse-h3 { font-size: 28px; }
  .pulse-hero-compact h1 { font-size: 56px; }
  .pulse-features { grid-template-columns: 1fr; }
  .pulse-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .pulse-bento-big, .pulse-bento-wide, .pulse-bento-tall { grid-column: auto; grid-row: auto; }
  .pulse-cases { columns: 1; }
  .pulse-careers { grid-template-columns: 1fr; }
  .pulse-contacts { grid-template-columns: 1fr; }
  .pulse-form { grid-template-columns: 1fr; padding: 20px; }
  .pulse-emergency h2 { font-size: 48px; }
  .pulse-emergency { padding: 56px 16px; }
  .pulse-footer { padding: 48px 16px 24px; }
  .pulse-footer-grid { grid-template-columns: 1fr; }
  .pulse-team { grid-template-columns: 1fr; gap: 24px; }
  .pulse-team-photo { max-width: 100%; margin: 0 auto; }
  .pulse-flowgraph { min-height: 0; }
  .pulse-flow-node { position: relative; width: 100%; height: auto; min-height: 140px; top: 0 !important; left: 0 !important; right: 0 !important; margin-bottom: 12px; }
  .pulse-flow-svg { display: none; }
  .pulse-cookie { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; }
  .pulse-thanks-card { padding: 40px 24px; }
  .pulse-thanks-card h1 { font-size: 36px; }
  .pulse-marquee-track { font-size: 18px; }
}

.pulse-hidden {
  display: none !important;
}
