/* Build Me Web ? production design system
   Material Design foundations, hexagon brand mark */

:root {
  /* Brand */
  --g-blue: #1a73e8;
  --g-blue-600: #1967d2;
  --g-blue-700: #174ea6;
  --g-blue-50: #e8f0fe;
  --g-blue-100: #d2e3fc;
  --g-green: #188038;
  --g-green-50: #e6f4ea;
  --g-red: #d93025;
  --g-red-50: #fce8e6;
  --g-yellow: #f9ab00;
  --g-yellow-50: #fef7e0;
  --g-purple: #9334e6;

  /* Neutrals (Material Grey) */
  --grey-900: #202124;
  --grey-800: #3c4043;
  --grey-700: #5f6368;
  --grey-600: #80868b;
  --grey-500: #9aa0a6;
  --grey-300: #dadce0;
  --grey-200: #e8eaed;
  --grey-100: #f1f3f4;
  --grey-50: #f8f9fa;
  --white: #ffffff;

  /* Semantic */
  --text-primary: var(--grey-900);
  --text-secondary: var(--grey-700);
  --text-disabled: var(--grey-500);
  --border: var(--grey-300);
  --border-subtle: var(--grey-200);
  --surface: var(--white);
  --surface-muted: var(--grey-50);
  --focus: #1a73e8;

  /* Elevation */
  --elev-1: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  --elev-2: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
  --elev-3: 0 4px 8px 3px rgba(60, 64, 67, 0.15), 0 1px 3px 0 rgba(60, 64, 67, 0.3);

  /* Type — display headlines use medium weight, not ultra-bold */
  --font: "Google Sans Text", "Google Sans", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-short: 150ms;
  --dur-med: 250ms;
  --dur-long: 400ms;
  --dur-enter: 480ms;
  --dur-hero-wash: 720ms;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --header-h: 64px;
  --radius-btn: 4px;
  --radius-card: 8px;
  --radius-panel: 12px;

  /* Buttons (Material 3) */
  --btn-height: 40px;
  --btn-height-lg: 48px;
  --btn-pad-x: 24px;
  --btn-pad-x-lg: 28px;
  --btn-font: 14px;
  --btn-weight: 500;
  --btn-tracking: 0.1px;
  --btn-line: 20px;
}

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

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

html[data-chrome="off"] [data-site-chrome] {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot fields — keep out of layout and assistive tech */
.field--hp,
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

h1, h2, h3, h4, p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--g-blue);
  color: var(--white);
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
  transition: top var(--dur-short) var(--ease-standard);
}

.skip-link:focus {
  top: 12px;
}

.btn__icon {
  flex-shrink: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

/* ---------- Components ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  min-height: var(--btn-height);
  padding: 0 var(--btn-pad-x);
  border: 0;
  border-radius: var(--radius-btn);
  background: transparent;
  font-family: inherit;
  font-size: var(--btn-font);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  line-height: var(--btn-line);
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--dur-short) var(--ease-standard),
    box-shadow var(--dur-short) var(--ease-standard),
    border-color var(--dur-short) var(--ease-standard),
    color var(--dur-short) var(--ease-standard);
  white-space: nowrap;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.btn--filled {
  position: relative;
  overflow: hidden;
  background: var(--g-blue);
  color: var(--white);
}

.btn--filled::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-standard);
}

.btn--filled:hover::after {
  transform: translateX(120%);
}

.btn--filled:hover {
  background: var(--g-blue-600);
  box-shadow: var(--elev-1);
}

.btn--filled:active {
  background: var(--g-blue-700);
  box-shadow: none;
}

.btn--tonal {
  background: var(--g-blue-50);
  color: var(--g-blue-700);
}

.btn--tonal:hover {
  background: var(--g-blue-100);
}

.btn--lg {
  min-height: var(--btn-height-lg);
  padding: 0 var(--btn-pad-x-lg);
}

.text-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--g-blue);
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--dur-short) var(--ease-standard);
}

.text-btn:hover {
  background: rgba(26, 115, 232, 0.08);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--grey-800);
  transition: background var(--dur-short) var(--ease-standard);
}

.icon-btn:hover {
  background: rgba(60, 64, 67, 0.08);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--g-blue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: gap var(--dur-short) var(--ease-standard);
}

.link__arrow {
  transition: transform var(--dur-med) var(--ease-emphasized);
}

.link__arrow-shaft {
  opacity: 0;
  transform: translateX(4px);
  transition:
    opacity var(--dur-med) var(--ease-emphasized),
    transform var(--dur-med) var(--ease-emphasized);
}

.link:hover .link__arrow,
.link:focus-visible .link__arrow {
  transform: translateX(3px);
}

.link:hover .link__arrow-shaft,
.link:focus-visible .link__arrow-shaft {
  opacity: 1;
  transform: translateX(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 100px;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.glyph {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px !important;
}

.glyph--blue { background: var(--g-blue-50); color: var(--g-blue); }
.glyph--green { background: var(--g-green-50); color: var(--g-green); }
.glyph--yellow { background: var(--g-yellow-50); color: #e37400; }
.glyph--red { background: var(--g-red-50); color: var(--g-red); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard);
}

.site-header.is-stuck {
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.header__bar {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  position: relative;
  z-index: 91;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.brand__logo {
  flex-shrink: 0;
}

.brand__name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
  white-space: nowrap;
}

.brand__name em {
  font-style: normal;
  color: var(--g-blue);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav__scroll {
  display: contents;
}

.nav__item {
  position: static;
  flex-shrink: 0;
}

.nav__trigger,
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--grey-800);
  background: transparent;
  border: 0;
  border-radius: var(--radius-btn);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-short) var(--ease-standard), color var(--dur-short) var(--ease-standard);
}

.nav__trigger:hover,
.nav__link:hover,
.nav__item.is-open > .nav__trigger {
  background: rgba(60, 64, 67, 0.06);
  color: var(--grey-900);
}

.nav__item.is-open > .nav__trigger {
  color: var(--g-blue);
}

.nav__chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--dur-short) var(--ease-standard);
  color: var(--grey-700);
}

.nav__item.is-open > .nav__trigger .nav__chev {
  transform: rotate(180deg);
  color: var(--g-blue);
}

/* Mega menu ? clean list */
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 90;
  padding-top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(60, 64, 67, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity var(--dur-med) var(--ease-emphasized),
    transform var(--dur-med) var(--ease-emphasized),
    visibility var(--dur-med) var(--ease-emphasized);
}

.nav__item.is-open > .mega,
.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.mega__inner {
  padding-top: 28px;
  padding-bottom: 32px;
}

.mega__cols {
  display: grid;
  gap: 28px 40px;
  align-items: start;
}

.mega__cols--3 {
  grid-template-columns: 1.15fr 0.85fr minmax(220px, 0.9fr);
}

.mega__cols--products,
.mega__cols--industries,
.mega__cols--resources,
.mega__cols--services {
  grid-template-columns: 1fr minmax(220px, 280px);
  align-items: start;
}

.mega__col {
  min-width: 0;
}

.mega__label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--grey-600);
}

.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}

.mega__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.mega__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: var(--radius-card);
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: background var(--dur-short) var(--ease-standard);
}

.mega__link:hover,
.mega__link:focus-visible {
  background: var(--grey-50);
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.mega__link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 0;
}

.mega__link .glyph {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
}

.mega__link .glyph svg {
  width: 18px;
  height: 18px;
}

.mega__link span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mega__link strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
  letter-spacing: 0.1px;
}

.mega__link em {
  font-style: normal;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.mega__link--plain {
  padding-left: 12px;
  align-items: flex-start;
}

.mega__link--plain .glyph {
  display: none;
}

/* Light featured text block */
.mega__feature {
  align-self: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  overflow: visible;
}

.mega__feature::before {
  display: none;
}

.mega__feature .mega__label {
  margin: 0 0 12px;
  color: var(--grey-600);
}

.mega__feature > strong {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 1.35;
  color: var(--grey-900);
}

.mega__feature > p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.mega__feature .btn {
  margin-top: 4px;
  align-self: auto;
}

.mega__feature .link {
  margin-top: 0;
  align-self: auto;
  font-size: 14px;
  color: var(--g-blue);
}

.mega__feature .link:hover,
.mega__feature .link:focus-visible {
  color: var(--g-blue-700);
}

.mega-scrim {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 90;
  background: rgba(32, 33, 36, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--dur-med) var(--ease-standard),
    visibility var(--dur-med) var(--ease-standard);
}

.mega-scrim.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-scrim[hidden] {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 95;
  overflow: visible;
}

.header__actions .btn {
  margin-left: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Google-inspired account menu */
.gacc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
}

.gacc__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.gacc__trigger:hover {
  background: rgba(60, 64, 67, 0.08);
}

.gacc__trigger:focus-visible {
  outline: 2px solid var(--g-blue);
  outline-offset: 2px;
}

.gacc__trigger[aria-expanded="true"] {
  background: rgba(26, 115, 232, 0.1);
}

.gacc__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-family: "Google Sans Text", Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  padding-top: 1.5px;
}

.gacc__avatar--lg {
  width: 64px;
  height: 64px;
  font-size: 22px;
  font-weight: 500;
  padding-top: 3px;
}

.gacc__panel {
  position: absolute;
  /* Sit just under the header border (avatar is vertically centered in 64px bar) */
  top: calc(100% + ((var(--header-h, 64px) - 40px) / 2));
  right: 0;
  left: auto;
  z-index: 200;
  width: min(320px, calc(100vw - 32px));
  padding: 0;
}

.gacc__panel[hidden] {
  display: none !important;
}

.gacc__panel-inner {
  overflow: hidden;
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow:
    0 1px 2px rgba(60, 64, 67, 0.12),
    0 8px 24px rgba(60, 64, 67, 0.16);
}

.gacc__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 16px 16px 14px;
  text-align: center;
}

.gacc__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  margin-top: 10px;
}

.gacc__name {
  margin: 0;
  max-width: 100%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--grey-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gacc__email {
  margin: 0;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.35;
  color: var(--grey-700);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gacc__manage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid var(--grey-300);
  border-radius: 999px;
  background: var(--white);
  color: var(--g-blue-700);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.gacc__manage:hover {
  background: var(--g-blue-50);
  border-color: var(--g-blue-100);
}

.gacc__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border-top: 1px solid var(--grey-200);
}

.gacc__link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--grey-800);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.12s ease;
}

.gacc__link:hover {
  background: rgba(60, 64, 67, 0.06);
}

.gacc__link svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--grey-700);
}

.gacc__link--action {
  margin-top: 2px;
}

.gacc__legal {
  margin: 0;
  padding: 8px 12px 12px;
  border-top: 1px solid var(--grey-200);
  font-size: 11px;
  line-height: 1.4;
  color: var(--grey-600);
  text-align: center;
}

.gacc__legal a {
  color: var(--grey-700);
  text-decoration: none;
}

.gacc__legal a:hover {
  color: var(--g-blue-700);
  text-decoration: underline;
}

.nav__mobile-actions .gacc {
  display: none;
}

.nav__mobile-actions {
  display: none;
}

.gp-top .gacc__panel {
  top: calc(100% + ((var(--gp-top-h, 64px) - 40px) / 2));
}

/* Keep account menu flush under the header on smaller viewports */
@media (max-width: 1024px) {
  .header__actions .gacc__panel,
  .gp-top .gacc__panel {
    position: fixed;
    top: var(--gp-top-h, var(--header-h, 64px));
    left: 50%;
    right: auto;
    width: min(320px, calc(100vw - 32px));
    transform: translateX(-50%);
    z-index: 160;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.hero__copy h1 {
  max-width: 11.5ch;
  font-size: clamp(2.5rem, 4.6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--grey-900);
}

.lede {
  margin-top: 20px;
  max-width: 40ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 420px;
}

.hero__glow {
  position: absolute;
  inset: 6% -4% 8% -4%;
  background:
    radial-gradient(ellipse 72% 58% at 50% 48%, rgba(26, 115, 232, 0.16), transparent 70%);
  pointer-events: none;
}

.console--hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 400px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g-blue);
  box-shadow: 0 0 0 3px var(--g-blue-50);
  flex-shrink: 0;
}

.delta {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
}

.delta--up {
  color: var(--g-green);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.75rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-up {
  from {
    opacity: 0.88;
    transform: translateY(0.45rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-wash {
  from {
    opacity: 0.85;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.anim-fade-up {
  animation: fade-up var(--dur-enter) var(--ease-out-expo) both;
}

.anim-hero-wash {
  animation: hero-wash var(--dur-hero-wash) var(--ease-out-expo) both;
}

.anim-delay-1 {
  animation-delay: 0.06s;
}

.anim-delay-2 {
  animation-delay: 0.12s;
}

.anim-delay-3 {
  animation-delay: 0.18s;
}

.anim-delay-4 {
  animation-delay: 0.24s;
}

/* CSS-first hero entrances (no JS flash) */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > *,
  .indy-intro__copy > *,
  .partners-hero__titles,
  .partners-hero__copy > *,
  .partners-hero__cta,
  .cases-hero__titles,
  .cases-hero__copy > *,
  .cases-hero__cta,
  .industry-hero__titles,
  .industry-hero__copy > *,
  .industry-hero__cta {
    animation: fade-up var(--dur-enter) var(--ease-out-expo) both;
  }

  .hero__copy > *:nth-child(1),
  .indy-intro__copy > *:nth-child(1),
  .partners-hero__titles,
  .cases-hero__titles,
  .industry-hero__titles {
    animation-delay: 0s;
  }

  .hero__copy > *:nth-child(2),
  .indy-intro__copy > *:nth-child(2),
  .partners-hero__copy > *:nth-child(1),
  .cases-hero__copy > *:nth-child(1),
  .industry-hero__copy > *:nth-child(1) {
    animation-delay: 0.05s;
  }

  .hero__copy > *:nth-child(3),
  .indy-intro__copy > *:nth-child(3),
  .partners-hero__copy > *:nth-child(2),
  .cases-hero__copy > *:nth-child(2),
  .industry-hero__copy > *:nth-child(2) {
    animation-delay: 0.1s;
  }

  .hero__copy > *:nth-child(4),
  .indy-intro__copy > *:nth-child(4),
  .partners-hero__cta,
  .cases-hero__cta,
  .industry-hero__cta {
    animation-delay: 0.15s;
  }

  .hero__visual,
  .partners-hero__media,
  .cases-hero__media,
  .industry-hero__media,
  .indy-intro__media {
    animation: hero-wash var(--dur-hero-wash) var(--ease-out-expo) both;
  }
}

/* ---------- Trust ---------- */

.trust {
  padding: 56px 0;
  border-block: 1px solid var(--border-subtle);
}

.trust__label {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-600);
  margin-bottom: 36px;
}

.trust__logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px 56px;
  margin: 0;
  padding: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--grey-500);
  opacity: 0.85;
  transition:
    color var(--dur-short) var(--ease-standard),
    opacity var(--dur-short) var(--ease-standard);
}

.logo svg {
  width: 28px;
  height: 28px;
}

.logo:hover {
  color: var(--grey-700);
  opacity: 1;
}

.logo--deloitte {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
}

.logo--airtel {
  letter-spacing: 0.4px;
}

.logo--paytm {
  letter-spacing: -0.6px;
}

.logo--byjus {
  letter-spacing: 0.8px;
}

.logo--rapido {
  font-style: italic;
}

@media (max-width: 720px) {
  .trust {
    padding: 44px 0;
  }

  .trust__label {
    margin-bottom: 28px;
  }

  .trust__logos {
    gap: 24px 36px;
  }

  .logo {
    font-size: 20px;
  }

  .logo svg {
    width: 24px;
    height: 24px;
  }

  .logo--deloitte {
    font-size: 22px;
  }
}

/* ---------- Technologies ---------- */

.tech__intro {
  text-align: center;
  margin-bottom: 36px;
}

.tech__intro .eyebrow {
  margin-bottom: 10px;
}

.tech__intro .section__title--center {
  margin-bottom: 0;
}

.section__sub--center {
  margin-inline: auto;
  text-align: center;
}

.tech-rail {
  position: relative;
  margin: 0;
  padding: 8px 0 12px;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.tech-rail__track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: tech-marquee 55s linear infinite;
  animation-play-state: paused;
}

.tech-rail.is-running .tech-rail__track {
  animation-play-state: running;
}

.tech-rail:hover .tech-rail__track {
  animation-play-state: paused;
}

.tech-rail__list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-card {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 20px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  transition:
    border-color var(--dur-med) var(--ease-standard),
    transform var(--dur-med) var(--ease-emphasized);
}

.tech-card img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.tech-card:hover {
  border-color: var(--grey-300);
  transform: translateY(-2px);
}

.tech__copy {
  max-width: 40rem;
  margin: 28px auto 0;
  color: var(--grey-700);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

@keyframes tech-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-rail {
    mask-image: none;
    overflow-x: auto;
    padding-inline: var(--gutter);
  }

  .tech-rail__track {
    animation: none;
    width: auto;
    margin-inline: auto;
  }

  .tech-rail.is-running .tech-rail__track {
    animation: none;
  }

  .tech-rail__list[aria-hidden="true"] {
    display: none;
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--surface-muted);
}

.section.section--tech {
  padding: 72px 0 80px;
  overflow: hidden;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.25;
  color: var(--grey-900);
}

.section__title--center {
  text-align: center;
  margin-bottom: 48px;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.section__head--center {
  align-items: center;
  text-align: center;
}

.section__head--center .section__sub {
  margin-inline: auto;
  max-width: 42ch;
}

@media (max-width: 640px) {
  .section__head--center {
    align-items: flex-start;
    text-align: left;
  }

  .section__head--center .section__sub {
    margin-inline: 0;
  }
}

.section__head--stack .section__sub {
  margin-top: 10px;
}

.section__head h2,
.split__copy h2,
.results__stats h2,
.engage__intro h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.25;
}

.section__head .link {
  margin-top: 0;
  flex-shrink: 0;
}

.section__sub {
  margin-top: 12px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard);
}

.product-card:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

.product-card h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.product-card .link {
  margin-top: 20px;
}

/* ---------- Split / Ecosystem ---------- */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.split__copy p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 36ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ecosystem__rail {
  position: relative;
  padding: 44px 32px 36px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  box-shadow: var(--elev-1);
  overflow: hidden;
}

.ecosystem__rail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 50% 0%, var(--g-blue-50) 0%, transparent 55%);
  opacity: 0.55;
  pointer-events: none;
}

