:root {
  --gx-bg-glacier: #FAFAFA;
  --gx-bg-pure: #FFFFFF;
  --gx-text-deep: #064E3B;
  --gx-text-secondary: #34D399;
  --gx-accent-emerald: #10B981;
  --gx-accent-emerald-deep: #059669;
  --gx-border-mint: #A7F3D0;
  --gx-soft-mint: #6EE7B7;
  --gx-pastel-green: #D1FAE5;
  --gx-shadow-card: 0 20px 60px rgba(6,78,59,0.15);
  --gx-shadow-cta: 0 12px 32px rgba(16,185,129,0.45);
  --gx-shadow-hover: 0 28px 80px rgba(16,185,129,0.35);
  --gx-shadow-sidebar: 0 8px 32px rgba(16,185,129,0.15);
}

html, body {
  background: var(--gx-bg-glacier);
  color: var(--gx-text-deep);
  font-family: 'Outfit', 'Hiragino Sans', 'Yu Gothic', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

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

* {
  box-sizing: border-box;
}

a {
  color: var(--gx-accent-emerald-deep);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gx-text-deep);
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 700;
  color: var(--gx-text-deep);
  margin: 0;
  letter-spacing: -0.01em;
}

.gx-h1 {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: clamp(44px, 9vw, 110px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  word-spacing: 0.08em;
  color: var(--gx-text-deep);
  text-transform: none;
}

.gx-h2 {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--gx-text-deep);
}

.gx-h3 {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  color: var(--gx-text-deep);
}

.gx-caption-tech {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 12px;
  color: var(--gx-text-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gx-body {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gx-text-deep);
}

.gx-tech-mono {
  font-family: 'Space Mono', monospace;
  color: var(--gx-text-secondary);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.gx-sidebar-dock {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--gx-bg-pure);
  border-right: 4px solid var(--gx-accent-emerald);
  box-shadow: var(--gx-shadow-sidebar);
  padding: 32px 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
  overflow-y: auto;
}

.gx-logo-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gx-border-mint);
}

.gx-logo-mark {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gx-accent-emerald) 0%, var(--gx-soft-mint) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gx-bg-pure);
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  box-shadow: var(--gx-shadow-cta);
}

.gx-logo-domain {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.gx-logo-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gx-text-deep);
  line-height: 1.2;
}

.gx-logo-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--gx-text-deep);
  opacity: 0.65;
  letter-spacing: 0.05em;
}

.gx-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gx-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 4px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--gx-text-deep);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.gx-nav-link:hover {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  transform: translateX(4px);
}

.gx-nav-link.is-active {
  background: var(--gx-pastel-green);
  color: var(--gx-text-deep);
}

.gx-nav-link-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.gx-cta-sidebar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  box-shadow: var(--gx-shadow-cta);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
  text-align: center;
  white-space: nowrap;
}

.gx-cta-sidebar:hover {
  transform: translateY(-2px);
  box-shadow: var(--gx-shadow-hover);
  color: var(--gx-bg-pure);
}

.gx-sidebar-contact {
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-text-deep);
  opacity: 0.7;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.gx-main-shell {
  margin-left: 280px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

.gx-mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gx-bg-pure);
  border-bottom: 2px solid var(--gx-accent-emerald);
  padding: 12px 20px;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(6,78,59,0.08);
}

.gx-mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gx-mobile-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gx-accent-emerald) 0%, var(--gx-soft-mint) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gx-bg-pure);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

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

.gx-mobile-logo-domain {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.gx-mobile-logo-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gx-text-deep);
}

.gx-burger-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--gx-accent-emerald);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.gx-burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gx-accent-emerald-deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.gx-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gx-bg-pure);
  z-index: 95;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 90px 32px 32px;
  display: flex;
  flex-direction: column;
}

.gx-mobile-drawer.is-open {
  transform: translateX(0);
}

