:root {
  --gp-base: #F8FAFC;
  --gp-text: #1E293B;
  --gp-cobalt: #2563EB;
  --gp-emerald: #059669;
  --gp-slate: #64748B;
  --gp-mist: #E2E8F0;
  --gp-white-90: rgba(255, 255, 255, 0.9);
  --gp-white-70: rgba(255, 255, 255, 0.7);
  --gp-white-60: rgba(255, 255, 255, 0.6);
  --gp-white-10: rgba(255, 255, 255, 0.1);
  --gp-shadow-soft: 0 2px 8px rgba(15, 23, 42, 0.04);
  --gp-shadow-deep: 0 8px 32px rgba(15, 23, 42, 0.08);
  --gp-shadow-float: 0 16px 48px rgba(15, 23, 42, 0.12);
  --gp-radius-pill: 100px;
  --gp-radius-card: 24px;
  --gp-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gp-text);
  background-color: var(--gp-base);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

strong, p {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Hiragino Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gp-text);
  line-height: 1.1;
}

a {
  color: var(--gp-cobalt);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.gp-pillbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  height: 72px;
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-pill);
  box-shadow: var(--gp-shadow-float);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: background 0.4s ease;
}

.gp-pillbar.gp-pillbar--scrolled {
  background: var(--gp-white-90);
}

.gp-pillbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}

.gp-pillbar__icon {
  width: 40px;
  height: 40px;
  background: var(--gp-cobalt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gp-base);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}

.gp-pillbar__title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gp-pillbar__domain {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gp-text);
  letter-spacing: 0.05em;
}

.gp-pillbar__subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 500;
  color: var(--gp-slate);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.gp-pillbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.gp-pillbar__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gp-text);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.gp-pillbar__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gp-cobalt);
  transition: width 0.3s ease;
}

.gp-pillbar__link:hover::after,
.gp-pillbar__link.gp-active::after {
  width: 100%;
}

.gp-pillbar__cta {
  background: var(--gp-emerald);
  color: var(--gp-base);
  padding: 12px 24px;
  border-radius: var(--gp-radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.gp-pillbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
  color: var(--gp-base);
}

.gp-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2001;
}

.gp-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gp-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.gp-mobilemenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.gp-mobilemenu.gp-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gp-mobilemenu__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gp-text);
  padding: 8px 16px;
}

.gp-mobilemenu__cta {
  margin-top: 24px;
  background: var(--gp-emerald);
  color: var(--gp-base);
  padding: 16px 40px;
  border-radius: var(--gp-radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.gp-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  background: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%);
  overflow: hidden;
}

.gp-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.gp-hero__prism {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-hero__prism-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: var(--gp-shadow-float), inset 0 0 80px rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  animation: gpBob 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.gp-hero__prism-shape::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  pointer-events: none;
}

.gp-collage {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 12%;
}

.gp-collage__photo {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  transition: transform 0.4s ease, filter 0.6s ease;
  filter: grayscale(30%);
}

.gp-collage__photo--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  border-radius: 20px 12px 12px 12px;
}

.gp-collage__photo--2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  border-radius: 12px 20px 12px 12px;
}

.gp-collage__photo--3 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  border-radius: 12px 12px 20px 20px;
}

.gp-collage__photo--4,
.gp-collage__photo--5 {
  display: none;
}

.gp-hero__prism:hover .gp-collage__photo {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.gp-hero__prism:hover .gp-collage__photo--1 {
  transform: scale(1.05) rotate(-1deg);
}

.gp-hero__prism:hover .gp-collage__photo--2 {
  transform: scale(1.05) rotate(1deg);
}

.gp-hero__prism:hover .gp-collage__photo--3 {
  transform: scale(1.03);
}

@keyframes gpRotate {
  from { transform: rotateY(0deg) rotateX(-2deg); }
  to { transform: rotateY(360deg) rotateX(-2deg); }
}

@keyframes gpBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.gp-hero__prism:hover {
  animation-duration: 3s;
}

.gp-hero__prism:hover .gp-hero__prism-shape {
  animation: gpBob 3s ease-in-out infinite;
}

.gp-hero__copy {
  color: var(--gp-text);
}

.gp-hero__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gp-slate);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}

