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

:root {
  --mint-bg-start: #F0F9F5;
  --mint-bg-mid: #E8F5EC;
  --mint-bg-end: #E0F0E5;
  --pure-white: #FFFFFF;
  --deep-emerald: #064E3B;
  --soft-grey-green: #4B5D5A;
  --electric-mint: #10B981;
  --rich-emerald: #059669;
  --mint-border: #A7F3D0;
  --soft-mint-green: #6EE7B7;
  --pastel-mint: #D1FAE5;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--electric-mint) transparent;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--deep-emerald);
  background: linear-gradient(135deg, var(--mint-bg-start) 0%, var(--mint-bg-mid) 50%, var(--mint-bg-end) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Unbounded', sans-serif;
  letter-spacing: -0.03em;
  color: var(--deep-emerald);
  line-height: 1.1;
}

h1 {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 800;
  letter-spacing: -0.04em;
  word-spacing: 0.05em;
}

h2 {
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.tech-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--soft-grey-green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.capsule-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 44px;
  border-radius: 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  min-height: 60px;
  position: relative;
  z-index: 2;
}

.capsule-button--primary {
  background: var(--electric-mint);
  color: var(--pure-white);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.capsule-button--primary:hover {
  background: var(--rich-emerald);
  color: var(--pure-white);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.55);
}

.capsule-button--secondary {
  background: var(--pure-white);
  color: var(--deep-emerald);
  border: 3px solid var(--electric-mint);
}

.capsule-button--secondary:hover {
  background: var(--pastel-mint);
  color: var(--deep-emerald);
  transform: translateY(-3px);
  border-color: var(--rich-emerald);
}

.capsule-button--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep-emerald);
  border: 2px solid var(--mint-border);
  backdrop-filter: blur(8px);
}

.capsule-button--ghost:hover {
  background: var(--pure-white);
  border-color: var(--electric-mint);
  color: var(--deep-emerald);
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

.left-dock {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-right: 2px solid var(--electric-mint);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--mint-border);
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--electric-mint) 0%, var(--rich-emerald) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.brand-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--soft-grey-green);
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.brand-name-jp {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--deep-emerald);
  line-height: 1.2;
}

.brand-name-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--electric-mint);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dock-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.dock-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 22px;
  color: var(--deep-emerald);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dock-nav-link:hover, .dock-nav-link.is-current {
  background: var(--electric-mint);
  color: var(--pure-white);
  transform: translateX(4px);
}

.dock-nav-link__icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.dock-cta {
  margin-top: 24px;
}

.dock-cta .capsule-button {
  width: 100%;
  padding: 18px 20px;
  font-size: 14px;
}

.dock-compact-toggle {
  display: none;
  position: absolute;
  bottom: 24px;
  right: 16px;
  background: var(--pastel-mint);
  color: var(--deep-emerald);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.app-main {
  flex: 1;
  margin-left: 280px;
  min-width: 0;
  position: relative;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--electric-mint);
  z-index: 200;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--electric-mint) 0%, var(--rich-emerald) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 20px;
}

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

.mobile-brand-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--soft-grey-green);
  letter-spacing: 0.1em;
}

.mobile-brand-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-emerald);
}

.mobile-burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pastel-mint);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--deep-emerald);
}

.mobile-burger span {
  width: 22px;
  height: 2px;
  background: var(--deep-emerald);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  z-index: 150;
  flex-direction: column;
  padding: 100px 32px 40px;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer-link {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-emerald);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--mint-border);
  display: block;
  animation: slideInRight 0.4s ease both;
}

.mobile-drawer-link:hover {
  color: var(--electric-mint);
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.mobile-drawer-cta {
  margin-top: 32px;
}

.mobile-drawer-cta .capsule-button {
  width: 100%;
}

.ring-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 3px solid var(--electric-mint);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  mix-blend-mode: multiply;
}

