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

:root {
  --aqua-graphite: #1F3A4A;
  --crystal-aqua: #00A8C5;
  --coral-pop: #FF6B5A;
  --mint-fresh: #2EC4B6;
  --liquid-gold: #E8B832;
  --crystal-base: #FAFCFE;
  --pure-white: #FFFFFF;
  --aqua-graphite-soft: #4A6878;
  --pale-aqua-crystal: #E0F0F5;
  --deep-ocean-indigo: #0A2A3A;
  --shadow-aqua: 4px 12px 0 0 rgba(0, 168, 197, 0.16);
  --shadow-graphite: 4px 12px 0 0 rgba(31, 58, 74, 0.08);
  --shadow-deep: 8px 18px 0 0 rgba(0, 168, 197, 0.32);
  --border-aqua: 1.5px solid rgba(31, 58, 74, 0.24);
  --border-crystal: 1.5px solid #00A8C5;
  --radius-soft: 12px;
  --radius-pill: 36px;
}

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

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter Tight', 'Noto Sans JP', sans-serif;
  background: var(--pure-white);
  color: var(--aqua-graphite);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 120px;
  max-width: 100vw;
}

.gs-display {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gs-mincho {
  font-family: 'Shippori Mincho', serif;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.gs-pill-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  background: rgba(250, 252, 254, 0.78);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: var(--border-aqua);
  border-radius: var(--radius-pill);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 24px;
  box-shadow: 0 4px 24px rgba(0, 168, 197, 0.08);
}

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

.gs-pill-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.gs-pill-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gs-pill-logo-domain {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--aqua-graphite);
  letter-spacing: -0.02em;
}

.gs-pill-logo-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(31, 58, 74, 0.7);
}

.gs-pill-logo-jp .accent {
  color: var(--crystal-aqua);
}

.gs-pill-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-pill-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--aqua-graphite);
  padding: 8px 10px;
  position: relative;
  transition: color 240ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.gs-pill-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--crystal-aqua);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-pill-nav a:hover,
.gs-pill-nav a.is-current {
  color: var(--crystal-aqua);
}

.gs-pill-nav a:hover::after,
.gs-pill-nav a.is-current::after {
  transform: translateX(-50%) scaleX(1);
}

.gs-pill-divider {
  width: 1px;
  height: 14px;
  background: rgba(31, 58, 74, 0.24);
}

.gs-pill-live {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  background: rgba(0, 168, 197, 0.12);
  border: 1.5px solid rgba(0, 168, 197, 0.4);
  border-radius: 16px;
}

.gs-pill-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-fresh);
  box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
  animation: gs-pulse 1.6s infinite;
}

@keyframes gs-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(46, 196, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

.gs-pill-live-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(31, 58, 74, 0.8);
  white-space: nowrap;
}

.gs-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.gs-burger span,
.gs-burger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--aqua-graphite);
}

.gs-burger span {
  transform: rotate(-45deg);
}

.gs-burger span:nth-child(2) {
  transform: rotate(45deg);
  margin-top: -2px;
}

.gs-burger::after {
  content: '';
  transform: rotate(45deg);
  margin-top: -2px;
}

.gs-burger[aria-expanded="false"] span,
.gs-burger[aria-expanded="false"]::after {
  transform: none;
}

.gs-burger[aria-expanded="false"] span {
  margin-top: 5px;
}

.gs-burger[aria-expanded="false"] span:first-child {
  margin-top: 0;
}

.gs-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--crystal-base);
  z-index: 99;
  padding: 100px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 520ms cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.gs-mobile-menu.is-open {
  clip-path: polygon(0 0, 120% 0, 100% 100%, 0 100%);
  transform: translateY(0%);
}

.gs-mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31, 58, 74, 0.24);
}

.gs-mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gs-mobile-menu-list a {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--aqua-graphite);
}

.gs-mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid var(--aqua-graphite);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--aqua-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-hero {
  min-height: calc(100vh - 120px);
  padding: 80px 0 120px;
  background: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.gs-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gs-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 80px;
  transform: rotate(-1.5deg);
  max-width: 100%;
  overflow: hidden;
}

.gs-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: var(--border-aqua);
  box-shadow: var(--shadow-aqua);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms, z-index 0s linear 280ms;
  background: var(--crystal-base);
  transform: rotate(2deg);
}

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