.gp-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.gp-hero__title span {
  display: block;
  color: var(--gp-cobalt);
  opacity: 0.92;
}

.gp-hero__lead {
  font-size: 18px;
  color: var(--gp-slate);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}

.gp-hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-btn-primary {
  background: var(--gp-cobalt);
  color: var(--gp-base);
  padding: 14px 32px;
  border-radius: var(--gp-radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--gp-cobalt);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}

.gp-btn-primary:hover {
  background: #1E40AF;
  border-color: #1E40AF;
  color: var(--gp-base);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.gp-btn-ghost {
  background: transparent;
  color: var(--gp-text);
  padding: 14px 32px;
  border-radius: var(--gp-radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--gp-text);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}

.gp-btn-ghost:hover {
  background: var(--gp-text);
  color: var(--gp-base);
  transform: translateY(-2px);
}

.gp-btn-emerald {
  background: var(--gp-emerald);
  color: var(--gp-base);
  padding: 14px 32px;
  border-radius: var(--gp-radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--gp-emerald);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}

.gp-btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
  color: var(--gp-base);
}

.gp-hero__metrics {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.gp-hero__metric {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--gp-text);
  font-weight: 500;
  background: var(--gp-white-90);
  padding: 8px 14px;
  border-radius: var(--gp-radius-pill);
  border: 1px solid var(--gp-white-60);
  box-shadow: var(--gp-shadow-soft);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gp-hero__metric strong {
  display: block;
  font-size: 18px;
  color: var(--gp-cobalt);
  font-weight: 700;
}

.gp-hero__trust {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gp-slate);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  max-width: 90%;
}

.gp-section {
  padding: 120px 24px;
  position: relative;
}

.gp-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gp-section__head {
  margin-bottom: 64px;
  max-width: 720px;
}

.gp-section__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gp-cobalt);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.gp-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.gp-section__lead {
  font-size: 17px;
  color: var(--gp-slate);
  line-height: 1.65;
}

.gp-models {
  background: var(--gp-base);
}

.gp-coverflow {
  position: relative;
  width: 100%;
  height: 620px;
  perspective: 1400px;
  margin: 60px 0;
  overflow-x: hidden;
}

.gp-coverflow__track {
  position: absolute;
  top: 80px;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-coverflow__card {
  position: absolute;
  width: 360px;
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  transition: transform 0.6s var(--gp-ease-soft), opacity 0.6s ease;
  cursor: pointer;
}

.gp-coverflow__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--gp-mist);
  background-size: cover;
  background-position: center top;
}

.gp-coverflow__meta {
  padding: 20px 22px;
  background: var(--gp-base);
  color: var(--gp-text);
}

.gp-coverflow__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gp-coverflow__cat {
  font-size: 12px;
  color: var(--gp-slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gp-coverflow__card--p1 { transform: translateX(-340px) translateZ(-220px) rotateY(25deg) scale(0.78); opacity: 0.5; z-index: 1; }
.gp-coverflow__card--p2 { transform: translateX(-180px) translateZ(-120px) rotateY(15deg) scale(0.88); opacity: 0.75; z-index: 2; }
.gp-coverflow__card--c  { transform: translateX(0) translateZ(0) scale(1); opacity: 1; z-index: 10; }
.gp-coverflow__card--p3 { transform: translateX(180px) translateZ(-120px) rotateY(-15deg) scale(0.88); opacity: 0.75; z-index: 2; }
.gp-coverflow__card--p4 { transform: translateX(340px) translateZ(-220px) rotateY(-25deg) scale(0.78); opacity: 0.5; z-index: 1; }

.gp-coverflow__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.gp-coverflow__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gp-base);
  border: 1px solid var(--gp-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gp-text);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.gp-coverflow__arrow:hover {
  background: var(--gp-cobalt);
  color: var(--gp-base);
  transform: scale(1.05);
}

.gp-services {
  background: linear-gradient(180deg, var(--gp-base) 0%, #EFF6FF 100%);
}

.gp-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  overflow-x: hidden;
}

.gp-bento__cell {
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  color: var(--gp-text);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.gp-bento__cell:hover {
  transform: translateY(-4px);
  background: var(--gp-white-90);
  box-shadow: var(--gp-shadow-float);
}

.gp-bento__cell--lg { grid-column: span 3; grid-row: span 2; min-height: 460px; }
.gp-bento__cell--wide { grid-column: span 3; grid-row: span 1; }
.gp-bento__cell--md { grid-column: span 3; grid-row: span 1; }
.gp-bento__cell--sm { grid-column: span 2; grid-row: span 1; }

.gp-bento__cell--photo {
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--gp-base);
}

.gp-bento__cell--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85));
}

