:root {
  --gp-ink: #0b1220;
  --gp-navy: #0f172a;
  --gp-navy-2: #17233d;
  --gp-surface: #ffffff;
  --gp-surface-soft: #f6f8fc;
  --gp-line: #dbe4f0;
  --gp-muted: #64748b;
  --gp-cyan: #06b6d4;
  --gp-cyan-soft: #67e8f9;
  --gp-blue: #3b82f6;
  --gp-blue-dark: #2563eb;
  --gp-green: #10b981;
  --gp-amber: #f59e0b;
  --gp-danger: #ef4444;
  --gp-radius-sm: 12px;
  --gp-radius: 20px;
  --gp-radius-lg: 30px;
  --gp-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --gp-shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.gp-public,
body.gp-auth-page,
body.gp-selection-page {
  margin: 0;
  color: var(--gp-ink);
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: var(--gp-surface);
}

a,
button,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.5);
  outline-offset: 3px;
}

.gp-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--gp-navy);
  background: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.gp-skip-link:focus {
  transform: translateY(0);
}

.gp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.gp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.gp-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(6, 182, 212, 0.2));
}

.gp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(6, 182, 212, 0.28);
  border-radius: 999px;
  color: #0e7490;
  background: rgba(236, 254, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-pill i {
  font-size: 0.95rem;
}

.gp-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font: inherit;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.gp-btn:hover {
  transform: translateY(-2px);
}

.gp-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gp-cyan), var(--gp-blue));
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.gp-btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.4);
}

.gp-btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gp-spinner {
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gp-spin 0.72s linear infinite;
}

.gp-btn-ghost {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.gp-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.gp-btn-light {
  color: var(--gp-navy);
  background: #fff;
  border-color: var(--gp-line);
}

.gp-btn-light:hover {
  color: var(--gp-blue-dark);
  border-color: #bfdbfe;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

/* Public website */
.gp-public .gp-brand {
  font-weight: 700;
}

.gp-public .gp-pill,
.gp-public .gp-btn,
.gp-public h3,
.gp-public strong {
  font-weight: 600;
}

.gp-public section[id] {
  scroll-margin-top: 96px;
}

.gp-public .gp-btn {
  line-height: 1.35;
}

.gp-public .gp-btn-primary {
  background: linear-gradient(135deg, #0e7490, #2563eb);
}

.gp-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--gp-navy);
  background: rgba(255, 255, 255, 0.92);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gp-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.gp-nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gp-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-nav-menu a {
  position: relative;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gp-nav-menu a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gp-cyan), var(--gp-blue));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.gp-nav-menu a:hover {
  color: var(--gp-blue-dark);
}

.gp-nav-menu a:hover::after {
  transform: scaleX(1);
}

.gp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gp-login-link {
  padding: 10px 8px;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.gp-login-link:hover {
  color: var(--gp-blue-dark);
}

.gp-nav-cta {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.82rem;
}

.gp-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--gp-navy);
  background: #f1f5f9;
  border: 1px solid var(--gp-line);
  border-radius: 13px;
  font-size: 1.35rem;
}

.gp-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--gp-navy);
  background:
    radial-gradient(circle at 88% 40%, rgba(6, 182, 212, 0.1), transparent 36%),
    linear-gradient(145deg, #ffffff 25%, #f0f8fc 100%);
}

.gp-auth-bg::before,
.gp-selection-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 92%);
  pointer-events: none;
}

.gp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  animation: gp-orbit 14s ease-in-out infinite alternate;
}

.gp-orb-one {
  width: 380px;
  height: 380px;
  top: 12%;
  right: -180px;
  background: rgba(6, 182, 212, 0.13);
}

.gp-orb-two {
  width: 260px;
  height: 260px;
  bottom: -130px;
  left: 10%;
  background: rgba(59, 130, 246, 0.15);
  animation-delay: -5s;
}

.gp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 56px;
  padding: 142px 0 92px;
}

.gp-hero-copy h1 {
  max-width: 720px;
  margin: 22px 0 22px;
  font-size: clamp(2.9rem, 4.8vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

.gp-text-gradient {
  color: transparent;
  background: linear-gradient(100deg, #0e7490, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
}

.gp-hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: #52647b;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.gp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: #52647b;
  font-size: 0.82rem;
  font-weight: 600;
}

.gp-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.gp-trust-row i {
  color: #0e7490;
}

/* Human photography belongs to the section, without an inset image card. */
.gp-photo-section {
  --gp-photo-surface: #f5f9fc;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--gp-photo-surface);
}

.gp-photo-section > .gp-section-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 76%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gp-photo-section::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--gp-photo-surface) 22%,
    rgba(245, 249, 252, 0.98) 34%,
    rgba(245, 249, 252, 0.9) 43%,
    rgba(245, 249, 252, 0.25) 56%,
    transparent 68%
  );
}

.gp-photo-section > .gp-container {
  position: relative;
  z-index: 2;
  display: block;
}

.gp-photo-section .gp-hero-copy,
.gp-photo-section .gp-health-copy {
  width: 46%;
  max-width: 540px;
}

.gp-photo-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--gp-navy);
  font-size: 0.9rem;
}

.gp-photo-caption strong,
.gp-photo-caption small {
  display: block;
}

.gp-photo-caption small {
  margin-top: 5px;
  color: #52647b;
  line-height: 1.5;
}

.gp-photo-caption-icon,
.gp-photo-caption > i {
  flex: 0 0 auto;
  color: #0e7490;
  font-size: 1.4rem;
}