.gx-mobile-drawer .gx-nav-link {
  font-size: 22px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--gx-pastel-green);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.gx-mobile-drawer.is-open .gx-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.gx-mobile-drawer .gx-nav-link:nth-child(1) { transition-delay: 0.08s; }
.gx-mobile-drawer .gx-nav-link:nth-child(2) { transition-delay: 0.16s; }
.gx-mobile-drawer .gx-nav-link:nth-child(3) { transition-delay: 0.24s; }
.gx-mobile-drawer .gx-nav-link:nth-child(4) { transition-delay: 0.32s; }
.gx-mobile-drawer .gx-nav-link:nth-child(5) { transition-delay: 0.40s; }
.gx-mobile-drawer .gx-nav-link:nth-child(6) { transition-delay: 0.48s; }

.gx-hero {
  min-height: calc(100vh - 0px);
  position: relative;
  overflow: hidden;
  background: var(--gx-bg-glacier);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  max-width: 100%;
}

.gx-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--gx-pastel-green) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gx-pastel-green) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.gx-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gx-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gx-accent-emerald);
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.gx-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gx-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 999px;
  padding: 8px 16px;
  width: fit-content;
  box-shadow: var(--gx-shadow-card);
}

.gx-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--gx-accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gx-accent-emerald);
}

.gx-hero-eyebrow-text {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gx-text-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gx-hero-subline {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--gx-text-deep);
  opacity: 0.75;
  letter-spacing: 0.08em;
  border-left: 3px solid var(--gx-accent-emerald);
  padding-left: 16px;
  line-height: 1.6;
}

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

.gx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  padding: 20px 36px;
  border-radius: 8px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: var(--gx-shadow-cta);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.gx-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--gx-shadow-hover);
  color: var(--gx-bg-pure);
}

.gx-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gx-bg-pure);
  color: var(--gx-text-deep);
  padding: 20px 36px;
  border-radius: 8px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: 3px solid var(--gx-accent-emerald);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gx-btn-secondary:hover {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  transform: translateY(-3px);
}

.gx-hero-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.gx-hero-meta {
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--gx-shadow-card);
}

.gx-hero-meta-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gx-accent-emerald-deep);
  line-height: 1;
}

.gx-hero-meta-label {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 12px;
  color: var(--gx-text-deep);
  margin-top: 6px;
  line-height: 1.4;
}

.gx-hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gx-hero-crystal {
  width: 380px;
  height: 380px;
  position: relative;
  animation: gx-float 6s ease-in-out infinite;
}

.gx-hero-crystal svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 50px rgba(16,185,129,0.35));
}

@keyframes gx-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

.gx-hero-badge {
  position: absolute;
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--gx-shadow-card);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 12px;
  color: var(--gx-text-deep);
  font-weight: 600;
}

.gx-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gx-accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gx-accent-emerald);
}

.gx-hero-badge-1 { top: 8%; left: 0%; animation: gx-float 5s ease-in-out infinite 0.5s; }
.gx-hero-badge-2 { bottom: 12%; right: 0%; animation: gx-float 5s ease-in-out infinite 1s; }
.gx-hero-badge-3 { bottom: 38%; left: 0%; animation: gx-float 5s ease-in-out infinite 1.5s; }

.gx-section {
  padding: 100px 60px;
  position: relative;
}

.gx-section-narrow {
  padding: 80px 60px;
}

.gx-section-header {
  max-width: 1320px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.gx-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gx-section-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gx-accent-emerald);
}

.gx-section-eyebrow-text {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gx-section-title {
  margin-bottom: 16px;
}

.gx-section-lede {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gx-text-deep);
  opacity: 0.85;
}

.gx-card {
  background: var(--gx-bg-pure);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--gx-shadow-card);
  border: 1px solid var(--gx-border-mint);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, z-index 0s;
  position: relative;
  z-index: 1;
}

.gx-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--gx-shadow-hover);
  z-index: 10;
}