.gs-tile-1 {
  grid-column: 4 / span 5;
  grid-row: 1 / span 2;
  height: 460px;
  transform: rotate(0deg);
  z-index: 4;
}

.gs-tile-2 {
  grid-column: 1 / span 3;
  grid-row: 1;
  height: 200px;
  transform: rotate(-3deg);
  z-index: 2;
}

.gs-tile-3 {
  grid-column: 9 / span 4;
  grid-row: 1;
  height: 200px;
  transform: rotate(2deg);
  z-index: 2;
}

.gs-tile-4 {
  grid-column: 1 / span 3;
  grid-row: 2;
  height: 320px;
  transform: rotate(-2deg);
  z-index: 2;
}

.gs-tile-5 {
  grid-column: 9 / span 4;
  grid-row: 2;
  height: 180px;
  transform: rotate(1.5deg);
  z-index: 2;
}

.gs-tile-6 {
  grid-column: 1 / span 3;
  grid-row: 3;
  height: 220px;
  transform: rotate(-1.5deg);
  z-index: 2;
}

.gs-tile-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--crystal-base);
  border: 1px solid rgba(31, 58, 74, 0.4);
  border-radius: 6px;
  padding: 4px 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--aqua-graphite);
  letter-spacing: 0.06em;
}

.gs-tile-dimline {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(250, 252, 254, 0.92);
  border: 1px solid rgba(31, 58, 74, 0.4);
  padding: 3px 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--aqua-graphite);
  border-radius: 4px;
}

.gs-hero-text {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.6);
  right:50px;
}

.gs-hero-marker {
  grid-column: 7 / span 6;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--crystal-aqua);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gs-hero-title {
  grid-column: 7 / span 6;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  color: var(--aqua-graphite);
  letter-spacing: -0.04em;
  transform: skewY(2deg);
  margin-bottom: 24px;
}

.gs-hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
  animation: gs-rise 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes gs-rise {
  to { opacity: 1; transform: translateY(0); }
}

.gs-hero-divider {
  grid-column: 7 / span 6;
  width: 200px;
  height: 3px;
  background: var(--crystal-aqua);
  border-radius: 8px;
  transform: rotate(45deg);
  margin: 8px 0 24px;
}

.gs-hero-subtitle {
  grid-column: 7 / span 6;
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--aqua-graphite);
  line-height: 1.5;
  margin-bottom: 24px;
}

.gs-hero-passport {
  grid-column: 7 / span 6;
  background: rgba(250, 252, 254, 0.94);
  backdrop-filter: blur(14px);
  border: var(--border-aqua);
  border-radius: var(--radius-soft);
  padding: 14px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--aqua-graphite);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.gs-hero-cta {
  grid-column: 7 / span 6;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 96px;
  min-width: 280px;
  padding: 0 32px;
  background: var(--crystal-aqua);
  color: var(--pure-white);
  border: 2px solid var(--aqua-graphite);
  border-radius: var(--radius-soft);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 0 var(--aqua-graphite);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms;
  white-space: nowrap;
}

.gs-btn-primary:hover {
  transform: translate(4px, 4px);
  box-shadow: 10px 10px 0 0 var(--aqua-graphite);
  color: var(--pure-white);
}

.gs-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 24px;
  background: var(--pure-white);
  color: var(--aqua-graphite);
  border: 1.5px solid var(--aqua-graphite);
  border-radius: var(--radius-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 240ms, color 240ms;
}

.gs-btn-secondary:hover {
  background: var(--aqua-graphite);
  color: var(--pure-white);
}

.gs-section {
  padding: 120px 0;
  background: var(--crystal-base);
  position: relative;
}

.gs-section--white {
  background: var(--pure-white);
}

.gs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gs-section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.gs-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  color: var(--aqua-graphite);
  letter-spacing: -0.03em;
}

.gs-section-title-jp {
  display: block;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 0.35em;
  color: rgba(31, 58, 74, 0.7);
  margin-top: 8px;
}

.gs-section-sub {
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 22px);
  color: var(--crystal-aqua);
  line-height: 1.5;
}

.gs-section-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: rgba(31, 58, 74, 0.7);
  letter-spacing: 0.06em;
  margin-top: 12px;
  display: block;
}