.ecosystem__line {
  position: absolute;
  top: 72px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--g-blue-100) 12%,
    var(--g-blue-100) 88%,
    transparent
  );
}

.ecosystem__nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.node__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  box-shadow: var(--elev-1);
  transition:
    transform var(--dur-med) var(--ease-emphasized),
    box-shadow var(--dur-med) var(--ease-emphasized);
}

.node:hover .node__icon {
  transform: translateY(-4px);
  box-shadow: var(--elev-2);
}

.node__icon--blue { background: var(--g-blue-50); color: var(--g-blue); }
.node__icon--green { background: var(--g-green-50); color: var(--g-green); }
.node__icon--yellow { background: var(--g-yellow-50); color: #e37400; }
.node__icon--red { background: var(--g-red-50); color: var(--g-red); }

.node span:last-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-800);
  text-align: center;
}

.ecosystem__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--grey-600);
}

.ecosystem__seal svg {
  color: var(--grey-700);
  flex-shrink: 0;
}

/* ---------- Console ---------- */

.console {
  display: flex;
  min-height: 380px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  box-shadow: var(--elev-3);
  overflow: hidden;
}

.console__nav {
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 0 16px;
  background: var(--grey-50);
  border-right: 1px solid var(--border-subtle);
}

.console__brand {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.console__brand svg {
  width: 22px;
  height: 22px;
}

.console__nav-item {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--grey-700);
}

.console__nav-item.is-active {
  background: var(--g-blue-50);
  color: var(--g-blue);
}

.console__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 48%);
}

.console__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.console__top strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.console__top > div span {
  font-size: 11px;
  color: var(--text-secondary);
}

.console__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--g-green-50);
  color: var(--g-green);
  font-size: 11px;
  font-weight: 500;
}

.console__pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.console__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.console__row--main {
  grid-template-columns: 1.45fr 1fr 0.95fr;
  flex: 1;
}

.tile {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
}

.tile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.tile__head span,
.tile > span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}

.tile > span {
  display: block;
  margin-bottom: 8px;
}

.tile__head .delta {
  margin-top: 0;
}

.tile strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--grey-900);
}

.tile svg {
  width: 100%;
  height: 28px;
}

.tile--wide svg {
  height: 76px;
  margin-top: 4px;
}

.tile--ai {
  display: flex;
  flex-direction: column;
}

.tile--ai strong {
  margin-bottom: 0;
}

.tile__spark {
  height: 24px;
  margin: 6px 0 10px;
}

.tile__flows {
  display: grid;
  gap: 6px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
}

.tile__flows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--grey-700);
}

.tile__flows em {
  font-style: normal;
  font-weight: 500;
  color: var(--grey-900);
  font-variant-numeric: tabular-nums;
}

.channels {
  display: flex;
  align-items: center;
  gap: 12px;
}

.channels svg {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.channels ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  color: var(--text-secondary);
  width: 100%;
}

.channels li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.channels em {
  margin-left: auto;
  font-style: normal;
  font-weight: 500;
  color: var(--grey-800);
}

.swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.swatch--blue { background: var(--g-blue); }
.swatch--green { background: var(--g-green); }
.swatch--yellow { background: var(--g-yellow); }

/* ---------- Industries ---------- */

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 260px;
  scroll-snap-align: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  color: inherit;
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard),
    transform var(--dur-med) var(--ease-emphasized);
}

.carousel__track .industry-card:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-2);
  transform: translateY(-3px);
}

.industry-card h3 {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 500;
}

.industry-card p {
  margin-top: 8px;
  margin-bottom: 20px;
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.industry-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--g-blue);
}

.industry-card__cta .link__arrow {
  transition: transform var(--dur-med) var(--ease-emphasized);
}

.industry-card:hover .industry-card__cta .link__arrow {
  transform: translateX(3px);
}

.industry-card:hover .industry-card__cta .link__arrow-shaft {
  opacity: 1;
  transform: translateX(0);
}

.fab {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--elev-1);
  color: var(--grey-800);
  transition: background var(--dur-short) var(--ease-standard), box-shadow var(--dur-short) var(--ease-standard);
}

.fab:hover {
  background: var(--grey-50);
  box-shadow: var(--elev-2);
}

/* ---------- Results ---------- */

.results {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 36px;
}

.stat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.stat p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.quote {
  margin: 0;
  min-height: 280px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  box-shadow: var(--elev-1);
}

.quote > p {
  flex: 1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.1px;
  color: var(--grey-900);
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--g-blue-50);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border), var(--elev-1);
  flex-shrink: 0;
}

.quote__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.quote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
}

.quote footer span {
  font-size: 13px;
  color: var(--text-secondary);
}

.quote__dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.quote__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  transition: background var(--dur-short) var(--ease-standard), transform var(--dur-short) var(--ease-standard);
}

.quote__dots button.is-active {
  background: var(--g-blue);
  transform: scale(1.2);
}

/* ---------- Engagement ---------- */

.engage {
  display: grid;
  grid-template-columns: 0.85fr 1.7fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.engage__intro p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.engage__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
}

.choice-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard);
}

.choice-card:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

.choice-card h3 {
  font-size: 16px;
  font-weight: 500;
}

.choice-card p {
  margin-top: 8px;
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.choice-card .link {
  margin-top: 20px;
}

.choice-card.is-selected {
  border-color: var(--g-blue);
  box-shadow: 0 0 0 1px rgba(26, 115, 232, 0.25);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 28px 24px;
  background: var(--g-blue-50);
  border: 1px solid var(--g-blue-100);
  border-radius: var(--radius-panel);
}

.cta-panel h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.3;
  max-width: 12ch;
}

.cta-panel--form {
  gap: 14px;
  max-width: none;
}

.cta-panel--form h3 {
  max-width: none;
  font-size: 20px;
}

.cta-panel__lede {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.service-form {
  display: flex;
  justify-content: center;
}

.service-form__panel {
  width: 100%;
  max-width: 720px;
}

.service-form .engage-form {
  display: block;
}

.service-form .engage-form .field,
.service-form .engage-form .field-row {
  margin-bottom: 18px;
}

.service-form .engage-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-form .engage-form .field-row .field {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .service-form .engage-form .field-row {
    grid-template-columns: 1fr;
  }
}

.service-form .start__panel-head {
  margin-bottom: 22px;
}

.service-form .start__panel-head h2 {
  font-size: 20px;
}

.service-form .start__panel {
  padding: 28px 24px 24px;
}

.service-form .auth-form__status {
  margin: 0 0 12px;
  font-size: 13px;
}

.service-form .start__actions {
  margin-top: 4px;
  flex-wrap: wrap;
  gap: 12px;
}

.service-form .start__secure {
  max-width: none;
}

#start .section__head--stack {
  align-items: center;
  text-align: center;
}

#start .section__sub {
  max-width: 42ch;
  margin-inline: auto;
}

@media (max-width: 640px) {
  #start .section__head--stack {
    align-items: flex-start;
    text-align: left;
  }

  #start .section__sub {
    margin-inline: 0;
  }
}

.field--file {
  margin-bottom: 24px;
}

.field__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.field__file-face {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 8px 8px 8px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  transition:
    border-color var(--dur-short) var(--ease-standard),
    box-shadow var(--dur-short) var(--ease-standard),
    padding var(--dur-short) var(--ease-standard);
}

.field__file-face:hover {
  border-color: var(--grey-700);
}

.field--file:focus-within .field__file-face,
.field__file-input:focus-visible + .field__file-face {
  border-color: var(--g-blue);
  border-width: 2px;
  padding: 7px 7px 7px 14px;
}

.field__file-input.is-invalid + .field__file-face {
  border-color: var(--g-red);
}

.field__file-input.is-invalid:focus-visible + .field__file-face {
  border-color: var(--g-red);
  border-width: 2px;
}

.field--file .field__label {
  top: 0;
  font-size: 12px;
  color: var(--text-secondary);
}

.field--file:focus-within .field__label {
  color: var(--g-blue);
}

.field__file-input.is-invalid ~ .field__label {
  color: var(--g-red);
}

.field__file-meta {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.field__file-meta.is-placeholder {
  color: var(--text-secondary);
}

.field__file-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--g-blue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15px;
  transition: background var(--dur-short) var(--ease-standard);
}

.field__file-face:hover .field__file-action {
  background: rgba(26, 115, 232, 0.08);
}

.field__file-face:active .field__file-action {
  background: rgba(26, 115, 232, 0.12);
}

.field__hint {
  margin-top: 6px;
  padding-inline: 16px;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-secondary);
}

.service-form .field--file {
  margin-bottom: 18px;
}

.service-form .auth-form__terms,
.start__panel .auth-form__terms {
  display: flex;
  margin-top: 4px;
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--grey-50);
  border-top: 1px solid var(--border-subtle);
}

.footer__follow {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer__follow p {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-800);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 48px;
}

.footer__grid h4 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.footer__grid a {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--dur-short) var(--ease-standard);
}

.footer__grid a:hover {
  color: var(--grey-900);
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--grey-600);
}

.footer__bottom .brand--footer {
  gap: 10px;
}

.footer__bottom .brand--footer .brand__logo {
  width: 32px;
  height: 32px;
}

.footer__bottom .brand--footer .brand__name {
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 1;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__legal a:hover {
  color: var(--grey-900);
}

.footer__partner {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity var(--dur-short) var(--ease-standard);
}

.footer__partner:hover {
  opacity: 0.85;
}

.footer__partner img {
  display: block;
  width: 133px;
  height: 50px;
}

/* Hostinger Partner page */
.hostinger-page {
  --hp-measure: 44rem;
}

.hostinger-page main > .section:not(.hp-hero) .container {
  width: min(100% - (var(--gutter) * 2), var(--hp-measure));
}

.hostinger-page .hp-hero .container {
  width: min(100% - (var(--gutter) * 2), 56rem);
}

.hostinger-page main > .section:not(.hp-hero) {
  text-align: center;
}

.hostinger-page main > .section:not(.hp-hero) .section__head--stack {
  align-items: center;
  text-align: center;
}

.hostinger-page main > .section:not(.hp-hero) .section__sub {
  margin-inline: auto;
}

.hostinger-page .hp-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(26, 115, 232, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(103, 61, 230, 0.06), transparent 50%),
    var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.hp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 40px 48px;
  align-items: center;
}

.hp-hero__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--grey-900);
}

.hp-hero__lede {
  margin: 16px 0 0;
  max-width: 36rem;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-700);
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hp-hero__badge {
  display: block;
  justify-self: end;
  flex-shrink: 0;
  width: 360px;
  max-width: 100%;
  line-height: 0;
  border-radius: var(--radius-card);
  transition: opacity var(--dur-short) var(--ease-standard);
}

.hp-hero__badge:hover {
  opacity: 0.88;
}

.hp-hero__badge img {
  display: block;
  width: 360px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
}

.hp-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.hp-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-200);
}

.hp-benefits li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hp-benefits strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.hp-benefits p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--grey-700);
}

.hp-plans {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hp-plans li {
  padding: 20px 22px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-card);
  background: var(--white);
}

.hp-plans strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.hp-plans p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--grey-700);
}

.hp-plans__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.hp-code {
  display: inline-block;
  padding: 1px 7px;
  border-radius: var(--radius-btn);
  background: var(--grey-100);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
  font-weight: 600;
  color: var(--grey-900);
}

.hp-offer__coupon {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-card);
  background: var(--white);
}

.hp-offer__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hp-offer__value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey-900);
}

.hp-offer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hp-next__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.hostinger-page .support-faq {
  text-align: left;
}

@media (max-width: 800px) {
  .hostinger-page .hp-hero {
    padding: 48px 0 40px;
  }

  .hostinger-page main > .section:not(.hp-hero) {
    text-align: left;
  }

  .hostinger-page main > .section:not(.hp-hero) .section__head--stack {
    align-items: flex-start;
    text-align: left;
  }

  .hostinger-page main > .section:not(.hp-hero) .section__sub {
    margin-inline: 0;
  }

  .hp-plans__cta,
  .hp-offer__coupon,
  .hp-offer__actions,
  .hp-next__actions {
    justify-content: flex-start;
  }

  .hp-hero__inner {
    grid-template-columns: 1fr;
  }

  .hp-hero__badge {
    justify-self: start;
    width: 240px;
  }

  .hp-hero__badge img {
    width: 240px;
  }

  .hp-plans {
    grid-template-columns: 1fr;
  }
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--grey-700);
  transition:
    background var(--dur-short) var(--ease-standard),
    color var(--dur-short) var(--ease-standard);
}

.footer__social a:hover {
  background: rgba(60, 64, 67, 0.08);
  color: var(--grey-900);
}

/* ---------- Error page ---------- */

.error-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 64px 0;
}

.error-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-page__logo {
  margin-bottom: 24px;
}

.error-page__code {
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--grey-900);
}

.error-page__code span {
  color: var(--g-blue);
}

.error-page h1 {
  margin-top: 16px;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 400;
}

.error-page__text {
  margin-top: 12px;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* ---------- Sign in / auth ---------- */

.auth-body {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(26, 115, 232, 0.1), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(24, 128, 56, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 80%, rgba(249, 171, 0, 0.07), transparent 45%),
    var(--grey-50);
}

.auth-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--gutter);
}

.auth-top__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.auth-top__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

.auth-top__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 8px;
  border-radius: var(--radius-btn);
  color: var(--grey-700);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    background var(--dur-short) var(--ease-standard),
    color var(--dur-short) var(--ease-standard);
}

.auth-top__back:hover {
  background: rgba(60, 64, 67, 0.08);
  color: var(--grey-900);
}

.auth {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px - 48px);
  min-height: calc(100dvh - 64px - 48px);
  padding: 24px var(--gutter) 48px;
}

.has-site-chrome .start {
  min-height: calc(100dvh - var(--header-h));
  padding-block: 88px 104px;
}

.auth__glow {
  position: absolute;
  inset: 10% 20% auto;
  height: 40%;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(100%, 450px);
  padding: 48px 40px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow:
    0 1px 2px rgba(60, 64, 67, 0.08),
    0 8px 24px rgba(60, 64, 67, 0.08);
  text-align: center;
  animation: auth-rise var(--dur-long) var(--ease-emphasized) both;
}

.auth-card--project {
  width: min(100%, 520px);
}

.auth-card--project + .auth__footer {
  width: min(100%, 520px);
}

/* ---------- Start a project (rich intake) ---------- */

.start-body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--grey-50);
}

.auth-top__actions {
  display: none;
}

.start {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 64px);
  padding: 72px var(--gutter) 88px;
  overflow: hidden;
}

.start__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.start__atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.22;
  transform: scale(1.04);
  animation: start-drift 18s var(--ease-standard) infinite alternate;
}

.start__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(248, 249, 250, 0.97) 0%, rgba(248, 249, 250, 0.88) 42%, rgba(232, 240, 254, 0.72) 100%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(26, 115, 232, 0.14), transparent 55%);
}

@keyframes start-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}

.start__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px 56px;
  align-items: start;
  width: min(100%, 1120px);
  margin: 0 auto;
  flex: 1;
}

.start__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.start__story {
  animation: auth-rise var(--dur-long) var(--ease-emphasized) both;
}

.start__process {
  animation: auth-rise var(--dur-long) var(--ease-emphasized) 180ms both;
}

.start__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 16px;
  padding: 0 12px;
  border-radius: 100px;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.start__story h1 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.12;
  color: var(--grey-900);
}

.start__lede {
  margin-top: 16px;
  max-width: 38ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.start__steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.start__steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  animation: auth-rise var(--dur-long) var(--ease-emphasized) both;
}

.start__steps li:nth-child(1) { animation-delay: 80ms; }
.start__steps li:nth-child(2) { animation-delay: 140ms; }
.start__steps li:nth-child(3) { animation-delay: 200ms; }

.start__step-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 14px;
  font-weight: 500;
}

.start__steps strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
}

.start__steps p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.start__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  animation: auth-rise var(--dur-long) var(--ease-emphasized) 260ms both;
}

.start__faces {
  display: flex;
}

.start__faces img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  background: var(--grey-200);
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.start__faces img + img {
  margin-left: -10px;
}

.start__trust p {
  max-width: 28ch;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.start__panel {
  padding: 36px 32px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow:
    0 1px 2px rgba(60, 64, 67, 0.08),
    0 16px 40px rgba(60, 64, 67, 0.1);
  backdrop-filter: blur(10px);
  animation: auth-rise var(--dur-long) var(--ease-emphasized) 120ms both;
}

.start__panel-head {
  margin-bottom: 28px;
  text-align: left;
}

.start__panel-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--grey-900);
}

.start__panel-head p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.start__panel .auth-form {
  margin-top: 0;
}

.start__panel .field {
  margin-bottom: 20px;
}

.start__panel .field:last-of-type {
  margin-bottom: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.field-row .field {
  margin-bottom: 0;
}

.start__actions {
  margin-top: 24px;
  align-items: center;
}

.start__secure {
  margin: 0;
  max-width: 22ch;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.start__footer {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 28px auto 0;
}

.contact__list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact__list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.contact__list strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
}

.contact__list p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.contact__list a {
  color: var(--g-blue);
  font-weight: 500;
}

.contact__list a:hover {
  text-decoration: underline;
}

.contact__channels .start__trust {
  margin-top: 28px;
}

/* ---------- Partners ---------- */

.partners-page {
  --partners-measure: 42rem;
}

.partners-page main .container {
  width: min(100% - (var(--gutter) * 2), var(--partners-measure));
}

.partners-hero {
  position: relative;
  background: var(--white);
}

.partners-hero__stage {
  position: relative;
  min-height: clamp(420px, 58vw, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.partners-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.partners-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.partners-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 33, 36, 0.08) 0%, rgba(32, 33, 36, 0.12) 42%, rgba(32, 33, 36, 0.55) 100%),
    linear-gradient(100deg, rgba(32, 33, 36, 0.28) 0%, transparent 48%);
}

.partners-hero__foreground {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--gutter) * 2), 60rem);
  margin-inline: auto;
  padding: 72px 0 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.partners-hero__titles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partners-hero__brand {
  margin: 0;
  max-width: none;
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.partners-hero__brand em {
  font-style: normal;
  color: inherit;
}

.partners-hero__product {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.partners-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 48px;
  align-items: center;
  padding: 32px 36px;
  background: var(--white);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -10px 28px rgba(60, 64, 67, 0.1);
}

.partners-hero__copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.25;
  color: var(--grey-900);
}