.gx-card-accent {
  border: 2px solid var(--gx-accent-emerald);
}

.gx-stack-cards {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gx-stack-card {
  background: var(--gx-bg-pure);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--gx-shadow-card);
  border: 1px solid var(--gx-border-mint);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  z-index: 1;
}

.gx-stack-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--gx-shadow-hover);
  border-color: var(--gx-accent-emerald);
  z-index: 10;
}

.gx-stack-card-media {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--gx-pastel-green);
}

.gx-stack-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gx-stack-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gx-bg-pure);
  color: var(--gx-text-deep);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.gx-stack-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.gx-stack-card-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gx-text-deep);
  line-height: 1.25;
}

.gx-stack-card-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gx-text-deep);
  opacity: 0.85;
}

.gx-stack-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gx-pastel-green);
  padding-top: 14px;
  margin-top: auto;
}

.gx-stack-card-price {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gx-accent-emerald-deep);
}

.gx-stack-card-time {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gx-text-deep);
  opacity: 0.7;
}

.gx-bento {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

.gx-bento-item {
  background: var(--gx-bg-pure);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--gx-shadow-card);
  border: 1px solid var(--gx-border-mint);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--gx-text-deep);
}

.gx-bento-item:hover {
  transform: scale(1.03);
  box-shadow: var(--gx-shadow-hover);
  z-index: 10;
}

.gx-bento-item.is-large { grid-column: span 2; grid-row: span 2; }
.gx-bento-item.is-wide { grid-column: span 2; grid-row: span 1; }
.gx-bento-item.is-medium { grid-column: span 1; grid-row: span 2; }
.gx-bento-item.is-small { grid-column: span 1; grid-row: span 1; }

.gx-bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.gx-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,78,59,0.1) 0%, rgba(6,78,59,0.85) 100%);
  z-index: 1;
}

.gx-bento-body {
  position: relative;
  z-index: 2;
  color: var(--gx-bg-pure);
}

.gx-bento-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gx-soft-mint);
  margin-bottom: 6px;
}

.gx-bento-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gx-bg-pure);
  line-height: 1.2;
  margin-bottom: 6px;
}

.gx-bento-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 13px;
  color: var(--gx-pastel-green);
  line-height: 1.5;
}

.gx-node-graph {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: stretch;
}

.gx-node {
  background: var(--gx-bg-pure);
  border: 2px solid var(--gx-border-mint);
  border-radius: 18px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.gx-node:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--gx-accent-emerald);
  box-shadow: var(--gx-shadow-hover);
  z-index: 10;
}

.gx-node-num {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gx-accent-emerald);
  line-height: 1;
}

.gx-node-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gx-text-deep);
  line-height: 1.25;
}

.gx-node-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 13px;
  color: var(--gx-text-deep);
  opacity: 0.8;
  line-height: 1.55;
}

.gx-node-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gx-pastel-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gx-accent-emerald-deep);
}

.gx-about-split {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.gx-about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--gx-shadow-card);
  min-height: 540px;
  background: var(--gx-pastel-green);
}

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

.gx-about-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--gx-bg-pure);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  box-shadow: var(--gx-shadow-card);
}

.gx-about-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gx-accent-emerald-deep);
  line-height: 1;
}

.gx-about-stat-label {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 11px;
  color: var(--gx-text-deep);
  opacity: 0.8;
  margin-top: 4px;
  line-height: 1.3;
}

.gx-about-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.gx-about-paragraph {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gx-text-deep);
  opacity: 0.9;
}

.gx-about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.gx-about-fact {
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--gx-shadow-card);
}

.gx-about-fact-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gx-about-fact-value {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  color: var(--gx-text-deep);
  margin-top: 6px;
  line-height: 1.5;
  font-weight: 500;
}

.gx-flex-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 22px;
  min-height: 540px;
}