.gp-app-grid,
.gp-health-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.gp-app-copy h2,
.gp-health-copy h2 {
  margin: 20px 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.gp-app-copy > p,
.gp-health-copy > p {
  color: #52647b;
  font-size: 1.05rem;
  line-height: 1.75;
}

.gp-app-showcase {
  margin: 0;
  padding: 28px 22px;
  text-align: center;
  background: radial-gradient(ellipse at center, #d9efff 0%, #edf9fd 40%, #f7fafc 72%);
  border: 1px solid #e2edf5;
  border-radius: 30px;
}

.gp-app-device {
  width: min(100%, 420px);
  margin: 0 auto;
}

.gp-app-device img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 18px rgba(15, 23, 42, 0.12));
}

.gp-app-showcase figcaption {
  max-width: 310px;
  margin: 20px auto 0;
  color: #52647b;
  font-size: 0.85rem;
  line-height: 1.6;
}

.gp-benefit-list {
  display: grid;
  gap: 23px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.gp-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #52647b;
  font-size: 0.94rem;
  line-height: 1.6;
}

.gp-benefit-list li > i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #0e7490;
  background: #ecfeff;
  border-radius: 12px;
  font-size: 1.2rem;
}

.gp-benefit-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gp-navy);
  font-size: 1rem;
}

.gp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gp-blue-dark);
  font-weight: 600;
  text-decoration: none;
}

.gp-text-link:hover {
  text-decoration: underline;
}

.gp-health-section {
  --gp-photo-surface: #f7faf9;
}

.gp-health-section > .gp-section-photo {
  right: auto;
  left: 0;
}

.gp-health-section::after {
  background: linear-gradient(
    90deg,
    transparent 24%,
    rgba(247, 250, 249, 0.2) 38%,
    rgba(247, 250, 249, 0.94) 54%,
    var(--gp-photo-surface) 66%
  );
}

.gp-health-section .gp-health-copy {
  margin-left: auto;
}

.gp-hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.gp-device-float {
  width: min(100%, 590px);
  animation: gp-device-float 8s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
  will-change: transform;
}

.gp-device-stage {
  --gp-tilt-x: 0deg;
  --gp-tilt-y: 0deg;
  --gp-parallax-x: 0px;
  --gp-parallax-y: 0px;
  position: relative;
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: var(--gp-shadow-dark);
  backdrop-filter: blur(14px);
  transform: rotateX(var(--gp-tilt-x)) rotateY(var(--gp-tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.32s ease;
  will-change: transform;
}

.gp-device-stage::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    from 20deg,
    transparent 0 38%,
    rgba(103, 232, 249, 0.4) 51%,
    transparent 66% 100%
  );
  -webkit-mask: radial-gradient(circle, transparent 64%, #000 65% 66%, transparent 67%);
  mask: radial-gradient(circle, transparent 64%, #000 65% 66%, transparent 67%);
  transform: translate3d(-50%, -50%, 0);
  animation: gp-device-ring 18s linear infinite;
  pointer-events: none;
}

.gp-device-stage::after {
  content: '';
  position: absolute;
  inset: 8% 14%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.24);
  filter: blur(68px);
  animation: gp-device-glow 6s ease-in-out infinite;
  pointer-events: none;
}

.gp-device-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.26));
  transform: translate3d(var(--gp-parallax-x), var(--gp-parallax-y), 34px) scale(1.015);
  transition:
    transform 0.32s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.32s ease;
  will-change: transform;
}

.gp-device-stage:hover {
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(103, 232, 249, 0.08);
}

.gp-device-stage:hover .gp-device-image {
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.32));
}

.gp-face-scan {
  position: absolute;
  z-index: 4;
  top: 28%;
  left: 15%;
  width: 56%;
  height: 40%;
  overflow: hidden;
  border-radius: 28px;
  opacity: 0.82;
  transform: translate3d(var(--gp-parallax-x), var(--gp-parallax-y), 52px) rotate(-1.5deg);
  pointer-events: none;
}

.gp-scan-line {
  position: absolute;
  top: 5%;
  right: 4%;
  left: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #67e8f9, transparent);
  box-shadow: 0 0 24px #22d3ee;
  animation: gp-scan 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.gp-scan-line::after {
  content: '';
  position: absolute;
  top: -10px;
  right: 6%;
  left: 6%;
  height: 22px;
  background: linear-gradient(to bottom, transparent, rgba(103, 232, 249, 0.2), transparent);
  filter: blur(2px);
}

.gp-device-signal {
  position: absolute;
  z-index: 5;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(207, 250, 254, 0.9);
  border-radius: 50%;
  background: #22d3ee;
  box-shadow:
    0 0 0 0 rgba(34, 211, 238, 0.45),
    0 0 18px rgba(34, 211, 238, 0.8);
  animation: gp-signal-pulse 2.8s ease-out infinite;
  pointer-events: none;
}

.gp-device-signal-one {
  top: 22%;
  right: 15%;
}

.gp-device-signal-two {
  right: 24%;
  bottom: 17%;
  animation-delay: -1.4s;
}

.gp-floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  color: #eaf6ff;
  background: rgba(10, 19, 34, 0.82);
  border: 1px solid rgba(103, 232, 249, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.gp-floating-card i {
  color: var(--gp-cyan-soft);
  font-size: 1.25rem;
}

.gp-floating-card strong,
.gp-floating-card small {
  display: block;
}

.gp-floating-card strong {
  font-size: 0.86rem;
}

.gp-floating-card small {
  margin-top: 2px;
  color: #91a4bb;
  font-size: 0.7rem;
}

.gp-floating-one {
  top: 13%;
  left: -4%;
  animation: gp-card-drift-one 5.8s ease-in-out infinite -1s;
}

.gp-floating-two {
  right: -2%;
  bottom: 15%;
  animation: gp-card-drift-two 6.4s ease-in-out infinite -2.7s;
}

.gp-capability-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.gp-capability-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(219, 228, 240, 0.8);
  border-radius: 22px;
  box-shadow: var(--gp-shadow);
}

.gp-capability {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
  border-right: 1px solid #e9eef6;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

.gp-capability:last-child {
  border-right: 0;
}

.gp-capability i {
  color: var(--gp-blue);
  font-size: 1.2rem;
}

.gp-section {
  padding: 112px 0;
}

.gp-section-soft {
  background:
    radial-gradient(circle at 8% 20%, rgba(6, 182, 212, 0.07), transparent 24%),
    var(--gp-surface-soft);
}

.gp-section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #0b1220, #12233e);
}

.gp-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.3fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}