.gs-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gs-bento-card {
  position: relative;
  background: var(--crystal-base);
  border: var(--border-aqua);
  border-radius: var(--radius-soft);
  padding: 24px;
  box-shadow: var(--shadow-aqua);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms, z-index 0s linear 280ms;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gs-bento-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-deep);
  z-index: 10;
  border: var(--border-crystal);
}

.gs-bento-card--tall { grid-row: span 2; }
.gs-bento-card--wide { grid-column: span 2; }
.gs-bento-card--big { grid-column: span 2; grid-row: span 2; }
.gs-bento-card--sq { grid-row: span 1; }

.gs-bento-marker {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(0, 168, 197, 0.12);
  border: 1.5px solid var(--aqua-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--aqua-graphite);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.gs-bento-marker--mint { background: rgba(46, 196, 182, 0.14); }
.gs-bento-marker--coral { background: rgba(255, 107, 90, 0.14); }

.gs-bento-media {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  min-height: 80px;
  background: var(--pale-aqua-crystal);
  position: relative;
}

.gs-bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-bento-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--aqua-graphite);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.gs-bento-name-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 12px;
  color: rgba(31, 58, 74, 0.7);
  margin-bottom: 12px;
}

.gs-bento-spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--aqua-graphite);
  line-height: 1.6;
  background: rgba(46, 196, 182, 0.14);
  border-top: 1px solid var(--aqua-graphite);
  padding: 10px;
  border-radius: 6px;
  margin-top: auto;
}

.gs-bento-card--big .gs-bento-name { font-size: 22px; }
.gs-bento-card--big .gs-bento-name-jp { font-size: 14px; }

.gs-pattern {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 25% 25%, rgba(0, 168, 197, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 75% 75%, rgba(46, 196, 182, 0.18) 0%, transparent 35%),
    linear-gradient(135deg, var(--crystal-base) 0%, var(--pale-aqua-crystal) 100%);
  position: relative;
}

.gs-pattern::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px dashed rgba(31, 58, 74, 0.32);
  border-radius: 8px;
}

.gs-pattern-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--aqua-graphite);
  text-align: center;
  padding: 16px;
  line-height: 1.6;
}

.gs-about-split {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 40px;
}

.gs-about-sticky {
  position: sticky;
  top: 140px;
  align-self: start;
}

.gs-about-photo {
  width: 100%;
  height: 600px;
  border-radius: 14px;
  overflow: hidden;
  border: var(--border-aqua);
  box-shadow: var(--shadow-aqua);
  margin-bottom: 20px;
}

.gs-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-about-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--aqua-graphite);
  margin-bottom: 16px;
}

.gs-about-specs {
  background: rgba(250, 252, 254, 0.94);
  border: var(--border-aqua);
  border-radius: var(--radius-soft);
  padding: 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(31, 58, 74, 0.8);
  line-height: 1.8;
}

.gs-about-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gs-about-card {
  background: var(--crystal-base);
  border: var(--border-aqua);
  border-radius: var(--radius-soft);
  padding: 32px;
  box-shadow: var(--shadow-graphite);
  position: relative;
}

.gs-about-card--quote {
  border-top: 3px solid var(--mint-fresh);
  box-shadow: 6px 10px 0 0 rgba(0, 168, 197, 0.24);
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.5;
  color: var(--crystal-aqua);
}

.gs-about-card--certs {
  background: rgba(46, 196, 182, 0.14);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(31, 58, 74, 0.85);
  line-height: 1.8;
}

.gs-about-card p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--aqua-graphite);
  margin-bottom: 12px;
}

.gs-about-card p:last-child { margin-bottom: 0; }

.gs-about-divider {
  height: 1px;
  border-top: 1px dashed rgba(31, 58, 74, 0.32);
  position: relative;
  margin: 8px 0;
}

.gs-about-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--crystal-aqua);
  border-radius: 50%;
}

.gs-marquee {
  overflow: hidden;
  padding: 32px 0;
  border-top: 1.5px solid var(--border-aqua);
  border-bottom: 1.5px solid var(--border-aqua);
  margin-top: 64px;
  background: var(--crystal-base);
}

.gs-marquee-track {
  display: flex;
  gap: 48px;
  animation: gs-marquee 60s linear infinite;
  white-space: nowrap;
}

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

.gs-marquee-track span {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 28px;
  color: rgba(31, 58, 74, 0.7);
  flex-shrink: 0;
}