.gx-flex-card {
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, z-index 0s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gx-flex-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gx-pastel-green);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.gx-flex-card:hover {
  transform: scale(1.06);
  box-shadow: var(--gx-shadow-hover);
  z-index: 10;
}

.gx-flex-card:hover::before {
  opacity: 0.5;
}

.gx-flex-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gx-accent-emerald);
  line-height: 1;
}

.gx-flex-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gx-text-deep);
  line-height: 1.25;
}

.gx-flex-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  color: var(--gx-text-deep);
  opacity: 0.8;
  line-height: 1.6;
}

.gx-team-canvas {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  min-height: 580px;
}

.gx-team-card {
  position: absolute;
  background: var(--gx-bg-pure);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--gx-shadow-card);
  border: 1px solid var(--gx-border-mint);
  width: 220px;
  cursor: grab;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, z-index 0s;
  z-index: 1;
  user-select: none;
}

.gx-team-card.is-dragging {
  cursor: grabbing;
  transform: scale(1.06);
  box-shadow: var(--gx-shadow-hover);
  z-index: 20;
}

.gx-team-card-media {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gx-pastel-green);
  margin-bottom: 12px;
}

.gx-team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gx-team-card-name {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gx-text-deep);
}

.gx-team-card-role {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.gx-team-card-exp {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 13px;
  color: var(--gx-text-deep);
  opacity: 0.8;
  margin-top: 8px;
}

.gx-team-pos-1 { top: 30px; left: 40px; }
.gx-team-pos-2 { top: 80px; left: 280px; }
.gx-team-pos-3 { top: 200px; left: 540px; }
.gx-team-pos-4 { top: 60px; left: 800px; }
.gx-team-pos-5 { top: 250px; left: 1020px; }

.gx-coverflow {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
  perspective: 1600px;
}

.gx-coverflow-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gx-accent-emerald) var(--gx-pastel-green);
}

.gx-coverflow-card {
  flex: 0 0 380px;
  background: var(--gx-bg-pure);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--gx-shadow-card);
  border: 1px solid var(--gx-border-mint);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gx-coverflow-card.is-active {
  transform: scale(1.04);
  border-color: var(--gx-accent-emerald);
  box-shadow: var(--gx-shadow-hover);
}

.gx-coverflow-quote {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gx-text-deep);
}

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

.gx-coverflow-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gx-pastel-green);
  padding-top: 14px;
}

.gx-coverflow-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gx-pastel-green);
  overflow: hidden;
}

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

.gx-coverflow-meta-name {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gx-text-deep);
}

.gx-coverflow-meta-loc {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.06em;
}

.gx-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gx-faq-item {
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--gx-shadow-card);
  transition: box-shadow 0.3s ease;
}

.gx-faq-item.is-open {
  box-shadow: var(--gx-shadow-hover);
  border-color: var(--gx-accent-emerald);
}

.gx-faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gx-text-deep);
  text-align: left;
}

.gx-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gx-pastel-green);
  color: var(--gx-accent-emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.gx-faq-item.is-open .gx-faq-icon {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  transform: rotate(45deg);
}

.gx-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.gx-faq-content {
  padding: 0 26px 24px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gx-text-deep);
  opacity: 0.85;
}

.gx-contact-split {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.gx-contact-form-wrap {
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--gx-shadow-card);
}

.gx-contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gx-contact-info-card {
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: var(--gx-shadow-card);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gx-contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gx-pastel-green);
  color: var(--gx-accent-emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.gx-contact-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gx-contact-info-value {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gx-text-deep);
  margin-top: 4px;
  line-height: 1.5;
  word-break: break-word;
}

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

.gx-contact-info-value a:hover {
  color: var(--gx-accent-emerald-deep);
}

.gx-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.gx-form-row.is-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gx-form-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.gx-form-input,
.gx-form-textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gx-border-mint);
  padding: 12px 4px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  color: var(--gx-text-deep);
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
}