.partners-hero__copy p {
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.partners-hero__cta {
  gap: 10px;
  white-space: nowrap;
}

.partners-page .section {
  padding: 72px 0;
}

.partners-page .section__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
}

.partners-page .section__title {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  letter-spacing: -0.25px;
  line-height: 1.25;
}

.partners-page .section__sub {
  margin-top: 12px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.partners-page main .partners-hero__foreground,
.partners-page main .container--tracks,
.partners-page main .container--flow {
  width: min(100% - (var(--gutter) * 2), 60rem);
}

.partners-page .container--tracks .section__head--stack {
  max-width: var(--partners-measure);
}

.partners-page .container--flow .section__head--stack {
  max-width: none;
  align-items: center;
  text-align: center;
}

.partners-page .container--flow .section__sub {
  margin-inline: auto;
}

.partners-tracks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partners-track {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard);
}

.partners-track:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

.partners-track:nth-child(2) { animation-delay: 80ms; }
.partners-track:nth-child(3) { animation-delay: 160ms; }

.partners-track h3 {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.partners-track p {
  margin-top: 8px;
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.partners-track .link {
  margin-top: 18px;
}

.partners-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners-benefits li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
}

.partners-benefits li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.partners-benefits strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.partners-benefits p {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.partners-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.partners-flow li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  animation: rise 700ms var(--ease-emphasized) both;
}

.partners-flow li:nth-child(2) { animation-delay: 90ms; }
.partners-flow li:nth-child(3) { animation-delay: 180ms; }

.partners-flow__marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
}

.partners-flow__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: 0 0 0 6px var(--g-blue-50);
}

.partners-flow__rail {
  position: absolute;
  left: calc(50% + 20px);
  right: calc(-28px - 50% + 20px);
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--g-blue-100), var(--border-subtle));
  transform: translateY(-50%);
}

.partners-flow__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 20px 20px 22px;
  background: var(--grey-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
}

.partners-flow strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--grey-900);
}

.partners-flow p {
  margin: 0;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.partners-apply__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.partners-apply__intro .section__sub {
  margin-top: 12px;
}

.partners-apply__notes {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.partners-apply__notes li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.partners-apply__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23188038'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.partners-apply__form {
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  box-shadow: none;
  text-align: left;
  animation: rise 700ms var(--ease-emphasized) 120ms both;
}

.partners-apply__form .auth-form__actions {
  justify-content: space-between;
}

.partners-apply__form .start__secure {
  max-width: 28ch;
  text-align: left;
}

/* ---------- Press (newsroom) ---------- */

.press-page {
  --press-measure: 44rem;
  background: var(--white);
}

.press-page main .container {
  width: min(100% - (var(--gutter) * 2), var(--press-measure));
}

.press-intro {
  padding: 72px 0 8px;
}

.press-intro h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--grey-900);
}

.press-intro p {
  margin: 16px 0 0;
  max-width: 40ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.press-page .section {
  padding: 56px 0;
}

.press-page .section__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
}

.press-page .section__title {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.25;
}

.press-page .section__sub {
  margin-top: 12px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.press-news-section .section__title {
  margin-bottom: 28px;
}

.press-news {
  margin: 0;
  padding: 0;
  list-style: none;
}

.press-news li {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
}

.press-news li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.press-news time {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
}

.press-news h3 {
  margin: 10px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.35;
  color: var(--grey-900);
}

.press-news p {
  margin: 10px 0 0;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.press-kit {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
}

.press-kit li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.press-kit strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.press-kit span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-secondary);
}

.press-kit .link {
  flex-shrink: 0;
  margin-top: 0;
}

.press-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.95fr);
  gap: 48px 56px;
  align-items: start;
}

.press-contact__email {
  margin: 24px 0 0;
}

.press-contact__email a {
  font-size: 18px;
  font-weight: 500;
  color: var(--g-blue);
  text-decoration: none;
}

.press-contact__email a:hover {
  text-decoration: underline;
}

.press-contact__form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
}

.press-contact__form .field {
  margin-bottom: 16px;
}

.press-contact__form .auth-form__actions {
  margin-top: 8px;
  justify-content: flex-start;
}

@media (max-width: 860px) {
  .press-intro {
    padding: 48px 0 0;
  }

  .press-page .section {
    padding: 48px 0;
  }

  .press-contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .press-kit li {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* ---------- Careers ---------- */

.careers-page {
  --careers-measure: 60rem;
  background: var(--white);
}

.careers-page main .container {
  width: min(100% - (var(--gutter) * 2), var(--careers-measure));
}

.careers-hero {
  padding: 88px 0 24px;
  background:
    radial-gradient(120% 120% at 100% 0%, var(--g-blue-50) 0%, transparent 46%),
    var(--white);
}

.careers-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.5rem, 4.6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.12;
  color: var(--grey-900);
}

.careers-hero__lede {
  margin: 20px 0 0;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.careers-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.careers-page .section {
  padding: 64px 0;
}

.careers-page .section__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 32px;
}

.careers-page .section__title {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.25;
}

.careers-page .section__sub {
  margin-top: 12px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.careers-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.careers-value {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard);
}

.careers-value:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

.careers-value h3 {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--grey-900);
}

.careers-value p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.careers-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.careers-benefit {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard);
}

.careers-benefit:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

.careers-benefit h3 {
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--grey-900);
}

.careers-benefit p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.careers-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.careers-filter__btn {
  padding: 8px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  background: var(--white);
  font: inherit;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition:
    background var(--dur-med) var(--ease-standard),
    border-color var(--dur-med) var(--ease-standard),
    color var(--dur-med) var(--ease-standard);
}

.careers-filter__btn:hover {
  border-color: var(--g-blue-100);
  color: var(--grey-900);
}

.careers-filter__btn.is-active {
  background: var(--g-blue-50);
  border-color: transparent;
  color: var(--g-blue-700);
  font-weight: 500;
}

.careers-filter__btn:focus-visible {
  outline: 2px solid var(--g-blue);
  outline-offset: 2px;
}

.careers-roles {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
}

.careers-role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.careers-role__main h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--grey-900);
}

.careers-role__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.careers-role__meta span {
  position: relative;
}

.careers-role__meta span + span::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--grey-300);
  transform: translateY(-50%);
}

.careers-role .link {
  flex-shrink: 0;
  margin-top: 0;
}

.careers-roles__empty {
  margin: 24px 0 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.careers-cta__inner {
  text-align: center;
}

.careers-cta__inner .section__sub {
  margin-inline: auto;
  margin-bottom: 28px;
}

.careers-role-hero {
  padding: 72px 0 24px;
  background:
    radial-gradient(120% 120% at 100% 0%, var(--g-blue-50) 0%, transparent 46%),
    var(--white);
}

.careers-role-hero .g-breadcrumb {
  margin-bottom: 20px;
}

.careers-role-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--grey-900);
}

.careers-role-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.careers-role-hero__meta span {
  position: relative;
}

.careers-role-hero__meta span + span::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--grey-300);
  transform: translateY(-50%);
}

.careers-role-hero__lede {
  margin: 20px 0 0;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.careers-role-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.careers-role-copy {
  max-width: none;
}

.careers-role-copy > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.careers-role-copy h3 {
  margin: 28px 0 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--grey-900);
}

.careers-role-copy ul {
  margin: 12px 0 0;
  padding: 0 0 0 1.15rem;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.careers-role-copy li + li {
  margin-top: 8px;
}

.careers-apply {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.careers-apply__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.careers-apply__intro .section__sub {
  margin-top: 12px;
}

.careers-apply__notes {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.careers-apply__notes li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.careers-apply__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23188038'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.careers-apply__form {
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  text-align: left;
}

.careers-apply__form .auth-form__actions {
  margin-top: 8px;
}

.careers-apply__form .start__secure {
  max-width: 28ch;
}

@media (max-width: 980px) {
  .careers-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .careers-hero {
    padding: 56px 0 8px;
  }

  .careers-page .section {
    padding: 48px 0;
  }

  .careers-values {
    grid-template-columns: 1fr;
  }

  .careers-benefits {
    grid-template-columns: 1fr;
  }

  .careers-role {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .careers-apply__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- About ---------- */

.about-page {
  --about-measure: 68rem;
  --about-copy: 40rem;
  --about-space-xs: 8px;
  --about-space-sm: 12px;
  --about-space-md: 24px;
  --about-space-lg: 32px;
  --about-space-xl: 48px;
  --about-space-2xl: 80px;
  background: var(--white);
}

.about-page main .container {
  width: min(100% - (var(--gutter) * 2), var(--about-measure));
}

.about-mission {
  position: relative;
  /* Match home hero: 72px padding + ~18px from hero grid vertical centering */
  padding: 90px 0 88px;
  overflow: hidden;
  background: var(--white);
}

.about-mission__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 46% 62% at 18% 8%, rgba(26, 115, 232, 0.1), transparent 70%),
    radial-gradient(ellipse 40% 56% at 84% 16%, rgba(24, 128, 56, 0.08), transparent 70%),
    radial-gradient(ellipse 52% 70% at 50% 110%, rgba(249, 171, 0, 0.07), transparent 72%);
}

.about-mission__inner {
  position: relative;
  width: min(100% - (var(--gutter) * 2), 56rem) !important;
  text-align: center;
}

.about-mission__eyebrow {
  animation: rise 700ms var(--ease-emphasized) both;
}

.about-mission h1 {
  margin: 0 auto;
  max-width: 22ch;
  font-size: clamp(2.6rem, 5.6vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.08;
  color: var(--grey-900);
  animation: rise 700ms var(--ease-emphasized) 90ms both;
}

.about-mission h1 em {
  font-style: normal;
  color: var(--g-blue);
}

.about-mission__sub {
  margin: 24px auto 0;
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
  animation: rise 700ms var(--ease-emphasized) 180ms both;
}

@media (prefers-reduced-motion: reduce) {
  .about-mission__eyebrow,
  .about-mission h1,
  .about-mission__sub {
    animation: none;
  }
}

.about-section {
  padding: var(--about-space-2xl) 0;
}

.about-section--soft {
  background: var(--surface-muted);
}

.about-section__intro {
  max-width: var(--about-copy);
  margin: 0 0 var(--about-space-lg);
}

.about-section__intro h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--grey-900);
}

.about-section__intro p {
  margin: var(--about-space-sm) 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-hero-media {
  margin: 0 0 var(--about-space-lg);
  overflow: hidden;
  border-radius: 16px;
  background: var(--grey-100);
}

.about-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-tech {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-tech a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 24px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard),
    transform var(--dur-med) var(--ease-standard);
}

.about-tech a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 0% 0%, rgba(26, 115, 232, 0.07), transparent 58%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-standard);
  pointer-events: none;
}

.about-tech a:hover {
  transform: translateY(-2px);
  border-color: var(--g-blue-100);
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.12);
}

.about-tech a:hover::before {
  opacity: 1;
}

.about-tech a:focus-visible {
  outline: 2px solid var(--g-blue);
  outline-offset: 3px;
}

.about-tech__icon {
  position: relative;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease-emphasized);
}

.about-tech a:hover .about-tech__icon {
  transform: scale(1.06);
}

.about-tech__body {
  position: relative;
  display: block;
  flex: 1;
}

.about-tech__body strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 1.35;
  color: var(--grey-900);
}

.about-tech__body span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-tech__arrow {
  position: relative;
  margin-top: 20px;
  color: var(--g-blue);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity var(--dur-med) var(--ease-standard),
    transform var(--dur-med) var(--ease-standard);
}

.about-tech a:hover .about-tech__arrow,
.about-tech a:focus-visible .about-tech__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (hover: none) {
  .about-tech__arrow {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-tech a,
  .about-tech__icon,
  .about-tech__arrow {
    transition: none;
  }

  .about-tech a:hover {
    transform: none;
  }
}

.about-quote {
  position: relative;
  padding: var(--about-space-2xl) 0;
  overflow: hidden;
  background: linear-gradient(135deg, #17191c 0%, #202124 55%, #1d2433 100%);
  color: var(--white);
}

.about-quote__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 44% 70% at 86% 12%, rgba(26, 115, 232, 0.22), transparent 68%),
    radial-gradient(ellipse 38% 60% at 8% 92%, rgba(26, 115, 232, 0.12), transparent 70%);
}

.about-quote__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 56px;
  align-items: center;
}

.about-quote__portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-quote__portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-quote__content {
  position: relative;
}

.about-quote__mark {
  display: block;
  margin-bottom: 4px;
  font-size: 88px;
  font-weight: 700;
  line-height: 0.6;
  color: #8ab4f8;
  opacity: 0.9;
  user-select: none;
}

.about-quote blockquote {
  margin: 0;
}

.about-quote blockquote p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.35px;
  line-height: 1.35;
}

.about-quote__person {
  margin-top: var(--about-space-lg);
  padding-top: var(--about-space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-quote__name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.about-quote__role {
  margin: 3px 0 10px;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.68);
}

.about-quote .link {
  color: #8ab4f8;
}

.about-quote .link:hover {
  color: #aecbfa;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--about-space-md);
}

.about-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--white);
}

.about-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey-100);
}

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

.about-card__media--solid {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: var(--g-blue-50);
}

.about-card__media--story {
  background: var(--g-blue-50);
}

.about-card__media--commit {
  background: var(--g-green-50);
}

.about-card__media--solid .glyph {
  width: 96px;
  height: 96px;
}

.about-card__media--solid .glyph svg {
  width: 48px;
  height: 48px;
}

.about-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  padding: var(--about-space-md);
}

.about-card__body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: var(--grey-900);
}

.about-card__body p {
  margin: var(--about-space-sm) 0 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-card__body .link {
  margin-top: 16px;
}

.about-outreach {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--about-space-xl);
  align-items: stretch;
}

.about-outreach__feature {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--white);
}

.about-outreach__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--grey-100);
}

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

.about-outreach__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--about-space-md);
}

.about-outreach__body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: var(--grey-900);
}

.about-outreach__body p {
  margin: var(--about-space-sm) 0 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-outreach__body .link {
  margin-top: 16px;
}

.about-outreach__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-outreach__list li {
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
}

.about-outreach__list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-outreach__list li:last-child {
  padding-bottom: 0;
}

.about-outreach__list strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--grey-900);
}

.about-outreach__list p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-cta {
  padding: var(--about-space-2xl) 0;
  border-top: 1px solid var(--border-subtle);
}

.about-cta__inner {
  text-align: center;
}

.about-cta__inner h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--grey-900);
}

.about-cta__inner p {
  margin: var(--about-space-sm) auto 0;
  max-width: 36ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: var(--about-space-lg);
}

@media (max-width: 720px) {
  .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .about-tech {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-quote__inner {
    grid-template-columns: 1fr;
    gap: var(--about-space-lg);
  }

  .about-quote__portrait {
    max-width: 320px;
  }

  .about-cards,
  .about-outreach {
    grid-template-columns: 1fr;
    gap: var(--about-space-md);
  }

  .about-outreach__list {
    margin-top: var(--about-space-xs);
  }

  .about-outreach__list li:first-child {
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
  }

  .about-outreach__list li:last-child {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
  }
}

@media (max-width: 720px) {
  .about-page {
    --about-space-xl: 40px;
    --about-space-2xl: 56px;
  }

  .about-mission {
    padding: 40px 0 56px;
  }

  .about-mission h1 {
    max-width: none;
    letter-spacing: -0.8px;
  }

  .about-mission__sub {
    margin-top: 16px;
    font-size: 16px;
  }

  .about-section__intro {
    margin-bottom: var(--about-space-md);
  }

  .about-hero-media {
    margin-bottom: var(--about-space-md);
    border-radius: 12px;
  }

  .about-tech {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-quote__person {
    margin-top: var(--about-space-md);
  }

  .about-card,
  .about-outreach__feature {
    border-radius: 12px;
  }
}

/* ——— CEO letter page ——— */

.ceo-page .ceo-hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.ceo-page .ceo-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 12% 20%, rgba(26, 115, 232, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(26, 115, 232, 0.06), transparent 72%);
}

.ceo-page .ceo-hero__inner {
  position: relative;
}

.ceo-page .ceo-hero .g-breadcrumb {
  margin-bottom: 28px;
}

.ceo-page .ceo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.ceo-page .ceo-hero__portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow:
    0 20px 48px rgba(32, 33, 36, 0.12),
    0 0 0 1px rgba(32, 33, 36, 0.06);
}

.ceo-page .ceo-hero__portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ceo-page .ceo-hero__copy .eyebrow {
  margin-bottom: 12px;
}

.ceo-page .ceo-hero__copy h1 {
  margin: 0 0 20px;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  max-width: 18ch;
}

.ceo-page .ceo-hero__byline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.4;
}

.ceo-page .ceo-hero__byline strong {
  font-weight: 600;
  color: var(--text);
}

.ceo-page .ceo-hero__byline span {
  color: var(--text-secondary);
}

.ceo-page .ceo-hero__copy .lede {
  margin: 0;
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ceo-page .ceo-letter {
  padding: clamp(40px, 6vw, 72px) 0;
}

.ceo-page .ceo-letter__inner {
  max-width: 42rem;
}

.ceo-page .ceo-letter__inner p {
  margin: 0 0 1.25em;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--text);
}

.ceo-page .ceo-letter__signoff {
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.ceo-page .ceo-letter__signoff span {
  color: var(--text-secondary);
  font-size: 0.95em;
}

.ceo-page .ceo-principles {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-subtle);
}

.ceo-page .ceo-principles li {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.ceo-page .ceo-principles strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--grey-900);
}