.gs-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gs-faq-panel {
  background: var(--crystal-base);
  border: 1.5px solid rgba(31, 58, 74, 0.32);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-aqua);
  overflow: hidden;
  transition: box-shadow 240ms, border 240ms;
}

.gs-faq-panel.is-open {
  box-shadow: var(--shadow-deep);
  border: var(--border-crystal);
}

.gs-faq-head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  min-height: 100px;
}

.gs-faq-num {
  font-family: 'IBM Plex Mono', monospace;
  font-style: italic;
  font-size: 22px;
  color: var(--crystal-aqua);
  flex-shrink: 0;
  min-width: 60px;
}

.gs-faq-q {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.4vw, 22px);
  text-transform: uppercase;
  color: var(--aqua-graphite);
  flex: 1;
}

.gs-faq-toggle {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--aqua-graphite);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--crystal-aqua);
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-faq-panel.is-open .gs-faq-toggle {
  transform: rotate(45deg);
}

.gs-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-faq-panel.is-open .gs-faq-body {
  max-height: 600px;
}

.gs-faq-body-inner {
  padding: 0 28px 28px 112px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--aqua-graphite);
  line-height: 1.7;
  background: rgba(0, 168, 197, 0.06);
  border-left: 4px solid var(--aqua-graphite);
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 8px;
}

.gs-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gs-adv-card {
  position: relative;
  background: var(--crystal-base);
  border: 1.5px solid var(--aqua-graphite);
  border-radius: var(--radius-soft);
  padding: 32px 24px;
  box-shadow: var(--shadow-aqua);
  transition: flex-grow 420ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 280ms, box-shadow 280ms, z-index 0s linear 280ms;
  min-height: 260px;
  overflow: hidden;
}

.gs-adv-card:hover {
  transform: translate(6px, 6px);
  box-shadow: var(--shadow-deep);
  border: var(--border-crystal);
  z-index: 10;
}

.gs-adv-num {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 96px;
  color: rgba(0, 168, 197, 0.14);
  font-weight: 700;
  pointer-events: none;
  line-height: 1;
}

.gs-adv-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-adv-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--crystal-aqua);
  stroke-width: 1.5;
  fill: none;
}

.gs-adv-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--aqua-graphite);
  margin-bottom: 12px;
  line-height: 1.3;
}

.gs-adv-desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(31, 58, 74, 0.8);
}

.gs-process-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 60px;
}

.gs-process-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background: var(--aqua-graphite);
}

.gs-process-list::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: repeating-linear-gradient(to bottom, var(--aqua-graphite) 0, var(--aqua-graphite) 8px, transparent 8px, transparent 12px);
  opacity: 0.7;
}

.gs-process-step {
  position: relative;
  background: var(--crystal-base);
  border: 1.5px solid var(--aqua-graphite);
  border-radius: var(--radius-soft);
  padding: 24px 28px;
  box-shadow: var(--shadow-aqua);
  display: grid;
  grid-template-columns: auto 60px 1fr;
  gap: 20px;
  align-items: center;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms, border 240ms;
}

.gs-process-step::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--crystal-base);
  border: 2.5px solid var(--aqua-graphite);
  border-radius: 50%;
  z-index: 1;
}

.gs-process-step:hover,
.gs-process-step.is-active {
  transform: translateX(8px);
  box-shadow: var(--shadow-deep);
  border: var(--border-crystal);
}

.gs-process-num {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 32px;
  color: var(--crystal-aqua);
}

.gs-process-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-process-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--crystal-aqua);
  stroke-width: 1.5;
  fill: none;
}

.gs-process-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--aqua-graphite);
  margin-bottom: 4px;
}

.gs-process-content p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: rgba(31, 58, 74, 0.85);
  margin-bottom: 4px;
}

.gs-process-content span {
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  color: rgba(31, 58, 74, 0.6);
  letter-spacing: 0.08em;
}

.gs-cases-grid {
  column-count: 3;
  column-gap: 16px;
}

.gs-case-card {
  background: var(--crystal-base);
  border: var(--border-aqua);
  border-radius: var(--radius-soft);
  padding: 20px;
  box-shadow: var(--shadow-aqua);
  margin-bottom: 16px;
  break-inside: avoid;
  display: block;
  transition: transform 280ms, box-shadow 280ms, border 240ms, z-index 0s linear 280ms;
  position: relative;
}

.gs-case-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-deep);
  border: var(--border-crystal);
  z-index: 10;
}

.gs-case-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

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

