:root {
  --gp-bg: #050505;
  --gp-bg-soft: #0f0d12;
  --gp-panel: rgba(18, 16, 16, 0.72);
  --gp-panel-strong: rgba(13, 12, 12, 0.9);
  --gp-line: rgba(255, 244, 232, 0.13);
  --gp-line-strong: rgba(255, 244, 232, 0.24);
  --gp-text: #f8f5f0;
  --gp-muted: #afa9a3;
  --gp-muted-dark: #746f6b;
  --gp-orange: #b86dff;
  --gp-peach: #d9a6ff;
  --gp-cream: #e5c8ff;
  --gp-pink: #c580ff;
  --gp-violet: #9f72e8;
  --gp-lime: #d8ff9d;
  --gp-font-sans: "Inter", sans-serif;
  --gp-font-display: "Space Grotesk", sans-serif;
  --gp-font-mono: "DM Mono", monospace;
  --gp-container: min(1180px, calc(100% - 40px));
  --gp-radius-lg: 30px;
  --gp-radius-md: 22px;
  --gp-radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--gp-text);
  background: linear-gradient(180deg, #101015 0%, #0f0f14 52%, #0c0c11 100%);
  font-family: var(--gp-font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background:
    repeating-linear-gradient(116deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(28deg, transparent 0 9px, rgba(255, 255, 255, 0.012) 9px 10px);
  mix-blend-mode: screen;
}

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

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gp-cream);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #0d0b10;
  background: var(--gp-cream);
  font-family: var(--gp-font-mono);
  font-size: 0.74rem;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 22px;
  left: 50%;
  width: var(--gp-container);
  transform: translateX(-50%);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
}

.nav-shell::after {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-family: var(--gp-font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1) drop-shadow(0 0 7px rgba(184, 109, 255, 0.64));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  color: var(--gp-muted);
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gp-peach);
  box-shadow: 0 0 9px rgba(184, 109, 255, 0.72);
  opacity: 0;
  transform: translateX(-50%) scale(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gp-peach), transparent);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.language-switch a {
  color: var(--gp-muted);
  font-size: 0.68rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.language-switch a:hover,
.language-switch a.is-active {
  color: var(--gp-text);
}

.nav-links a:hover::before,
.nav-links a.is-active::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 15px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gp-muted-dark);
  font-family: var(--gp-font-mono);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 17px;
  border: 1px solid rgba(229, 200, 255, 0.26);
  border-radius: 999px;
  color: #0d0b10;
  background: linear-gradient(135deg, var(--gp-cream), var(--gp-orange));
  font-size: 0.72rem;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(184, 109, 255, 0.12);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #f0ddff, var(--gp-peach));
  box-shadow: 0 0 28px rgba(184, 109, 255, 0.26);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  width: var(--gp-container);
  min-height: auto;
  margin: 16px auto 0;
  padding: 126px 0 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: none;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  left: -12%;
  right: -7%;
  bottom: -46%;
  height: 60%;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at 46% 58%, rgba(229, 178, 255, 0.42) 0%, rgba(184, 109, 255, 0.32) 31%, rgba(83, 50, 103, 0.3) 58%, transparent 76%);
  filter: blur(64px) saturate(0.72);
  opacity: 0.78;
  transform: none;
  animation: none;
}

.hero-glow::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  align-self: start;
  padding-top: 34px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 19px;
  color: #d4cdc6;
  font-family: var(--gp-font-mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gp-orange);
  box-shadow: 0 0 18px rgba(184, 109, 255, 0.72);
}