.ceo-page .ceo-principles p {
  margin: 6px 0 0;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ceo-page .ceo-cta {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.ceo-page .ceo-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.ceo-page .ceo-cta p {
  margin: 0 0 24px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.ceo-page .ceo-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 900px) {
  .ceo-page .ceo-hero {
    padding: 20px 0 0;
    background: var(--white);
  }

  .ceo-page .ceo-hero__glow {
    background: radial-gradient(
      ellipse 90% 70% at 50% 0%,
      rgba(26, 115, 232, 0.08),
      transparent 70%
    );
  }

  .ceo-page .ceo-hero .g-breadcrumb {
    margin-bottom: 16px;
  }

  .ceo-page .ceo-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ceo-page .ceo-hero__portrait {
    max-width: none;
    width: calc(100% + (var(--gutter) * 2));
    margin-inline: calc(var(--gutter) * -1);
    border-radius: 0;
    box-shadow: none;
  }

  .ceo-page .ceo-hero__portrait img {
    aspect-ratio: 4 / 5;
    max-height: 420px;
    object-position: center top;
  }

  .ceo-page .ceo-hero__copy .eyebrow {
    margin-bottom: 8px;
  }

  .ceo-page .ceo-hero__copy h1 {
    max-width: none;
    margin: 0 0 12px;
    font-size: clamp(1.55rem, 7vw, 1.85rem);
    letter-spacing: -0.025em;
  }

  .ceo-page .ceo-hero__byline {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 8px;
    margin: 0 0 12px;
    font-size: 14px;
  }

  .ceo-page .ceo-hero__byline span::before {
    content: "·";
    margin-right: 8px;
    color: var(--text-secondary);
  }

  .ceo-page .ceo-hero__copy .lede {
    max-width: none;
    padding-bottom: 24px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.55;
    border-bottom: 1px solid var(--border-subtle);
  }

  .ceo-page .ceo-letter {
    padding: 24px 0 40px;
  }

  .ceo-page .ceo-letter__inner p {
    margin: 0 0 1.1em;
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .ceo-page .ceo-letter__signoff {
    margin-top: 1.5rem;
  }

  .ceo-page #principles.about-section {
    padding: 40px 0;
  }

  .ceo-page .about-section__intro {
    margin-bottom: 20px;
  }

  .ceo-page .about-section__intro h2 {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
  }

  .ceo-page .ceo-principles li {
    padding: 18px 0;
  }

  .ceo-page .ceo-cta {
    text-align: left;
    max-width: none;
  }

  .ceo-page .ceo-cta__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .ceo-page .ceo-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .partners-tracks {
    grid-template-columns: 1fr;
  }

  .partners-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partners-flow li {
    align-items: stretch;
    text-align: left;
  }

  .partners-flow__marker {
    justify-content: center;
  }

  .partners-flow__rail {
    display: none;
  }

  .partners-flow__body {
    align-items: flex-start;
  }

  .partners-flow p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .partners-hero__stage {
    min-height: 380px;
  }

  .partners-hero__foreground {
    padding-top: 56px;
    gap: 24px;
  }

  .partners-hero__panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
    border-radius: 12px 12px 0 0;
  }

  .partners-hero__cta {
    width: 100%;
    justify-content: center;
  }

  .partners-page .section {
    padding: 56px 0;
  }

  .partners-apply__form {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-hero__foreground,
  .partners-track,
  .partners-flow li,
  .partners-apply__form {
    animation: none;
  }
}

@media (max-width: 960px) {
  .start {
    padding: 64px var(--gutter) 72px;
  }

  .has-site-chrome .start {
    padding-block: 72px 88px;
  }

  .start__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .start__main {
    display: contents;
  }

  .start__story {
    order: 1;
  }

  .start__panel {
    order: 2;
  }

  .start__process {
    order: 3;
  }

  .start__story h1 {
    max-width: none;
  }

  .start__atmosphere img {
    object-position: center top;
    opacity: 0.14;
  }
}

@media (max-width: 640px) {
  .start-body .auth-top {
    padding-inline: 20px;
  }

  .start-body .auth-top__divider,
  .start-body .auth-top__back {
    display: none;
  }

  .start {
    padding: 48px 20px 64px;
  }

  .has-site-chrome .start {
    padding-block: 48px 72px;
  }

  .start__grid {
    gap: 20px;
  }

  /* Mobile hero ? compact composition above the form */
  .start__story {
    padding: 4px 0 0;
  }

  .start__eyebrow {
    margin-bottom: 14px;
    min-height: 26px;
    padding: 0 10px;
    font-size: 11px;
  }

  .start__story h1 {
    max-width: 12ch;
    font-size: 32px;
    letter-spacing: -0.6px;
    line-height: 1.1;
  }

  .contact__story h1 {
    max-width: 11ch;
  }

  .start__lede {
    margin-top: 12px;
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.5;
  }

  .contact__story .start__lede {
    max-width: 36ch;
  }

  .start__panel {
    margin-top: 0;
    padding: 20px;
    border-radius: 16px;
    box-shadow:
      0 1px 2px rgba(60, 64, 67, 0.08),
      0 8px 24px rgba(60, 64, 67, 0.08);
  }

  .start__panel-head {
    margin-bottom: 20px;
  }

  .start__panel-head h2 {
    font-size: 19px;
  }

  .start__panel-head p {
    margin-top: 6px;
  }

  .start__panel .field,
  .start__panel .field-row {
    margin-bottom: 16px;
  }

  .start__panel .field:last-of-type {
    margin-bottom: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field-row .field {
    margin-bottom: 0;
  }

  .start__panel .auth-form__actions.start__actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
  }

  .start__secure {
    max-width: none;
    text-align: center;
  }

  .start__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .start__process {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
  }

  .contact__list {
    gap: 16px;
  }

  .contact__list li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .contact__list .glyph {
    width: 36px;
    height: 36px;
  }

  .contact__list strong {
    font-size: 14px;
  }

  .contact__list p {
    font-size: 13px;
  }

  .start__steps {
    gap: 16px;
  }

  .start__steps li {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .start__step-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .start__steps strong {
    font-size: 14px;
  }

  .start__steps p {
    margin-top: 2px;
    font-size: 13px;
  }

  .start__trust {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    gap: 12px;
    margin-top: 20px;
  }

  .start__faces img {
    width: 32px;
    height: 32px;
  }

  .start__faces img + img {
    margin-left: -8px;
  }

  .start__trust p {
    max-width: none;
    font-size: 12px;
    line-height: 1.4;
  }

  .start__atmosphere img {
    animation: none;
  }

  .start .auth__footer.start__footer {
    margin-top: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    justify-content: center;
    gap: 8px 16px;
  }
}

@keyframes auth-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-card__logo {
  margin: 0 auto 16px;
}

.auth-card h1 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.333;
  color: var(--grey-900);
}

.auth-card__lede {
  margin-top: 8px;
  font-size: 16px;
  color: var(--text-secondary);
}

.auth-form {
  margin-top: 32px;
  text-align: left;
}

.field {
  position: relative;
  margin-bottom: 24px;
}

.field__input {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text-primary);
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  transition:
    border-color var(--dur-short) var(--ease-standard),
    box-shadow var(--dur-short) var(--ease-standard);
}

.field:has(.field__toggle) .field__input {
  padding-right: 48px;
}

.field__input:hover {
  border-color: var(--grey-700);
}

.field__input:focus {
  border-color: var(--g-blue);
  border-width: 2px;
  padding: 0 14px;
  outline: none;
  box-shadow: none;
}

.field:has(.field__toggle) .field__input:focus {
  padding-right: 47px;
}

.field__input.is-invalid {
  border-color: var(--g-red);
}

.field__input.is-invalid:focus {
  border-color: var(--g-red);
  border-width: 2px;
}

.field__label {
  position: absolute;
  left: 12px;
  /* Anchor to the 56px input ? not .field ? so errors don't shift the label */
  top: 28px;
  transform: translateY(-50%);
  padding: 0 4px;
  background: var(--white);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
  transition:
    top var(--dur-short) var(--ease-standard),
    font-size var(--dur-short) var(--ease-standard),
    color var(--dur-short) var(--ease-standard),
    transform var(--dur-short) var(--ease-standard);
}

.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  top: 0;
  font-size: 12px;
}

.field__input:focus + .field__label {
  color: var(--g-blue);
}

.field__input.is-invalid + .field__label,
.field__input.is-invalid:focus + .field__label {
  color: var(--g-red);
}

.field__toggle {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--grey-700);
  transition: background var(--dur-short) var(--ease-standard);
}

.field__toggle:hover {
  background: rgba(60, 64, 67, 0.08);
}

.field__toggle:active {
  background: rgba(60, 64, 67, 0.14);
}

.field__error {
  margin-top: 6px;
  padding-inline: 16px;
  font-size: 12px;
  line-height: 16px;
  color: var(--g-red);
}

.field--select .field__select {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.field--select .field__select:focus {
  padding-right: 43px;
}

.field--select .field__chevron {
  position: absolute;
  top: 18px;
  right: 14px;
  color: var(--grey-700);
  pointer-events: none;
}

.field--select .field__select:focus + .field__label,
.field--select .field__select.is-filled + .field__label,
.field--textarea .field__textarea:focus + .field__label,
.field--textarea .field__textarea:not(:placeholder-shown) + .field__label,
.field--textarea .field__textarea.is-filled + .field__label {
  top: 0;
  font-size: 12px;
}

/* Selects never match :placeholder-shown, so rest the label manually when empty */
.field--select .field__select:not(:focus):not(.is-filled) + .field__label {
  top: 28px;
  font-size: 16px;
}

.field--select .field__select:focus + .field__label {
  color: var(--g-blue);
}

.field--select .field__select.is-invalid + .field__label,
.field--select .field__select.is-invalid:focus + .field__label {
  color: var(--g-red);
}

.field--textarea .field__textarea {
  height: auto;
  min-height: 120px;
  padding-top: 18px;
  padding-bottom: 14px;
  resize: vertical;
  line-height: 1.45;
}

.field--textarea .field__label {
  top: 28px;
}

.field--textarea .field__textarea:focus {
  padding-top: 17px;
  padding-bottom: 13px;
}

.auth-form__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: -8px;
  margin-bottom: 8px;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
}

.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--g-blue);
  cursor: pointer;
  flex-shrink: 0;
}

.auth-form__terms {
  align-items: center;
  margin-bottom: 8px;
  line-height: 1.45;
}

.turnstile-field {
  margin: 0 0 18px;
  min-height: 0;
}

.turnstile-field iframe {
  max-width: 100%;
}

.auth-form__terms input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
}

.auth-form__terms a {
  color: var(--g-blue);
  font-weight: 500;
}

.auth-form__terms a:hover {
  text-decoration: underline;
}

.auth-form__forgot {
  margin-left: auto;
  padding: 4px 8px;
}

.auth-form__status {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 14px;
  line-height: 1.45;
}

.auth-form__status.is-error {
  background: #fce8e6;
  color: #c5221f;
}

.auth-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.auth__footer {
  position: relative;
  z-index: 1;
  width: min(100%, 450px);
  margin-top: 12px;
  padding-inline: 0;
  border-top: 0;
}

@media (max-width: 520px) {
  .auth-body {
    background: var(--white);
  }

  .auth-top {
    height: 56px;
    padding-inline: 20px;
  }

  .auth-body .auth-top__back span {
    display: none;
  }

  .auth-body .auth-top__back {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .auth {
    justify-content: flex-start;
    min-height: calc(100dvh - 56px);
    padding: 28px 20px 32px;
  }

  .auth__glow {
    display: none;
  }

  .auth-card {
    padding: 24px 4px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .auth__footer {
    margin-top: 8px;
  }

  .auth-form__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .auth-form__actions .btn,
  .auth-form__actions .text-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-height: 720px) and (min-width: 521px) {
  .auth {
    justify-content: flex-start;
    padding-top: 12px;
  }

  .auth-card {
    padding-block: 32px 28px;
  }

  .auth-card__logo {
    margin-bottom: 12px;
  }

  .auth-form {
    margin-top: 24px;
  }
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity var(--dur-enter) var(--ease-out-expo),
    transform var(--dur-enter) var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal--scale {
  opacity: 0;
  transform: translateY(0.55rem) scale(0.99);
  transition:
    opacity var(--dur-enter) var(--ease-out-expo),
    transform var(--dur-enter) var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal--scale.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  .nav__trigger,
  .nav__link {
    padding: 8px 8px;
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .split,
  .results {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero__visual {
    min-height: 0;
  }

  .console--hero {
    min-height: 360px;
  }

  .hero__copy h1 {
    max-width: none;
  }
}

/* Tablet & below ? drawer nav + accordion megas */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-rail__list {
    gap: 16px;
  }

  .tech-rail__track {
    gap: 16px;
  }

  .header__bar {
    gap: 12px;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    max-height: none;
    overflow: hidden;
    padding: 0;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 120;
    transition:
      transform var(--dur-med) var(--ease-emphasized),
      opacity var(--dur-med) var(--ease-emphasized),
      visibility var(--dur-med) var(--ease-emphasized);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__scroll {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 8px 16px 20px;
  }

  .nav__item {
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav__trigger,
  .nav__link {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    padding: 14px 4px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-900);
  }

  .nav__trigger:hover,
  .nav__link:hover {
    background: transparent;
  }

  .nav__item.is-open > .nav__trigger {
    color: var(--g-blue);
    background: transparent;
  }

  .nav__link {
    justify-content: flex-start;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav__chev {
    width: 24px;
    height: 24px;
    color: var(--grey-600);
  }

  .nav__item.is-open > .nav__trigger .nav__chev {
    color: var(--g-blue);
  }

  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    border: 0;
    box-shadow: none;
    background: var(--grey-50);
    max-height: 0;
    overflow: hidden;
    margin: 0 -16px;
    transition: max-height var(--dur-long) var(--ease-emphasized);
  }

  .nav__item.is-open > .mega:not([hidden]) {
    max-height: 1800px;
  }

  .mega__inner {
    max-width: none;
    width: 100%;
    padding: 8px 16px 20px;
    background: transparent;
  }

  .mega__cols,
  .mega__cols--3,
  .mega__cols--products,
  .mega__cols--industries,
  .mega__cols--services,
  .mega__cols--resources,
  .mega__grid,
  .mega__grid--3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mega__col + .mega__col {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
  }

  .mega__label {
    margin: 4px 0 8px;
    padding: 0 4px;
  }

  .mega__link {
    align-items: center;
    gap: 14px;
    padding: 12px 10px;
    margin: 0;
    border-radius: var(--radius-card);
  }

  .mega__link .glyph {
    width: 40px;
    height: 40px;
  }

  .mega__link strong {
    font-size: 15px;
  }

  .mega__link em {
    font-size: 13px;
    line-height: 1.35;
  }

  .mega__feature {
    margin-top: 16px;
    padding: 4px;
  }

  .mega__feature > strong {
    font-size: 15px;
  }

  .mega__feature > p {
    margin-bottom: 14px;
  }

  .mega__feature .btn {
    width: 100%;
    justify-content: center;
  }

  .mega-scrim {
    display: block !important;
    inset: 0;
    z-index: 110;
    background: rgba(32, 33, 36, 0.45);
  }

  .site-header {
    z-index: 130;
  }

  .header__actions {
    position: relative;
    z-index: 140;
  }

  html.gacc-open .header__actions {
    z-index: 150;
  }

  html.gacc-open .gacc__panel {
    z-index: 160;
  }

  .nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    margin: 0;
    padding: 16px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border-subtle);
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(60, 64, 67, 0.06);
  }

  .nav__mobile-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav__mobile-actions .text-btn {
    text-align: center;
    padding: 12px;
  }

  .icon-btn {
    display: inline-flex;
  }

  .header__actions .text-btn,
  .header__actions .btn--filled {
    display: none;
  }

  .header__actions .gacc {
    display: inline-flex;
    margin-left: 0;
  }

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

@media (min-width: 1025px) and (max-width: 1180px) {
  .mega__cols--3 {
    grid-template-columns: 1fr 1fr;
  }

  .mega__cols--3 .mega__feature {
    grid-column: 1 / -1;
  }

  .mega__grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 16px;
  }

  .brand__name {
    font-size: 16px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .section {
    padding: 72px 0;
  }

  .product-grid,
  .engage__cards,
  .stat-grid,
  .console__row,
  .console__row--main {
    grid-template-columns: 1fr;
  }

  .section.section--tech {
    padding: 56px 0 64px;
  }

  .tech-card {
    width: 76px;
    height: 76px;
    border-radius: 16px;
  }

  .tech-card img {
    width: 30px;
    height: 30px;
  }

  .tech-rail__list,
  .tech-rail__track {
    gap: 14px;
  }

  .tech__copy {
    margin-top: 22px;
    font-size: 14px;
    padding-inline: 8px;
  }

  .hero__visual {
    min-height: 0;
  }

  .console--hero {
    min-height: 0;
  }

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

  .console--hero .tile--ai {
    display: none;
  }

  .console {
    min-height: 0;
  }

  .console__nav {
    display: none;
  }

  .ecosystem__line {
    display: none;
  }

  .ecosystem__nodes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote > p {
    font-size: 18px;
  }

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

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

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

  .reveal,
  .reveal--scale {
    opacity: 1;
    transform: none;
  }

  .anim-fade-up,
  .anim-hero-wash {
    animation: none !important;
  }

  .btn--filled::after {
    display: none;
  }
}

/* ---------- Docs page ---------- */

.docs-page {
  background: var(--white);
}

.docs-page .section {
  padding: 72px 0;
}

.docs-page .section__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 32px;
}

.docs-section--soft {
  background: var(--surface-muted);
}

.docs-hero {
  position: relative;
  padding: 72px 0 64px;
  background:
    radial-gradient(ellipse 60% 90% at 50% -20%, rgba(26, 115, 232, 0.08), transparent 70%),
    var(--white);
  border-bottom: 1px solid var(--border-subtle);
}

.docs-hero__inner {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.docs-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--grey-900);
}

.docs-hero__sub {
  margin: 16px auto 0;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.docs-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 40rem;
  margin: 32px auto 0;
}

.docs-search__icon {
  position: absolute;
  top: 50%;
  left: 18px;
  z-index: 1;
  color: var(--grey-700);
  pointer-events: none;
  transform: translateY(-50%);
}

.docs-search input {
  width: 100%;
  min-height: 56px;
  padding: 0 56px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font: inherit;
  font-size: 16px;
  line-height: 1.25;
  color: var(--text-primary);
  background: var(--white);
  box-shadow: var(--elev-1);
  appearance: none;
  -webkit-appearance: none;
  transition: box-shadow var(--dur-short) var(--ease-standard), border-color var(--dur-short) var(--ease-standard);
}

.docs-search input::placeholder {
  color: var(--grey-600);
}

.docs-search input:hover {
  box-shadow: var(--elev-2);
}

.docs-search input:focus {
  outline: none;
  border-color: var(--g-blue);
  box-shadow: 0 0 0 3px var(--g-blue-50), var(--elev-1);
}

.docs-search input::-webkit-search-decoration,
.docs-search input::-webkit-search-cancel-button,
.docs-search input::-webkit-search-results-button,
.docs-search input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.docs-search__clear {
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--grey-600);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background var(--dur-short) var(--ease-standard);
}

.docs-search__clear svg {
  display: block;
  flex-shrink: 0;
}

.docs-search__clear:hover {
  background: var(--grey-700);
}

.docs-search__clear:active {
  background: var(--grey-800);
}

.docs-search__clear:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.docs-search:has(.docs-search__clear:not([hidden])) .docs-search__kbd {
  display: none;
}

.docs-search:has(.docs-search__clear:not([hidden])) input {
  padding-right: 52px;
}

.docs-search__kbd {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 12px;
  color: var(--grey-600);
  background: var(--grey-50);
  pointer-events: none;
  transform: translateY(-50%);
}

.docs-quickstarts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.docs-quickstart a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  transition: box-shadow var(--dur-short) var(--ease-standard), border-color var(--dur-short) var(--ease-standard), transform var(--dur-short) var(--ease-standard);
}