.gp-section-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4.5vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.gp-section-heading > p {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.75;
}

.gp-section-dark .gp-section-heading > p {
  color: #aebfd3;
}

.gp-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gp-feature-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 28px;
  background: #fff;
  border: 1px solid #e4ebf5;
  border-radius: var(--gp-radius);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gp-feature-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.gp-feature-wide {
  grid-column: span 7;
}

.gp-feature-medium {
  grid-column: span 5;
}

.gp-feature-third {
  grid-column: span 4;
}

.gp-feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  color: #0e7490;
  background: linear-gradient(135deg, #cffafe, #dbeafe);
  border-radius: 15px;
  font-size: 1.45rem;
}

.gp-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.gp-feature-card p {
  max-width: 560px;
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.7;
}

.gp-feature-visual {
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 200px;
  height: 150px;
  opacity: 0.86;
  background:
    linear-gradient(90deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px),
    linear-gradient(135deg, #eff6ff, #ecfeff);
  background-size:
    18px 18px,
    18px 18px,
    auto;
  border: 1px solid #dbeafe;
  border-radius: 26px;
  transform: rotate(-8deg);
}

.gp-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: flow;
}

.gp-flow-step {
  position: relative;
  min-height: 240px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: var(--gp-radius);
  counter-increment: flow;
}

.gp-flow-step::before {
  content: '0' counter(flow);
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gp-cyan-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.gp-flow-step:not(:last-child)::after {
  content: '\F285';
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -28px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gp-cyan-soft);
  background: #102039;
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 50%;
  font-family: 'bootstrap-icons';
  transform: translateY(-50%);
}

.gp-flow-step i {
  display: block;
  margin-bottom: 18px;
  color: #93c5fd;
  font-size: 1.65rem;
}

.gp-flow-step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.gp-flow-step p {
  margin: 0;
  color: #aebfd3;
  font-size: 0.9rem;
  line-height: 1.65;
}

.gp-security-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 24px;
}

.gp-security-panel,
.gp-security-list {
  padding: 34px;
  background: #fff;
  border: 1px solid #e4ebf5;
  border-radius: var(--gp-radius);
}

.gp-security-panel {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(34, 211, 238, 0.21), transparent 28%),
    linear-gradient(145deg, #0f172a, #1e3a5f);
  border-color: transparent;
}

.gp-security-panel h3 {
  max-width: 520px;
  margin: 20px 0 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.gp-security-panel p {
  max-width: 560px;
  color: #b8c8da;
  line-height: 1.75;
}

.gp-security-list {
  display: grid;
  gap: 8px;
}

.gp-security-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 15px;
  transition: background 0.2s ease;
}

.gp-security-item:hover {
  background: #f8fafc;
}

.gp-security-item > i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #0e7490;
  background: #ecfeff;
  border-radius: 12px;
  font-size: 1.2rem;
}

.gp-security-item strong,
.gp-security-item span {
  display: block;
}

.gp-security-item span {
  margin-top: 5px;
  color: var(--gp-muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.gp-cta {
  position: relative;
  overflow: hidden;
  padding: 70px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(103, 232, 249, 0.22), transparent 28%),
    linear-gradient(135deg, #0f172a, #1d4ed8);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-dark);
}

.gp-cta h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.gp-cta p {
  max-width: 660px;
  margin: 0 0 30px;
  color: #c7d7e9;
  line-height: 1.7;
}

.gp-solutions {
  overflow: hidden;
  background: radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.08), transparent 28%), #fff;
}

.gp-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gp-solution-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff, #f7faff);
  border: 1px solid var(--gp-line);
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
}

.gp-solution-card::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16), transparent 68%);
}

.gp-solution-card > i {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 46px 0 24px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gp-cyan), var(--gp-blue));
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
  font-size: 1.45rem;
}

.gp-solution-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #dbe5f2;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.gp-solution-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.gp-solution-card p {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.7;
}

.gp-solution-card > span {
  position: absolute;
  bottom: 28px;
  left: 34px;
  color: #0e7490;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gp-public-sector {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 54px;
  margin-top: 28px;
  padding: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.18), transparent 30%),
    linear-gradient(135deg, #0b1220, #172554);
  border-radius: 30px;
  box-shadow: var(--gp-shadow-dark);
}