.hero-brand {
  margin-bottom: 28px;
  color: var(--gp-cream);
  background: linear-gradient(120deg, #f2dcff 0%, #d9a6ff 42%, #9f72e8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--gp-font-display);
  font-size: clamp(5.25rem, 8vw, 6.55rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: none;
  filter: drop-shadow(0 0 24px rgba(184, 109, 255, 0.16));
}

.hero-brand::before {
  display: none;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--gp-font-display);
  font-size: clamp(2.7rem, 3.7vw, 3.75rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--gp-cream);
}

.hero-lead {
  max-width: 620px;
  margin: 22px auto 0;
  color: #c1bbb5;
  font-size: 0.96rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #090807;
  background: var(--gp-text);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button::after {
  content: "↗";
  margin-left: 10px;
  font-size: 0.95em;
}

.button:hover {
  background: var(--gp-cream);
  box-shadow: 0 14px 45px rgba(255, 167, 106, 0.22);
  transform: translateY(-2px);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 244, 232, 0.68);
  font-size: 0.76rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.hero-text-link:hover {
  color: var(--gp-text);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 20px 0 0;
  color: rgba(255, 244, 232, 0.54);
  font-family: var(--gp-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.product-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  margin: 56px auto 0;
  justify-self: stretch;
}

.product-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% 8% -12% 1%;
  border-radius: 40%;
  background: rgba(184, 109, 255, 0.12);
  filter: blur(110px);
}

.product-window,
.video-window {
  position: relative;
  border: 1px solid rgba(255, 244, 232, 0.2);
  border-radius: 16px;
  background: rgba(5, 5, 6, 0.78);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.product-window video,
.video-window video {
  width: 100%;
  height: auto;
  background: #060607;
}

.product-caption {
  position: absolute;
  right: 16px;
  bottom: -27px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 244, 232, 0.55);
  font-family: var(--gp-font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-caption::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #31a764;
  box-shadow: 0 0 0 3px rgba(49, 167, 100, 0.1);
}

.section {
  position: relative;
  width: var(--gp-container);
  margin: 0 auto;
  padding: 120px 0 0;
}

.section + .section,
.trust-strip + .section {
  margin-top: 40px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--gp-font-display);
  font-size: clamp(2.7rem, 3.7vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-title em {
  color: var(--gp-cream);
  font-style: normal;
}

.section-copy,
.section-head .lead {
  margin: 0 0 6px;
  color: var(--gp-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  isolation: isolate;
  min-height: 292px;
  padding: 30px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-md);
  background: linear-gradient(145deg, rgba(22, 20, 20, 0.9), rgba(9, 9, 9, 0.8));
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease;
}

.feature-card:hover {
  border-color: var(--gp-line-strong);
  transform: translateY(-4px);
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  opacity: 0.42;
  filter: blur(42px);
  transition: opacity 250ms ease, transform 450ms ease;
}

.feature-card:nth-child(n)::before {
  right: -55px;
  bottom: -110px;
  background: rgba(184, 109, 255, 0.18);
  opacity: 0.12;
  filter: blur(62px);
}

.feature-card:hover::before {
  opacity: 0.28;
  transform: scale(1.08);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 50px;
  border: 1px solid var(--gp-line-strong);
  border-radius: 50%;
  color: #ded7d0;
  background: rgba(5, 5, 5, 0.42);
  font-family: var(--gp-font-mono);
  font-size: 0.67rem;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--gp-font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 510px;
  margin: 15px 0 0;
  color: #afa9a3;
  font-size: 0.92rem;
  line-height: 1.68;
}

.workspace-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1.28fr);
  align-items: center;
  gap: clamp(54px, 7vw, 98px);
}

.workspace-showcase-copy {
  max-width: 460px;
}

.workspace-showcase-copy .section-title {
  margin-top: 18px;
  font-size: clamp(2.3rem, 3.25vw, 3.3rem);
}

.workspace-showcase-text {
  margin: 25px 0 0;
  color: var(--gp-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.workspace-showcase-stage {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  isolation: isolate;
  border: 1px solid rgba(239, 220, 255, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(95% 125% at 10% 100%, rgba(222, 190, 226, 0.3) 0%, transparent 57%),
    radial-gradient(110% 95% at 88% 0%, rgba(223, 181, 255, 0.2) 0%, transparent 60%),
    linear-gradient(145deg, #31233b 0%, #60456c 56%, #2b2034 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 232, 0.07),
    inset 0 -1px 0 rgba(255, 244, 232, 0.035),
    0 28px 78px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.workspace-showcase-stage::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 244, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 244, 232, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  -webkit-mask-image: linear-gradient(112deg, #000 0%, rgba(0, 0, 0, 0.68) 35%, transparent 74%);
  mask-image: linear-gradient(112deg, #000 0%, rgba(0, 0, 0, 0.68) 35%, transparent 74%);
  opacity: 0.68;
}

.workspace-showcase-stage::after {
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: 19px;
  background: linear-gradient(
    116deg,
    rgba(255, 244, 232, 0.045) 0%,
    transparent 22%,
    transparent 70%,
    rgba(218, 170, 255, 0.035) 100%
  );
  content: "";
  pointer-events: none;
}

.workspace-showcase-window {
  position: absolute;
  z-index: 1;
  top: 5%;
  right: 8%;
  bottom: -20%;
  width: min(66%, 540px);
  overflow: hidden;
}

.workspace-showcase-window img {
  width: 118%;
  max-width: none;
  height: auto;
  transform: translateX(-1%);
  filter: brightness(1.06) contrast(1.04);
}

@media (max-width: 900px) {
  .workspace-showcase {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .workspace-showcase-copy {
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
  }

  .workspace-showcase-copy .section-kicker {
    justify-content: center;
  }

  .workspace-showcase-stage {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .workspace-showcase-window {
    right: 50%;
    width: min(66%, 480px);
    transform: translateX(50%);
  }
}

@media (max-width: 580px) {
  .workspace-showcase-stage {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .workspace-showcase-window {
    bottom: -24%;
    width: min(76vw, 330px);
  }
}

.provider-badges,
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.provider-badges span,
.feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(255, 244, 232, 0.12);
  border-radius: 999px;
  color: rgba(255, 244, 232, 0.68);
  background: rgba(5, 5, 5, 0.24);
  font-family: var(--gp-font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.025em;
}

.provider-badges img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.75;
}

.provider-proof-surface {
  position: relative;
  isolation: isolate;
  padding: 54px 42px 38px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  background:
    radial-gradient(circle at 7% 4%, rgba(217, 166, 255, 0.09), transparent 22rem),
    radial-gradient(circle at 94% 18%, rgba(154, 100, 255, 0.13), transparent 26rem),
    rgba(8, 8, 8, 0.84);
  overflow: hidden;
}

.provider-proof-surface::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% -24% 40%;
  height: 42%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(184, 109, 255, 0.28), rgba(217, 166, 255, 0.22));
  filter: blur(72px);
}

.provider-proof-head {
  margin-bottom: 34px;
}

.provider-live-grid,
.provider-roadmap-grid {
  display: grid;
  gap: 14px;
}

.provider-live-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.provider-roadmap-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.provider-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(255, 244, 232, 0.13);
  border-radius: 18px;
  background: rgba(7, 7, 7, 0.7);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.provider-card.is-live {
  min-height: 310px;
  background:
    radial-gradient(circle at 92% 7%, rgba(184, 109, 255, 0.15), transparent 15rem),
    rgba(12, 11, 11, 0.82);
}

.provider-card.is-live:nth-child(2) {
  background:
    radial-gradient(circle at 92% 7%, rgba(154, 100, 255, 0.18), transparent 15rem),
    rgba(12, 11, 11, 0.82);
}

.provider-card.is-roadmap {
  grid-column: span 2;
  min-height: 288px;
  background: rgba(255, 255, 255, 0.027);
}

.provider-card.is-roadmap:nth-child(4),
.provider-card.is-roadmap:nth-child(5) {
  grid-column: span 3;
}

.provider-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.provider-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 244, 232, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.provider-logo img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.provider-logo.needs-invert img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.provider-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(83, 201, 127, 0.24);
  border-radius: 999px;
  color: #8fdaa9;
  background: rgba(49, 167, 100, 0.08);
  font-family: var(--gp-font-mono);
  font-size: 0.53rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.provider-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4fc980;
  box-shadow: 0 0 0 3px rgba(79, 201, 128, 0.1);
}

.provider-status.is-roadmap {
  border-color: rgba(217, 166, 255, 0.14);
  color: rgba(217, 166, 255, 0.58);
  background: rgba(217, 166, 255, 0.035);
}

.provider-card h3 {
  margin: 24px 0 0;
  font-family: var(--gp-font-display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.provider-card > p {
  margin: 12px 0 0;
  color: var(--gp-muted);
  font-size: 0.83rem;
  line-height: 1.62;
}

.provider-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.provider-capabilities span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 244, 232, 0.11);
  border-radius: 999px;
  color: rgba(255, 244, 232, 0.52);
  font-family: var(--gp-font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.provider-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: auto;
  padding-top: 21px;
}

.provider-links a {
  color: var(--gp-cream);
  font-family: var(--gp-font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-underline-offset: 4px;
}

.provider-links a:hover {
  text-decoration: underline;
}

.provider-roadmap-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin: 38px 2px 18px;
}

.provider-roadmap-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.provider-roadmap-head span {
  color: var(--gp-orange);
  font-family: var(--gp-font-mono);
  font-size: 0.62rem;
}

.provider-roadmap-head h3,
.provider-roadmap-head p {
  margin: 0;
}

.provider-roadmap-head h3 {
  font-family: var(--gp-font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.provider-roadmap-head p {
  color: var(--gp-muted-dark);
  font-family: var(--gp-font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.provider-disclaimer {
  display: flex;
  gap: 15px;
  margin: 24px 2px 0;
  padding-top: 20px;
  border-top: 1px solid var(--gp-line);
  color: var(--gp-muted-dark);
  font-size: 0.69rem;
}

.provider-disclaimer span {
  flex: 0 0 auto;
  color: var(--gp-muted);
  font-family: var(--gp-font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Open provider proof: compact integrations above, current model catalog below. */
.provider-proof-surface {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.provider-proof-surface::before {
  display: none;
}

.provider-proof-head {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}

.provider-live-grid,
.provider-roadmap-grid {
  display: contents;
}

.provider-roadmap-head,
.provider-disclaimer {
  display: none;
}

.provider-proof-surface .provider-card,
.provider-proof-surface .provider-card.is-live,
.provider-proof-surface .provider-card.is-roadmap,
.provider-proof-surface .provider-card.is-roadmap:nth-child(4),
.provider-proof-surface .provider-card.is-roadmap:nth-child(5) {
  grid-column: auto;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 8px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.provider-roadmap-grid .provider-card:nth-child(3) {
  grid-column: auto;
}

.provider-proof-surface .provider-card-top {
  display: flex;
  justify-content: center;
  width: 100%;
}

.provider-proof-surface .provider-status,
.provider-proof-surface .provider-card > p,
.provider-proof-surface .provider-links {
  display: none;
}

.provider-proof-surface .provider-logo {
  width: 42px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.provider-proof-surface .provider-logo img {
  width: 31px;
  height: 31px;
}

.provider-proof-surface .provider-card h3 {
  margin: 8px 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.provider-proof-surface .provider-capabilities {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px 5px;
  margin-top: 8px;
}

.provider-proof-surface .provider-capabilities span {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 244, 232, 0.56);
  font-size: 0.49rem;
  line-height: 1.3;
  white-space: nowrap;
}

.provider-proof-surface .provider-capabilities span + span::before {
  content: "·";
  margin-right: 5px;
  color: rgba(184, 109, 255, 0.7);
}

.provider-model-catalog {
  grid-column: 1 / -1;
  margin-top: 26px;
  padding-top: 28px;
  border-top: 1px solid var(--gp-line);
}

.provider-model-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}

.provider-model-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--gp-muted);
  font-family: var(--gp-font-mono);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.provider-model-eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gp-accent);
  box-shadow: 0 0 18px rgba(184, 109, 255, 0.55);
  content: "";
}

.provider-model-intro h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin: 0;
  color: var(--gp-text);
  font-family: var(--gp-font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.provider-model-intro h3::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gp-accent);
  box-shadow: 0 0 18px rgba(184, 109, 255, 0.55);
  content: "";
}

.provider-model-intro h3 span {
  color: rgba(255, 244, 232, 0.42);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.provider-model-intro > p {
  max-width: 470px;
  margin: 0;
  color: var(--gp-muted);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: right;
}

.provider-model-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.provider-model-group {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 244, 232, 0.19);
}

.provider-model-group h4 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 2px;
  color: var(--gp-accent-light);
  font-family: var(--gp-font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.provider-model-group h4 span {
  color: rgba(255, 244, 232, 0.34);
  font-size: 0.47rem;
  letter-spacing: 0.04em;
}

.provider-model-list {
  display: grid;
}

.provider-model-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 3px 11px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 244, 232, 0.11);
}

.provider-model-mark {
  display: grid;
  grid-column: 1;
  grid-row: 1 / span 2;
  place-items: center;
  align-self: center;
  width: 26px;
  height: 26px;
}

.provider-model-mark img {
  display: block;
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.provider-model-mark img.needs-invert {
  filter: brightness(0) invert(1);
}

.provider-model-mark.is-neutral {
  color: rgba(255, 244, 232, 0.45);
  font-family: var(--gp-font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.provider-model-item strong {
  grid-column: 2;
  color: var(--gp-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.provider-model-item span {
  grid-column: 2;
  color: var(--gp-muted);
  font-size: 0.61rem;
  line-height: 1.45;
}

/* Unified provider-to-model workflow. */
.provider-proof-surface {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0 10px;
}

.provider-proof-head {
  display: block;
  width: 100%;
  max-width: 940px;
  margin: 0 auto 22px;
  text-align: center;
}

.provider-proof-head > div {
  max-width: 940px;
  margin: 0 auto;
}

.provider-proof-head .section-title {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(2.7rem, 3.7vw, 3.75rem);
  line-height: 1;
  text-wrap: balance;
}

.provider-proof-head .section-copy {
  max-width: 650px;
  margin: 17px auto 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.provider-proof-surface .provider-card,
.provider-proof-surface .provider-card.is-live,
.provider-proof-surface .provider-card.is-roadmap,
.provider-proof-surface .provider-card.is-roadmap:nth-child(4),
.provider-proof-surface .provider-card.is-roadmap:nth-child(5) {
  min-height: 76px;
  padding: 6px 2px;
}

.provider-proof-surface .provider-logo {
  width: 38px;
  height: 32px;
}

.provider-proof-surface .provider-logo img {
  width: 29px;
  height: 29px;
}

.provider-proof-surface .provider-card h3 {
  margin-top: 7px;
  font-size: 0.66rem;
}

.provider-routing {
  display: grid;
  grid-column: 1 / -1;
  justify-items: center;
  margin: 6px 0 9px;
  color: var(--gp-accent-light);
}

.provider-routing::before {
  width: 1px;
  height: 16px;
  background: linear-gradient(to bottom, transparent, rgba(184, 109, 255, 0.7));
  content: "";
}

.provider-routing::after {
  margin-top: 4px;
  color: rgba(184, 109, 255, 0.85);
  font-size: 0.82rem;
  line-height: 1;
  content: "↓";
}

.provider-routing h3 {
  margin: 6px 0 0;
  color: rgba(225, 190, 255, 0.96);
  font-family: var(--gp-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.provider-model-catalog {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.provider-model-groups {
  grid-template-columns: 1fr;
  gap: 0;
}

.provider-model-group {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: stretch;
  padding-top: 0;
  border-top: 1px solid rgba(255, 244, 232, 0.18);
}

.provider-model-group h4 {
  align-self: center;
  margin: 0;
  padding: 22px 0;
  font-size: 0.64rem;
}

.provider-model-group:nth-child(1) .provider-model-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.provider-model-group:nth-child(2) .provider-model-list,
.provider-model-group:nth-child(3) .provider-model-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.provider-model-item {
  align-content: center;
  min-height: 90px;
  padding: 18px 20px;
  border-bottom: 0;
}

.provider-model-item + .provider-model-item {
  border-left: 1px solid rgba(255, 244, 232, 0.1);
}

.provider-model-mark {
  width: 32px;
  height: 32px;
}

.provider-model-mark img {
  width: 29px;
  height: 29px;
}

.provider-model-item strong {
  font-size: 0.9rem;
}

.provider-model-item span {
  font-size: 0.65rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 36px;
  width: var(--gp-container);
  min-height: 230px;
  margin: 160px auto 0;
  padding: 54px 40px 60px;
  border-top: 1px solid rgba(255, 244, 232, 0.18);
  border-bottom: 1px solid rgba(255, 244, 232, 0.18);
  text-align: center;
}

.trust-strip > p {
  margin: 0;
  color: #d1c9c2;
  font-family: var(--gp-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 250px));
  align-items: center;
  justify-content: center;
  gap: clamp(64px, 9vw, 120px);
  width: 100%;
  max-width: 760px;
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo img {
  width: 100%;
  max-width: 250px;
  max-height: 72px;
  opacity: 1;
  object-fit: contain;
}

.trust-logo:first-child img {
  width: 80%;
  filter: brightness(0) invert(1) drop-shadow(0 0 22px rgba(184, 109, 255, 0.2));
}

.trust-logo:nth-child(2) img {
  filter: drop-shadow(0 0 22px rgba(255, 84, 84, 0.2));
}

.trust-strip + .section {
  margin-top: 72px;
}

.cad-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.cad-intro {
  position: relative;
  top: auto;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.cad-intro .section-title {
  margin-inline: auto;
  font-size: clamp(2.7rem, 3.7vw, 3.75rem);
}

.cad-intro .lead {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--gp-muted);
}

.connector-stack {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.connector-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.connector-tab:nth-child(6) {
  grid-column: 2;
}

.connector-tab {
  position: relative;
  min-width: 0;
  padding: 8px 4px 14px;
  border: 0;
  border-radius: 0;
  appearance: none;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.connector-tab::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 1px;
  background: linear-gradient(90deg, var(--gp-peach), rgba(184, 109, 255, 0.18));
  box-shadow: 0 0 12px rgba(184, 109, 255, 0.34);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.connector-tab:hover::after,
.connector-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.connector-tab:focus-visible {
  outline: 2px solid var(--gp-peach);
  outline-offset: 5px;
}

.connector-tab .name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  font-size: 0.71rem;
  font-weight: 600;
}

.connector-tab .name img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.84;
}

.connector-tab:hover .name,
.connector-tab.is-active .name {
  color: var(--gp-cream);
}

.connector-tab.is-active .name img {
  opacity: 1;
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 7px rgba(184, 109, 255, 0.56));
}

.connector-tab .status {
  display: block;
  margin-top: 7px;
  color: var(--gp-muted-dark);
  font-family: var(--gp-font-mono);
  font-size: 0.54rem;
}

.connector-tab .beta-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 7px;
  border: 1px solid rgba(217, 166, 255, 0.2);
  border-radius: 999px;
  color: var(--gp-cream);
  font-family: var(--gp-font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.connector-tab.is-planned {
  cursor: not-allowed;
  opacity: 0.28;
}

.connector-tab.is-planned:hover,
.connector-tab.is-planned.is-active {
  opacity: 0.28;
}

.connector-tab.is-planned::after {
  display: none;
}

.video-window {
  border-radius: 15px;
}

.connector-placeholder {
  display: grid;
  min-height: clamp(260px, 42vw, 470px);
  border: 1px dashed rgba(217, 166, 255, 0.22);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 54%, rgba(184, 109, 255, 0.13), transparent 34%),
    rgba(10, 8, 12, 0.48);
  place-items: center;
  overflow: hidden;
}

.connector-placeholder[hidden] {
  display: none;
}

.connector-placeholder-inner {
  max-width: 360px;
  padding: 42px 28px;
  text-align: center;
}

.connector-placeholder img {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.88;
}

.connector-placeholder p {
  margin: 0;
  color: var(--gp-peach);
  font-family: var(--gp-font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connector-placeholder h3 {
  margin: 10px 0 8px;
  font-family: var(--gp-font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.connector-placeholder span {
  color: var(--gp-muted);
  font-size: 0.86rem;
}

.pricing-surface {
  position: relative;
  isolation: isolate;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.pricing-surface::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30%;
  right: -12%;
  width: 82%;
  height: 105%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 58% 56%, rgba(184, 109, 255, 0.3) 0%, rgba(83, 50, 103, 0.24) 45%, transparent 74%);
  filter: blur(82px);
  opacity: 0.42;
}

.pricing-surface .section-head {
  position: relative;
  z-index: 2;
}

.pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trial-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 244, 232, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.trial-strip .plan {
  margin: 0;
  color: var(--gp-cream);
  font-family: var(--gp-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trial-copy {
  margin: 6px 0 0;
  color: var(--gp-muted);
  font-size: 0.82rem;
}

.trial-copy strong {
  color: var(--gp-text);
  font-weight: 600;
}

.trial-action {
  display: flex;
  align-items: center;
  gap: 18px;
}

.trial-action > span {
  color: var(--gp-text);
  font-family: var(--gp-font-display);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.trial-action small {
  color: var(--gp-muted-dark);
  font-family: var(--gp-font-mono);
  font-size: 0.52rem;
  letter-spacing: 0;
}

.trial-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #0d0b10;
  background: var(--gp-text);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.trial-action a:hover {
  background: var(--gp-cream);
  transform: translateY(-1px);
}

.pricing-shared {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 14px;
  color: var(--gp-muted);
  font-size: 0.72rem;
  text-align: center;
}

.pricing-shared::before {
  color: var(--gp-peach);
  content: "+";
  font-family: var(--gp-font-mono);
}

.pricing-shared strong {
  color: var(--gp-text);
  font-weight: 600;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 27px;
  border: 1px solid rgba(255, 244, 232, 0.15);
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(20px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.price-card:hover {
  border-color: rgba(255, 244, 232, 0.3);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: rgba(217, 166, 255, 0.36);
  background: linear-gradient(180deg, rgba(35, 29, 43, 0.68), rgba(10, 8, 12, 0.78));
}

.price-card.featured::before {
  position: absolute;
  top: 20px;
  right: 22px;
  content: "Recommended";
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: #160d1c;
  background: var(--gp-cream);
  font-family: var(--gp-font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html[lang="de"] .price-card.featured::before {
  content: "Empfohlen";
}

.price-card .plan {
  margin: 0;
  font-family: var(--gp-font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.seat-line {
  margin: 7px 0 0;
  color: var(--gp-cream);
  font-family: var(--gp-font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.price-card .hint {
  min-height: 60px;
  margin: 22px 0 0;
  color: var(--gp-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--gp-line);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 17px;
  color: #c7c1bb;
  font-size: 0.8rem;
}

.price-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gp-peach);
  font-family: var(--gp-font-mono);
}

.price-action {
  margin-top: auto;
}

.price-action .amount {
  margin: 0;
  font-family: var(--gp-font-display);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-note {
  margin: 7px 0 18px;
  color: var(--gp-muted-dark);
  font-family: var(--gp-font-mono);
  font-size: 0.58rem;
}

.price-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--gp-line-strong);
  border-radius: 999px;
  color: var(--gp-text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.price-action a:hover,
.featured .price-action a {
  color: #0d0b10;
  background: var(--gp-text);
}

.featured .price-action a:hover {
  background: var(--gp-cream);
}

.pricing-legal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 22px;
  margin-top: 24px;
  padding: 23px 4px 0;
  border-top: 1px solid var(--gp-line);
}

.pricing-legal p {
  margin: 0;
  color: var(--gp-muted-dark);
  font-size: 0.68rem;
  line-height: 1.55;
}

.pricing-legal strong {
  color: #aaa29b;
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(72px, 6vw, 112px);
  padding-top: 115px;
}

.faq-title {
  position: sticky;
  top: 28px;
  align-self: start;
}

.faq-title h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--gp-font-display);
  font-size: clamp(2.7rem, 3.7vw, 3.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.faq-title h2 span {
  display: block;
  color: var(--gp-cream);
}

.faq-list {
  border-top: 1px solid var(--gp-line);
}

.faq-item {
  border-bottom: 1px solid var(--gp-line);
}

.faq-item summary {
  position: relative;
  padding: 26px 54px 26px 0;
  color: #ded9d3;
  font-family: var(--gp-font-display);
  font-size: 1.12rem;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 25px;
  right: 8px;
  color: var(--gp-peach);
  font-family: var(--gp-font-mono);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 720px;
  margin: -6px 54px 27px 0;
  color: var(--gp-muted);
  font-size: 0.9rem;
}

.cta {
  position: relative;
  isolation: isolate;
  width: var(--gp-container);
  min-height: 360px;
  margin: 120px auto 0;
  padding: 46px 0;
  background: transparent;
}

.cta::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 38% -10% -52%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 46% 58%, rgba(229, 178, 255, 0.5) 0%, rgba(184, 109, 255, 0.42) 34%, rgba(83, 50, 103, 0.36) 61%, transparent 78%);
  filter: blur(58px) saturate(0.76);
  transform: none;
}

.cta::after {
  display: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.cta h2 {
  margin: 0;
  font-family: var(--gp-font-display);
  font-size: clamp(2.7rem, 3.7vw, 3.75rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.cta p {
  max-width: 590px;
  margin: 16px 0 0;
  color: #cbc3bc;
}

.cta .hero-actions {
  margin-top: 24px;
}

.site-footer {
  width: var(--gp-container);
  margin: 30px auto 0;
  padding: 55px 4px 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.42fr) minmax(180px, 0.55fr);
  gap: 70px;
}

.footer-brand p {
  max-width: 410px;
  margin: 20px 0 0;
  color: var(--gp-muted);
  font-size: 0.86rem;
}

.footer-built {
  display: block;
  margin-top: 24px;
  color: var(--gp-muted-dark);
  font-family: var(--gp-font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--gp-muted-dark);
  font-family: var(--gp-font-mono);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 9px;
}

.footer-column a {
  color: #b9b2ac;
  font-size: 0.76rem;
  text-decoration: none;
}

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

.footer-copy {
  margin: 21px 0 0;
  color: var(--gp-muted-dark);
  font-size: 0.64rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 750ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding: 122px 0 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
    padding-top: 24px;
  }

  .product-stage {
    width: 100%;
    max-width: 100%;
    margin: 42px auto 0;
    justify-self: stretch;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card {
    min-height: 450px;
  }

  .provider-roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-proof-surface .provider-card,
  .provider-proof-surface .provider-card.is-live,
  .provider-proof-surface .provider-card.is-roadmap,
  .provider-proof-surface .provider-card.is-roadmap:nth-child(4),
  .provider-proof-surface .provider-card.is-roadmap:nth-child(5),
  .provider-roadmap-grid .provider-card:nth-child(3) {
    grid-column: auto;
  }

  .provider-proof-surface {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .provider-proof-head .section-title {
    font-size: clamp(2.7rem, 3.7vw, 3.75rem);
  }

  .provider-model-group {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .cad-layout {
    grid-template-columns: 1fr;
  }

  .cad-intro,
  .faq-title {
    position: relative;
    top: auto;
  }

  .cad-intro .lead {
    max-width: 650px;
  }
}

@media (max-width: 820px) {
  :root {
    --gp-container: min(100% - 26px, 1180px);
  }

  .site-header {
    top: 13px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 54px;
    padding: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    margin-top: 8px;
    padding: 106px 0 38px;
    border-radius: 0;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero h1,
  .section-title,
  .cad-intro .section-title,
  .faq-title h2,
  .cta h2 {
    font-size: clamp(2.5rem, 7.8vw, 3.55rem);
  }

  .hero-brand {
    font-size: clamp(4.15rem, 10vw, 5.2rem);
  }

  .product-stage {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
  }

  .section {
    padding-top: 96px;
  }

  .section + .section,
  .trust-strip + .section {
    margin-top: 24px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .provider-proof-head {
    display: block;
    margin-bottom: 22px;
    text-align: center;
  }

  .provider-proof-head .section-title {
    font-size: clamp(2.5rem, 7.8vw, 3.55rem);
  }

  .provider-proof-head .section-copy {
    margin: 17px auto 0;
  }

  .feature-card,
  .feature-card:nth-child(n) {
    grid-column: span 12;
  }

  .feature-card {
    min-height: 260px;
  }

  .feature-number {
    margin-bottom: 45px;
  }

  .provider-proof-surface {
    padding: 0;
    border-radius: 0;
  }

  .provider-model-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .provider-model-intro > p {
    text-align: left;
  }

  .provider-model-groups {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .provider-model-group {
    grid-template-columns: 1fr;
  }

  .provider-model-group h4 {
    padding: 16px 0 11px;
  }

  .provider-model-group:nth-child(1) .provider-model-list,
  .provider-model-group:nth-child(2) .provider-model-list,
  .provider-model-group:nth-child(3) .provider-model-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-model-item {
    min-height: 72px;
    padding: 14px 12px;
    border-top: 1px solid rgba(255, 244, 232, 0.08);
    border-left: 0;
  }

  .provider-model-item + .provider-model-item {
    border-left: 0;
  }

  .provider-model-item:nth-child(even) {
    border-left: 1px solid rgba(255, 244, 232, 0.1);
  }

  .provider-roadmap-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .provider-disclaimer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    margin-top: 130px;
    padding: 46px 10px 50px;
  }

  .trust-logos {
    gap: 40px;
  }

  .trust-logo img {
    max-width: 220px;
    max-height: 64px;
  }

  .trust-strip + .section {
    margin-top: 48px;
  }

  .connector-stack {
    padding: 0;
    border-radius: 0;
  }

  .connector-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .connector-tab:nth-child(6) {
    grid-column: auto;
  }

  .pricing-surface {
    padding: 0;
    border-radius: 0;
  }

  .pricing-legal {
    grid-template-columns: 1fr;
  }

  .trial-strip {
    gap: 20px;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 90px;
  }

  .cta {
    min-height: 360px;
    margin-top: 96px;
    padding: 42px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .brand span {
    display: inline;
  }

  .brand {
    gap: 8px;
    font-size: 0.9rem;
  }

  .brand img {
    width: 23px;
    height: 23px;
  }

  .language-switch {
    gap: 5px;
  }

  .hero {
    padding-top: 102px;
    padding-inline: 0;
    padding-bottom: 32px;
  }

  .hero h1,
  .section-title,
  .cad-intro .section-title,
  .faq-title h2,
  .cta h2 {
    font-size: clamp(2.1rem, 10.2vw, 2.8rem);
  }

  .provider-proof-head .section-title {
    font-size: clamp(2.1rem, 10.2vw, 2.8rem);
  }

  .hero-brand {
    margin-bottom: 22px;
    font-size: clamp(3.15rem, 15vw, 4rem);
  }

  .hero-lead {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .product-stage {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
  }

  .product-caption {
    right: 10px;
    bottom: -24px;
    font-size: 0.5rem;
  }

  .hero-actions {
    gap: 14px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .feature-card {
    min-height: 250px;
    padding: 24px;
  }

  .feature-number {
    margin-bottom: 38px;
  }

  .provider-live-grid,
  .provider-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .provider-card.is-live,
  .provider-card.is-roadmap {
    min-height: 0;
  }

  .provider-card {
    padding: 22px;
  }

  .provider-card h3 {
    margin-top: 20px;
  }

  .provider-proof-surface {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
    padding: 0;
  }

  .provider-proof-surface .provider-card,
  .provider-proof-surface .provider-card.is-live,
  .provider-proof-surface .provider-card.is-roadmap {
    grid-column: auto;
    min-height: 74px;
    padding: 8px 3px;
  }

  .provider-roadmap-grid .provider-card:nth-child(3) {
    grid-column: auto;
  }

  .provider-proof-surface .provider-card h3 {
    margin-top: 7px;
  }

  .provider-model-catalog {
    margin-top: 0;
    padding-top: 0;
  }

  .provider-model-intro {
    gap: 10px;
    margin-bottom: 18px;
  }

  .provider-model-intro h3 {
    gap: 7px 11px;
    font-size: 0.58rem;
  }

  .provider-model-groups {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .provider-model-group:nth-child(1) .provider-model-list,
  .provider-model-group:nth-child(2) .provider-model-list,
  .provider-model-group:nth-child(3) .provider-model-list {
    grid-template-columns: 1fr;
  }

  .provider-model-item:nth-child(even),
  .provider-model-item + .provider-model-item {
    border-left: 0;
  }

  .provider-routing {
    margin-top: 7px;
  }

  .provider-links {
    margin-top: 20px;
    padding-top: 0;
  }

  .trust-logos {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 430px;
  }

  .trial-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .trial-action {
    justify-content: space-between;
    gap: 12px;
  }

  .trial-action a {
    padding-inline: 15px;
  }

  .cta {
    padding: 34px 20px;
  }

  .cta .hero-actions {
    margin-top: 20px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

/* Simplified provider → model → Simsala loop. */
.provider-proof-surface {
  grid-template-columns: 1fr;
  gap: 0;
}

.provider-proof-head {
  grid-column: 1;
  max-width: 900px;
  margin-bottom: 42px;
}

.provider-proof-head .section-title {
  max-width: 900px;
}

.provider-proof-surface > .provider-live-grid,
.provider-proof-surface > .provider-roadmap-head,
.provider-proof-surface > .provider-roadmap-grid,
.provider-proof-surface > .provider-disclaimer,
.provider-proof-surface > .provider-routing,
.provider-proof-surface > .provider-model-catalog {
  display: none;
}

.provider-loop {
  display: grid;
  grid-column: 1;
  grid-template-columns: 1fr;
  justify-items: center;
  width: min(100%, 920px);
  margin: 0 auto;
}

.provider-loop-step {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  text-align: center;
}

.provider-loop-eyebrow {
  color: rgba(255, 244, 232, 0.5);
  font-family: var(--gp-font-mono);
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.provider-loop-step > strong {
  margin-top: 15px;
  color: var(--gp-text);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
}

.provider-loop-simsala > strong,
.provider-loop-return > strong {
  color: var(--gp-accent-light);
}

.provider-loop-step > span:last-child {
  margin-top: 12px;
  color: var(--gp-muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.provider-loop-arrow {
  display: flex;
  height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
}

.provider-loop-arrow::before {
  width: 1px;
  height: 31px;
  background: linear-gradient(to bottom, rgba(196, 127, 255, 0.18), rgba(196, 127, 255, 0.78));
  content: "";
}

.provider-loop-arrow::after {
  margin-top: 2px;
  color: rgba(196, 127, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1;
  content: "↓";
}

.provider-loop-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  width: min(100%, 500px);
  margin: 18px auto 0;
}

.provider-loop-logos img {
  width: 30px;
  height: 30px;
  margin: auto;
  object-fit: contain;
}

.provider-loop img.needs-invert {
  filter: brightness(0) invert(1);
}

.provider-loop-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  width: min(100%, 680px);
  margin-top: 17px;
}

.provider-loop-lane {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 244, 232, 0.1);
  border-bottom: 1px solid rgba(255, 244, 232, 0.1);
}

.provider-loop-lane > strong {
  color: rgba(255, 244, 232, 0.7);
  font-family: var(--gp-font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.provider-loop-lane > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
}

.provider-loop-lane img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.provider-model-details {
  grid-column: 1;
  width: min(100%, 920px);
  margin: 38px auto 0;
  border-top: 1px solid rgba(255, 244, 232, 0.16);
  border-bottom: 1px solid rgba(255, 244, 232, 0.16);
}

.provider-model-details summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 244, 232, 0.72);
  cursor: pointer;
  font-size: 0.72rem;
  list-style: none;
}

.provider-model-details summary::-webkit-details-marker {
  display: none;
}

.provider-model-details summary > span:last-child {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 244, 232, 0.42);
  font-family: var(--gp-font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-model-details summary i {
  color: var(--gp-accent-light);
  font-size: 1rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.provider-model-details[open] summary i {
  transform: rotate(45deg);
}

.provider-model-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 2px 0 26px;
}

.provider-model-details-grid p {
  display: grid;
  gap: 8px;
  margin: 0;
}

.provider-model-details-grid strong {
  color: rgba(255, 244, 232, 0.76);
  font-family: var(--gp-font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.provider-model-details-grid span {
  color: var(--gp-muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .provider-loop {
    width: min(100%, 780px);
  }
}

@media (max-width: 680px) {
  .provider-proof-head {
    margin-bottom: 30px;
  }

  .provider-loop {
    grid-template-columns: 1fr;
  }

  .provider-loop-arrow {
    display: flex;
    height: 48px;
  }

  .provider-loop-step {
    padding: 8px 0;
  }

  .provider-loop-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 25px;
    width: min(100%, 270px);
  }

  .provider-loop-lanes {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 330px);
  }

  .provider-loop-lane {
    min-height: 74px;
  }

  .provider-model-details {
    margin-top: 30px;
  }

  .provider-model-details summary {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 14px 0;
  }

  .provider-model-details-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Compact provider and model system. */
.provider-system {
  display: grid;
  grid-column: 1;
  justify-items: center;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.provider-system-canvas {
  width: 100%;
  padding: 26px 20px;
  border-top: 1px solid rgba(255, 244, 232, 0.16);
  border-bottom: 1px solid rgba(255, 244, 232, 0.16);
}

.provider-system-label,
.provider-system-accounts > h3,
.provider-system-model-group > h3,
.provider-system-bridge span {
  font-family: var(--gp-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.provider-system-label {
  color: rgba(255, 244, 232, 0.48);
  font-size: 0.55rem;
}

.provider-system-canvas h3 {
  margin: 10px 0 8px;
  color: var(--gp-accent-light);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
}

.provider-system-canvas p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 0.74rem;
}

.provider-system-bridge {
  display: flex;
  height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.provider-system-bridge span {
  color: rgba(255, 244, 232, 0.43);
  font-size: 0.5rem;
}

.provider-system-bridge i {
  width: 1px;
  height: 25px;
  background: linear-gradient(to bottom, rgba(196, 127, 255, 0.2), rgba(196, 127, 255, 0.75));
}

.provider-system-bridge b {
  color: rgba(196, 127, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
}

.provider-system-accounts {
  width: 100%;
}

.provider-system-accounts > h3,
.provider-system-model-group > h3 {
  margin: 0;
  color: rgba(255, 244, 232, 0.6);
  font-size: 0.57rem;
  font-weight: 600;
}

.provider-system-providers {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.provider-system-providers > div {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.provider-system-providers img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.provider-system img.needs-invert {
  filter: brightness(0) invert(1);
}

.provider-system-providers span,
.provider-system-model-list span {
  color: rgba(255, 244, 232, 0.62);
  font-size: 0.62rem;
}

.provider-system-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  width: 100%;
}

.provider-system-model-group {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 244, 232, 0.13);
  border-bottom: 1px solid rgba(255, 244, 232, 0.13);
}

.provider-system-model-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.provider-system-model-list.is-video {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.provider-system-model-list > div {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.provider-system-model-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 820px) {
  .provider-system-providers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .provider-system-models {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, 560px);
  }
}

@media (max-width: 580px) {
  .provider-system-providers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .provider-system-providers > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .provider-system-model-list,
  .provider-system-model-list.is-video {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-system-model-list.is-video > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

/* Provider → Simsala ← models. */
.provider-system {
  grid-template-columns: minmax(0, 1fr) 44px minmax(190px, 0.7fr) 44px minmax(0, 1fr);
  align-items: center;
  justify-items: stretch;
  width: min(100%, 1160px);
}

.provider-system-side {
  min-width: 0;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 244, 232, 0.13);
  border-bottom: 1px solid rgba(255, 244, 232, 0.13);
}

.provider-system-side > h3 {
  margin: 10px 0 6px;
  color: var(--gp-text);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.1;
}

.provider-system-side > p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 0.66rem;
}

.provider-system-canvas {
  padding: 38px 16px;
  border-color: rgba(196, 127, 255, 0.42);
}

.provider-system-canvas h3 {
  margin: 9px 0 8px;
  font-size: clamp(2.3rem, 3.4vw, 3.5rem);
  line-height: 0.95;
}

.provider-system-canvas p {
  font-size: 0.66rem;
  line-height: 1.65;
}

.provider-system-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: var(--gp-accent-light);
}

.provider-system-arrow::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 127, 255, 0.16), rgba(196, 127, 255, 0.72), rgba(196, 127, 255, 0.16));
  content: "";
}

.provider-system-arrow span {
  position: relative;
  z-index: 1;
  padding: 1px 5px;
  background: #0f0f14;
  font-size: 1.1rem;
  line-height: 1;
}

.provider-system-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 10px;
  margin: 23px auto 0;
}

.provider-system-providers > div {
  flex: 0 0 calc(25% - 10px);
}

.provider-system-providers img {
  width: 27px;
  height: 27px;
}

.provider-system-providers span,
.provider-system-model-list span {
  color: rgba(255, 244, 232, 0.58);
  font-size: 0.56rem;
  line-height: 1.25;
}

.provider-system-models {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}

.provider-system-model-group {
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 244, 232, 0.09);
  border-bottom: 0;
}

.provider-system-model-group > h4 {
  margin: 0;
  color: rgba(255, 244, 232, 0.52);
  font-family: var(--gp-font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.provider-system-model-list,
.provider-system-model-list.is-video {
  display: flex;
  grid-template-columns: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 8px;
  margin-top: 13px;
}

.provider-system-model-list > div {
  flex: 0 0 calc(25% - 8px);
}

.provider-system-model-list.is-video > div {
  flex-basis: calc(30% - 8px);
}

.provider-system-model-list img {
  width: 25px;
  height: 25px;
}

@media (max-width: 900px) {
  .provider-system {
    grid-template-columns: 1fr;
    width: min(100%, 580px);
  }

  .provider-system-arrow {
    height: 54px;
  }

  .provider-system-arrow::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(196, 127, 255, 0.16), rgba(196, 127, 255, 0.72), rgba(196, 127, 255, 0.16));
  }

  .provider-system-arrow span {
    transform: rotate(90deg);
  }

  .provider-system-side {
    padding: 25px 18px;
  }

  .provider-system-canvas {
    padding: 34px 18px;
  }

  .provider-system-providers {
    width: min(100%, 430px);
  }

  .provider-system-models {
    width: min(100%, 460px);
    margin-inline: auto;
  }
}

@media (max-width: 580px) {
  .provider-system-providers > div,
  .provider-system-model-list > div,
  .provider-system-model-list.is-video > div {
    flex-basis: calc(50% - 8px);
  }

  .provider-system-providers > div:last-child:nth-child(odd),
  .provider-system-model-list.is-video > div:last-child:nth-child(odd) {
    grid-column: auto;
    flex-basis: calc(50% - 8px);
  }
}

/* Radically simplified provider proof. */
.provider-simple {
  display: grid;
  grid-column: 1;
  justify-items: center;
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.provider-simple-label {
  margin: 0 0 22px;
  color: rgba(255, 244, 232, 0.5);
  font-family: var(--gp-font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.provider-simple-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 22px;
  width: 100%;
}

.provider-simple-providers > div {
  display: grid;
  flex: 0 0 100px;
  justify-items: center;
  gap: 10px;
}

.provider-simple-providers img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.provider-simple img.needs-invert {
  filter: brightness(0) invert(1);
}

.provider-simple-providers span {
  color: rgba(255, 244, 232, 0.58);
  font-size: 0.6rem;
  line-height: 1.25;
}

.provider-simple-flow {
  display: flex;
  height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.provider-simple-flow i {
  width: 1px;
  height: 47px;
  background: linear-gradient(to bottom, rgba(196, 127, 255, 0.12), rgba(196, 127, 255, 0.72));
}

.provider-simple-flow span {
  margin-top: 2px;
  color: var(--gp-accent-light);
  font-size: 0.9rem;
  line-height: 1;
}

.provider-simple-flow.is-secondary {
  height: 64px;
}

.provider-simple-flow.is-secondary i {
  height: 34px;
}

.provider-simple-canvas {
  width: min(100%, 520px);
  padding: 8px 20px;
  border: 0;
}

.provider-simple-canvas h3 {
  margin: 0;
  color: var(--gp-accent-light);
  font-family: var(--gp-font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.provider-simple-capabilities {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: var(--gp-muted);
  font-family: var(--gp-font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-simple-capabilities i {
  color: rgba(196, 127, 255, 0.68);
  font-style: normal;
}

@media (max-width: 620px) {
  .provider-simple-providers {
    gap: 22px 10px;
  }

  .provider-simple-providers > div {
    flex-basis: 82px;
  }

  .provider-simple-providers img {
    width: 29px;
    height: 29px;
  }

  .provider-simple-flow {
    height: 70px;
  }

  .provider-simple-flow i {
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