.docs-quickstart a:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-2);
  transform: translateY(-2px);
}

.docs-quickstart a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.docs-quickstart__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--grey-700);
}

.docs-quickstart__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 100px;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 12px;
  font-weight: 500;
}

.docs-quickstart strong {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.docs-quickstart a > span:last-child {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.docs-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.docs-product {
  padding: 28px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  transition: box-shadow var(--dur-short) var(--ease-standard), border-color var(--dur-short) var(--ease-standard);
}

.docs-product:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

.docs-product h3 {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.docs-product > p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.docs-product ul {
  margin: 16px 0 0;
  padding: 14px 0 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
}

.docs-product ul a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--g-blue-700);
  transition: color var(--dur-short) var(--ease-standard);
}

.docs-product ul a:hover {
  color: var(--g-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.docs-empty {
  margin: 32px 0 0;
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
}

.docs-empty a {
  color: var(--g-blue-700);
  font-weight: 500;
}

.docs-empty a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.docs-popular {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--white);
}

.docs-popular li + li {
  border-top: 1px solid var(--border-subtle);
}

.docs-popular a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  transition: background var(--dur-short) var(--ease-standard);
}

.docs-popular a:hover {
  background: var(--grey-50);
}

.docs-popular a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

.docs-popular__tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 100px;
  background: var(--grey-100);
  color: var(--grey-800);
  font-size: 12px;
  font-weight: 500;
}

.docs-popular strong {
  flex: 1;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--grey-900);
}

.docs-popular__arrow {
  flex-shrink: 0;
  color: var(--grey-600);
  transition: transform var(--dur-short) var(--ease-standard), color var(--dur-short) var(--ease-standard);
}

.docs-popular a:hover .docs-popular__arrow {
  color: var(--g-blue);
  transform: translateX(3px);
}

.docs-dev {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.docs-dev__card {
  display: block;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.docs-dev__card:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

a.docs-dev__card:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.docs-dev__sig {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--grey-900);
  color: var(--grey-100);
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.docs-dev__card h3 {
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.docs-dev__card p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.docs-cta {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--white);
}

.docs-cta__inner {
  text-align: center;
}

.docs-cta__inner h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--grey-900);
}

.docs-cta__inner p {
  margin: 12px auto 0;
  max-width: 36ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.docs-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 960px) {
  .docs-quickstarts,
  .docs-products,
  .docs-dev {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .docs-hero {
    padding: 48px 0 40px;
  }

  .docs-page .section {
    padding: 48px 0;
  }

  .docs-cta {
    padding: 56px 0;
  }

  .docs-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .docs-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .docs-search input {
    min-height: 52px;
    padding-right: 20px;
  }

  .docs-search__kbd {
    display: none;
  }

  .docs-quickstarts,
  .docs-products,
  .docs-dev {
    grid-template-columns: 1fr;
  }

  .docs-popular a {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 18px;
  }

  .docs-popular strong {
    flex-basis: 100%;
    order: 1;
  }

  .docs-popular__tag {
    order: 0;
  }

  .docs-popular__arrow {
    display: none;
  }
}

/* ---------- Doc article pages ---------- */

.doc-page {
  --doc-measure: 76rem;
  --doc-prose: 48rem;
  background: var(--white);
}

.doc-shell {
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 1fr);
  gap: 40px 56px;
  align-items: start;
  width: min(100% - (var(--gutter) * 2), var(--doc-measure));
  margin-inline: auto;
  padding: 48px 0 96px;
  min-width: 0;
}

.doc-rail {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding-top: 8px;
}

.doc-rail__label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.doc-rail nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.doc-rail nav a {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--grey-700);
  text-decoration: none;
}

.doc-rail nav a:hover {
  color: var(--g-blue);
}

.doc-rail__all {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--g-blue);
  text-decoration: none;
}

.doc-rail__all:hover {
  text-decoration: underline;
}

.doc-article__header {
  max-width: var(--doc-prose);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 36px;
}

.doc-article__header .g-breadcrumb {
  margin-bottom: 20px;
}

.doc-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--grey-600);
}

.doc-article__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.25;
}

.doc-article__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.doc-article__time svg {
  display: block;
  flex: 0 0 auto;
  color: var(--grey-500);
}

.doc-article__header h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 1.22;
  color: var(--grey-900);
}

.doc-article__lede {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.doc-article {
  min-width: 0;
}

.doc-article__body {
  max-width: var(--doc-prose);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--grey-800);
  overflow: visible;
  overflow-wrap: break-word;
}

.doc-article__body > *:first-child {
  margin-top: 0;
}

.doc-article__body h2 {
  margin: 2.15rem 0 0.95rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.25px;
  line-height: 1.35;
  color: var(--grey-900);
  scroll-margin-top: calc(var(--header-h) + 20px);
  text-wrap: balance;
}

.doc-article__body h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.4;
  color: var(--grey-900);
  scroll-margin-top: calc(var(--header-h) + 20px);
  text-wrap: balance;
}

.doc-article__body p {
  margin: 0 0 1.15rem;
  text-wrap: pretty;
}

.doc-article__body ul,
.doc-article__body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.6rem;
  list-style: disc outside;
}

.doc-article__body ol {
  list-style: decimal outside;
}

.doc-article__body li {
  margin: 0.45rem 0;
  padding-left: 0.35rem;
}

.doc-article__body li::marker {
  color: var(--grey-500);
}

.doc-path-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95em;
  height: 0.95em;
  margin: 0 0.28em;
  vertical-align: -0.12em;
  color: var(--grey-500);
}

.doc-path-sep svg {
  display: block;
  width: 100%;
  height: 100%;
}

.doc-article__body ul.doc-sequence,
.doc-article__body ol.doc-sequence {
  list-style: none;
  margin: 0.25rem 0 1.35rem;
  padding: 4px 0;
  border-block: 1px solid var(--border-subtle);
  counter-reset: doc-seq;
}

.doc-article__body .doc-sequence > li {
  display: grid;
  grid-template-columns: 1.75rem max-content minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  counter-increment: doc-seq;
}

.doc-article__body .doc-sequence > li:last-child {
  border-bottom: 0;
}

.doc-article__body .doc-sequence > li::before {
  content: counter(doc-seq);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.doc-article__body .doc-sequence > li > strong:first-child {
  margin-top: 0.3rem;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--g-blue-700);
  white-space: nowrap;
}

.doc-article__body .doc-sequence > li > span {
  margin-top: 0.28rem;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--grey-800);
}

.doc-article__body ul.doc-checklist {
  list-style: none;
  margin: 0.15rem 0 1.25rem;
  padding-left: 0;
}

.doc-article__body ul.doc-checklist li {
  position: relative;
  display: block;
  margin: 0.55rem 0;
  padding-left: 1.85rem;
  line-height: 1.5;
}

.doc-article__body ul.doc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.1em;
  height: 1.1em;
  border: 1.5px solid var(--g-blue-100);
  border-radius: 4px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231967d2'%3E%3Cpath d='M9.55 18 3.9 12.35l1.4-1.4 4.25 4.25L18.7 6.05l1.4 1.4z'/%3E%3C/svg%3E")
      center / 0.78em no-repeat,
    var(--g-blue-50);
}

.doc-article__body a {
  color: var(--g-blue);
  text-underline-offset: 2px;
}

.doc-article__body code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--grey-100);
}

.doc-article__body pre {
  margin: 0 0 1.25rem;
  padding: 16px 18px;
  overflow-x: auto;
  border-radius: 10px;
  background: var(--grey-900);
  color: #e8eaed;
  font-size: 13.5px;
  line-height: 1.55;
}

.doc-article__body pre code {
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.doc-callout {
  margin: 0 0 1.35rem;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--grey-50);
}

.doc-callout--tip {
  border-color: var(--g-blue-100);
  background: var(--g-blue-50);
}

.doc-callout strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--grey-900);
}

.doc-callout p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--grey-700);
}

.doc-article__footer {
  max-width: var(--doc-prose);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.doc-article__help h2,
.doc-related h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--grey-900);
}

.doc-article__help p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.doc-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.doc-related {
  margin-top: 40px;
}

.doc-related ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.doc-related a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  text-decoration: none;
  color: var(--grey-900);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.doc-related a:hover {
  border-color: var(--g-blue-100);
  background: rgba(26, 115, 232, 0.04);
}

.doc-related__type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--g-blue-700);
}

@media (max-width: 900px) {
  .doc-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 72px;
  }

  .doc-rail {
    position: static;
    padding: 0 0 20px;
    margin: 0 0 4px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .doc-rail__label {
    margin-bottom: 10px;
  }

  .doc-rail nav ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .doc-rail nav li {
    min-width: 0;
  }

  .doc-rail nav a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .doc-rail__all {
    margin-top: 12px;
  }

  .doc-article__actions {
    flex-direction: column;
  }

  .doc-article__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Case studies page ---------- */

.cases-page {
  background: var(--white);
}

.cases-page .section {
  padding: 64px 0;
}

.cases-page .section__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
}

.cases-section--soft {
  background: var(--surface-muted);
}

.cases-hero {
  position: relative;
  background: var(--white);
}

.cases-hero__stage {
  position: relative;
  min-height: clamp(420px, 58vw, 600px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cases-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cases-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.cases-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 33, 36, 0.1) 0%, rgba(32, 33, 36, 0.18) 40%, rgba(32, 33, 36, 0.58) 100%),
    linear-gradient(105deg, rgba(32, 33, 36, 0.3) 0%, transparent 52%);
}

.cases-hero__foreground {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--gutter) * 2), 60rem);
  margin-inline: auto;
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cases-hero__titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cases-hero__brand {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.cases-hero__brand em {
  font-style: normal;
  color: inherit;
}

.cases-hero__product {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.cases-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -10px 28px rgba(60, 64, 67, 0.1);
}

.cases-hero__copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.25;
  color: var(--grey-900);
}

.cases-hero__copy p {
  margin: 10px 0 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.cases-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  white-space: nowrap;
}

.cases-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.cases-filter__btn {
  padding: 8px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  background: var(--white);
  font: inherit;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition:
    background var(--dur-med) var(--ease-standard),
    border-color var(--dur-med) var(--ease-standard),
    color var(--dur-med) var(--ease-standard);
}

.cases-filter__btn:hover {
  border-color: var(--g-blue-100);
  color: var(--grey-900);
}

.cases-filter__btn.is-active {
  background: var(--g-blue-50);
  border-color: transparent;
  color: var(--g-blue-700);
  font-weight: 500;
}

.cases-filter__btn:focus-visible {
  outline: 2px solid var(--g-blue);
  outline-offset: 2px;
}

.cases-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
}

.cases-featured__media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(26, 115, 232, 0.16), transparent 55%),
    linear-gradient(20deg, #0f1724 0%, #1a73e8 120%);
}

.cases-featured__media--retail {
  background:
    linear-gradient(160deg, rgba(26, 115, 232, 0.2), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249, 171, 0, 0.35), transparent 40%),
    linear-gradient(145deg, #122033 0%, #1a73e8 100%);
}

.cases-featured__mark {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: rgba(255, 255, 255, 0.92);
}

.cases-featured__body {
  padding: 28px 32px;
}

.cases-featured__body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: var(--grey-900);
}

.cases-featured__body > p {
  margin: 10px 0 0;
  max-width: 46ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.cases-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border-subtle);
}

.cases-metrics dt {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--grey-900);
}

.cases-metrics dd {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.cases-quote {
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border-subtle);
}

.cases-quote p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--grey-800);
}

.cases-quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.cases-quote img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cases-quote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.cases-quote span {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cases-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  transition:
    box-shadow var(--dur-short) var(--ease-standard),
    border-color var(--dur-short) var(--ease-standard),
    transform var(--dur-short) var(--ease-standard);
}

.cases-card a:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-2);
  transform: translateY(-2px);
}

.cases-card a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.cases-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
}

.cases-card__visual--healthcare {
  background: linear-gradient(145deg, var(--g-green-50), #f8fbf9);
}

.cases-card__visual--services {
  background: linear-gradient(145deg, var(--g-blue-50), #f7f9fc);
}

.cases-card__visual--real-estate {
  background: linear-gradient(145deg, var(--g-yellow-50), #fffdf7);
}

.cases-card__visual--education {
  background: linear-gradient(145deg, #e8f0fe, #f5f8ff);
}

.cases-card__visual--logistics {
  background: linear-gradient(145deg, #e6f4ea, #f6fbf7);
}

.cases-card__visual--retail {
  background: linear-gradient(145deg, #fef7e0, #fffdf5);
}

.cases-card__meta,
.cases-card strong,
.cases-card__copy,
.cases-card__stat {
  padding-inline: 20px;
}

.cases-card__meta {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--g-blue-700);
}

.cases-card strong {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.35;
  color: var(--grey-900);
}

.cases-card__copy {
  margin-top: 8px;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.cases-card__stat {
  margin: 16px 0 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
}

.cases-card__stat em {
  margin-right: 6px;
  font-style: normal;
  font-weight: 500;
  color: var(--grey-900);
}

.cases-empty {
  margin: 24px 0 0;
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
}

.cases-empty a {
  color: var(--g-blue-700);
  font-weight: 500;
}

.cases-empty a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cases-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cases-proof li {
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
}

.cases-proof strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--grey-900);
}

.cases-proof span {
  display: block;
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.cases-voices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.cases-voices blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
}

.cases-voices p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey-800);
}

.cases-voices footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.cases-voices img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.cases-voices cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.cases-voices span {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

.cases-page .docs-cta {
  padding: 72px 0;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 960px) {
  .cases-featured {
    grid-template-columns: 1fr;
  }

  .cases-featured__media {
    min-height: 220px;
  }

  .cases-hero__stage {
    min-height: 380px;
  }

  .cases-hero__foreground {
    padding-top: 48px;
    gap: 20px;
  }

  .cases-hero__panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .cases-hero__cta {
    width: 100%;
  }

  .cases-hero__cta .btn {
    flex: 1;
    justify-content: center;
  }

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

  .cases-voices {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .cases-hero__stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    overflow: visible;
  }

  .cases-hero__media {
    position: relative;
    inset: auto;
    order: 2;
    height: min(78vw, 300px);
  }

  .cases-hero__media img {
    object-position: center 36%;
  }

  .cases-hero__veil {
    display: none;
  }

  .cases-hero__foreground {
    display: contents;
  }

  .cases-hero__titles {
    order: 1;
    gap: 8px;
    padding: 28px var(--gutter) 20px;
    background: var(--white);
  }

  .cases-hero__brand {
    font-size: clamp(2.35rem, 11vw, 2.85rem);
    letter-spacing: -0.7px;
    color: var(--grey-900);
    text-shadow: none;
  }

  .cases-hero__brand em {
    color: var(--g-blue);
  }

  .cases-hero__product {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-shadow: none;
  }

  .cases-hero__panel {
    order: 3;
    margin: 0;
    padding: 24px var(--gutter) 28px;
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 0;
    box-shadow: none;
  }

  .cases-page .section {
    padding: 40px 0;
  }

  .cases-page .section__head--stack {
    margin-bottom: 20px;
  }

  .cases-filter {
    margin-bottom: 20px;
  }

  .cases-featured__body {
    padding: 22px 18px;
  }

  .cases-featured__media {
    min-height: 200px;
    padding: 20px;
  }

  .cases-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cases-grid,
  .cases-proof {
    grid-template-columns: 1fr;
  }

  .cases-hero__cta {
    flex-direction: column;
  }

  .cases-hero__cta .btn {
    width: 100%;
  }

  .cases-page .docs-cta {
    padding: 56px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cases-hero__foreground {
    animation: none;
  }
}

/* ---------- Blog page ---------- */

.blog-page {
  background: var(--white);
}

.blog-masthead {
  padding: 72px 0 48px;
  background:
    radial-gradient(ellipse 60% 90% at 50% -20%, rgba(26, 115, 232, 0.08), transparent 70%),
    var(--white);
  border-bottom: 1px solid var(--border-subtle);
}

.blog-masthead__inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.blog-masthead h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--grey-900);
}

.blog-masthead__sub {
  margin: 16px auto 0;
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.blog-page .section {
  padding: 64px 0;
}

.blog-features {
  padding-top: 56px;
}

.blog-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}

.blog-story[hidden] {
  display: none;
}

.blog-story__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--surface-muted);
}

.blog-story__media picture,
.blog-feed__thumb picture {
  display: block;
  height: 100%;
}

.blog-story__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--ease-standard);
}

.blog-story:hover .blog-story__media img {
  transform: scale(1.03);
}

.blog-story__body {
  margin-top: 18px;
}

.blog-story__cat {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--g-blue-700);
}

.blog-story h3 {
  margin: 8px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.3;
  color: var(--grey-900);
}

.blog-story h3 a:hover {
  color: var(--g-blue-700);
}

.blog-story h3 a:focus-visible,
.blog-feed__item:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.blog-story__body > p {
  margin: 10px 0 0;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.blog-story__body .link {
  margin-top: 16px;
  display: inline-flex;
}

.blog-more {
  border-top: 1px solid var(--border-subtle);
  background: var(--white);
}

.blog-more__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 8px;
}

.blog-more .section__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.25;
}

.blog-filter {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--border-subtle);
}

.blog-filter::-webkit-scrollbar {
  display: none;
}

.blog-filter__btn {
  flex: 0 0 auto;
  margin-bottom: -1px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--dur-med) var(--ease-standard);
}

.blog-filter__btn:hover {
  color: var(--grey-900);
}

.blog-filter__btn.is-active {
  color: var(--g-blue-700);
  border-bottom-color: var(--g-blue);
}