.ring-cursor.is-visible {
  opacity: 1;
}

.ring-cursor.is-hover {
  width: 64px;
  height: 64px;
  border-color: var(--rich-emerald);
  border-width: 4px;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 40px);
  padding: 80px 64px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-stage--compact {
  min-height: auto;
  padding: 120px 64px 80px;
}

.hero-blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  animation: floatBlob 24s ease-in-out infinite;
}

.hero-blob--one {
  width: 520px;
  height: 520px;
  background: var(--electric-mint);
  top: -120px;
  right: -120px;
  animation-duration: 28s;
}

.hero-blob--two {
  width: 420px;
  height: 420px;
  background: var(--rich-emerald);
  bottom: -100px;
  left: 30%;
  animation-duration: 36s;
  animation-direction: reverse;
}

.hero-blob--three {
  width: 320px;
  height: 320px;
  background: var(--pastel-mint);
  top: 40%;
  right: 25%;
  animation-duration: 32s;
}

.hero-blob--four {
  width: 280px;
  height: 280px;
  background: var(--soft-mint-green);
  bottom: 20%;
  left: 8%;
  animation-duration: 40s;
  animation-direction: reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(60px, -80px) scale(1.1) rotate(120deg); }
  66% { transform: translate(-40px, 60px) scale(0.9) rotate(240deg); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--mint-border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--mint-border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid var(--mint-border);
  width: fit-content;
  color: var(--deep-emerald);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--electric-mint);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  margin: 0;
}

.hero-headline-jp {
  display: block;
}

.hero-headline-en {
  display: block;
  color: var(--electric-mint);
  font-size: 0.55em;
  margin-top: 12px;
}

.hero-subline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: var(--soft-grey-green);
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-subline span {
  position: relative;
  padding-right: 16px;
}

.hero-subline span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: 0;
  color: var(--electric-mint);
  font-weight: 700;
}

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

.hero-trust-row {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-trust-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--electric-mint);
  line-height: 1;
}

.hero-trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--soft-grey-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  position: relative;
  height: 600px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(6, 78, 59, 0.18);
}

.hero-visual-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--pastel-mint) 100%);
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pump-svg {
  width: 90%;
  height: 90%;
  animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
  from { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  to { transform: rotate(-5deg); }
}

.hero-visual-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(6, 78, 59, 0.15);
  border: 1px solid var(--mint-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-visual-tag--top {
  top: 32px;
  left: 32px;
  animation: floatTag 5s ease-in-out infinite;
}

.hero-visual-tag--bottom {
  bottom: 32px;
  right: 32px;
  animation: floatTag 5s ease-in-out infinite reverse;
}

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-visual-tag-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--electric-mint);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-visual-tag-text {
  display: flex;
  flex-direction: column;
}

.hero-visual-tag-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-emerald);
}

.hero-visual-tag-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--soft-grey-green);
}

.section-shell {
  padding: 100px 64px;
  position: relative;
}

.section-shell--tight {
  padding: 60px 64px;
}

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

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 64px;
  max-width: 880px;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  max-width: none;
}

.section-head-row .section-head {
  margin-bottom: 0;
  max-width: 720px;
}

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

.bento-cell {
  background: var(--pure-white);
  border-radius: 36px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(6, 78, 59, 0.06);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--deep-emerald);
}

.bento-cell:hover {
  z-index: 10;
  transform: scale(1.03) translateY(-4px);
  border-color: var(--electric-mint);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
}

.bento-cell--xl {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pure-white) 100%);
}

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

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

.bento-cell-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--electric-mint);
  letter-spacing: 0.15em;
  font-weight: 600;
}

.bento-cell-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--deep-emerald);
  margin: 0;
}

.bento-cell-title--lg {
  font-size: 38px;
}

.bento-cell-text {
  font-size: 14px;
  color: var(--soft-grey-green);
  line-height: 1.6;
}