.gp-bento__cell--photo > * {
  position: relative;
  z-index: 2;
}

.gp-bento__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.15;
}

.gp-bento__cell--lg .gp-bento__title {
  font-size: 32px;
}

.gp-bento__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gp-slate);
}

.gp-bento__cell--photo .gp-bento__desc {
  color: rgba(248, 250, 252, 0.85);
}

.gp-bento__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--gp-cobalt);
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.gp-bento__cell--photo .gp-bento__price {
  color: var(--gp-base);
}

.gp-bento__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gp-cobalt);
}

.gp-bento__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.gp-bento__cell--photo .gp-bento__icon {
  color: var(--gp-base);
}

.gp-about {
  background: var(--gp-base);
}

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

.gp-about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: url('../media/about-studio.webp') center/cover;
  border-radius: var(--gp-radius-card);
  box-shadow: var(--gp-shadow-float);
  position: relative;
  overflow: hidden;
}

.gp-about__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.4));
}

.gp-about__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gp-about__lead {
  color: var(--gp-slate);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.7;
}

.gp-reveal-list {
  list-style: none;
}

.gp-reveal-list__item {
  border-bottom: 1px solid var(--gp-white-10);
  background: transparent;
  transition: background 0.3s ease, padding 0.4s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.gp-reveal-list__item:first-child {
  border-top: 1px solid var(--gp-white-10);
}

.gp-reveal-list__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gp-text);
}

.gp-reveal-list__year {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--gp-cobalt);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 16px;
}

.gp-reveal-list__arrow {
  color: var(--gp-slate);
  transition: transform 0.3s ease;
}

.gp-reveal-list__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--gp-ease-soft);
  padding: 0 20px;
  color: var(--gp-slate);
  font-size: 14px;
  line-height: 1.65;
}

.gp-reveal-list__item.gp-open {
  background: var(--gp-mist);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  z-index: 5;
}

.gp-reveal-list__item.gp-open .gp-reveal-list__body {
  max-height: 260px;
  padding-bottom: 18px;
}

.gp-process {
  background: linear-gradient(180deg, var(--gp-base) 0%, #F1F5F9 100%);
  overflow: hidden;
}

.gp-timeline {
  display: flex;
  gap: -40px;
  margin-top: 60px;
  padding: 40px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.gp-timeline__step {
  flex: 0 0 300px;
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  padding: 32px 26px;
  margin-right: -40px;
  box-shadow: var(--gp-shadow-deep);
  scroll-snap-align: center;
  color: var(--gp-text);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.gp-timeline__step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--gp-shadow-float);
  z-index: 5;
}

.gp-timeline__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: var(--gp-cobalt);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 16px;
}

.gp-timeline__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--gp-cobalt);
}

.gp-timeline__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.gp-timeline__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.gp-timeline__desc {
  font-size: 14px;
  color: var(--gp-slate);
  line-height: 1.6;
}

.gp-edge {
  background: var(--gp-base);
}

.gp-marquee {
  overflow: hidden;
  margin: 60px 0 80px;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  width: 100%;
}

.gp-marquee__track {
  display: flex;
  gap: 20px;
  animation: gpMarquee 30s linear infinite;
  width: max-content;
}