.blog-filter__btn:focus-visible {
  outline: 2px solid var(--g-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.blog-feed {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-feed li {
  border-bottom: 1px solid var(--border-subtle);
}

.blog-feed li[hidden] {
  display: none;
}

.blog-feed__item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 0;
}

.blog-feed__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--surface-muted);
}

.blog-feed__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--ease-standard);
}

.blog-feed__item:hover .blog-feed__thumb img {
  transform: scale(1.04);
}

.blog-feed__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.blog-feed__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--g-blue-700);
}

.blog-feed__meta time,
.blog-feed__meta span:last-child {
  color: var(--text-secondary);
  font-weight: 400;
}

.blog-feed__copy strong {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: var(--grey-900);
}

.blog-feed__item:hover .blog-feed__copy strong {
  color: var(--g-blue-700);
}

.blog-feed__excerpt {
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.blog-empty {
  margin: 32px 0 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.blog-empty a {
  color: var(--g-blue-700);
  font-weight: 500;
}

.blog-empty a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-page .docs-cta {
  padding: 72px 0;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 960px) {
  .blog-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
}

@media (max-width: 720px) {
  .blog-masthead {
    padding: 48px 0 36px;
  }

  .blog-page .section {
    padding: 40px 0;
  }

  .blog-features {
    padding-top: 36px;
  }

  .blog-mosaic {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-more__head {
    gap: 16px;
    margin-bottom: 4px;
  }

  .blog-filter__btn {
    padding: 12px 12px;
    font-size: 13px;
  }

  .blog-feed__item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .blog-feed__excerpt {
    display: none;
  }

  .blog-page .docs-cta {
    padding: 56px 0;
  }
}

/* ---------- Blog post (article) ---------- */

.blog-post-page {
  --blog-post-measure: 42rem;
  background: var(--white);
}

.blog-post__header {
  padding: 64px 0 40px;
  background:
    radial-gradient(ellipse 55% 65% at 100% 0%, rgba(26, 115, 232, 0.07), transparent 55%),
    var(--white);
}

.blog-post__header-inner,
.blog-post__hero .container,
.blog-post__body {
  width: min(100% - (var(--gutter) * 2), var(--blog-post-measure));
  margin-inline: auto;
}

/* Google-style breadcrumb (Cloud / Developers docs pattern) */
.g-breadcrumb {
  margin: 0 0 24px;
}

.g-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--grey-700);
}

.g-breadcrumb li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.g-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: var(--grey-500);
  font-weight: 400;
  speak: never;
}

.g-breadcrumb a {
  color: var(--g-blue);
  text-decoration: none;
}

.g-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.g-breadcrumb a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

.g-breadcrumb [aria-current="page"] {
  color: var(--grey-700);
  font-weight: 400;
}

.blog-post__header h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.7px;
  line-height: 1.2;
  color: var(--grey-900);
}

.blog-post__byline {
  margin: 24px 0 0;
}

.blog-post__author {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--grey-900);
}

.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--grey-600);
}

.blog-post__meta time,
.blog-post__meta span:not(.blog-post__meta-sep) {
  color: var(--grey-600);
}

.blog-post__meta-sep {
  margin: 0 10px;
  color: var(--grey-500);
}

.blog-post__lede {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.blog-post__hero {
  padding: 8px 0 48px;
}

.blog-post__hero picture {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--grey-100);
}

.blog-post__hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post__body {
  padding-bottom: 48px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-800);
}

.blog-post__body > *:first-child {
  margin-top: 0;
}

.blog-post__body h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--grey-900);
}

.blog-post__body p {
  margin: 0 0 1.1rem;
}

.blog-post__body ul,
.blog-post__body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.6rem;
  list-style: disc outside;
}

.blog-post__body ol {
  list-style: decimal outside;
}

.blog-post__body li {
  margin: 0.45rem 0;
  padding-left: 0.35rem;
}

.blog-post__body li::marker {
  color: var(--grey-500);
}

.blog-post__body ul.doc-sequence,
.blog-post__body ol.doc-sequence {
  list-style: none;
  margin: 0.25rem 0 1.35rem;
  padding: 4px 0;
  border-block: 1px solid var(--border-subtle);
  counter-reset: doc-seq;
}

.blog-post__body .doc-sequence > li {
  display: grid;
  grid-template-columns: 1.75rem max-content minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  counter-increment: doc-seq;
}

.blog-post__body .doc-sequence > li:last-child {
  border-bottom: 0;
}

.blog-post__body .doc-sequence > li::before {
  content: counter(doc-seq);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.blog-post__body .doc-sequence > li > strong:first-child {
  margin-top: 0.3rem;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--g-blue-700);
  white-space: nowrap;
}

.blog-post__body .doc-sequence > li > span {
  margin-top: 0.28rem;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--grey-800);
}

.blog-post__body a {
  color: var(--g-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post__body a:hover {
  color: var(--g-blue-700);
}

.blog-post__body code {
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--grey-100);
  color: var(--grey-900);
}

.blog-post__body blockquote {
  margin: 1.75rem 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--g-blue);
}

.blog-post__body blockquote p {
  margin: 0;
  font-size: 1.05em;
  font-style: italic;
  color: var(--grey-700);
}

.blog-post__footer {
  padding: 8px 0 96px;
  border-top: 1px solid var(--border-subtle);
}

.blog-post__footer .container {
  width: min(100% - (var(--gutter) * 2), var(--blog-post-measure));
  margin-inline: auto;
}

.blog-post__cta {
  padding: 40px 0 48px;
}

.blog-post__cta h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.35px;
  color: var(--grey-900);
}

.blog-post__cta p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.blog-post__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.blog-post__related {
  padding-top: 8px;
}

.blog-post__related h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--grey-900);
}

.blog-post__related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-post__related a {
  display: block;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.blog-post__related a:hover {
  border-color: var(--g-blue-100);
  background: rgba(26, 115, 232, 0.04);
}

.blog-post__related-cat {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--g-blue-700);
}

.blog-post__related strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--grey-900);
}

@media (max-width: 720px) {
  .blog-post__header {
    padding: 40px 0 24px;
  }

  .blog-post__hero {
    padding-bottom: 28px;
  }

  .blog-post__hero picture {
    border-radius: 8px;
  }

  .blog-post__body {
    font-size: 16px;
  }

  .blog-post__body .doc-sequence > li,
  .doc-article__body .doc-sequence > li {
    grid-template-columns: 1.75rem minmax(0, 1fr);
    row-gap: 4px;
    column-gap: 12px;
  }

  .doc-article__body .doc-sequence > li > strong:first-child,
  .blog-post__body .doc-sequence > li > strong:first-child {
    grid-column: 2;
    margin-top: 0.25rem;
    white-space: normal;
  }

  .doc-article__body .doc-sequence > li > span,
  .blog-post__body .doc-sequence > li > span {
    grid-column: 2;
    margin-top: 0;
  }

  .doc-article__body .doc-sequence > li::before,
  .blog-post__body .doc-sequence > li::before {
    grid-row: 1 / span 2;
  }

  .blog-post__related ul {
    grid-template-columns: 1fr;
  }

  .blog-post__cta-actions {
    flex-direction: column;
  }

  .blog-post__cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- System status page ---------- */

.status-page {
  --status-measure: 44rem;
  background: var(--white);
}

.status-page main .container {
  width: min(100% - (var(--gutter) * 2), var(--status-measure));
}

.status-intro {
  padding: 72px 0 8px;
}

.status-intro h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--grey-900);
}

.status-intro p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.status-page .section {
  padding: 40px 0;
}

.status-overview {
  padding-top: 32px;
  padding-bottom: 8px;
}

.status-page .section__title {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.25;
}

.status-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--g-green-50);
}

.status-banner--ok {
  border-color: transparent;
}

.status-banner__dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--g-green);
  box-shadow: 0 0 0 3px rgba(24, 128, 56, 0.18);
  flex-shrink: 0;
}

.status-banner__title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--g-green);
}

.status-banner__meta {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.status-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
}

.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.status-list__name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.1px;
  color: var(--grey-900);
}

.status-list__state {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.status-list__state--ok {
  color: var(--g-green);
}

.status-incident-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-incident-list li {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
}

.status-incident-list li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.status-incident__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.status-incident__head time {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
}

.status-incident__badge {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--g-green);
  background: var(--g-green-50);
  padding: 3px 8px;
  border-radius: 4px;
}

.status-incident-list h3 {
  margin: 10px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.35;
  color: var(--grey-900);
}

.status-incident-list p {
  margin: 10px 0 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.status-page .docs-cta {
  padding: 72px 0;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 720px) {
  .status-intro {
    padding: 48px 0 4px;
  }

  .status-page .section {
    padding: 32px 0;
  }

  .status-overview {
    padding-top: 24px;
  }

  .status-banner {
    padding: 16px 18px;
  }

  .status-list li {
    padding: 16px 0;
  }

  .status-incident-list li {
    padding: 22px 0;
  }

  .status-page .docs-cta {
    padding: 56px 0;
  }
}

/* ??? Support / Help center ??? */

.support-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-topic {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  transition: box-shadow var(--dur-short) var(--ease-standard), border-color var(--dur-short) var(--ease-standard), transform var(--dur-short) var(--ease-standard);
}

.support-topic:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-2);
  transform: translateY(-2px);
}

.support-topic:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.support-topic strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.support-topic > span:last-child {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.support-faq {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--white);
}

.support-faq__item + .support-faq__item {
  border-top: 1px solid var(--border-subtle);
}

.support-faq__item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.support-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.1px;
  text-align: left;
  color: var(--grey-900);
  cursor: pointer;
  transition: background var(--dur-short) var(--ease-standard);
}

.support-faq__trigger:hover {
  background: var(--grey-50);
}

.support-faq__trigger:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

.support-faq__chev {
  flex-shrink: 0;
  color: var(--grey-600);
  transition: transform var(--dur-short) var(--ease-standard), color var(--dur-short) var(--ease-standard);
}

.support-faq__item.is-open .support-faq__chev {
  transform: rotate(180deg);
  color: var(--g-blue);
}

.support-faq__item.is-open .support-faq__trigger {
  padding-bottom: 12px;
}

.support-faq__panel {
  padding: 4px 24px 24px;
}

.support-faq__panel p {
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.support-faq__panel p + p {
  margin-top: 12px;
}

.support-faq__panel a {
  color: var(--g-blue);
  font-weight: 500;
}

.support-faq__panel a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-channels a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  transition: box-shadow var(--dur-short) var(--ease-standard), border-color var(--dur-short) var(--ease-standard), transform var(--dur-short) var(--ease-standard);
}

.support-channels a:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-2);
  transform: translateY(-2px);
}

.support-channels a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.support-channels strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.support-channels a > span:last-child {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.support-page .docs-cta {
  padding: 72px 0;
}

.services-hub-page .services-hub-paths {
  margin-top: 8px;
}

.services-hub-page .services-hub-paths .help-hub-topic {
  background: var(--white);
}
.help-hub-page .help-hub-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 55% 65% at 0% 0%, rgba(26, 115, 232, 0.06), transparent 55%),
    var(--white);
}

.help-hub-page .help-hub-hero .container,
.help-hub-page .help-hub-section .container {
  width: min(100% - (var(--gutter) * 2), 64rem);
}

.help-hub-page .help-hub-hero .g-breadcrumb {
  margin-bottom: 24px;
}

.help-hub-page .help-hub-hero .glyph {
  margin-bottom: 16px;
}

.help-hub-page .help-hub-hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--grey-900);
}

.help-hub-hero__sub {
  margin: 14px 0 0;
  max-width: 42rem;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.help-hub-section {
  padding: 48px 0 64px;
}

.help-hub-section--soft {
  background: var(--surface-muted);
  border-top: 1px solid var(--border-subtle);
}

.help-hub-page .help-hub-section .section__head--stack {
  margin-bottom: 24px;
}

.help-hub-page .help-hub-section .section__sub {
  margin-top: 8px;
  max-width: 40rem;
}

.help-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem);
  gap: 40px 48px;
  align-items: start;
}

.help-hub__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.help-hub__item {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.help-hub__item:hover {
  border-color: var(--g-blue-100);
  background: rgba(26, 115, 232, 0.03);
}

.help-hub__item:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.help-hub__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--grey-600);
}

.help-hub__meta svg {
  display: block;
  flex: 0 0 auto;
  color: var(--grey-500);
}

.help-hub__item strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.help-hub__item > span:last-child {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.help-hub-aside {
  display: grid;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.help-hub-aside__block {
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--white);
}

.help-hub-aside__title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.help-hub-aside__copy {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.help-hub-aside .btn {
  width: 100%;
}

.help-hub-docs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.help-hub-docs a {
  display: grid;
  gap: 5px;
  text-decoration: none;
  color: inherit;
}

.help-hub-docs a:hover strong {
  color: var(--g-blue);
}

.help-hub-docs__type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--g-blue-700);
}

.help-hub-docs strong {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--grey-900);
}

.help-hub-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.help-hub-topic {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.help-hub-topic:hover {
  border-color: var(--g-blue-100);
  background: rgba(26, 115, 232, 0.03);
}

.help-hub-topic:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.help-hub-topic .glyph {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.help-hub-topic > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.help-hub-topic strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
}

.help-hub-topic > span:last-child > span {
  font-size: 13px;
  color: var(--text-secondary);
}

.help-hub__more {
  margin: 28px 0 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.help-hub__more a {
  color: var(--g-blue);
  font-weight: 500;
}

@media (max-width: 900px) {
  .help-hub-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .help-hub-aside {
    position: static;
  }

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

@media (max-width: 560px) {
  .help-hub-topics {
    grid-template-columns: 1fr;
  }
}

.support-popular {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}

.support-popular li {
  border-bottom: 1px solid var(--border-subtle);
}

.support-popular a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px 16px;
  align-items: center;
  padding: 18px 4px;
  text-decoration: none;
  color: inherit;
}

.support-popular a:hover strong {
  color: var(--g-blue);
}

.support-popular a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.support-popular__tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--g-blue-700);
  min-width: 5.5rem;
}

.support-popular strong {
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.support-popular__arrow {
  color: var(--grey-500);
}

@media (max-width: 960px) {
  .support-topics,
  .support-channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .support-page .section {
    padding: 48px 0;
  }

  .support-topics,
  .support-channels {
    grid-template-columns: 1fr;
  }

  .support-faq__trigger {
    padding: 18px 18px;
    font-size: 15px;
  }

  .support-faq__item.is-open .support-faq__trigger {
    padding-bottom: 10px;
  }

  .support-faq__panel {
    padding: 4px 18px 22px;
  }

  .support-page .docs-cta {
    padding: 56px 0;
  }
}

/* ??? Industry solutions (Google Cloud?style) ??? */

.industry-page {
  --industry-measure: 68rem;
  background: var(--white);
}

.industry-page main > .container,
.industry-page .indy-band .container {
  width: min(100% - (var(--gutter) * 2), var(--industry-measure));
}

.industry-page .section {
  padding: 56px 0;
}

.industry-page .section__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
}

.industry-page #start .section__head--stack {
  align-items: center;
  text-align: center;
}

.industry-page #start .section__sub {
  max-width: 42ch;
  margin-inline: auto;
}

.industry-page #start .service-form__panel {
  max-width: 720px;
}

.industry-page #start .service-form .engage-form .field-row {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .industry-page #start .section__head--stack {
    align-items: flex-start;
    text-align: left;
  }

  .industry-page #start .section__sub {
    margin-inline: 0;
  }

  .industry-page #start .service-form .engage-form .field-row {
    grid-template-columns: 1fr;
  }
}

.industry-page .section__title {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.25;
}

.industry-page .section__sub {
  margin-top: 10px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Intro ? typography first */
.indy-intro {
  padding: 56px 0 8px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(26, 115, 232, 0.07), transparent 55%),
    var(--white);
}

.indy-intro--detail {
  padding-bottom: 48px;
}

.indy-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--text-secondary);
}

.indy-crumb a {
  color: var(--g-blue-700);
  font-weight: 500;
}

.indy-crumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.indy-crumb__sep {
  color: var(--grey-500);
}

.indy-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 56px;
  align-items: start;
}

.indy-intro__eyebrow {
  margin-bottom: 16px;
}

.indy-intro__copy h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.12;
  color: var(--grey-900);
}

.indy-intro__copy h1 em {
  font-style: normal;
  color: var(--g-blue);
}

.indy-intro__lede {
  margin: 18px 0 0;
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.indy-intro__lede strong {
  color: var(--grey-900);
  font-weight: 500;
}

.indy-intro__support {
  margin: 10px 0 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.indy-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.indy-intro__trust {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  margin-top: 24px;
}

.indy-intro__trust .start__faces {
  flex-shrink: 0;
}

.indy-intro__trust .start__faces img {
  width: 36px;
  height: 36px;
}

.indy-intro__trust p {
  margin: 0;
  max-width: 34ch;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.indy-intro__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  background: var(--grey-100);
  box-shadow: var(--elev-1);
}

.indy-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hub catalog */
.indy-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--border-subtle);
}

.indy-catalog a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 28px 24px;
  background: var(--white);
  transition: background var(--dur-short) var(--ease-standard);
}

.indy-catalog a:hover {
  background: var(--grey-50);
}

.indy-catalog a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
  z-index: 1;
}

.indy-catalog h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.indy-catalog p {
  margin: 0;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.indy-catalog__go {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--g-blue);
}

.indy-catalog a:hover .indy-catalog__go .link__arrow {
  transform: translateX(3px);
}

.indy-catalog a:hover .indy-catalog__go .link__arrow-shaft {
  opacity: 1;
  transform: translateX(0);
}

/* Why / pillars */
.indy-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.indy-pillars strong {
  display: block;
  margin-top: 14px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--grey-900);
}

.indy-pillars p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.indy-band--muted {
  background: var(--surface-muted);
}

/* Detail: challenges as numbered Google list */
.indy-challenges {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: indy-step;
}

.indy-challenges li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--border-subtle);
  counter-increment: indy-step;
}

.indy-challenges li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.indy-challenges li::before {
  content: counter(indy-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 14px;
  font-weight: 500;
}

.indy-challenges strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--grey-900);
}

.indy-challenges p {
  margin: 6px 0 0;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Capability modules ? Google product modules */
.indy-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
}

.indy-modules li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.indy-modules li:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--border-subtle);
}

.indy-modules li:nth-child(even) {
  padding-left: 28px;
}

.indy-modules h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--grey-900);
}

.indy-modules p {
  margin: 6px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Proof ? featured customer story */
.indy-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
}

.indy-story__media {
  position: relative;
  min-height: 280px;
  background: var(--grey-100);
}