.gs-case-swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1.5px solid var(--aqua-graphite);
}

.gs-case-photo {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--aqua-graphite);
}

.gs-case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-case-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--aqua-graphite);
  margin-bottom: 4px;
  line-height: 1.2;
}

.gs-case-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  color: rgba(31, 58, 74, 0.7);
  margin-bottom: 12px;
}

.gs-case-spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(31, 58, 74, 0.8);
  background: rgba(46, 196, 182, 0.14);
  padding: 10px;
  border-radius: 6px;
  line-height: 1.6;
}

.gs-case-media {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--aqua-graphite);
}

.gs-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-case-pattern {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 168, 197, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, var(--crystal-base), var(--pale-aqua-crystal));
  position: relative;
  border: 1px solid var(--aqua-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--aqua-graphite);
  padding: 16px;
  text-align: center;
}

.gs-team-canvas {
  position: relative;
  min-height: 900px;
  padding: 40px 0;
  overflow-x: hidden;
  max-width: 100%;
}

.gs-team-card {
  position: absolute;
  background: var(--crystal-base);
  border: var(--border-aqua);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-aqua);
  padding: 16px;
  cursor: grab;
  transition: box-shadow 240ms, border 240ms, z-index 0s;
}

.gs-team-card:active { cursor: grabbing; }

.gs-team-card:hover {
  box-shadow: var(--shadow-deep);
  border: var(--border-crystal);
  z-index: 50;
}

.gs-team-photo {
  width: 100%;
  height: 60%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--aqua-graphite);
}

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

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

.gs-team-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  color: var(--aqua-graphite);
  margin-bottom: 2px;
}

.gs-team-en {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--aqua-graphite);
  margin-bottom: 4px;
}

.gs-team-spec {
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 11px;
  color: var(--crystal-aqua);
}

.gs-cta-band {
  background: var(--aqua-graphite);
  color: var(--pure-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gs-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 40px, rgba(0, 168, 197, 0.06) 40px, rgba(0, 168, 197, 0.06) 41px);
  pointer-events: none;
}

.gs-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gs-cta-band h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--pure-white);
  margin-bottom: 16px;
}

.gs-cta-band p {
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 32px;
}

.gs-cta-band .gs-btn-primary {
  background: var(--crystal-aqua);
  color: var(--pure-white);
}

.gs-cta-form {
  background: var(--pure-white);
  color: var(--aqua-graphite);
  border-radius: var(--radius-soft);
  padding: 32px;
  box-shadow: var(--shadow-aqua);
}

.gs-cta-form h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--aqua-graphite);
  margin-bottom: 16px;
}

.gs-form-field {
  margin-bottom: 16px;
}

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

.gs-form-field input,
.gs-form-field textarea,
.gs-form-field select {
  width: 100%;
  height: 48px;
  padding: 12px 14px;
  background: var(--crystal-base);
  border: 1.5px solid var(--aqua-graphite);
  border-radius: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--aqua-graphite);
  transition: border-color 200ms, box-shadow 200ms;
}

.gs-form-field textarea {
  height: 96px;
  resize: vertical;
  font-family: inherit;
}

.gs-form-field input:focus,
.gs-form-field textarea:focus,
.gs-form-field select:focus {
  outline: none;
  border: var(--border-crystal);
  box-shadow: 0 0 0 3px rgba(0, 168, 197, 0.16);
}

.gs-form-field input::placeholder,
.gs-form-field textarea::placeholder {
  color: rgba(31, 58, 74, 0.5);
}

.gs-form-submit {
  width: 100%;
  height: 56px;
  background: var(--crystal-aqua);
  color: var(--pure-white);
  border: 2px solid var(--aqua-graphite);
  border-radius: var(--radius-soft);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 4px 4px 0 0 var(--aqua-graphite);
  transition: transform 200ms, box-shadow 200ms;
}

.gs-form-submit:hover {
  transform: translate(2px, 2px);
  box-shadow: 6px 6px 0 0 var(--aqua-graphite);
  color: var(--pure-white);
}

.gs-footer {
  background: var(--aqua-graphite);
  color: var(--pure-white);
  padding: 80px 0 32px;
  position: relative;
}

.gs-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crystal-aqua) 0%, var(--mint-fresh) 50%, var(--coral-pop) 100%);
}

