@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&family=Archivo+Black&display=swap');

:root {
  --cobalt: #0A3D91;
  --cobalt-deep: #072E70;
  --cobalt-soft: #2E5BC2;
  --emerald: #0B5E4F;
  --emerald-soft: #1A8A75;
  --terracotta: #C67D5A;
  --terracotta-deep: #A55E3D;
  --alabaster: #F7F8FA;
  --pearl: #E4E6EB;
  --graphite: #2A2D34;
  --graphite-soft: #4A4E58;
  --silver: #B8BCC4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  background: #F7F8FA;
  color: #2A2D34;
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

strong, p, span, li, a, h1, h2, h3, h4, h5, h6, button, label, input, textarea {
  color: inherit;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
}

.display {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.gradient-mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(at 18% 22%, rgba(10, 61, 145, 0.18) 0px, transparent 50%),
    radial-gradient(at 82% 18%, rgba(11, 94, 79, 0.16) 0px, transparent 50%),
    radial-gradient(at 65% 85%, rgba(228, 230, 235, 0.7) 0px, transparent 50%),
    radial-gradient(at 25% 75%, rgba(198, 125, 90, 0.08) 0px, transparent 50%),
    radial-gradient(at 95% 60%, rgba(46, 91, 194, 0.12) 0px, transparent 50%),
    #F7F8FA;
  animation: meshDrift 28s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0% { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 100%, 100% 50%; }
  50% { background-position: 8% 12%, 92% 8%, 58% 92%, 8% 92%, 92% 58%; }
  100% { background-position: 12% 8%, 88% 12%, 62% 88%, 12% 88%, 88% 62%; }
}

.glass-panel {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 8px 24px rgba(10, 61, 145, 0.08),
    0 24px 48px rgba(10, 61, 145, 0.06);
  position: relative;
  overflow: hidden;
}

.glass-panel-deep {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(38px) saturate(150%);
  -webkit-backdrop-filter: blur(38px) saturate(150%);
  border: 1px solid rgba(10, 61, 145, 0.22);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 32px rgba(10, 61, 145, 0.1),
    0 32px 64px rgba(10, 61, 145, 0.08);
}

.glass-frosted {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(42px) saturate(160%);
  -webkit-backdrop-filter: blur(42px) saturate(160%);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: 16px;
}

.pill-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(247, 248, 250, 0.72);
  backdrop-filter: blur(38px) saturate(160%);
  -webkit-backdrop-filter: blur(38px) saturate(160%);
  border: 1px solid rgba(10, 61, 145, 0.22);
  border-radius: 100px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 4px 16px rgba(10, 61, 145, 0.06),
    0 16px 40px rgba(10, 61, 145, 0.08),
    0 32px 64px rgba(10, 61, 145, 0.04);
  padding: 14px 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: calc(100vw - 24px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.pill-header.shrunk {
  padding: 10px 20px;
  backdrop-filter: blur(50px) saturate(180%);
  -webkit-backdrop-filter: blur(50px) saturate(180%);
  border-color: rgba(10, 61, 145, 0.32);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  margin-right: 20px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, var(--cobalt) 0%, var(--emerald) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(10, 61, 145, 0.3);
}

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

.brand-text .latin {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--graphite);
}

.brand-text .jp {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--graphite-soft);
  margin-top: 3px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pill-header.shrunk .brand-text .jp {
  opacity: 0;
  transform: translateY(-6px);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 10px;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--graphite-soft);
  padding: 8px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.is-active {
  color: #FFFFFF;
  background: var(--cobalt);
  transform: translateY(-1px);
}

.cta-pill {
  background: var(--terracotta);
  color: #FFFFFF !important;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(198, 125, 90, 0.4);
  text-decoration: none;
  white-space: nowrap;
}

.cta-pill:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(198, 125, 90, 0.5);
}

.cta-pill .pulse {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

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

.burger-wrap {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 61, 145, 0.3);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.burger-wrap span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--graphite);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.burger-wrap span:nth-child(1) { width: 18px; }
.burger-wrap span:nth-child(2) { width: 14px; align-self: flex-end; }
.burger-wrap span:nth-child(3) { width: 10px; align-self: flex-end; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(48px) saturate(180%);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  display: none;
  flex-direction: column;
  padding: 100px 32px 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-overlay.is-open {
  display: flex;
  opacity: 1;
}

.mobile-overlay .m-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--graphite);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 61, 145, 0.1);
  transform: translateX(20px);
  opacity: 0;
  animation: slideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mobile-overlay .m-link .idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  font-weight: 700;
}

