/*
  Station70 Gatekeeper stylesheet.
  Loaded (via <helmet>) by gatekeeper.html only. Extracted from inline
  `style`/`style-hover`/`style-active` attributes per the same convention
  as blog.css/careers.css/architecture.css/404.css/bunker.css/eula.css —
  see CLAUDE.md's DC runtime section for why inline styles are otherwise
  this codebase's default.

  Classes: `.s70-gk-*` throughout — hero + gateway diagram (source badges,
  policy engine icon, side callouts, vault/deploy tag rows), the "Works
  with" LLM strip, How it works / Compliance / Why Gatekeeper / Capabilities
  / Getting started sections, the integrations logo grid, FAQ accordion,
  and the closing CTA banner + final CTA. A handful of classes are reused
  across sections where the exact same declaration already existed in more
  than one place (`.s70-text-orange`, `.s70-gk-card`, `.s70-gk-card-p`,
  `.s70-gk-eyebrow`, `.s70-gk-h2`, `.s70-gk-trust-link`, `.s70-gk-cta-inline`)
  — that's the DRY point of one shared stylesheet for the page, not a
  naming mistake. Also carries the same `html, body` reset plus
  `s70-marquee`/`s70-dropdown-in`/`gk-blink`/`gk-pulse` `@keyframes` as its
  siblings, for the same reason — this was previously an identical inline
  `<style>` block in this page's own `<head>`.

  Pre-existing `.s70-gk-hero-grid`/`.s70-gk-why-grid`/`.s70-gk-sidelabel`/
  `.s70-gk-sources` classes already existed before this extraction, as
  `responsive.css` mobile-breakpoint hooks (`!important` overrides) on
  elements that otherwise carried a full inline `style=` alongside them —
  this file adds each one's base (desktop) declaration under that same
  class rather than inventing a new name, so `responsive.css`'s existing
  selectors keep working unchanged.

  Colors are CSS custom properties from color-tokens.css (loaded alongside
  it) or colors_and_type.css's sitewide tokens, never literals.
*/

html, body { margin: 0; padding: 0; background: var(--s70-black); }
@keyframes s70-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes s70-dropdown-in { from { opacity: 0; transform: translateX(-50%) translateY(-8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes gk-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@keyframes gk-pulse { 0% { box-shadow: 0 0 0 0 var(--tint-orange-35); } 70% { box-shadow: 0 0 0 18px var(--tint-fade); } 100% { box-shadow: 0 0 0 0 var(--tint-fade); } }

.s70-text-orange { color: var(--s70-orange); }

.s70-gk-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--s70-black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.s70-gk-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(64% 58% at 78% 44%, var(--tint-orange-20) 0%, var(--tint-orange-06) 34%, var(--tint-fade) 66%);
}

.s70-gk-hero-gridpattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  background-image: linear-gradient(var(--tint-white-035) 1px, transparent 1px), linear-gradient(90deg, var(--tint-white-035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(82% 82% at 60% 42%, var(--tint-mask-solid) 28%, transparent 80%);
  mask-image: radial-gradient(82% 82% at 60% 42%, var(--tint-mask-solid) 28%, transparent 80%);
}

.s70-gk-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 600px;
}

.s70-gk-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.s70-gk-badge-dash {
  width: 24px;
  height: 2px;
  background: var(--s70-orange);
  box-shadow: 0 0 8px var(--tint-orange-70);
}

.s70-gk-badge-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tint-accent-soft);
}

.s70-gk-hero-p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--s70-ink-100);
  max-width: 500px;
  text-wrap: pretty;
}

.s70-gk-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.s70-gk-gateway {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.s70-gk-gateway-inner {
  position: relative;
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s70-gk-source-chip {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--s70-ink-700);
  border: 1px solid var(--tint-white-12);
  border-radius: 10px;
  white-space: nowrap;
}

.s70-gk-source-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--s70-orange);
  box-shadow: 0 0 7px var(--tint-orange-70);
  animation: gk-blink 2.4s infinite;
}

.s70-gk-source-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tint-white-70);
}

.s70-gk-icon-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.s70-gk-policybox {
  width: 128px;
  height: 128px;
  border-radius: 24px;
  background: var(--tint-header-bg);
  border: 1px solid var(--tint-orange-35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gk-pulse 3.2s infinite;
}

.s70-gk-vaulttags-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 13px 15px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: var(--tint-media-bg);
}

.s70-gk-vaulttag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tint-white-70);
  padding: 4px 8px;
  border: 1px solid var(--tint-white-12);
  border-radius: 7px;
}

.s70-gk-integrations-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.s70-gk-integration-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tint-white-55);
  padding: 6px 10px;
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  text-align: center;
}

.s70-gk-deploy-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.s70-gk-deploy-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tint-accent-soft);
  white-space: nowrap;
}