.gs-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gs-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.gs-footer-brand h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--pure-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.gs-footer-brand .gs-footer-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.gs-footer-brand p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}

.gs-footer-contact {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.gs-footer-contact a {
  color: var(--crystal-aqua);
}

.gs-footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--crystal-aqua);
  margin-bottom: 16px;
}

.gs-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-footer-col a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 200ms;
}

.gs-footer-col a:hover {
  color: var(--crystal-aqua);
}

.gs-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

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

.gs-footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 200ms;
}

.gs-footer-legal a:hover {
  color: var(--crystal-aqua);
}

.gs-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: var(--pure-white);
  border: 2px solid var(--aqua-graphite);
  border-radius: var(--radius-soft);
  box-shadow: 8px 8px 0 0 rgba(31, 58, 74, 0.24);
  padding: 24px;
  z-index: 200;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--aqua-graphite);
  line-height: 1.6;
}

.gs-cookie-banner.is-hidden { display: none; }

.gs-cookie-banner h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--aqua-graphite);
  margin-bottom: 8px;
}

.gs-cookie-banner p {
  margin-bottom: 16px;
  font-size: 12px;
}

.gs-cookie-banner a {
  color: var(--crystal-aqua);
  text-decoration: underline;
}

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

.gs-cookie-btn {
  flex: 1;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1.5px solid var(--aqua-graphite);
  transition: background 200ms, color 200ms;
}

.gs-cookie-btn--accept {
  background: var(--crystal-aqua);
  color: var(--pure-white);
}

.gs-cookie-btn--accept:hover {
  background: var(--aqua-graphite);
  color: var(--pure-white);
}

.gs-cookie-btn--decline {
  background: var(--pure-white);
  color: var(--aqua-graphite);
}

.gs-cookie-btn--decline:hover {
  background: var(--aqua-graphite);
  color: var(--pure-white);
}

.gs-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  text-align: center;
  background: var(--crystal-base);
}

.gs-thanks-card {
  max-width: 640px;
  background: var(--pure-white);
  border: 2px solid var(--aqua-graphite);
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 8px 8px 0 0 rgba(0, 168, 197, 0.24);
}

.gs-thanks-card h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--aqua-graphite);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.gs-thanks-card p {
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--crystal-aqua);
  margin-bottom: 32px;
  line-height: 1.5;
}

.gs-legal {
  padding: 80px 0;
  background: var(--crystal-base);
}

.gs-legal-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.gs-legal h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--aqua-graphite);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.gs-legal h1 + p {
  font-family: 'Shippori Mincho', serif;
  color: var(--crystal-aqua);
  font-size: 16px;
  margin-bottom: 32px;
}

.gs-legal h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--aqua-graphite);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.gs-legal p, .gs-legal li {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(31, 58, 74, 0.9);
  margin-bottom: 12px;
}

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

.gs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.gs-contact-info {
  background: var(--crystal-base);
  border: var(--border-aqua);
  border-radius: var(--radius-soft);
  padding: 40px;
  box-shadow: var(--shadow-aqua);
}

.gs-contact-info h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--aqua-graphite);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.gs-contact-info > p {
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--crystal-aqua);
  margin-bottom: 32px;
}

.gs-contact-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(31, 58, 74, 0.24);
}

.gs-contact-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.gs-contact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--crystal-aqua);
  margin-bottom: 6px;
}

.gs-contact-value {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--aqua-graphite);
  line-height: 1.5;
}

.gs-contact-value a {
  color: var(--crystal-aqua);
}

.gs-page-hero {
  padding: 80px 0 60px;
  background: var(--crystal-base);
  position: relative;
}

.gs-page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--crystal-aqua);
}

.gs-page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gs-page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--aqua-graphite);
  margin-bottom: 12px;
}

.gs-page-hero h1 span {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.3em;
  font-weight: 600;
  color: rgba(31, 58, 74, 0.7);
  display: block;
  margin-top: 8px;
}

.gs-page-hero p {
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--crystal-aqua);
  max-width: 720px;
  line-height: 1.5;
}

.gs-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.gs-service-detail-media {
  position: sticky;
  top: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: var(--border-aqua);
  box-shadow: var(--shadow-aqua);
}

.gs-service-detail-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gs-service-detail-body h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--aqua-graphite);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.gs-service-detail-body > p {
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--crystal-aqua);
  margin-bottom: 24px;
}