.bento-cell-price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--electric-mint);
}

.bento-cell-price-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--soft-grey-green);
  letter-spacing: 0.1em;
}

.bento-cell-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bento-cell-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 78, 59, 0.85) 100%);
}

.bento-cell-feature-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  color: var(--pure-white);
}

.bento-cell-feature-overlay .bento-cell-number {
  color: var(--soft-mint-green);
}

.bento-cell-feature-overlay .bento-cell-title {
  color: var(--pure-white);
}

.bento-cell-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--pastel-mint);
  color: var(--rich-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.timeline-rail {
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--mint-border);
  z-index: 0;
}

.timeline-rail-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--electric-mint) 0%, var(--rich-emerald) 100%);
  width: 0%;
  border-radius: 2px;
  transition: width 0.6s ease;
}

.timeline-node {
  position: relative;
  z-index: 2;
  background: var(--pure-white);
  border-radius: 28px;
  padding: 24px 20px;
  text-align: center;
  border: 2px solid var(--mint-border);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.timeline-node:hover {
  transform: translateY(-6px);
  border-color: var(--electric-mint);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  z-index: 5;
}

.timeline-node-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-mint) 0%, var(--rich-emerald) 100%);
  color: var(--pure-white);
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.timeline-node-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-emerald);
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-node-text {
  font-size: 13px;
  color: var(--soft-grey-green);
  line-height: 1.5;
}

.marquee-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 24px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-row {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 35s linear infinite;
  flex-shrink: 0;
}

.marquee-row:hover {
  animation-play-state: paused;
}

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

.marquee-card {
  width: 340px;
  max-width: 100%;
  background: var(--pure-white);
  border-radius: 28px;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(6, 78, 59, 0.08);
}

.marquee-card:hover {
  transform: scale(1.04) translateY(-6px);
  z-index: 10;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.marquee-card-image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: var(--pastel-mint);
}

.marquee-card-body {
  padding: 22px 24px;
}

.marquee-card-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--electric-mint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.marquee-card-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-emerald);
  margin-bottom: 6px;
  line-height: 1.3;
}

.marquee-card-text {
  font-size: 13px;
  color: var(--soft-grey-green);
  line-height: 1.5;
}

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

.split-screen__left {
  position: sticky;
  top: 80px;
  height: 600px;
  border-radius: 48px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--pastel-mint);
}

.split-screen__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 78, 59, 0.4) 100%);
}

.split-screen__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 0;
}

.split-screen__right h2 {
  margin-bottom: 12px;
}

.split-screen-paragraph {
  font-size: 17px;
  line-height: 1.8;
  color: var(--deep-emerald);
}

.split-screen-paragraph strong {
  color: var(--electric-mint);
  font-weight: 700;
}

.split-screen-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 12px;
}

.fact-card {
  background: var(--pure-white);
  padding: 24px;
  border-radius: 24px;
  border: 2px solid var(--mint-border);
  transition: all 0.3s ease;
}

.fact-card:hover {
  border-color: var(--electric-mint);
  transform: translateY(-3px);
  z-index: 2;
}

.fact-card-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--electric-mint);
  line-height: 1;
  margin-bottom: 6px;
}

.fact-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--soft-grey-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 460px;
}

.flex-grow-card {
  background: var(--pure-white);
  border-radius: 32px;
  padding: 36px 30px;
  border: 2px solid var(--mint-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.flex-grow-card:hover {
  flex-grow: 2.5;
  border-color: var(--electric-mint);
  background: linear-gradient(160deg, var(--pure-white) 0%, var(--pastel-mint) 100%);
  z-index: 5;
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2);
}

.flex-grow-card__num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--electric-mint);
  line-height: 1;
}

.flex-grow-card__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--deep-emerald);
  line-height: 1.3;
}

.flex-grow-card__text {
  font-size: 14px;
  color: var(--soft-grey-green);
  line-height: 1.6;
}

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