.s70-gk-deploy-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tint-white-70);
  padding: 4px 8px;
  border: 1px solid var(--tint-white-12);
  border-radius: 7px;
  white-space: nowrap;
}

.s70-gk-workswith-section {
  background: var(--tint-section-alt-bg);
  border-top: 1px solid var(--tint-white-06);
  border-bottom: 1px solid var(--tint-white-06);
  padding: 24px clamp(24px, 7vw, 120px);
  font-family: var(--font-body);
}

.s70-gk-workswith-row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
}

.s70-gk-workswith-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tint-white-35);
}

.s70-gk-workswith-icon {
  filter: brightness(0) invert(1);
}

.s70-gk-workswith-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--tint-white-82);
}

.s70-gk-workswith-more {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--tint-accent-soft);
}

.s70-gk-whitepaper-section {
  background: var(--s70-black);
  padding: clamp(56px, 7vw, 88px) clamp(24px, 7vw, 120px) 0;
  font-family: var(--font-body);
}

.s70-gk-section {
  background: var(--s70-black);
  padding: clamp(80px, 10vw, 128px) clamp(24px, 7vw, 120px);
  font-family: var(--font-body);
}

.s70-gk-section-alt {
  background: var(--tint-section-alt-bg);
  padding: clamp(80px, 10vw, 128px) clamp(24px, 7vw, 120px);
  font-family: var(--font-body);
}

.s70-gk-container {
  max-width: 1120px;
  margin: 0 auto;
}

.s70-gk-section-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
  max-width: 760px;
}

.s70-gk-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--s70-orange);
}

.s70-gk-h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--s70-white);
  text-wrap: balance;
}

.s70-gk-howworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.s70-gk-card-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--tint-accent-soft);
}

.s70-gk-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-gk-card-p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tint-white-55);
  text-wrap: pretty;
}

.s70-gk-section-header-44 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
  max-width: 760px;
}

.s70-gk-section-intro {
  margin: 0;
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--tint-white-60);
  text-wrap: pretty;
}

.s70-gk-intlogos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.s70-gk-intlogo-img-invert {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.s70-gk-intlogo-img-notion {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.92;
}

.s70-gk-intlogo-img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.s70-gk-intextra-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s70-gk-intextra-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 40px;
  margin-top: 22px;
  padding: 22px 26px;
  background: var(--tint-input-bg);
  border: 1px solid var(--tint-orange-25);
  border-radius: 14px;
}

.s70-gk-dot-lg {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--s70-orange);
  box-shadow: 0 0 8px var(--tint-orange-70);
  flex: none;
}

.s70-gk-intextra-text {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--tint-white-85);
}

.s70-gk-intextra-caption {
  font-size: 14px;
  line-height: 1.5;
  color: var(--tint-white-45);
  max-width: 460px;
}

.s70-gk-compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.s70-gk-compliance-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tint-white-42);
}

.s70-gk-compliance-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-gk-compliance-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--tint-white-55);
  text-wrap: pretty;
}

.s70-gk-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--tint-white-08);
}

.s70-gk-trust-p {
  margin: 0;
  font-size: 15px;
  color: var(--tint-white-55);
}

.s70-gk-typical-wrap {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--tint-white-07);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.s70-gk-typical-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tint-white-32);
}

.s70-gk-typical-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--tint-white-40);
}

.s70-gk-scope-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s70-gk-dims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.s70-gk-dim-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--tint-input-bg);
  border: 1px solid var(--border-default);
  border-radius: 10px;
}

.s70-gk-dim-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--s70-orange);
  box-shadow: 0 0 7px var(--tint-orange-60);
  flex: none;
}

.s70-gk-dim-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tint-white-75);
  white-space: nowrap;
}

.s70-gk-grid-260 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.s70-gk-cap-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--s70-ink-600);
  border: 1px solid var(--tint-white-08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.s70-gk-cap-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s70-gk-cap-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-gk-runswhere-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--tint-white-08);
}

.s70-gk-runswhere-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.s70-gk-runswhere-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tint-white-40);
}

.s70-gk-runswhere-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tint-white-65);
  padding: 6px 11px;
  border: 1px solid var(--tint-white-12);
  border-radius: 999px;
}

.s70-gk-runswhere-caption {
  margin: 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tint-white-55);
  text-wrap: pretty;
}

.s70-gk-faq-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.s70-gk-faq-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s70-gk-faq-intro-p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tint-white-55);
}

.s70-gk-faq-right {
  display: flex;
  flex-direction: column;
}

.s70-gk-faq-item-last {
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.s70-gk-faq-item {
  border-top: 1px solid var(--border-default);
}

.s70-gk-faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--fg-on-accent);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.s70-gk-faq-answer {
  margin: 0;
  padding: 0 48px 26px 0;
  color: var(--tint-white-60);
  font-size: 15px;
  line-height: 1.65;
  text-wrap: pretty;
}