.gx-form-input:focus,
.gx-form-textarea:focus {
  border-bottom-color: var(--gx-accent-emerald);
}

.gx-form-textarea {
  resize: vertical;
  min-height: 100px;
  border: 2px solid var(--gx-border-mint);
  border-radius: 10px;
  padding: 14px;
}

.gx-form-textarea:focus {
  border-color: var(--gx-accent-emerald);
}

.gx-form-submit {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  border: none;
  padding: 18px 32px;
  border-radius: 8px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--gx-shadow-cta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.gx-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--gx-shadow-hover);
}

.gx-form-success {
  display: none;
  background: var(--gx-pastel-green);
  color: var(--gx-text-deep);
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 4px solid var(--gx-accent-emerald);
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 600;
}

.gx-form-success.is-visible {
  display: block;
}

.gx-footer {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  border-radius: 24px 24px 0 0;
  padding: 60px 60px 30px;
  position: relative;
}

.gx-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.gx-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.gx-footer-logo-mark {
  width: 48px;
  height: 48px;
  background: var(--gx-bg-pure);
  color: var(--gx-accent-emerald-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.gx-footer-logo-text {
  display: flex;
  flex-direction: column;
}

.gx-footer-logo-domain {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-bg-pure);
  opacity: 0.85;
  letter-spacing: 0.1em;
}

.gx-footer-logo-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gx-bg-pure);
}

.gx-footer-tagline {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gx-bg-pure);
  opacity: 0.9;
}

.gx-footer-col-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gx-bg-pure);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.gx-footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gx-footer-link {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  color: var(--gx-bg-pure);
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.gx-footer-link:hover {
  color: var(--gx-bg-pure);
  opacity: 1;
  transform: translateX(3px);
}

.gx-footer-address {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gx-bg-pure);
  opacity: 0.9;
  margin: 0;
  font-style: normal;
}

.gx-footer-bottom {
  max-width: 1320px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gx-footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gx-bg-pure);
  opacity: 0.85;
  letter-spacing: 0.05em;
}

.gx-footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.gx-footer-legal-link {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-bg-pure);
  opacity: 0.85;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.gx-footer-legal-link:hover {
  opacity: 1;
  color: var(--gx-bg-pure);
}

.gx-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--gx-shadow-hover);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gx-cookie-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gx-text-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gx-cookie-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--gx-text-deep);
  opacity: 0.85;
}

.gx-cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.gx-cookie-btn {
  flex: 1;
  padding: 11px 14px;
  border-radius: 8px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gx-cookie-btn-accept {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
}

.gx-cookie-btn-accept:hover {
  background: var(--gx-accent-emerald-deep);
  transform: translateY(-2px);
}

.gx-cookie-btn-decline {
  background: transparent;
  color: var(--gx-text-deep);
  border: 1.5px solid var(--gx-border-mint);
}

.gx-cookie-btn-decline:hover {
  background: var(--gx-pastel-green);
}

.gx-cookie-legal {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
}

.gx-cookie-legal a {
  color: var(--gx-accent-emerald-deep);
  text-decoration: underline;
}

.gx-page-hero {
  padding: 100px 60px 60px;
  position: relative;
  background: var(--gx-bg-glacier);
  overflow: hidden;
}

.gx-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--gx-pastel-green) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gx-pastel-green) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.gx-page-hero-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 2;
}

.gx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gx-text-deep);
  opacity: 0.7;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.gx-breadcrumb a {
  color: var(--gx-accent-emerald-deep);
}

.gx-page-hero-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--gx-text-deep);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
}

.gx-page-hero-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gx-text-deep);
  opacity: 0.85;
  margin-top: 18px;
  max-width: 720px;
}