.gs-service-detail-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--aqua-graphite);
  margin-top: 24px;
  margin-bottom: 8px;
}

.gs-service-detail-body p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(31, 58, 74, 0.9);
  margin-bottom: 16px;
}

.gs-service-detail-spec {
  background: rgba(46, 196, 182, 0.14);
  border: var(--border-aqua);
  border-radius: var(--radius-soft);
  padding: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--aqua-graphite);
  line-height: 1.8;
  margin: 24px 0;
}

.gs-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--crystal-aqua);
  color: var(--pure-white);
  border: 2px solid var(--aqua-graphite);
  border-radius: 12px;
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin: 16px 0;
  box-shadow: 4px 4px 0 0 var(--aqua-graphite);
}

.gs-price-tag small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .gs-pill-nav { display: none; }
  .gs-pill-live { display: none; }
  .gs-burger { display: flex; }
}

@media (max-width: 900px) {
  body { padding-top: 110px; max-width: 100vw; overflow-x: hidden; }
  .gs-pill-header { width: calc(100% - 16px); height: 64px; padding: 0 12px; top: 16px; }
  .gs-pill-logo-icon { width: 32px; height: 32px; }
  .gs-pill-logo-domain { font-size: 13px; }
  .gs-pill-logo-jp { font-size: 9px; }

  .gs-hero { padding: 40px 0 80px; overflow-x: hidden; }
  .gs-hero-inner { padding: 0 16px; }
  .gs-hero-grid { grid-template-columns: 1fr 1fr; gap: 8px; transform: none; max-width: 100%; overflow-x: hidden; }
  .gs-tile-1 { grid-column: span 2; height: 240px; transform: none; }
  .gs-tile-2, .gs-tile-3, .gs-tile-4, .gs-tile-5, .gs-tile-6 { height: 140px; transform: none; grid-column: span 1; grid-row: auto; }
  .gs-hero-text { grid-template-columns: 1fr; gap: 16px; }
  .gs-hero-marker, .gs-hero-title, .gs-hero-divider, .gs-hero-subtitle, .gs-hero-passport, .gs-hero-cta { grid-column: 1; }
  .gs-hero-title { font-size: clamp(40px, 12vw, 64px); transform: none; }
  .gs-hero-cta { flex-direction: column; align-items: stretch; }
  .gs-btn-primary { width: 100%; min-width: 0; height: 64px; font-size: 14px; }

  .gs-section { padding: 80px 0; overflow-x: hidden; }
  .gs-container { padding: 0 16px; }
  .gs-section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }

  .gs-bento { grid-template-columns: repeat(2, 1fr); }
  .gs-bento-card--big, .gs-bento-card--wide { grid-column: span 2; }
  .gs-bento-card--tall { grid-row: span 2; }

  .gs-about-split { grid-template-columns: 1fr; }
  .gs-about-sticky { position: static; }
  .gs-about-photo { height: 380px; }

  .gs-advantages-grid { grid-template-columns: 1fr; }

  .gs-process-list { padding-left: 40px; }
  .gs-process-step { grid-template-columns: 1fr; gap: 8px; }
  .gs-process-step::before { left: -32px; width: 14px; height: 14px; }
  .gs-process-list::before { left: 12px; }
  .gs-process-list::after { left: 10px; }

  .gs-cases-grid { column-count: 1; }

  .gs-team-canvas { min-height: auto; display: flex; flex-direction: column; gap: 16px; overflow-x: hidden; }
  .gs-team-card { position: static; width: 100% !important; height: auto !important; transform: none !important; }

  .gs-cta-inner { grid-template-columns: 1fr; gap: 32px; }

  .gs-footer { overflow-x: hidden; }
  .gs-footer-inner { padding: 0 16px; }
  .gs-footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .gs-faq-head { flex-wrap: wrap; gap: 12px; padding: 16px; min-height: 0; }
  .gs-faq-num { min-width: 0; }
  .gs-faq-body-inner { padding-left: 16px; }

  .gs-contact-grid { grid-template-columns: 1fr; }
  .gs-service-detail { grid-template-columns: 1fr; }
  .gs-service-detail-media { position: static; }
  .gs-service-detail-media img { height: 320px; }

  .gs-cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

@media (max-width: 480px) {
  .gs-bento { grid-template-columns: 1fr; }
  .gs-bento-card--big, .gs-bento-card--wide { grid-column: span 1; }
}