.s70-gk-cta-banner-section {
  background: var(--tint-section-alt-bg);
  border-top: 1px solid var(--tint-white-06);
  padding: clamp(56px, 7vw, 88px) clamp(24px, 7vw, 120px);
  font-family: var(--font-body);
}

.s70-gk-cta-banner-row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.s70-gk-cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
}

.s70-gk-cta-banner-h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
}

.s70-gk-finalcta-section {
  position: relative;
  background: var(--s70-black);
  padding: clamp(96px, 13vw, 168px) clamp(24px, 7vw, 120px);
  font-family: var(--font-body);
  overflow: hidden;
}

.s70-gk-finalcta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(55% 110% at 50% 128%, var(--tint-orange-20) 0%, var(--tint-orange-05) 36%, var(--tint-fade) 68%);
}

.s70-gk-finalcta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.s70-gk-finalcta-p {
  margin: 0;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--tint-white-60);
  text-wrap: pretty;
}

.s70-gk-finalcta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.s70-gk-hero-grid {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  /* Cap and center on wide screens — same 1280px/auto-margin treatment as
     .s70-castle-hero-grid. Without it the two hero columns track the full
     viewport width and drift apart on ultrawide displays. */
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(124px, 17vh, 188px) clamp(24px, 7vw, 120px) clamp(64px, 9vh, 104px);
}

.s70-gk-hero-h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--s70-white);
  text-wrap: balance;
}

.s70-gk-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--s70-orange);
  color: var(--fg-on-accent);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 24px var(--tint-orange-35), 0 0 80px var(--tint-orange-12);
  transition: background 120ms cubic-bezier(0.2,0.7,0.2,1), transform 120ms cubic-bezier(0.2,0.7,0.2,1);
}
.s70-gk-cta-primary:hover { background: var(--s70-orange-bright); }
.s70-gk-cta-primary:active { background: var(--s70-orange-deep); transform: scale(0.97); }

.s70-gk-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--tint-white-04);
  color: var(--fg-on-accent);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--tint-white-14);
  transition: border-color 140ms cubic-bezier(0.2,0.7,0.2,1), background 140ms cubic-bezier(0.2,0.7,0.2,1);
}
.s70-gk-cta-secondary:hover { border-color: var(--tint-orange-45); background: var(--tint-white-06); }

.s70-gk-sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.s70-gk-connsvg-vert { display: block; }

.s70-gk-sidelabel {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tint-white-40);
}
.s70-gk-sidelabel-left {
  right: calc(100% + 22px);
  top: 42px;
  width: 110px;
  text-align: right;
}
.s70-gk-sidelabel-right {
  left: calc(100% + 22px);
  top: 32px;
  width: 150px;
}

.s70-gk-workswith-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 0.62;
  transition: opacity 160ms cubic-bezier(0.2,0.7,0.2,1);
}
.s70-gk-workswith-chip:hover { opacity: 1; }

.s70-gk-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  transition: border-color 160ms cubic-bezier(0.2,0.7,0.2,1);
}
.s70-gk-card:hover { border-color: var(--tint-orange-35); }

.s70-gk-intlogo-tile {
  width: 156px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  transition: border-color 160ms cubic-bezier(0.2,0.7,0.2,1), transform 160ms cubic-bezier(0.2,0.7,0.2,1);
  box-sizing: border-box;
}
.s70-gk-intlogo-tile:hover { border-color: var(--tint-orange-40); transform: translateY(-3px); }

.s70-gk-compliance-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  transition: border-color 160ms cubic-bezier(0.2,0.7,0.2,1);
}
.s70-gk-compliance-card:hover { border-color: var(--tint-orange-35); }

.s70-gk-trust-link {
  color: var(--tint-white-85);
  text-decoration: none;
  border-bottom: 1px solid var(--tint-white-30);
}
.s70-gk-trust-link:hover { border-bottom-color: var(--tint-white-85); }

.s70-gk-cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--tint-white-04);
  color: var(--fg-on-accent);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--tint-white-14);
  transition: border-color 140ms cubic-bezier(0.2,0.7,0.2,1);
}
.s70-gk-cta-inline:hover { border-color: var(--tint-orange-45); }

.s70-gk-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.s70-gk-scope-card {
  margin-top: 40px;
  padding: 34px 32px;
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 160ms cubic-bezier(0.2,0.7,0.2,1);
}
.s70-gk-scope-card:hover { border-color: var(--tint-orange-35); }

.s70-gk-scope-h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--s70-white);
  text-wrap: balance;
}

.s70-gk-cap-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  background: var(--s70-ink-700);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  transition: border-color 160ms cubic-bezier(0.2,0.7,0.2,1);
}
.s70-gk-cap-card:hover { border-color: var(--tint-orange-35); }

.s70-gk-h2-nomax {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--s70-white);
  text-wrap: balance;
}

.s70-gk-faq-chevron {
  flex: none;
  transition: transform 180ms cubic-bezier(0.2,0.7,0.2,1);
}