.gx-cta-banner {
  background: var(--gx-text-deep);
  color: var(--gx-bg-pure);
  border-radius: 24px;
  padding: 60px;
  max-width: 1320px;
  margin: 60px auto 100px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.gx-cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(16,185,129,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.gx-cta-banner-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gx-soft-mint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gx-cta-banner-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--gx-bg-pure);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gx-cta-banner-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gx-soft-mint);
  margin-top: 16px;
  opacity: 0.95;
}

.gx-cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gx-cta-banner .gx-btn-primary {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
}

.gx-cta-banner .gx-btn-secondary {
  background: transparent;
  color: var(--gx-bg-pure);
  border-color: var(--gx-soft-mint);
}

.gx-cta-banner .gx-btn-secondary:hover {
  background: var(--gx-soft-mint);
  color: var(--gx-text-deep);
}

.gx-blog-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gx-blog-card {
  background: var(--gx-bg-pure);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--gx-shadow-card);
  border: 1px solid var(--gx-border-mint);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
  z-index: 1;
}

.gx-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gx-shadow-hover);
  z-index: 10;
}

.gx-blog-card-media {
  height: 220px;
  overflow: hidden;
  background: var(--gx-pastel-green);
}

.gx-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gx-blog-card:hover .gx-blog-card-media img {
  transform: scale(1.06);
}

.gx-blog-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.gx-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gx-blog-card-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gx-text-deep);
  line-height: 1.3;
}

.gx-blog-card-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gx-text-deep);
  opacity: 0.85;
}

.gx-blog-card-link {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-weight: 700;
  color: var(--gx-accent-emerald-deep);
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gx-blog-card-link:hover {
  color: var(--gx-text-deep);
}

.gx-careers-list {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gx-career-row {
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--gx-shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gx-career-row:hover {
  transform: translateX(6px);
  box-shadow: var(--gx-shadow-hover);
  border-color: var(--gx-accent-emerald);
}

.gx-career-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gx-text-deep);
  line-height: 1.2;
}

.gx-career-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  color: var(--gx-text-deep);
}

.gx-career-meta-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gx-cta-row-extra {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.gx-prose {
  max-width: 860px;
  margin: 0 auto;
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--gx-text-deep);
}

.gx-prose h3 {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gx-text-deep);
  margin: 32px 0 14px;
  line-height: 1.25;
}

.gx-prose p {
  margin: 0 0 18px;
}

.gx-prose ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.gx-prose li {
  margin-bottom: 8px;
}

.gx-ring-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gx-accent-emerald);
  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;
  box-shadow: 0 0 16px rgba(16,185,129,0.5);
  opacity: 0;
}

.gx-ring-cursor.is-active {
  opacity: 1;
}

.gx-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.gx-pattern-bg {
  background-image:
    linear-gradient(45deg, var(--gx-pastel-green) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gx-pastel-green) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gx-pastel-green) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gx-pastel-green) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, 12px 0;
}

.gx-stats-strip {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--gx-shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gx-stat-cell {
  text-align: center;
  border-right: 1px solid var(--gx-pastel-green);
}

.gx-stat-cell:last-child {
  border-right: none;
}

.gx-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gx-accent-emerald-deep);
  line-height: 1;
}

.gx-stat-label {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 13px;
  color: var(--gx-text-deep);
  opacity: 0.8;
  margin-top: 8px;
  line-height: 1.4;
}

.gx-case-detail-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gx-case-detail-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--gx-shadow-card);
  height: 460px;
  background: var(--gx-pastel-green);
}

.gx-case-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gx-case-detail-tag {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gx-case-detail-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gx-text-deep);
  line-height: 1.2;
  margin-bottom: 18px;
}

.gx-case-detail-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gx-text-deep);
  opacity: 0.88;
  margin-bottom: 18px;
}

.gx-case-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.gx-case-fact {
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  border-radius: 12px;
  padding: 16px;
}

.gx-case-fact-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gx-case-fact-value {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gx-text-deep);
  margin-top: 6px;
}