.team-row {
  position: relative;
  padding: 32px 0;
  border-bottom: 1px solid var(--mint-border);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.team-row:first-child {
  border-top: 1px solid var(--mint-border);
}

.team-row:hover {
  padding-left: 24px;
  background: linear-gradient(90deg, var(--pastel-mint) 0%, transparent 100%);
  z-index: 5;
}

.team-row-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--deep-emerald);
  letter-spacing: -0.03em;
  line-height: 1;
}

.team-row-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--soft-grey-green);
  letter-spacing: 0.08em;
  text-align: right;
}

.team-reveal-card {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  background: var(--pure-white);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 25px 50px rgba(6, 78, 59, 0.2);
  border: 2px solid var(--mint-border);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  min-width: 320px;
}

.team-row:hover .team-reveal-card {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.team-reveal-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--pastel-mint);
  flex-shrink: 0;
  border: 3px solid var(--electric-mint);
}

.team-reveal-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-reveal-info__name {
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-emerald);
}

.team-reveal-info__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--electric-mint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-reveal-info__exp {
  font-size: 13px;
  color: var(--soft-grey-green);
}

.coverflow-stage {
  position: relative;
  padding: 60px 0;
}

.coverflow-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 20px;
  scrollbar-width: none;
}

.coverflow-track::-webkit-scrollbar {
  display: none;
}

.coverflow-card {
  width: 100%;
  max-width: 480px;
  min-width: 280px;
  background: var(--pure-white);
  border-radius: 32px;
  padding: 44px;
  scroll-snap-align: center;
  border: 2px solid var(--mint-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(6, 78, 59, 0.08);
}

.coverflow-card:hover {
  border-color: var(--electric-mint);
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
  z-index: 5;
}

.coverflow-stars {
  display: flex;
  gap: 4px;
  color: var(--electric-mint);
  font-size: 18px;
}

.coverflow-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--deep-emerald);
  font-style: italic;
  flex: 1;
}

.coverflow-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--mint-border);
}

.coverflow-author__name {
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-emerald);
}

.coverflow-author__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--soft-grey-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coverflow-nav {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}

.coverflow-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 2px solid var(--mint-border);
  color: var(--deep-emerald);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-nav-btn:hover {
  background: var(--electric-mint);
  color: var(--pure-white);
  border-color: var(--electric-mint);
  transform: scale(1.1);
}

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

.accordion-item {
  background: var(--pure-white);
  border-radius: 24px;
  border: 2px solid var(--mint-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--electric-mint);
}

.accordion-item.is-open {
  border-color: var(--electric-mint);
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.15);
}

.accordion-trigger {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--deep-emerald);
  text-align: left;
}

.accordion-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pastel-mint);
  color: var(--rich-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-icon {
  background: var(--electric-mint);
  color: var(--pure-white);
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--soft-grey-green);
  line-height: 1.7;
  font-size: 15px;
}

.accordion-item.is-open .accordion-content {
  max-height: 500px;
  padding: 0 28px 24px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--pure-white);
  border-radius: 48px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.08);
  border: 2px solid var(--mint-border);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--soft-grey-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  border: none;
  border-bottom: 2px solid var(--mint-border);
  background: transparent;
  padding: 14px 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--deep-emerald);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--electric-mint);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--soft-grey-green);
  opacity: 0.6;
}

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

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

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

.contact-info-block__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--soft-grey-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-info-block__value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--deep-emerald);
  line-height: 1.3;
  text-decoration: none;
}

.contact-info-block__value a {
  color: var(--deep-emerald);
  text-decoration: none;
}

.contact-info-block__value a:hover {
  color: var(--electric-mint);
}

.contact-info-block__text {
  font-size: 15px;
  color: var(--soft-grey-green);
  line-height: 1.6;
}