.gp-marquee__card {
  flex: 0 0 240px;
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  padding: 24px;
  color: var(--gp-text);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

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

.gp-marquee__card:hover {
  background: var(--gp-base);
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-deep);
}

.gp-marquee__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gp-cobalt);
  margin-bottom: 8px;
}

.gp-marquee__label {
  font-size: 13px;
  color: var(--gp-slate);
  line-height: 1.4;
}

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

.gp-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.gp-counter {
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  padding: 32px 24px;
  text-align: center;
  color: var(--gp-text);
  box-shadow: var(--gp-shadow-soft);
}

.gp-counter__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gp-cobalt);
  line-height: 1;
  margin-bottom: 12px;
}

.gp-counter__label {
  font-size: 13px;
  color: var(--gp-slate);
  letter-spacing: 0.05em;
}

.gp-team {
  background: linear-gradient(180deg, var(--gp-base) 0%, #EFF6FF 100%);
}

.gp-stack {
  position: relative;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gp-stack__card {
  background: var(--gp-base);
  border-radius: var(--gp-radius-card);
  padding: 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--gp-shadow-float);
  border: 1px solid var(--gp-white-60);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: var(--gp-text);
}

.gp-stack__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 60px rgba(15, 23, 42, 0.18);
}

.gp-stack__photo {
  width: 280px;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--gp-mist);
  border-radius: 18px;
}

.gp-stack__role {
  font-size: 11px;
  color: var(--gp-cobalt);
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gp-stack__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.gp-stack__bio {
  color: var(--gp-slate);
  font-size: 15px;
  line-height: 1.65;
}

.gp-faq {
  background: var(--gp-base);
}

.gp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.gp-faq__item {
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: var(--gp-text);
}

.gp-faq__item.gp-open {
  box-shadow: var(--gp-shadow-float);
  transform: translateZ(0) scale(1.005);
  z-index: 5;
  position: relative;
}

.gp-faq__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  gap: 16px;
}

.gp-faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gp-cobalt);
  color: var(--gp-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.gp-faq__item.gp-open .gp-faq__icon {
  transform: rotate(45deg);
}

.gp-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--gp-ease-soft);
  color: var(--gp-slate);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 28px;
}

.gp-faq__item.gp-open .gp-faq__body {
  max-height: 400px;
  padding-bottom: 24px;
}

.gp-testimonials {
  background: linear-gradient(180deg, var(--gp-base) 0%, #F1F5F9 100%);
}

.gp-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gp-testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gp-testimonial {
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  padding: 24px 28px;
  color: var(--gp-text);
  min-height: 96px;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.gp-testimonial:hover {
  background: var(--gp-mist);
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-deep);
}

.gp-testimonial__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--gp-text);
  margin-bottom: 8px;
}

.gp-testimonial__role {
  font-size: 11px;
  color: var(--gp-cobalt);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.gp-testimonial__text {
  color: var(--gp-slate);
  font-size: 14px;
  line-height: 1.6;
}

.gp-testimonial__detail {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.gp-testimonial:hover .gp-testimonial__detail {
  display: block;
}

.gp-testimonials__photo {
  width: 100%;
  background-color: var(--gp-white-70);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  min-height: 400px;
  transition: background-image 0.4s ease;
  aspect-ratio: 4 / 5;
  background: url('../media/testimonials-gallery.webp') center/cover;
  border-radius: var(--gp-radius-card);
  box-shadow: var(--gp-shadow-float);
}

.gp-contact {
  background: var(--gp-base);
}

.gp-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}

.gp-card {
  background: var(--gp-white-70);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  padding: 40px;
  box-shadow: var(--gp-shadow-soft);
  color: var(--gp-text);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.gp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gp-shadow-float);
}

.gp-card--stack1 { transform: translateY(0); z-index: 3; }
.gp-card--stack2 { transform: translateY(-16px); z-index: 2; opacity: 0.96; }
.gp-card--stack3 { transform: translateY(-32px); z-index: 1; opacity: 0.92; }

.gp-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gp-input, .gp-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--gp-base);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gp-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 48px;
}