.gx-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.gx-pagination-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gx-bg-pure);
  border: 1px solid var(--gx-border-mint);
  color: var(--gx-text-deep);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gx-pagination-btn.is-active {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  border-color: var(--gx-accent-emerald);
}

.gx-pagination-btn:hover {
  border-color: var(--gx-accent-emerald);
}

/* Article Detail Page Styles */
.gx-blog-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gx-accent-emerald-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gx-blog-category-tag {
  background: var(--gx-accent-emerald);
  color: var(--gx-bg-pure);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
}

.gx-article-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: stretch;
}

.gx-article-main {
  background: var(--gx-bg-pure);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--gx-shadow-card);
  border: 1px solid var(--gx-border-mint);
}

.gx-article-lead {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--gx-text-deep);
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gx-pastel-green);
}

.gx-article-lead p {
  margin: 0;
}

.gx-article-section {
  margin-bottom: 40px;
}

.gx-article-section h2.gx-h3 {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gx-text-deep);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gx-border-mint);
}

.gx-article-section p {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gx-text-deep);
  margin-bottom: 16px;
}

.gx-article-highlight {
  background: var(--gx-pastel-green);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 20px 0;
  border-left: 4px solid var(--gx-accent-emerald);
}

.gx-article-highlight h4 {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gx-text-deep);
  margin-bottom: 14px;
}

.gx-article-highlight ul {
  margin: 0;
  padding-left: 20px;
}

.gx-article-highlight li {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gx-text-deep);
  margin-bottom: 10px;
}

.gx-article-highlight li:last-child {
  margin-bottom: 0;
}

.gx-article-highlight p {
  margin-bottom: 12px;
}

.gx-article-highlight p:last-child {
  margin-bottom: 0;
}

.gx-article-conclusion {
  background: var(--gx-bg-glacier);
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  border: 1px solid var(--gx-border-mint);
}

.gx-article-conclusion ol {
  margin: 16px 0;
  padding-left: 24px;
}

.gx-article-conclusion li {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gx-text-deep);
  margin-bottom: 10px;
}

.gx-article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gx-sidebar-card {
  background: var(--gx-bg-pure);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--gx-shadow-card);
  border: 1px solid var(--gx-border-mint);
}

.gx-sidebar-card-title {
  font-family: 'Oswald', 'Hiragino Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gx-text-deep);
  margin-bottom: 12px;
}

.gx-sidebar-card-text {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gx-text-deep);
  opacity: 0.85;
  margin-bottom: 16px;
}

.gx-sidebar-card .gx-btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 14px;
}