.cta-banner {
  background: linear-gradient(135deg, var(--electric-mint) 0%, var(--rich-emerald) 100%);
  border-radius: 48px;
  padding: 80px 60px;
  text-align: center;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-banner h2 {
  color: var(--pure-white);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-banner-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-banner .capsule-button--primary {
  background: var(--pure-white);
  color: var(--deep-emerald);
  box-shadow: 0 12px 30px rgba(6, 78, 59, 0.3);
}

.cta-banner .capsule-button--primary:hover {
  background: var(--pastel-mint);
  color: var(--deep-emerald);
}

.cta-banner .capsule-button--secondary {
  background: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.cta-banner .capsule-button--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.site-footer {
  background: linear-gradient(135deg, var(--electric-mint) 0%, var(--rich-emerald) 100%);
  color: var(--pure-white);
  border-radius: 48px 48px 0 0;
  padding: 80px 64px 32px;
  position: relative;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1480px;
  margin: 0 auto 60px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-block .brand-mark {
  background: var(--pure-white);
  color: var(--rich-emerald);
}

.footer-brand-block .brand-domain,
.footer-brand-block .brand-name-jp {
  color: var(--pure-white);
}

.footer-brand-block .brand-name-jp {
  font-size: 22px;
}

.footer-brand-block .brand-name-sub {
  color: var(--pastel-mint);
}

.footer-brand-text {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  color: var(--pure-white);
  max-width: 360px;
}

.footer-col-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: var(--pure-white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links a {
  color: var(--pure-white);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  opacity: 0.95;
  color: var(--pure-white);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.7;
}

.footer-contact-block strong {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--pure-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--pure-white);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--pure-white);
  text-decoration: none;
  opacity: 0.85;
  font-size: 13px;
}

.footer-bottom-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 304px;
  max-width: 460px;
  background: var(--pure-white);
  border-radius: 28px;
  padding: 24px 26px;
  box-shadow: 0 30px 60px rgba(6, 78, 59, 0.2);
  border: 2px solid var(--mint-border);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-emerald);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__text {
  font-size: 13px;
  color: var(--soft-grey-green);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--electric-mint);
  text-decoration: underline;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--electric-mint);
  color: var(--pure-white);
}

.cookie-btn--accept:hover {
  background: var(--rich-emerald);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--deep-emerald);
  border-color: var(--mint-border);
}

.cookie-btn--decline:hover {
  border-color: var(--electric-mint);
  background: var(--pastel-mint);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  padding: 140px 64px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--soft-grey-green);
  margin-bottom: 8px;
}

.breadcrumb a {
  color: var(--electric-mint);
  text-decoration: none;
}

.breadcrumb__sep {
  opacity: 0.6;
}

.page-title {
  font-size: clamp(40px, 6vw, 84px);
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--deep-emerald);
  margin: 0;
}

.page-lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--soft-grey-green);
  max-width: 720px;
}

.text-only-page {
  padding: 80px 64px;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--deep-emerald);
  line-height: 1.8;
}

.text-only-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 32px;
}

.text-only-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 22px;
}

.text-only-page p {
  margin-bottom: 18px;
  font-size: 16px;
}

.text-only-page ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.text-only-page li {
  margin-bottom: 8px;
}

.thanks-screen {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
}

.thanks-card {
  max-width: 720px;
  background: var(--pure-white);
  border-radius: 48px;
  padding: 70px 50px;
  box-shadow: 0 30px 80px rgba(6, 78, 59, 0.15);
  border: 2px solid var(--mint-border);
}

.thanks-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-mint) 0%, var(--rich-emerald) 100%);
  color: var(--pure-white);
  font-size: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.35);
}

.service-detail-block {
  background: var(--pure-white);
  border-radius: 32px;
  padding: 40px;
  margin-bottom: 28px;
  border: 2px solid var(--mint-border);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  transition: all 0.3s ease;
}