.gp-textarea {
  min-height: 130px;
  resize: vertical;
}

.gp-input:focus, .gp-textarea:focus {
  outline: none;
  border-color: var(--gp-cobalt);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.gp-input::placeholder, .gp-textarea::placeholder {
  color: var(--gp-slate);
}

.gp-info__line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--gp-text);
}

.gp-info__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--gp-cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.gp-info__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gp-slate);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.gp-info__value {
  font-size: 15px;
  color: var(--gp-text);
  font-weight: 500;
}

.gp-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
}

.gp-map svg {
  width: 100%;
  height: 100%;
}

.gp-form-success {
  display: none;
  padding: 24px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--gp-radius-card);
  color: var(--gp-emerald);
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

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

.gp-footer {
  background: var(--gp-base);
  border-top: 1px solid var(--gp-white-10);
  padding: 80px 24px 32px;
  color: var(--gp-text);
}

.gp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gp-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}

.gp-footer__brand {
  display: flex;
  flex-direction: column;
}

.gp-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gp-footer__icon {
  width: 40px;
  height: 40px;
  background: var(--gp-cobalt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gp-base);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.gp-footer__domain {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.gp-footer__sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 500;
  color: var(--gp-slate);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.gp-footer__about {
  font-size: 13px;
  color: var(--gp-slate);
  line-height: 1.6;
}

.gp-footer__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gp-text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gp-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-footer__list a {
  font-size: 13px;
  color: var(--gp-slate);
  transition: color 0.3s ease;
}

.gp-footer__list a:hover {
  color: var(--gp-cobalt);
}

.gp-footer__form {
  display: flex;
  gap: 8px;
}

.gp-footer__input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--gp-radius-pill);
  font-family: inherit;
  font-size: 13px;
  color: var(--gp-text);
  background: var(--gp-base);
  min-height: 44px;
}

.gp-footer__input:focus {
  outline: none;
  border-color: var(--gp-cobalt);
}

.gp-footer__submit {
  background: var(--gp-emerald);
  color: var(--gp-base);
  padding: 12px 22px;
  border-radius: var(--gp-radius-pill);
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  transition: background 0.3s ease;
}

.gp-footer__submit:hover {
  background: #047857;
}

.gp-footer__bottom {
  border-top: 1px solid var(--gp-white-10);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gp-slate);
}

.gp-footer__bottom a {
  color: var(--gp-slate);
}

.gp-footer__bottom a:hover {
  color: var(--gp-cobalt);
}

.gp-cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: calc(100% - 48px);
  max-width: 480px;
  background: var(--gp-white-90);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--gp-white-60);
  border-radius: var(--gp-radius-card);
  box-shadow: var(--gp-shadow-float);
  padding: 24px;
  z-index: 9000;
  color: var(--gp-text);
}

.gp-cookie__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gp-cookie__text {
  font-size: 13px;
  color: var(--gp-slate);
  line-height: 1.55;
  margin-bottom: 18px;
}

.gp-cookie__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gp-cookie__btn {
  flex: 1;
  min-width: 110px;
  padding: 10px 16px;
  border-radius: var(--gp-radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  min-height: 44px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gp-cookie__btn--accept {
  background: var(--gp-cobalt);
  color: var(--gp-base);
}

.gp-cookie__btn--accept:hover {
  background: #1E40AF;
}

.gp-cookie__btn--decline {
  background: var(--gp-mist);
  color: var(--gp-text);
}

.gp-cookie__btn--decline:hover {
  background: #CBD5E1;
}

.gp-cookie__link {
  font-size: 12px;
  color: var(--gp-cobalt);
  margin-top: 12px;
  display: inline-block;
}

.gp-page-hero {
  padding: 160px 24px 80px;
  background: linear-gradient(180deg, #F1F5F9 0%, var(--gp-base) 100%);
  text-align: center;
}

.gp-page-hero__inner {
  max-width: 920px;
  margin: 0 auto;
}

.gp-page-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gp-page-hero__lead {
  font-size: 18px;
  color: var(--gp-slate);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.gp-content {
  padding: 60px 24px 120px;
  color: var(--gp-text);
}

.gp-content__inner {
  max-width: 920px;
  margin: 0 auto;
}

.gp-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.gp-content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--gp-text);
}

.gp-content ul {
  margin: 0 0 24px 20px;
  color: var(--gp-text);
}

.gp-content li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.gp-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--gp-ease-soft), transform 0.7s var(--gp-ease-soft);
}