.indy-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.indy-story__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}

.indy-story__stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 0 0 20px;
}

.indy-story__stat strong {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--g-blue);
}

.indy-story__stat span {
  font-size: 15px;
  color: var(--text-secondary);
}

.indy-story__quote {
  margin: 0;
}

.indy-story__quote p {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.45;
  color: var(--grey-900);
}

.indy-story__quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.indy-story__quote img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.indy-story__quote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.indy-story__quote span {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

.indy-story__body > .link {
  margin-top: 24px;
}

/* Related industries ? link list */
.indy-related {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--white);
}

.indy-related li + li {
  border-top: 1px solid var(--border-subtle);
}

.indy-related a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  transition: background var(--dur-short) var(--ease-standard);
}

.indy-related a:hover {
  background: var(--grey-50);
}

.indy-related a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

.indy-related .glyph {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.indy-related .glyph svg {
  width: 18px;
  height: 18px;
}

.indy-related__copy {
  flex: 1;
  min-width: 0;
}

.indy-related__copy strong {
  display: block;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--grey-900);
}

.indy-related__copy span {
  display: block;
  margin-top: 2px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.indy-related__arrow {
  flex-shrink: 0;
  color: var(--grey-600);
  transition: transform var(--dur-short) var(--ease-standard), color var(--dur-short) var(--ease-standard);
}

.indy-related a:hover .indy-related__arrow {
  color: var(--g-blue);
  transform: translateX(3px);
}

.industry-page .docs-cta {
  padding: 72px 0;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 960px) {
  .indy-intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .indy-intro__media {
    order: -1;
    max-width: 36rem;
  }

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

  .indy-modules {
    grid-template-columns: 1fr;
  }

  .indy-modules li:nth-child(odd),
  .indy-modules li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .indy-story {
    grid-template-columns: 1fr;
  }

  .indy-story__media {
    min-height: 200px;
    aspect-ratio: 16 / 9;
  }

  .indy-story__body {
    padding: 28px 24px;
  }
}

@media (max-width: 720px) {
  .indy-intro {
    padding: 40px 0 0;
  }

  .indy-intro--detail {
    padding-bottom: 32px;
  }

  .indy-intro__copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .indy-intro__actions {
    flex-direction: column;
  }

  .indy-intro__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .indy-intro__trust {
    column-gap: 16px;
    margin-top: 20px;
  }

  .indy-intro__trust .start__faces img {
    width: 32px;
    height: 32px;
  }

  .indy-intro__trust .start__faces img + img {
    margin-left: -8px;
  }

  .indy-intro__trust p {
    max-width: none;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .industry-page .section {
    padding: 48px 0;
  }

  .indy-catalog,
  .indy-pillars {
    grid-template-columns: 1fr;
  }

  .industry-page .docs-cta {
    padding: 56px 0;
  }
}

/* ——— Industry solutions (Build Me Web brand heroes) ——— */

.industry-hero {
  position: relative;
  background: var(--white);
}

.industry-hero__stage {
  position: relative;
  min-height: clamp(420px, 58vw, 600px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.industry-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #122033;
}

.industry-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.industry-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(32, 33, 36, 0.12) 0%, rgba(32, 33, 36, 0.22) 40%, rgba(32, 33, 36, 0.62) 100%),
    linear-gradient(105deg, rgba(32, 33, 36, 0.32) 0%, transparent 52%);
}

.industry-hero__foreground {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--gutter) * 2), 60rem);
  margin-inline: auto;
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.industry-hero__titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-hero__brand {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.industry-hero__brand em {
  font-style: normal;
  color: inherit;
}

.industry-hero__product {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.industry-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -10px 28px rgba(60, 64, 67, 0.1);
}

.industry-hero__copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.25;
  color: var(--grey-900);
}

.industry-hero__copy p {
  margin: 10px 0 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.industry-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-outcomes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
}

.industry-outcomes li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.industry-outcomes strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--grey-900);
}

.industry-outcomes p {
  margin: 6px 0 0;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.industry-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.industry-cap {
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
}

.industry-cap h3 {
  margin: 14px 0 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--grey-900);
}

.industry-cap p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.industry-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
}

.industry-proof__media {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.3px;
  background:
    linear-gradient(160deg, rgba(26, 115, 232, 0.22), transparent 55%),
    linear-gradient(25deg, #0f1724 0%, #1a73e8 120%);
}

.industry-proof__body {
  padding: 28px 32px;
}

.industry-proof__body h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.3;
  color: var(--grey-900);
}

.industry-proof__body > p {
  margin: 10px 0 0;
  max-width: 46ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.industry-proof__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  font-size: 15px;
  color: var(--text-secondary);
}

.industry-proof__stat em {
  font-style: normal;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--grey-900);
}

.industry-proof__body .link {
  display: inline-flex;
  margin-top: 20px;
}

.industry-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-related a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  transition: border-color var(--dur-short) var(--ease-standard), box-shadow var(--dur-short) var(--ease-standard);
}

.industry-related a:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

.industry-related a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.industry-related strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
}

.industry-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-hub-grid a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  transition: box-shadow var(--dur-short) var(--ease-standard), border-color var(--dur-short) var(--ease-standard), transform var(--dur-short) var(--ease-standard);
}

.industry-hub-grid a:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-2);
  transform: translateY(-2px);
}

.industry-hub-grid a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.industry-hub-grid h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--grey-900);
}

.industry-hub-grid p {
  margin: 0;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.industry-hub-grid__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--g-blue);
}

.industry-hub-grid a:hover .industry-hub-grid__cta .link__arrow {
  transform: translateX(3px);
}

.industry-hub-grid a:hover .industry-hub-grid__cta .link__arrow-shaft {
  stroke-dashoffset: 0;
  opacity: 1;
}

.industry-section--soft {
  background: var(--surface-muted);
}

.industry-page:not(.services-hub-page) .section__title {
  font-size: clamp(1.65rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.35px;
}

@media (max-width: 960px) {
  .industry-capabilities,
  .industry-related,
  .industry-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-proof {
    grid-template-columns: 1fr;
  }

  .industry-proof__media {
    min-height: 160px;
  }
}

@media (max-width: 720px) {
  .industry-hero__stage {
    min-height: 0;
  }

  .industry-hero__foreground {
    width: 100%;
    padding: 48px var(--gutter) 0;
  }

  .industry-hero__brand {
    font-size: clamp(2.25rem, 10vw, 2.75rem);
  }

  .industry-hero__panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .industry-hero__cta {
    flex-direction: column;
  }

  .industry-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .industry-capabilities,
  .industry-related,
  .industry-hub-grid {
    grid-template-columns: 1fr;
  }

  .industry-proof__body {
    padding: 22px 20px;
  }
}

/* Solutions hub */

.solutions-page {
  background: var(--white);
}

.sol-band {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.sol-band--soft {
  background: var(--grey-50);
  border-bottom-color: transparent;
}

.sol-band__head {
  margin-bottom: 8px;
}

.sol-band__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--grey-900);
}

.sol-band__head p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.sol-rail__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--border-subtle);
}

.sol-rail__list--wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  max-width: none;
}

.sol-band--soft .sol-rail__list {
  border-top-color: var(--grey-200);
}

.sol-rail__list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 6px;
  margin: 0 -6px;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: background var(--dur-short) var(--ease-standard);
}

.sol-band--soft .sol-rail__list a {
  border-bottom-color: var(--grey-200);
}

.sol-rail__list a:hover,
.sol-rail__list a:focus-visible {
  background: var(--white);
}

.sol-band:not(.sol-band--soft) .sol-rail__list a:hover,
.sol-band:not(.sol-band--soft) .sol-rail__list a:focus-visible {
  background: var(--grey-50);
}

.sol-rail__list .glyph {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.sol-rail__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.sol-rail__copy strong {
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.sol-rail__copy span {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.sol-rail__arrow {
  flex-shrink: 0;
  color: var(--g-blue);
  opacity: 0.45;
  transition:
    opacity var(--dur-short) var(--ease-standard),
    transform var(--dur-med) var(--ease-emphasized);
}

.sol-rail__list a:hover .sol-rail__arrow,
.sol-rail__list a:focus-visible .sol-rail__arrow {
  opacity: 1;
  transform: translateX(3px);
}

.sol-industry {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px 64px;
  align-items: start;
}

.sol-industry__copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--grey-900);
}

.sol-industry__copy p {
  margin: 12px 0 24px;
  max-width: 38ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.sol-industry__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}

.sol-industry__links a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
  transition: color var(--dur-short) var(--ease-standard);
}

.sol-industry__links a:hover,
.sol-industry__links a:focus-visible {
  color: var(--g-blue);
}

@media (max-width: 960px) {
  .sol-industry {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sol-rail__list--wide {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

@media (max-width: 720px) {
  .sol-band {
    padding: 56px 0;
  }

  .sol-industry__links {
    grid-template-columns: 1fr;
  }
}


/* ---------- Legal pages (Privacy) ---------- */

.legal-page {
  --legal-measure: 72rem;
  --legal-prose: 42rem;
  background: var(--white);
}

.legal-page main > .container,
.legal-page .legal-layout {
  width: min(100% - (var(--gutter) * 2), var(--legal-measure));
  margin-inline: auto;
}

.legal-intro {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 60% 70% at 0% 0%, rgba(26, 115, 232, 0.06), transparent 55%),
    var(--white);
}

.legal-intro .eyebrow {
  margin-bottom: 12px;
}

.legal-intro h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--grey-900);
}

.legal-intro__meta {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--grey-600);
}

.legal-intro__lede {
  margin: 16px 0 0;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.legal-layout {
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  gap: 48px 64px;
  align-items: start;
  padding: 56px 0 112px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding-top: 4px;
}

.legal-toc__label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--grey-600);
}

.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--grey-700);
  transition: color var(--dur-short) var(--ease-standard);
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--g-blue);
}

.legal-body {
  max-width: var(--legal-prose);
}

.legal-body section + section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.legal-body h2 {
  margin: 0 0 20px;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: var(--grey-900);
}

.legal-body h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--grey-900);
}

.legal-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-body p + p {
  margin-top: 16px;
}

.legal-body ul.legal-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-body ul.legal-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.legal-body ul.legal-list .glyph {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.legal-body ul.legal-list li > span:last-child {
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.legal-body ul.legal-list + p {
  margin-top: 8px;
}

.legal-body a {
  color: var(--g-blue-700);
  font-weight: 500;
}

.legal-body a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body strong {
  color: var(--grey-900);
  font-weight: 500;
}

@media (max-width: 960px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 72px;
  }

  .legal-toc {
    position: static;
    padding: 0 0 20px;
    margin: 0 0 4px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .legal-toc__label {
    margin-bottom: 10px;
  }

  .legal-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 28px;
  }

  .legal-toc li {
    min-width: 0;
  }

  .legal-toc a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  .legal-toc ol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .legal-intro {
    padding: 56px 0 32px;
  }
}

/* ---------- Sitemap ---------- */

.sitemap-page .sitemap-layout {
  width: min(100% - (var(--gutter) * 2), var(--legal-measure));
  margin-inline: auto;
  padding: 56px 0 112px;
}

.sitemap-dir {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 40px;
}

.sitemap-group h2 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--grey-600);
}

.sitemap-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sitemap-group a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--grey-800);
  transition: color var(--dur-short) var(--ease-standard);
}

.sitemap-group a:hover,
.sitemap-group a:focus-visible {
  color: var(--g-blue);
}

.sitemap-group a[aria-current="page"] {
  color: var(--g-blue);
  font-weight: 500;
}

@media (max-width: 960px) {
  .sitemap-dir {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }

  .sitemap-page .sitemap-layout {
    padding: 40px 0 72px;
  }
}

@media (max-width: 560px) {
  .sitemap-dir {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* ---------- Pricing page ---------- */

.pricing-page {
  /* Locked scale (matches About / site standards) */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  background: var(--white);
}

.pricing-hero {
  padding: 88px 0 var(--space-lg);
  background:
    radial-gradient(120% 120% at 100% 0%, var(--g-blue-50) 0%, transparent 46%),
    var(--white);
}

.pricing-hero .eyebrow {
  margin-bottom: var(--space-md);
}

.pricing-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.12;
  color: var(--grey-900);
}

.pricing-hero__lede {
  margin: 20px 0 0;
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.pricing-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.pricing-hero__note {
  margin: var(--space-md) 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--grey-600);
}

.pricing-page .section {
  padding: var(--space-3xl) 0;
}

.pricing-page .section__head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.pricing-page .section__head--stack .eyebrow {
  margin-bottom: var(--space-md);
}

.pricing-page .section__title {
  margin-bottom: 0;
}

.pricing-page .section__sub {
  margin-top: var(--space-sm);
  max-width: none;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: stretch;
  margin-top: var(--space-sm);
  margin-inline: auto;
  overflow: visible;
  max-width: none;
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
  transition:
    border-color var(--dur-med) var(--ease-standard),
    box-shadow var(--dur-med) var(--ease-standard);
}

.pricing-plan:hover {
  border-color: var(--g-blue-100);
  box-shadow: var(--elev-1);
}

.pricing-plan--featured {
  position: relative;
  border-color: var(--g-blue);
  box-shadow: 0 0 0 1px var(--g-blue);
}

.pricing-plan__recommend {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  margin: 0;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--g-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.4;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.pricing-plan h3 {
  margin: var(--space-md) 0 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--grey-900);
}

.pricing-plan__desc {
  margin: var(--space-sm) 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  min-height: calc(1.5em * 3);
}

.pricing-plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-xs);
  margin: var(--space-lg) 0 0;
}

.pricing-plan__from {
  font-size: 14px;
  color: var(--grey-600);
}

.pricing-plan__amount {
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 1;
  color: var(--grey-900);
}

.pricing-plan__period {
  margin: var(--space-xs) 0 var(--space-lg);
  font-size: 13px;
  color: var(--grey-600);
}

.pricing-plan .btn {
  width: 100%;
  justify-content: center;
}

.pricing-plan__features {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: var(--space-lg) 0 0;
  border-top: 1px solid var(--border-subtle);
}

.pricing-plan__features li {
  position: relative;
  padding: 0 0 var(--space-sm) 28px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--grey-800);
}

.pricing-plan__features li:last-child {
  padding-bottom: 0;
}

.pricing-plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23188038'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.pricing-plans__assurance {
  margin: var(--space-xl) 0 0;
  max-width: 52rem;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.pricing-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin: 0;
  padding: 0;
}

.pricing-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
}

.pricing-steps__num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  font-size: 14px;
  font-weight: 500;
}

.pricing-steps strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.pricing-steps p {
  margin: var(--space-xs) 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  background: var(--white);
}

.pricing-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-md) 20px;
  text-align: left;
  border-top: 1px solid var(--border-subtle);
  vertical-align: top;
}

.pricing-table thead th {
  border-top: 0;
  background: var(--grey-50);
  font-weight: 500;
  color: var(--grey-700);
}

.pricing-table tbody th {
  font-weight: 500;
  color: var(--grey-900);
  white-space: nowrap;
}

.pricing-table td {
  color: var(--grey-800);
}

.pricing-estimate {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-xl) var(--space-2xl);
  align-items: start;
}

.pricing-estimate__copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.25px;
}

.pricing-estimate__copy p {
  margin: var(--space-sm) 0 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.pricing-estimate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.pricing-estimate__trust {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.pricing-estimate__trust p {
  margin: 0;
  max-width: 28ch;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.pricing-estimate__notes {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.pricing-estimate__notes li {
  display: grid;
  gap: var(--space-xs);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-estimate__notes strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
}

.pricing-estimate__notes span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.pricing-page .docs-cta {
  background: var(--grey-50);
}

@media (max-width: 1024px) {
  .pricing-plans {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .pricing-plan--featured {
    margin-top: 14px;
  }

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

  .pricing-estimate {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 720px) {
  .pricing-hero {
    padding: 56px 0 var(--space-sm);
  }

  .pricing-hero h1 {
    max-width: none;
  }

  .pricing-page .section {
    padding: var(--space-2xl) 0;
  }

  .pricing-table th,
  .pricing-table td {
    padding: var(--space-sm) var(--space-md);
  }
}

/* ---------- Google-style client portal ---------- */

.dashboard-body,
html.dashboard-body {
  --gp-top-h: 64px;
  --gp-rail-h: 0px;
  min-height: 100vh;
  background: var(--grey-50);
  color: var(--grey-900);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html.dashboard-body {
  overflow-y: auto;
  /* Match public site layout width (classic scrollbar ~15px) while keeping the bar hidden */
  box-sizing: border-box;
  padding-right: var(--portal-scrollbar-gap, 15px);
  scrollbar-gutter: auto;
}

html.dashboard-body::-webkit-scrollbar,
html.dashboard-body::-webkit-scrollbar-button,
html.dashboard-body::-webkit-scrollbar-thumb,
html.dashboard-body::-webkit-scrollbar-track,
.dashboard-body::-webkit-scrollbar,
.dashboard-body::-webkit-scrollbar-button,
.dashboard-body::-webkit-scrollbar-thumb,
.dashboard-body::-webkit-scrollbar-track,
.dashboard-body *::-webkit-scrollbar,
.dashboard-body *::-webkit-scrollbar-button,
.dashboard-body *::-webkit-scrollbar-thumb,
.dashboard-body *::-webkit-scrollbar-track {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}

.dashboard-body,
.dashboard-body * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.gp-top {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.gp-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.gp-brand {
  min-width: 0;
}

.gp-brand__divider {
  width: 1px;
  height: 22px;
  margin: 0 2px 0 4px;
  background: var(--grey-300);
  flex-shrink: 0;
}

.gp-brand__product {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: var(--grey-700);
  white-space: nowrap;
}

.gp-top__end {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gp-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--grey-700);
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.gp-icon-btn:hover {
  background: rgba(60, 64, 67, 0.08);
  color: var(--grey-900);
}

.gp-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border: 0;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  font-family: "Google Sans Text", Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  padding-top: 1.5px;
}

.gp-avatar--lg {
  width: 72px;
  height: 72px;
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  padding-top: 3px;
}

.gp-avatar--link {
  text-decoration: none;
  margin-left: 8px;
}

.gp-avatar--link:hover {
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.22);
}

.gp-avatar--link:focus-visible {
  outline: 2px solid var(--g-blue);
  outline-offset: 2px;
}

.gp-top .gacc {
  margin-left: 4px;
}

.gp-shell {
  display: grid;
  grid-template-columns: 256px minmax(0, 1fr);
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: calc(100vh - var(--gp-top-h, 64px));
}

.gp-rail {
  position: sticky;
  top: var(--gp-top-h, 64px);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: calc(100vh - var(--gp-top-h, 64px));
  padding: 12px 12px 24px;
  overflow: visible;
}

.gp-rail__item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 16px 0 20px;
  border-radius: 0 24px 24px 0;
  margin-right: 12px;
  color: var(--grey-800);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.gp-rail__item:hover {
  background: rgba(60, 64, 67, 0.06);
}

.gp-rail__item.is-active {
  background: var(--g-blue-50);
  color: var(--g-blue-700);
}

.gp-rail__item--cta {
  margin-top: 12px;
  color: var(--g-blue-700);
}

.gp-rail__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: inherit;
}

.gp-main {
  min-width: 0;
  min-height: 0;
  background: var(--white);
  border-left: 1px solid var(--grey-200);
}

.gp-page {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 24px 28px 72px 24px;
}

.gp-page__header {
  margin-bottom: 28px;
}

.gp-page__header--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-page h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--grey-900);
}

.gp-page__lede {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-700);
}

.gp-page__lede strong {
  font-weight: 500;
  color: var(--grey-800);
}

.gp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.gp-stat {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
}

a.gp-stat--link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

a.gp-stat--link:hover {
  border-color: var(--grey-400);
  background: var(--grey-50);
}

.gp-stat__value {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--grey-900);
  line-height: 1.2;
}

.gp-stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-700);
}