@keyframes slideIn {
  to { transform: translateX(0); opacity: 1; }
}

.mobile-overlay .m-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-overlay .m-link:nth-child(2) { animation-delay: 0.14s; }
.mobile-overlay .m-link:nth-child(3) { animation-delay: 0.23s; }
.mobile-overlay .m-link:nth-child(4) { animation-delay: 0.32s; }
.mobile-overlay .m-link:nth-child(5) { animation-delay: 0.41s; }
.mobile-overlay .m-link:nth-child(6) { animation-delay: 0.50s; }

.hero {
  min-height: 92vh;
  padding: 140px 24px 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-stage {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 8.2vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--graphite);
  margin: 0 0 28px;
  position: relative;
}

.hero-title .glyph {
  display: inline-block;
  transition: color 0.2s ease;
}

.hero-title:hover .glyph {
  color: var(--cobalt);
}

.hero-title .glyph:nth-child(odd):hover {
  color: var(--cobalt);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--graphite-soft);
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--graphite);
  color: #FFFFFF !important;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid var(--terracotta);
}

.btn-primary:hover {
  background: var(--cobalt);
  transform: translateY(-2px) translateX(8px);
  border-bottom-color: var(--terracotta);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  color: var(--graphite) !important;
  padding: 16px 26px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(10, 61, 145, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--cobalt);
  color: var(--cobalt) !important;
  transform: translateY(-2px);
}

.mono-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--graphite-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 100px;
}

.mono-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.section {
  padding: 100px 24px;
  position: relative;
}

.section-tight {
  padding: 60px 24px;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

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

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cobalt);
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--graphite);
  margin: 0 0 20px;
  max-width: 800px;
}

.section-title .accent {
  color: var(--cobalt);
}

.section-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite-soft);
  max-width: 560px;
}

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

.bento-item {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.bento-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 61, 145, 0) 0%, rgba(10, 61, 145, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--cobalt);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 32px rgba(10, 61, 145, 0.14),
    0 32px 64px rgba(10, 61, 145, 0.1);
  z-index: 5;
}

.bento-item:hover::before {
  opacity: 1;
}

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

.bento-md {
  grid-column: span 2;
}

.bento-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 61, 145, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.bento-item:hover .bento-icon-wrap {
  background: var(--cobalt);
  color: #FFFFFF;
  transform: scale(1.1) rotate(-4deg);
}

.bento-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--emerald) 100%);
  position: relative;
}

.bento-lg .bento-img-wrap {
  height: 280px;
}

.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bento-item:hover .bento-img-wrap img {
  transform: scale(1.08);
}

.bento-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 10px;
  font-weight: 700;
}

.bento-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--graphite);
  margin: 0 0 10px;
}

.bento-lg .bento-name {
  font-size: 32px;
}

.bento-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--graphite-soft);
  margin: 0 0 16px;
  flex-grow: 1;
}

.bento-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--graphite-soft);
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 61, 145, 0.1);
}

.bento-price {
  color: var(--terracotta-deep);
  font-weight: 700;
}

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

.split-sticky {
  position: sticky;
  top: 120px;
}

.kanji-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--graphite);
  margin: 0 0 24px;
}

.kanji-big .accent {
  color: var(--cobalt);
}

.cascade {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cascade-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.cascade-card:nth-child(odd) { margin-right: 32px; }
.cascade-card:nth-child(even) { margin-left: 32px; }

.cascade-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--cobalt);
  box-shadow: 0 16px 40px rgba(10, 61, 145, 0.14);
}

.cascade-img {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

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

.cascade-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cobalt);
  margin-bottom: 8px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(10, 61, 145, 0.2);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover {
  border-color: var(--cobalt);
  box-shadow: 0 24px 60px rgba(10, 61, 145, 0.16);
  transform: translateY(-4px);
}

.step-img {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

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

.step-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-idx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: var(--terracotta);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 700;
  align-self: flex-start;
}

.step-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin: 0 0 16px;
  line-height: 1.05;
}

.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--graphite-soft);
  margin: 0 0 20px;
}

.step-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--graphite-soft);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.node-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.node-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.node-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--cobalt);
  box-shadow: 0 24px 60px rgba(10, 61, 145, 0.18);
  z-index: 5;
}

.node-sphere {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 70%),
    linear-gradient(135deg, var(--cobalt) 0%, var(--emerald) 100%);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px var(--terracotta),
    0 8px 24px rgba(10, 61, 145, 0.3);
  transition: all 0.4s ease;
}