.gp-eyebrow {
  color: var(--gp-cyan-soft);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gp-public-sector h3 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.gp-public-sector p {
  margin: 0;
  color: #b8c8dc;
  line-height: 1.75;
}

.gp-public-sector-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 12px;
}

.gp-public-sector-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 13px 15px;
  color: #dce9f7;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 600;
}

.gp-public-sector-points i {
  color: var(--gp-cyan-soft);
  font-size: 1.1rem;
}

.gp-contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
  gap: 54px;
  padding: 58px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 88%, rgba(6, 182, 212, 0.22), transparent 28%),
    linear-gradient(140deg, #0b1220, #172554);
  border-radius: 32px;
  box-shadow: var(--gp-shadow-dark);
}

.gp-contact-copy h2 {
  margin: 22px 0 18px;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.gp-contact-copy > p {
  color: #b8c8dc;
  line-height: 1.75;
}

.gp-contact-benefits {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.gp-contact-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce9f7;
  font-size: 0.88rem;
  font-weight: 600;
}

.gp-contact-benefits i {
  color: var(--gp-cyan-soft);
}

.gp-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.gp-contact-form {
  position: relative;
  display: grid;
  gap: 17px;
  padding: 34px;
  color: var(--gp-ink);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.gp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gp-contact-form label:not(.gp-consent) {
  display: grid;
  gap: 7px;
}

.gp-contact-form label > span {
  color: #334155;
  font-size: 0.76rem;
  font-weight: 600;
}

.gp-contact-form input,
.gp-contact-form select,
.gp-contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--gp-ink);
  background: #f8fafc;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  font: inherit;
  font-size: 0.88rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.gp-contact-form input:focus,
.gp-contact-form select:focus,
.gp-contact-form textarea:focus {
  background: #fff;
  border-color: var(--gp-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.gp-contact-form textarea {
  resize: vertical;
}

.gp-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.gp-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.gp-consent span {
  color: var(--gp-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.gp-contact-form .gp-btn {
  width: 100%;
}

.gp-form-status {
  min-height: 20px;
  margin: 0;
  color: var(--gp-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.gp-form-status.is-success {
  color: #047857;
}

.gp-form-status.is-error {
  color: #b91c1c;
}

.gp-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.gp-footer {
  padding: 64px 0 28px;
  color: #94a3b8;
  background: #080e19;
}

.gp-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 40px;
  padding-bottom: 44px;
}

.gp-footer p {
  max-width: 420px;
  line-height: 1.7;
}

.gp-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.92rem;
}

.gp-footer-links {
  display: grid;
  gap: 10px;
}

.gp-footer-links a {
  color: #94a3b8;
  text-decoration: none;
}

.gp-footer-links a:hover {
  color: #fff;
}

.gp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  font-size: 0.8rem;
}

/* Shared auth and selection background */
body.gp-auth-page,
body.gp-selection-page {
  min-height: 100vh;
  color: #e7eef8;
  background: #09111e;
}

.gp-auth-bg,
.gp-selection-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(6, 182, 212, 0.17), transparent 29%),
    radial-gradient(circle at 88% 78%, rgba(59, 130, 246, 0.22), transparent 31%),
    linear-gradient(145deg, #08111e, #111d34 55%, #172554);
  pointer-events: none;
}

.gp-auth-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
  margin: 0 auto;
  padding: 72px 0;
}

.gp-auth-story {
  max-width: 520px;
}

.gp-auth-brand {
  display: flex;
  width: max-content;
  margin-bottom: 56px;
}

.gp-auth-story-copy {
  max-width: 510px;
}

.gp-auth-story h1 {
  margin: 22px 0 18px;
  color: #fff;
  font-size: clamp(2.65rem, 5vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.gp-auth-story-copy > p {
  max-width: 500px;
  margin: 0;
  color: #aebed1;
  font-size: 1.04rem;
  line-height: 1.75;
}

.gp-auth-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.gp-auth-benefit {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  color: #c8d6e6;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 650;
}

.gp-auth-benefit i {
  color: var(--gp-cyan-soft);
}

.gp-auth-panel {
  width: min(100%, 520px);
  justify-self: end;
  overflow: hidden;
  color: var(--gp-ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--gp-shadow-dark);
}

.gp-auth-panel-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 32px 36px 25px;
  border-bottom: 1px solid #e8edf4;
}

.gp-auth-panel-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #0e7490;
  background: linear-gradient(145deg, #ecfeff, #eff6ff);
  border: 1px solid #cdeaf2;
  border-radius: 16px;
  font-size: 1.35rem;
}

.gp-auth-panel-head h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.gp-auth-panel-head p {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.6;
}

.gp-auth-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 36px;
  padding: 5px;
  background: #eef2f7;
  border-radius: 14px;
}

.gp-auth-mode {
  min-height: 44px;
  padding: 9px 8px;
  color: #64748b;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.77rem;
  font-weight: 750;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gp-auth-mode.is-active {
  color: var(--gp-navy);
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.gp-auth-body {
  padding: 30px 36px 34px;
}

.gp-auth-screen[hidden] {
  display: none !important;
}

.gp-auth-screen.is-active {
  animation: gp-view-in 0.28s ease both;
}

.gp-auth-context-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 3px 0 18px;
  padding: 11px 13px;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.79rem;
  line-height: 1.45;
}

.gp-auth-context-note i {
  flex: 0 0 auto;
  color: #0891b2;
  font-size: 1rem;
}

.gp-auth-secondary-action {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  color: #334155;
  background: #fff;
  border: 1px solid #dfe7f1;
  border-radius: 14px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gp-auth-secondary-action:hover {
  color: var(--gp-blue-dark);
  background: #f8fbff;
  border-color: #bfdbfe;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.gp-auth-secondary-action > i:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #0e7490;
  background: #ecfeff;
  border-radius: 12px;
  font-size: 1.08rem;
}

.gp-auth-secondary-action > i:last-child {
  color: #94a3b8;
}

.gp-auth-secondary-action strong,
.gp-auth-secondary-action small {
  display: block;
}

.gp-auth-secondary-action strong {
  color: #1e293b;
  font-size: 0.86rem;
}

.gp-auth-secondary-action small {
  margin-top: 3px;
  color: var(--gp-muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.gp-auth-screen-heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.gp-auth-screen-heading h3 {
  margin: 0 0 5px;
  color: #172033;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.gp-auth-screen-heading p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.gp-auth-step-icon,
.gp-auth-icon-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #0e7490;
  background: #ecfeff;
  border: 1px solid #cdeaf2;
  border-radius: 13px;
  font-size: 1.05rem;
}

.gp-auth-icon-button {
  font: inherit;
  cursor: pointer;
}

.gp-auth-icon-button:hover {
  color: var(--gp-blue-dark);
  background: #eff6ff;
  border-color: #bfdbfe;
}

.gp-auth-choice-list {
  display: grid;
  gap: 10px;
  max-height: 285px;
  margin-bottom: 18px;
  overflow-y: auto;
  padding: 2px;
}

.gp-auth-choice-list .gp-choice {
  min-height: 78px;
}

.gp-auth-text-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 14px;
  padding: 9px;
  color: #64748b;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.gp-auth-text-action:hover {
  color: var(--gp-blue-dark);
  background: #f8fafc;
}

.gp-field {
  margin-bottom: 18px;
}

.gp-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 750;
}

.gp-field small {
  color: #94a3b8;
  font-weight: 500;
}

.gp-input-wrap {
  position: relative;
}

.gp-input-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  color: #94a3b8;
  transform: translateY(-50%);
  pointer-events: none;
}

.gp-input,
.gp-select {
  width: 100%;
  min-height: 51px;
  padding: 12px 44px;
  color: #172033;
  background: #f8fafc;
  border: 1px solid #dbe4ef;
  border-radius: 13px;
  font: inherit;
  font-size: 0.93rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.gp-select {
  padding-right: 38px;
  appearance: none;
}

.gp-input:hover,
.gp-select:hover {
  border-color: #bfdbfe;
}

.gp-input:focus,
.gp-select:focus {
  background: #fff;
  border-color: var(--gp-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.11);
}

.gp-password-toggle {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 8px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #64748b;
  background: transparent;
  border: 0;
  border-radius: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.gp-password-toggle:hover {
  color: var(--gp-blue-dark);
  background: #eff6ff;
}

.gp-auth-submit {
  width: 100%;
  margin-top: 4px;
}

.gp-auth-alert {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.gp-auth-alert.is-visible {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.gp-auth-alert.is-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.gp-auth-alert.is-info {
  color: #1e40af;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.gp-auth-alert.is-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.gp-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 18px;
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gp-auth-employee-area[hidden] {
  display: none !important;
}

.gp-auth-divider::before,
.gp-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.gp-employee-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.gp-employee-link-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #0e7490;
  background: #ecfeff;
  border-radius: 12px;
  font-size: 1.08rem;
}

.gp-employee-link-copy {
  min-width: 0;
}

.gp-employee-link:hover {
  color: var(--gp-blue-dark);
  background: #eff6ff;
  border-color: #bfdbfe;
}

.gp-employee-link strong,
.gp-employee-link small {
  display: block;
}

.gp-employee-link small {
  margin-top: 3px;
  color: var(--gp-muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.gp-auth-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: #9fb1c5;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.gp-code-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 8px 0 16px;
}

.gp-code-input {
  width: 100%;
  min-width: 0;
  height: 54px;
  color: var(--gp-navy);
  background: #f8fafc;
  border: 1px solid #dbe4ef;
  border-radius: 11px;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}

.gp-code-input:focus {
  background: #fff;
  border-color: var(--gp-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.gp-code-instruction {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 0.83rem;
  line-height: 1.55;
}

.gp-code-instruction strong {
  color: #334155;
}

.gp-code-timer {
  margin: -3px 0 16px;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.gp-code-timer.is-ending {
  color: #b45309;
}

.gp-code-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.gp-code-actions button {
  padding: 7px 3px;
  color: #64748b;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.gp-code-actions button:hover:not(:disabled) {
  color: var(--gp-blue-dark);
}

.gp-code-actions button:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

/* Selection page */
.gp-selection-shell {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.gp-selection-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.gp-selection-user {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d8e4f1;
}

.gp-selection-user-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gp-cyan-soft);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: 13px;
}

.gp-selection-user strong,
.gp-selection-user small {
  display: block;
}

.gp-selection-user small {
  margin-top: 2px;
  color: #91a4ba;
}

.gp-selection-account {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gp-selection-logout {
  min-height: 42px;
  padding: 9px 14px;
}

.gp-selection-card {
  overflow: hidden;
  color: var(--gp-ink);
  background: rgba(248, 250, 252, 0.985);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--gp-shadow-dark);
}

.gp-selection-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px 245px;
  align-items: center;
  gap: 26px;
  min-height: 228px;
  padding: 38px 42px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(34, 211, 238, 0.28), transparent 32%),
    linear-gradient(135deg, #0b1729, #142748 70%, #173d68);
}

.gp-selection-head-copy {
  position: relative;
  z-index: 1;
}

.gp-selection-head-art {
  position: relative;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  justify-self: center;
}

.gp-selection-art-ring {
  position: absolute;
  display: block;
  border: 1px solid rgba(103, 232, 249, 0.3);
  border-radius: 50%;
  transform: rotate(-20deg) skewX(-10deg);
}

.gp-selection-art-ring-one {
  width: 112px;
  height: 64px;
}

.gp-selection-art-ring-two {
  width: 82px;
  height: 116px;
  border-color: rgba(96, 165, 250, 0.32);
  transform: rotate(40deg) skewX(-9deg);
}

.gp-selection-art-pin {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #082f49;
  background: linear-gradient(145deg, #a5f3fc, #60a5fa);
  border: 5px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px 20px 20px 7px;
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.26);
  font-size: 1.5rem;
  transform: rotate(-10deg);
}

.gp-selection-art-label {
  position: absolute;
  right: -12px;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  color: #d9faff;
  background: rgba(8, 20, 38, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  white-space: nowrap;
}

.gp-selection-art-label i {
  color: #67e8f9;
}

.gp-selection-head h1 {
  margin: 9px 0 7px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  letter-spacing: -0.045em;
}

.gp-selection-head h1:focus {
  outline: none;
}

.gp-selection-head p {
  margin: 0;
  color: #b8c8da;
}

.gp-selection-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #67e8f9;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-selection-progress {
  min-width: 245px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

.gp-selection-progress-label {
  display: block;
  margin-bottom: 10px;
  color: #9fb2c8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-selection-progress-steps {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #91a4ba;
  font-size: 0.72rem;
  font-weight: 700;
}

.gp-selection-progress-steps > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.gp-selection-progress-steps b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #b7c8da;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.68rem;
}

.gp-selection-progress-steps span.is-active {
  color: #fff;
}

.gp-selection-progress-steps span.is-active b {
  color: #083344;
  background: #67e8f9;
}

.gp-step-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
}

.gp-step-dot {
  width: 9px;
  height: 9px;
  background: #cbd5e1;
  border-radius: 50%;
}

.gp-step-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--gp-cyan), var(--gp-blue));
  border-radius: 999px;
}

.gp-selection-body {
  padding: 30px 42px 38px;
}

.gp-selection-section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 20px;
}

.gp-selection-section-intro h2 {
  margin: 5px 0 0;
  color: #172033;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.gp-selection-section-intro p {
  margin: 0 0 2px;
  color: #64748b;
  font-size: 0.82rem;
}

.gp-selection-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0891b2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-selection-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.gp-selection-search {
  position: relative;
  flex: 1 1 auto;
  margin: 0;
}

.gp-selection-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 15px;
  color: #475569;
  background: #fff;
  border: 1px solid #dbe4ef;
  border-radius: 13px;
  font-size: 0.77rem;
  font-weight: 750;
}

.gp-selection-count i {
  color: #0891b2;
}

.gp-selection-search i {
  position: absolute;
  top: 50%;
  left: 16px;
  color: #94a3b8;
  transform: translateY(-50%);
}

.gp-selection-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px 12px 46px;
  background: #f8fafc;
  border: 1px solid #dbe4ef;
  border-radius: 13px;
  font: inherit;
}

.gp-selection-search input:focus {
  background: #fff;
  border-color: var(--gp-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.gp-selection-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 12px;
  max-height: 410px;
  overflow-y: auto;
  padding: 2px 4px 2px 2px;
}

.gp-choice {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  gap: 13px;
  min-height: 108px;
  padding: 16px;
  color: var(--gp-ink);
  background: #fff;
  border: 1px solid #dfe7f1;
  border-radius: 18px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gp-choice:hover {
  transform: translateY(-2px);
  background: #f8fbff;
  border-color: #bfdbfe;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

.gp-choice.is-selected {
  background: linear-gradient(145deg, #eff6ff, #ecfeff);
  border-color: var(--gp-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.gp-choice-logo {
  display: grid;
  width: 52px;
  height: 52px;
  overflow: hidden;
  place-items: center;
  color: #0e7490;
  background: #eef6ff;
  border-radius: 14px;
  font-size: 1.3rem;
}

.gp-choice-logo img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
  background: #fff;
}

.gp-choice-copy {
  min-width: 0;
}

.gp-choice-copy strong,
.gp-choice-copy small {
  display: block;
}

.gp-choice-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 7px;
}

.gp-choice-meta small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: #64748b;
  font-size: 0.7rem;
  white-space: nowrap;
}

.gp-choice-meta .gp-choice-chip {
  padding: 3px 7px;
  color: #0e7490;
  background: #ecfeff;
  border: 1px solid #cffafe;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.gp-choice-copy strong {
  overflow: hidden;
  color: #172033;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-choice-copy small {
  margin-top: 5px;
  color: var(--gp-muted);
  font-size: 0.75rem;
}

.gp-choice-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: transparent;
  background: #f1f5f9;
  border-radius: 50%;
}

.gp-choice.is-selected .gp-choice-check {
  color: #fff;
  background: var(--gp-blue);
}

.gp-selection-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
}

.gp-selection-actions [hidden] {
  display: none !important;
}

.gp-empty-state {
  grid-column: 1 / -1;
  padding: 48px 24px;
  color: var(--gp-muted);
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  text-align: center;
}

.gp-empty-state i {
  display: block;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 1.8rem;
}

.gp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

@keyframes gp-device-float {
  0%,
  100% {
    transform: translate3d(0, 3px, 0) rotate(-0.7deg);
  }
  50% {
    transform: translate3d(0, -13px, 0) rotate(0.7deg);
  }
}

@keyframes gp-device-ring {
  to {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

@keyframes gp-device-glow {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes gp-card-drift-one {
  0%,
  100% {
    transform: translate3d(0, 0, 38px) rotate(-0.5deg);
  }
  50% {
    transform: translate3d(7px, -10px, 38px) rotate(0.8deg);
  }
}

@keyframes gp-card-drift-two {
  0%,
  100% {
    transform: translate3d(0, 0, 42px) rotate(0.5deg);
  }
  50% {
    transform: translate3d(-6px, -9px, 42px) rotate(-0.7deg);
  }
}

@keyframes gp-signal-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(34, 211, 238, 0.48),
      0 0 18px rgba(34, 211, 238, 0.78);
  }
  70%,
  100% {
    box-shadow:
      0 0 0 14px rgba(34, 211, 238, 0),
      0 0 24px rgba(34, 211, 238, 0.36);
  }
}

@keyframes gp-scan {
  0%,
  100% {
    top: 5%;
    opacity: 0;
  }
  16%,
  84% {
    opacity: 1;
  }
  50% {
    top: calc(95% - 2px);
  }
}

@keyframes gp-orbit {
  from {
    transform: translate3d(-20px, -10px, 0) scale(0.94);
  }
  to {
    transform: translate3d(26px, 18px, 0) scale(1.06);
  }
}

@keyframes gp-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gp-view-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .gp-nav-menu {
    gap: 18px;
  }

  .gp-hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
  }

  .gp-floating-card {
    display: none;
  }

  .gp-nav-menu {
    gap: 16px;
  }

  .gp-nav-cta {
    display: none;
  }

  .gp-public-sector,
  .gp-contact-shell {
    grid-template-columns: 1fr;
  }

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

  .gp-flow-step:not(:last-child)::after {
    display: none;
  }

  .gp-auth-shell {
    gap: 36px;
  }

  .gp-selection-head {
    grid-template-columns: minmax(0, 1fr) 104px 220px;
    gap: 18px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .gp-selection-body {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 820px) {
  .gp-container {
    width: min(100% - 28px, 680px);
  }

  .gp-public .gp-container {
    width: min(100% - 40px, 680px);
  }

  .gp-app-grid,
  .gp-health-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .gp-app-copy {
    grid-row: 1;
  }

  .gp-public .gp-photo-section {
    --gp-photo-top: 0px;
    display: block;
    padding: calc(var(--gp-photo-top) + 100vw * 2 / 3 - 16px) 0 0;
  }

  .gp-hero.gp-photo-section {
    --gp-photo-top: 72px;
  }

  .gp-photo-section > .gp-section-photo {
    inset: var(--gp-photo-top) 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
  }

  .gp-photo-section::after {
    inset: var(--gp-photo-top) 0 auto;
    height: calc(100vw * 2 / 3 + 1px);
    background: linear-gradient(180deg, transparent 82%, var(--gp-photo-surface) 100%);
  }

  .gp-photo-section > .gp-container {
    padding: 32px 0 72px;
  }

  .gp-photo-section .gp-hero-copy,
  .gp-photo-section .gp-health-copy {
    width: 100%;
    max-width: none;
  }

  .gp-hero .gp-photo-caption {
    justify-content: center;
  }

  .gp-menu-toggle {
    display: inline-flex;
  }

  .gp-nav-menu {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--gp-line);
    border-radius: 18px;
    box-shadow: var(--gp-shadow-dark);
    backdrop-filter: blur(18px);
  }

  .gp-nav-menu.is-open {
    display: flex;
  }

  .gp-nav-menu a {
    display: block;
    padding: 12px;
    border-radius: 10px;
  }

  .gp-nav-menu a:hover {
    background: #f1f5f9;
  }

  .gp-nav-actions .gp-btn {
    display: none;
  }

  .gp-login-link {
    display: none;
  }

  .gp-hero {
    min-height: auto;
  }

  .gp-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 125px 0 92px;
  }

  .gp-hero-copy {
    text-align: center;
  }

  .gp-hero-copy > p,
  .gp-hero-copy h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .gp-hero-actions,
  .gp-trust-row {
    justify-content: center;
  }

  .gp-hero-visual {
    min-height: 380px;
  }

  .gp-device-float {
    width: min(100%, 480px);
  }

  .gp-capability-strip {
    margin-top: -24px;
  }

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

  .gp-capability:nth-child(odd) {
    border-right: 1px solid #e9eef6;
  }

  .gp-capability:last-child {
    grid-column: 1 / -1;
  }

  .gp-section {
    padding: 82px 0;
  }

  .gp-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gp-feature-wide,
  .gp-feature-medium,
  .gp-feature-third {
    grid-column: span 6;
  }

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

  .gp-solution-card {
    min-height: 285px;
  }

  .gp-public-sector,
  .gp-contact-shell {
    gap: 34px;
    padding: 38px 30px;
  }

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

  .gp-cta {
    padding: 48px 34px;
  }

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

  .gp-footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .gp-auth-shell {
    grid-template-columns: 1fr;
    max-width: 610px;
    gap: 28px;
    padding: 30px 0 50px;
  }

  .gp-auth-story {
    max-width: none;
    text-align: center;
  }

  .gp-auth-story .gp-brand {
    margin: 0 auto 18px;
  }

  .gp-auth-story-copy .gp-pill,
  .gp-auth-story-copy > p,
  .gp-auth-benefits {
    display: none;
  }

  .gp-auth-story h1 {
    max-width: 460px;
    margin: 8px auto 0;
    font-size: 2.25rem;
    line-height: 1.04;
  }

  .gp-auth-panel {
    justify-self: center;
  }

  .gp-selection-shell {
    padding: 28px 0;
  }

  .gp-selection-account {
    width: 100%;
    justify-content: space-between;
  }

  .gp-selection-head {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }

  .gp-selection-head-art {
    display: none;
  }

  .gp-selection-section-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .gp-hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.1rem);
  }

  .gp-app-showcase {
    padding: 22px 12px;
  }

  .gp-app-copy h2,
  .gp-health-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .gp-hero-copy > p {
    font-size: 0.98rem;
  }

  .gp-hero-actions {
    flex-direction: column;
  }

  .gp-hero-actions .gp-btn {
    width: 100%;
  }

  .gp-hero-visual {
    min-height: 310px;
  }

  .gp-device-stage {
    padding: 14px;
    border-radius: 28px;
  }

  .gp-device-signal {
    width: 6px;
    height: 6px;
  }

  .gp-capability {
    min-height: 80px;
    flex-direction: column;
    gap: 5px;
    padding: 12px 8px;
    font-size: 0.74rem;
  }

  .gp-bento {
    display: block;
  }

  .gp-feature-card {
    min-height: 230px;
    margin-bottom: 14px;
  }

  .gp-public-sector,
  .gp-contact-shell {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .gp-public-sector-points,
  .gp-form-row {
    grid-template-columns: 1fr;
  }

  .gp-contact-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

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

  .gp-flow-step {
    min-height: 210px;
  }

  .gp-security-panel,
  .gp-security-list {
    padding: 24px;
  }

  .gp-cta {
    padding: 38px 24px;
    border-radius: 24px;
  }

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

  .gp-footer-grid > :first-child {
    grid-column: auto;
  }

  .gp-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-auth-shell,
  .gp-selection-shell {
    width: min(100% - 20px, 560px);
  }

  .gp-auth-shell {
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .gp-auth-story-copy,
  .gp-auth-back {
    display: none;
  }

  .gp-auth-story .gp-brand {
    margin-bottom: 0;
  }

  .gp-auth-panel {
    border-radius: 22px;
  }

  .gp-auth-panel-head,
  .gp-auth-body {
    padding-right: 22px;
    padding-left: 22px;
  }

  .gp-auth-panel-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    padding-top: 24px;
    padding-bottom: 21px;
  }

  .gp-auth-body {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .gp-auth-context-note {
    margin-bottom: 14px;
    padding: 9px 11px;
    font-size: 0.74rem;
  }

  .gp-auth-panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .gp-auth-panel-head h2 {
    font-size: 1.48rem;
  }

  .gp-auth-panel-head p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .gp-auth-secondary-action,
  .gp-employee-link {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 11px;
    padding: 12px;
  }

  .gp-auth-secondary-action > i:first-child,
  .gp-employee-link-icon {
    width: 40px;
    height: 40px;
  }

  .gp-code-inputs {
    gap: 5px;
  }

  .gp-code-input {
    height: 49px;
    border-radius: 9px;
    font-size: 1.1rem;
  }

  .gp-selection-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-selection-card {
    border-radius: 22px;
  }

  .gp-selection-head,
  .gp-selection-body {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .gp-selection-progress {
    min-width: 0;
    width: 100%;
  }

  .gp-selection-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .gp-selection-count {
    min-height: 40px;
    justify-content: center;
  }

  .gp-selection-list {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }

  .gp-selection-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .gp-selection-actions .gp-btn {
    width: 100%;
  }
}

.gp-idface-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 48px;
  margin: 0 0 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gp-line);
  background: radial-gradient(ellipse at 82% 45%, #dcefff 0%, transparent 53%);
}

.gp-idface-copy h3 {
  margin: 20px 0 16px;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.gp-idface-copy > p {
  color: var(--gp-muted);
  line-height: 1.7;
}
.gp-idface-copy .gp-benefit-list {
  margin: 28px 0;
}
.gp-idface-product {
  margin: 0;
  text-align: center;
}
.gp-idface-product img {
  display: block;
  width: 280px;
  height: 410px;
  max-width: 100%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 16px;
}
.gp-idface-product figcaption {
  display: grid;
  gap: 5px;
}
.gp-idface-product figcaption a {
  color: var(--gp-navy);
  font-weight: 600;
}
.gp-idface-product figcaption span {
  color: var(--gp-muted);
  font-size: 0.75rem;
}

@media (max-width: 767px) {
  .gp-idface-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    background-position: bottom;
  }
  .gp-idface-product {
    grid-row: 1;
  }
  .gp-idface-product img {
    width: 240px;
    height: 352px;
  }
  .gp-idface-copy .gp-btn {
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gp-reveal {
    opacity: 1;
    transform: none;
  }
}