.gp-fade.gp-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .gp-pillbar__nav, .gp-pillbar__cta {
    display: none;
  }

  .gp-burger {
    display: flex;
  }

  .gp-hero {
    padding: 120px 24px 60px;
  }

  .gp-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .gp-hero__prism {
    max-width: 320px;
    opacity: 0.85;
  }

  .gp-hero__metrics {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .gp-hero__cta-row {
    justify-content: center;
  }

  .gp-hero__trust {
    position: static;
    transform: none;
    margin-top: 32px;
    padding: 0 16px;
    white-space: normal;
  }

  .gp-coverflow__card {
    width: 280px;
  }

  .gp-coverflow__card--p1 { transform: translateX(-220px) translateZ(-160px) rotateY(20deg) scale(0.72); }
  .gp-coverflow__card--p2 { transform: translateX(-110px) translateZ(-80px) rotateY(10deg) scale(0.85); }
  .gp-coverflow__card--p3 { transform: translateX(110px) translateZ(-80px) rotateY(-10deg) scale(0.85); }
  .gp-coverflow__card--p4 { transform: translateX(220px) translateZ(-160px) rotateY(-20deg) scale(0.72); }

  .gp-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-bento__cell--lg,
  .gp-bento__cell--wide,
  .gp-bento__cell--md,
  .gp-bento__cell--sm {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }

  .gp-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gp-counters {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-stack__card {
    grid-template-columns: 1fr;
  }

  .gp-stack__photo {
    width: 100%;
    height: 280px;
  }

  .gp-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .gp-cards {
    grid-template-columns: 1fr;
  }

  .gp-card--stack2, .gp-card--stack3 {
    transform: none;
    opacity: 1;
  }

  .gp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .gp-section {
    padding: 80px 24px;
  }
}

@media (max-width: 640px) {
  .gp-pillbar {
    width: 100%;
    max-width: 100%;
    top: 0;
    border-radius: 0;
    height: 64px;
    padding: 0 16px;
    left: 0;
    transform: none;
  }

  .gp-pillbar__brand {
    min-width: auto;
  }

  .gp-pillbar__subtitle {
    font-size: 7px;
  }

  .gp-hero__metrics {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .gp-hero__cta-row {
    flex-direction: column;
    width: 100%;
  }

  .gp-btn-primary, .gp-btn-ghost, .gp-btn-emerald {
    width: 100%;
  }

  .gp-coverflow {
    height: 560px;
    overflow-x: hidden;
  }

  .gp-coverflow__card {
    width: 240px;
  }

  .gp-coverflow__card--p1, .gp-coverflow__card--p4 {
    opacity: 0.3;
    transform: translateX(-180px) translateZ(-120px) rotateY(15deg) scale(0.65) !important;
  }

  .gp-coverflow__card--p2, .gp-coverflow__card--p3 {
    opacity: 0.6;
    transform: translateX(-90px) translateZ(-60px) rotateY(10deg) scale(0.75) !important;
  }

  .gp-coverflow__card--c {
    transform: translateX(0) translateZ(0) scale(0.85) !important;
  }

  .gp-hero__metrics {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .gp-hero__metric {
    font-size: 11px;
    padding: 6px 12px;
  }

  .gp-hero__metric strong {
    font-size: 16px;
  }

  .gp-form__row {
    grid-template-columns: 1fr;
  }

  .gp-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gp-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .gp-cookie {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
    padding: 18px;
  }

  .gp-cookie__buttons {
    flex-direction: column;
  }

  .gp-section {
    padding: 60px 16px;
  }
}

.gp-active-link {
  color: var(--gp-cobalt);
}