.gx-sidebar-service-list,
.gx-sidebar-blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gx-sidebar-service-list li a,
.gx-sidebar-blog-list li a {
  font-family: 'Outfit', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  color: var(--gx-accent-emerald-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.gx-sidebar-service-list li a::before,
.gx-sidebar-blog-list li a::before {
  content: '›';
  font-size: 16px;
  font-weight: 700;
}

.gx-sidebar-service-list li a:hover,
.gx-sidebar-blog-list li a:hover {
  color: var(--gx-text-deep);
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .gx-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .gx-bento-item.is-large { grid-column: span 2; }
  .gx-bento-item.is-wide { grid-column: span 2; }
  .gx-bento-item.is-medium { grid-column: span 1; grid-row: span 1; }
  .gx-team-canvas { display: grid; grid-template-columns: repeat(2, 1fr); min-height: auto; }
  .gx-team-card { position: relative; top: auto !important; left: auto !important; width: auto; }
  .gx-flex-grid { grid-template-columns: repeat(2, 1fr); }
  .gx-stack-cards { grid-template-columns: repeat(2, 1fr); }
  .gx-article-layout { grid-template-columns: 1fr; gap: 30px; }
  .gx-article-sidebar { flex-direction: row; flex-wrap: wrap; }
  .gx-sidebar-card { flex: 1 1 280px; }
}

@media (max-width: 1024px) {
  .gx-sidebar-dock { display: none; }
  .gx-main-shell { margin-left: 0; }
  .gx-mobile-bar { display: flex; }
  .gx-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .gx-hero-visual { height: 380px; }
  .gx-hero-crystal { width: 280px; height: 280px; }
  .gx-hero { padding: 40px 24px 60px; min-height: auto; }
  .gx-section { padding: 70px 24px; }
  .gx-section-narrow { padding: 60px 24px; }
  .gx-section-header { grid-template-columns: 1fr; gap: 20px; }
  .gx-about-split { grid-template-columns: 1fr; gap: 30px; }
  .gx-about-media { min-height: 380px; }
  .gx-contact-split { grid-template-columns: 1fr; gap: 30px; }
  .gx-cta-banner { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; }
  .gx-cta-banner-actions { justify-content: flex-start; }
  .gx-page-hero { padding: 70px 24px 50px; }
  .gx-stack-cards { grid-template-columns: 1fr; }
  .gx-flex-grid { grid-template-columns: 1fr; }
  .gx-blog-grid { grid-template-columns: 1fr; }
  .gx-case-detail-grid { grid-template-columns: 1fr; }
  .gx-case-detail-media { height: 320px; }
  .gx-career-row { grid-template-columns: 1fr; gap: 12px; }
  .gx-footer { padding: 50px 28px 28px; border-radius: 18px 18px 0 0; }
  .gx-footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gx-footer-bottom { flex-direction: column; align-items: flex-start; }
  .gx-cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .gx-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 24px; }
  .gx-stat-cell { border-right: none; border-bottom: 1px solid var(--gx-pastel-green); padding-bottom: 18px; }
  .gx-stat-cell:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .gx-node-graph { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .gx-h1 { font-size: 38px; }
  .gx-hero { padding: 30px 18px 50px; }
  .gx-hero-cta-row { flex-direction: column; align-items: stretch; }
  .gx-btn-primary, .gx-btn-secondary { width: 100%; justify-content: center; }
  .gx-hero-meta-row { grid-template-columns: 1fr; }
  .gx-hero-visual { height: 320px; }
  .gx-hero-crystal { width: 240px; height: 240px; }
  .gx-hero-badge { display: none; }
  .gx-section { padding: 50px 18px; }
  .gx-page-hero { padding: 50px 18px 40px; }
  .gx-section-header { margin-bottom: 36px; }
  .gx-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gx-bento-item.is-large, .gx-bento-item.is-wide, .gx-bento-item.is-medium, .gx-bento-item.is-small {
    grid-column: span 1; grid-row: span 1;
  }
  .gx-team-canvas { grid-template-columns: 1fr; }
  .gx-about-stats { grid-template-columns: 1fr 1fr; }
  .gx-about-facts { grid-template-columns: 1fr; }
  .gx-form-row.is-double { grid-template-columns: 1fr; }
  .gx-contact-form-wrap { padding: 28px 22px; }
  .gx-cta-banner { padding: 32px 22px; margin: 40px 18px 60px; }
  .gx-footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .gx-footer-legal-list { flex-direction: column; gap: 10px; }
  .gx-node-graph { grid-template-columns: 1fr; }
  .gx-case-facts { grid-template-columns: 1fr; }
  .gx-coverflow-card { flex: 0 0 280px; padding: 24px; }
  .gx-mobile-drawer { padding: 80px 22px 28px; }
  .gx-cookie-banner { padding: 18px 20px; }
  .gx-cookie-actions { flex-direction: column; }
  .gx-article-layout { grid-template-columns: 1fr; gap: 20px; }
  .gx-article-main { padding: 28px 22px; }
  .gx-article-sidebar { flex-direction: column; }
  .gx-sidebar-card { flex: none; }
  .gx-article-section h2.gx-h3 { font-size: 22px; }
  .gx-article-highlight { padding: 18px 20px; }
  .gx-article-conclusion { padding: 24px 20px; }
}