.gp-card {
  margin-bottom: 24px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
}

.gp-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--grey-200);
}

.gp-card__head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--grey-900);
}

.gp-card__intro {
  margin: 0;
  padding: 14px 20px 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-700);
}

.gp-text-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--g-blue);
  text-decoration: none;
}

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

.gp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--grey-100);
  transition: background-color 0.12s ease;
}

.gp-list li:last-child .gp-row {
  border-bottom: 0;
}

.gp-row:hover {
  background: var(--grey-50);
}

.gp-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
  flex-shrink: 0;
}

.gp-row__body {
  min-width: 0;
  flex: 1;
}

.gp-row__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-row__meta {
  margin-top: 2px;
  font-size: 12px;
  color: var(--grey-700);
}

.gp-chip {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  background: var(--grey-100);
  color: var(--grey-800);
}

.gp-chip--received {
  background: var(--g-blue-50);
  color: var(--g-blue-700);
}

.gp-chip--in_review {
  background: #fef7e0;
  color: #b06000;
}

.gp-chip--quoted {
  background: #e6f4ea;
  color: #137333;
}

.gp-chip--closed {
  background: var(--grey-100);
  color: var(--grey-700);
}

.gp-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.gp-tile {
  display: grid;
  gap: 8px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--grey-200);
  transition: background-color 0.12s ease;
}

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

.gp-tile:hover {
  background: var(--grey-50);
}

.gp-tile__icon {
  display: inline-flex;
  color: var(--g-blue);
}

.gp-tile strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-tile span:last-child {
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey-700);
}

.gp-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
}

.gp-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--g-blue-50);
  color: var(--g-blue);
}

.gp-empty p {
  margin: 0;
  font-size: 14px;
  color: var(--grey-700);
}

.gp-projects {
  display: grid;
  gap: 0;
}

.gp-sheet {
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
  overflow: visible;
}

.gp-sheet__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--grey-200);
}

.gp-sheet__head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-sheet__count {
  font-size: 12px;
  color: var(--grey-700);
}

.gp-list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 14px;
  border-bottom: 1px solid var(--grey-200);
}

.gp-list-toolbar--card {
  border-bottom: 1px solid var(--grey-200);
}

.gp-list-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 220px;
  min-width: 0;
  padding: 0 12px;
  height: 40px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--grey-700);
}

.gp-list-search:focus-within {
  border-color: var(--grey-700);
}

.gp-list-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--grey-900);
}

.gp-list-search input::-webkit-search-decoration,
.gp-list-search input::-webkit-search-cancel-button,
.gp-list-search input::-webkit-search-results-button,
.gp-list-search input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.gp-list-filter select {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
  font-size: 14px;
  color: var(--grey-900);
}

.gp-list-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-800);
  white-space: nowrap;
}

.gp-list-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--grey-900);
}

.gp-empty--soft {
  padding: 48px 24px;
  text-align: center;
}

.gp-empty--soft p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-empty__hint {
  margin-top: 6px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--grey-700) !important;
}

.gp-empty--soft .btn {
  margin-top: 20px;
}

.gp-project__meta {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--grey-700);
}

.gp-project__contact {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--grey-700);
}

.gp-profile-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--grey-200);
  background: var(--g-blue-50);
  border-radius: 8px 8px 0 0;
}

.gp-profile-banner__meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.gp-profile-banner h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--grey-900);
}

.gp-profile-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--grey-700);
  overflow-wrap: anywhere;
}

.gp-form {
  max-width: 28rem;
  padding: 20px;
}

.gp-form .auth-form__actions {
  margin-top: 4px;
}

.dash-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  margin: 0;
  max-width: min(360px, calc(100vw - 40px));
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--grey-900);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px rgba(60, 64, 67, 0.15);
}

.dash-toast.is-error {
  background: #c5221f;
}

.btn--sm {
  padding: 8px 14px;
  font-size: 13px;
  min-height: 36px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gp-page--chat {
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: calc(100vh - var(--gp-top-h, 64px) - var(--gp-rail-h, 0px));
  max-height: calc(100vh - var(--gp-top-h, 64px) - var(--gp-rail-h, 0px));
  padding: 16px 28px 16px 24px;
  overflow: hidden;
}

.gp-page--chat .gp-page__header {
  flex-shrink: 0;
  margin-bottom: 16px;
}

.gp-page__back {
  margin: 0 0 8px;
  font-size: 14px;
}

.gp-page__back a {
  color: var(--g-blue);
  text-decoration: none;
  font-weight: 500;
}

.gp-page__back a:hover {
  text-decoration: underline;
}

.gp-inbox-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  flex-shrink: 0;
}

.gp-chat {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
  overflow: clip;
}

.gp-chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--grey-200);
  background: var(--grey-50);
}

.gp-chat__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  font-family: "Google Sans Text", Roboto, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.gp-chat__head-meta {
  min-width: 0;
  flex: 1 1 auto;
}

.gp-chat__head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-chat__head p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--grey-700);
}

.gp-chat__search-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--grey-700);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.gp-chat__search-btn:hover,
.gp-chat__search-btn--active {
  background: rgba(60, 64, 67, 0.08);
  color: var(--grey-900);
}

.gp-chat__search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 16px 12px;
  border-bottom: 1px solid var(--grey-200);
  background: var(--white);
}

.gp-chat__search-glyph {
  flex-shrink: 0;
  color: var(--grey-600);
}

.gp-chat__search-input {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 8px 0;
  border: 0;
  outline: none;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: var(--grey-900);
  background: transparent;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.gp-chat__search-input::-webkit-search-decoration,
.gp-chat__search-input::-webkit-search-cancel-button,
.gp-chat__search-input::-webkit-search-results-button,
.gp-chat__search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.gp-chat__search-input:focus {
  outline: none;
  box-shadow: none;
}

.gp-chat__search-clear {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--grey-700);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.gp-chat__search-clear:hover {
  background: rgba(60, 64, 67, 0.08);
}

.gp-chat__messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.gp-chat__messages::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

.gp-chat__hint {
  margin: auto;
  font-size: 14px;
  color: var(--grey-700);
  text-align: center;
}

.gp-chat__error {
  margin: 0;
  padding: 8px 16px;
  font-size: 13px;
  color: #c5221f;
  background: #fce8e6;
  border-top: 1px solid #f5c2c0;
}

.gp-bubble {
  max-width: min(72%, 640px);
  align-self: flex-start;
  padding: 10px 12px;
  border-radius: 16px 16px 16px 4px;
  background: var(--grey-100);
  color: var(--grey-900);
}

.gp-bubble--mine {
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
  background: var(--g-blue);
  color: #fff;
}

.gp-bubble__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.gp-bubble__files {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gp-bubble__image-link {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gp-bubble__image {
  display: block;
  max-width: min(100%, 280px);
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: cover;
}

.gp-bubble__file {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
}

.gp-bubble--mine .gp-bubble__file {
  background: rgba(255, 255, 255, 0.16);
}

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

.gp-bubble__file-name {
  font-size: 13px;
  font-weight: 500;
  word-break: break-word;
}

.gp-bubble__file-size {
  font-size: 11px;
  opacity: 0.75;
}

.gp-bubble__time {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.72;
}

.gp-chat__composer {
  display: block;
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
}

.gp-chat__pending {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gp-chat__pending-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-card);
  background: var(--grey-50, #f8fafc);
}

.gp-chat__pending-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.gp-chat__pending-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--grey-700);
}

.gp-chat__pending-meta {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gp-chat__pending-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gp-chat__pending-size {
  font-size: 11px;
  color: var(--grey-600);
}

.gp-chat__pending-remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--grey-700);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.gp-chat__pending-remove:hover:not(:disabled) {
  background: var(--grey-100);
}

.gp-chat__field {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-card);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gp-chat__field:focus-within {
  border-color: var(--g-blue);
  box-shadow: 0 0 0 3px var(--g-blue-50);
}

.gp-chat__tools {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  padding-bottom: 2px;
}

.gp-chat__tool {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius-btn);
  background: transparent;
  line-height: 1;
  cursor: pointer;
  color: var(--grey-700);
}

.gp-chat__tool:hover:not(:disabled) {
  background: var(--grey-100);
  color: var(--g-blue-700, var(--g-blue));
}

.gp-chat__tool:disabled {
  opacity: 0.45;
  cursor: default;
}

.gp-chat__input {
  flex: 1 1 auto;
  width: 100%;
  min-height: 36px;
  max-height: calc(8 * 1.4em + 16px);
  margin: 0;
  padding: 8px 6px 8px 8px;
  border: 0;
  border-radius: 0;
  resize: none;
  overflow-y: auto;
  outline: none;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: var(--grey-900);
  background: transparent;
  box-shadow: none;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.gp-chat__input::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

.gp-chat__input:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

.gp-chat__send {
  flex-shrink: 0;
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--g-blue);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}

.gp-chat__send:hover:not(:disabled) {
  background: var(--g-blue-600);
}

.gp-chat__send:disabled {
  opacity: 0.45;
  cursor: default;
}

@media (max-width: 960px) {
  .gp-chat {
    min-height: 0;
  }

  .gp-page--chat {
    padding-top: 16px;
    padding-bottom: 12px;
    padding-inline: 16px;
  }
}

.gp-page--wide {
  max-width: none;
}

.gp-project-hero {
  margin-bottom: 8px;
}

.gp-project-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-project-hero__copy {
  min-width: 0;
  flex: 1 1 240px;
}

.gp-project-hero__copy h1 {
  margin: 0;
}

.gp-project-hero__lede {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--grey-700);
}

.gp-project-hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gp-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px 20px;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--grey-200);
}

.gp-facts dt {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.gp-facts dd {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--grey-900);
  overflow-wrap: anywhere;
}

.gp-project-stack {
  display: grid;
  gap: 0;
}

.gp-section {
  padding: 28px 0;
  border-top: 1px solid var(--grey-200);
}

.gp-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.gp-section__head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-section__empty {
  margin: 0;
  font-size: 14px;
  color: var(--grey-700);
}

.gp-section__error {
  margin: 0 0 8px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fce8e6;
  color: #c5221f;
  font-size: 14px;
}

.gp-brief {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-800);
  white-space: pre-wrap;
}

.gp-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  padding: 0 0 20px 0;
}

.gp-timeline__item:last-child {
  padding-bottom: 0;
}

.gp-timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 0;
  width: 2px;
  background: var(--grey-200);
}

.gp-timeline__dot {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--g-blue);
  box-shadow: 0 0 0 3px var(--g-blue-50);
}

.gp-timeline__item strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-timeline__meta {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--grey-700);
}

.gp-timeline__detail {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey-800);
  white-space: pre-wrap;
}

.gp-quote-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.gp-quote-row {
  padding: 0;
}

.gp-quote-row--action {
  padding: 16px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--grey-50);
}

.gp-quote-row__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.gp-quote-row__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.gp-quote-row__copy strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-quote-row__copy span {
  font-size: 14px;
  color: var(--grey-800);
}

.gp-quote-row__summary {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey-700);
  white-space: pre-wrap;
}

.gp-quote-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.gp-chip--quote-sent {
  background: var(--g-blue-50);
  color: var(--g-blue-700);
}

.gp-chip--quote-accepted {
  background: #e6f4ea;
  color: #137333;
}

.gp-chip--quote-declined,
.gp-chip--quote-withdrawn {
  background: #fce8e6;
  color: #c5221f;
}

.gp-chip--in_progress {
  background: #e8f0fe;
  color: var(--g-blue-700);
}

.gp-chip--delivered {
  background: #e6f4ea;
  color: #137333;
}

.gp-file-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-100);
  text-decoration: none;
  color: inherit;
}

.gp-file-list li:last-child .gp-file {
  border-bottom: 0;
}

.gp-file:hover {
  color: var(--g-blue-700);
}

.gp-file__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--g-blue-50);
  color: var(--g-blue-700);
}

.gp-file__body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.gp-file__body strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
  overflow-wrap: anywhere;
}

.gp-file:hover .gp-file__body strong {
  color: var(--g-blue-700);
}

.gp-file__body span {
  font-size: 12px;
  color: var(--grey-700);
}

.gp-panel-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--grey-50);
}

.gp-panel-form h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.gp-panel-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gp-inline-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-700);
}

.gp-inline-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--grey-300);
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  background: var(--white);
  color: var(--grey-900);
}

.gp-inline-input:focus {
  outline: 2px solid var(--g-blue-100);
  border-color: var(--g-blue);
}

.gp-upload-btn {
  cursor: pointer;
}

@media (max-width: 700px) {
  .gp-panel-form__grid {
    grid-template-columns: 1fr;
  }

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

/* Tablet: top chip rail */
@media (max-width: 960px) {
  .dashboard-body,
  html.dashboard-body {
    --gp-rail-h: 56px;
  }

  html.dashboard-body {
    padding-right: 0;
  }

  .gp-shell {
    grid-template-columns: 1fr;
    min-height: calc(100vh - var(--gp-top-h));
  }

  .gp-rail {
    position: sticky;
    top: var(--gp-top-h);
    z-index: 20;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    height: var(--gp-rail-h);
    padding: 8px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
  }

  .gp-rail::-webkit-scrollbar {
    display: none;
  }

  .gp-rail__item {
    border-radius: 20px;
    margin-right: 0;
    padding: 0 14px;
    min-height: 40px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .gp-rail__item--cta {
    margin-top: 0;
    margin-left: auto;
  }

  .gp-rail__label {
    font-size: 13px;
  }

  .gp-main {
    border-left: 0;
  }

  .gp-page {
    padding: 20px 16px 48px;
  }

  .gp-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .gp-stat {
    padding: 12px 14px;
  }

  .gp-stat__value {
    font-size: 22px;
  }

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

  .gp-tile {
    border-right: 0;
    border-bottom: 1px solid var(--grey-200);
  }

  .gp-tile:last-child {
    border-bottom: 0;
  }

  .gp-brand__product {
    font-size: 16px;
  }

  .gp-top__inner {
    gap: 10px;
  }

  .gp-page__header--row {
    gap: 12px;
  }

  .gp-inbox-meta {
    justify-items: start;
  }

  .gp-list-toolbar {
    padding: 12px;
  }

  .gp-card__head,
  .gp-row,
  .gp-sheet__head {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Compact phone chrome */
@media (max-width: 720px) {
  .gp-top__inner {
    gap: 8px;
  }

  .gp-brand {
    gap: 6px;
    min-width: 0;
  }

  .gp-brand .brand__name {
    font-size: 15px;
  }

  .gp-brand__product {
    font-size: 14px;
  }

  .gp-brand__divider {
    height: 18px;
  }

  .gp-page h1 {
    font-size: 24px;
  }

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

  .gp-profile-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
  }

  .gp-form {
    max-width: none;
    padding: 16px;
  }

  .gp-quote-row__main {
    flex-direction: column;
    align-items: flex-start;
  }

  .gp-row {
    align-items: flex-start;
  }

  .gp-row .gp-chip {
    margin-top: 2px;
  }

  .dash-toast {
    right: 12px;
    bottom: calc(12px + var(--gp-rail-h, 0px));
    left: 12px;
    max-width: none;
  }
}

/* Phone: Material-style bottom navigation */
@media (max-width: 720px) {
  .dashboard-body,
  html.dashboard-body {
    --gp-rail-h: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .gp-shell {
    padding-bottom: var(--gp-rail-h);
    min-height: calc(100vh - var(--gp-top-h));
  }

  .gp-rail {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-around;
    gap: 0;
    height: var(--gp-rail-h);
    padding: 0 4px env(safe-area-inset-bottom, 0px);
    overflow: visible;
    background: var(--white);
    border-top: 1px solid var(--grey-200);
    border-bottom: 0;
    box-shadow: 0 -1px 2px rgba(60, 64, 67, 0.08);
  }

  .gp-rail__item {
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    min-width: 0;
    min-height: 56px;
    margin: 0;
    padding: 6px 4px;
    border-radius: 0;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--grey-700);
  }

  .gp-rail__item:hover {
    background: transparent;
    color: var(--grey-900);
  }

  .gp-rail__item.is-active {
    background: transparent;
    color: var(--g-blue-700);
  }

  .gp-rail__item.is-active .gp-rail__icon {
    color: var(--g-blue-700);
  }

  .gp-rail__item--cta {
    margin: 0;
    color: var(--g-blue-700);
  }

  .gp-rail__icon {
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
  }

  .gp-rail__icon svg {
    width: 22px;
    height: 22px;
  }

  .gp-rail__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
  }

  .gp-page--chat {
    padding-inline: 12px;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .gp-chat__composer {
    padding: 8px;
  }

  .gp-chat__head {
    padding: 12px;
  }
}

@media (max-width: 520px) {
  .gp-facts {
    grid-template-columns: 1fr;
  }

  .gp-project-hero__actions {
    width: 100%;
  }

  .gp-project-hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .gp-list-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .gp-list-search,
  .gp-list-filter select {
    width: 100%;
    flex: 1 1 auto;
  }
}