.node-card:hover .node-sphere {
  transform: scale(1.18);
}

.node-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 12px;
}

.node-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--graphite);
  margin: 0 0 12px;
  line-height: 1.2;
}

.node-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--graphite-soft);
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--cobalt);
  box-shadow: 0 24px 60px rgba(10, 61, 145, 0.18);
}

.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--cobalt) 100%);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.6s ease;
}

.team-card:hover .team-photo img {
  filter: grayscale(0%) contrast(1);
}

.team-info {
  padding: 24px;
}

.team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 8px;
}

.team-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--graphite);
  margin: 0 0 12px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--graphite-soft);
  margin: 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.acc-item {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 2px solid var(--cobalt);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.acc-item:hover {
  border-left-width: 4px;
}

.acc-item.is-open {
  background: rgba(255, 255, 255, 0.85);
  border-left-width: 4px;
  box-shadow: 0 16px 40px rgba(10, 61, 145, 0.14);
  transform: translateX(4px);
}

.acc-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px;
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--graphite);
  gap: 24px;
  user-select: none;
}

.acc-q .acc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 700;
  margin-right: 16px;
}

.acc-q .acc-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--graphite-soft);
  letter-spacing: 0.1em;
}

.acc-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 61, 145, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.acc-item.is-open .acc-toggle {
  background: var(--cobalt);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.acc-item.is-open .acc-a {
  max-height: 600px;
}

.acc-a-inner {
  padding: 0 28px 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite-soft);
  border-top: 1px solid rgba(10, 61, 145, 0.1);
  padding-top: 20px;
}

.acc-a-meta {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--graphite-soft);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
}

.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--cobalt);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--graphite-soft);
}

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

.form-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1.5px solid rgba(10, 61, 145, 0.25);
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 16px 48px rgba(10, 61, 145, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--graphite);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: none;
  border-bottom: 1px solid rgba(10, 61, 145, 0.3);
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--graphite);
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--cobalt);
  box-shadow: 0 -2px 0 var(--cobalt) inset;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--silver);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  border: 1px solid rgba(10, 61, 145, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--cobalt);
  background: rgba(255, 255, 255, 0.75);
}

.info-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 10px;
}

.info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--graphite-soft);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.info-val {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--graphite);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.info-val a {
  color: var(--graphite);
  text-decoration: none;
}

.info-val a:hover {
  color: var(--cobalt);
}

.footer {
  background: rgba(10, 61, 145, 0.04);
  border-top: 1px solid rgba(10, 61, 145, 0.18);
  padding: 80px 24px 32px;
  position: relative;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--graphite);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-tag {
  font-size: 13px;
  color: var(--graphite-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--graphite-soft);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin: 0 0 16px;
  font-weight: 700;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--graphite-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--cobalt);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(10, 61, 145, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--graphite-soft);
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--graphite-soft);
  text-decoration: none;
  letter-spacing: 0.06em;
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(10, 61, 145, 0.25);
  border-radius: 18px;
  padding: 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 32px rgba(10, 61, 145, 0.18),
    0 24px 48px rgba(10, 61, 145, 0.1);
}

.cookie-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-head .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cobalt);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.cookie-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--graphite);
  letter-spacing: -0.01em;
}

.cookie-body {
  font-size: 12px;
  color: var(--graphite-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: var(--cobalt);
  color: #FFFFFF;
}

.cookie-btn.accept:hover {
  background: var(--cobalt-deep);
}

.cookie-btn.decline {
  background: rgba(10, 61, 145, 0.08);
  color: var(--graphite);
}

.cookie-btn.decline:hover {
  background: rgba(10, 61, 145, 0.16);
}

.flow-indicator {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 80;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--graphite-soft);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(10, 61, 145, 0.15);
  border-radius: 100px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-indicator .dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.thanks-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  text-align: center;
}

.thanks-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(10, 61, 145, 0.2);
  border-radius: 28px;
  padding: 56px 40px;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(10, 61, 145, 0.16);
}

.thanks-mark {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-soft) 100%);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 38px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 28px rgba(11, 94, 79, 0.3);
}

.thanks-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 16px;
}

.thanks-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin: 0 0 16px;
}

.thanks-text {
  font-size: 16px;
  color: var(--graphite-soft);
  line-height: 1.7;
  margin: 0 0 32px;
}

.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.policy-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 22px;
  padding: 48px;
}

.policy-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 14px;
}

.policy-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin: 0 0 12px;
}