.service-detail-block:hover {
  border-color: var(--electric-mint);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.service-detail-block.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.service-detail-block.reverse .service-detail-image {
  order: -1;
}

.service-detail-image {
  width: 100%;
  height: 320px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: var(--pastel-mint);
}

.service-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-detail-meta h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 30px;
  margin: 0;
  color: var(--deep-emerald);
}

.service-detail-meta p {
  color: var(--soft-grey-green);
  line-height: 1.7;
}

.service-detail-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 20px;
  background: var(--pastel-mint);
  border-radius: 18px;
  width: fit-content;
}

.service-detail-price__num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--rich-emerald);
}

.service-detail-price__sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--soft-grey-green);
}

.service-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
  font-size: 14px;
  color: var(--deep-emerald);
}

.service-features-list li::before {
  content: '✓';
  color: var(--electric-mint);
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 1280px) {
  .left-dock {
    width: 240px;
    padding: 24px 18px;
  }
  .app-main {
    margin-left: 240px;
  }
  .cookie-banner {
    left: 264px;
  }
  .bento-services {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-cell--xl {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-cell--wide {
    grid-column: span 2;
  }
  .timeline-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline-rail {
    display: none;
  }
  .flex-grow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverflow-card {
    min-width: 380px;
    max-width: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 960px) {
  .left-dock {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .left-dock.is-open {
    transform: translateX(0);
  }
  .mobile-header {
    display: flex;
  }
  .app-main {
    margin-left: 0;
    padding-top: 72px;
  }
  .ring-cursor {
    display: none;
  }
  .hero-stage {
    padding: 40px 24px 60px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    height: 360px;
    order: -1;
  }
  .hero-blob {
    opacity: 0.5;
    animation: none;
  }
  .section-shell {
    padding: 60px 24px;
  }
  .page-hero {
    padding: 100px 24px 50px;
  }
  .bento-services {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .bento-cell--xl {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-cell--wide, .bento-cell--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-cell-title--lg {
    font-size: 26px;
  }
  .timeline-track {
    grid-template-columns: 1fr;
  }
  .timeline-node {
    flex-direction: row;
    text-align: left;
    min-height: auto;
    gap: 16px;
    padding: 18px;
  }
  .timeline-node-num {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    font-size: 18px;
    flex-shrink: 0;
  }
  .timeline-node-title {
    margin-bottom: 4px;
  }
  .split-screen {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split-screen__left {
    position: relative;
    top: 0;
    height: 360px;
  }
  .flex-grow-grid {
    grid-template-columns: 1fr;
  }
  .flex-grow-card:hover {
    flex-grow: 1;
  }
  .coverflow-card {
    min-width: 320px;
    max-width: 320px;
    padding: 30px;
  }
  .contact-split {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer {
    padding: 50px 24px 24px;
    border-radius: 32px 32px 0 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
    padding: 20px;
  }
  .team-reveal-card {
    display: none;
  }
  .cta-banner {
    padding: 50px 28px;
    border-radius: 32px;
  }
  .service-detail-block,
  .service-detail-block.reverse {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .service-detail-block.reverse .service-detail-image {
    order: 0;
  }
  .service-features-list {
    grid-template-columns: 1fr;
  }
  .hero-headline-en {
    font-size: 0.7em;
  }
  .hero-trust-num {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hero-stage {
    padding: 32px 18px 50px;
  }
  .section-shell {
    padding: 50px 18px;
  }
  .page-hero {
    padding: 90px 18px 40px;
  }
  .bento-services {
    grid-template-columns: 1fr;
  }
  .bento-cell,
  .bento-cell--xl,
  .bento-cell--wide,
  .bento-cell--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .marquee-card {
    width: 280px;
  }
  .coverflow-card {
    min-width: 280px;
    max-width: 280px;
    padding: 24px;
  }
  .capsule-button {
    width: 100%;
    padding: 18px 28px;
    font-size: 15px;
  }
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-row .capsule-button {
    width: 100%;
  }
}