.policy-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--graphite-soft);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(10, 61, 145, 0.15);
}

.policy-card h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: var(--graphite);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}

.policy-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite-soft);
  margin: 0 0 14px;
}

.policy-card ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.policy-card ul li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite-soft);
  margin-bottom: 6px;
}

.service-detail {
  padding: 140px 24px 80px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.service-hero {
  position: sticky;
  top: 120px;
}

.service-hero-img {
  width: 100%;
  height: 460px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--emerald) 100%);
  border: 1px solid rgba(10, 61, 145, 0.2);
}

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

.service-spec {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 18px;
  padding: 24px;
}

.service-spec h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cobalt);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 61, 145, 0.1);
  font-size: 13px;
}

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

.spec-row .k {
  color: var(--graphite-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.spec-row .v {
  color: var(--graphite);
  font-weight: 600;
}

.service-content h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  color: var(--graphite);
  margin: 0 0 16px;
  line-height: 0.95;
}

.service-content .lede {
  font-size: 18px;
  color: var(--graphite-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: var(--graphite);
  margin: 32px 0 16px;
  letter-spacing: -0.01em;
}

.service-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--graphite-soft);
  margin-bottom: 18px;
}

.service-content ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.service-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--graphite-soft);
  margin-bottom: 8px;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(198, 125, 90, 0.12);
  border: 1px solid rgba(198, 125, 90, 0.3);
  padding: 12px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.price-tag .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--terracotta-deep);
  font-weight: 700;
}

.price-tag .val {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  color: var(--terracotta-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(10, 61, 145, 0.18);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:nth-child(3n+2) { transform: translateY(20px); }
.gallery-item:nth-child(3n+3) { transform: translateY(-20px); }

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--cobalt);
  box-shadow: 0 24px 60px rgba(10, 61, 145, 0.18);
}

.gallery-img {
  height: 280px;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.08);
}

.gallery-info {
  padding: 18px 20px;
}

.gallery-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--graphite);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.gallery-meta {
  font-size: 12px;
  color: var(--graphite-soft);
}

.text-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--graphite-soft);
  max-width: 720px;
}

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

.feature-strip {
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.15);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-strip .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 61, 145, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
  flex-shrink: 0;
}

.feature-strip h5 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--graphite);
  margin: 0 0 4px;
}

.feature-strip p {
  font-size: 13px;
  color: var(--graphite-soft);
  margin: 0;
}

.success-msg {
  background: rgba(11, 94, 79, 0.1);
  border: 1.5px solid var(--emerald);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  display: none;
  align-items: center;
  gap: 14px;
}

.success-msg.is-shown {
  display: flex;
}

.success-msg .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--emerald);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.success-msg .t {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .hero-stage { grid-template-columns: 1fr; gap: 32px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-sticky { position: static; }
  .node-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step-card { grid-template-columns: 1fr; }
  .step-img { min-height: 200px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-hero { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(n) { transform: none; }
}

@media (max-width: 640px) {
  .pill-header { padding: 10px 16px; top: 12px; max-width: calc(100vw - 20px); }
  .brand-icon { width: 32px; height: 32px; }
  .brand-text .latin { font-size: 13px; }
  .brand-text .jp { display: none; }
  .nav-row { display: none; }
  .burger-wrap { display: flex; }
  .cta-pill { display: none; }
  .pill-header.shrunk .burger-wrap { display: flex; }
  .hero { min-height: auto; padding: 110px 20px 60px; }
  .hero-title { font-size: clamp(38px, 10vw, 64px); }
  .hero-stage { gap: 24px; }
  .section { padding: 64px 20px; }
  .section-head { margin-bottom: 32px; }
  .bento { grid-template-columns: 1fr; gap: 16px; }
  .bento-lg, .bento-md { grid-column: span 1; grid-row: span 1; }
  .bento-lg .bento-img-wrap { height: 200px; }
  .bento-lg .bento-name { font-size: 24px; }
  .bento-item { padding: 20px; }
  .node-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .step-card { grid-template-columns: 1fr; }
  .step-img { min-height: 180px; }
  .step-content { padding: 24px 20px; }
  .policy-card { padding: 28px 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .thanks-card { padding: 36px 24px; }
  .acc-q { padding: 20px; font-size: 16px; }
  .acc-q .acc-num { margin-right: 8px; font-size: 10px; }
  .flow-indicator { font-size: 9px; bottom: auto; top: 80px; right: 8px; }
  .cascade-card { margin: 0 !important; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { gap: 24px; }
  .contact-grid { gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; }
}
