/*
 * The public site.
 *
 * Deliberately hand-written and dependency-free: it is eleven files of static content that has to
 * survive being deployed inside the API container, and a build step would be one more thing to keep
 * working for no reader-visible gain.
 *
 * The palette and type are the portal's, on purpose. Somebody who signs in after reading this page
 * should arrive somewhere that looks like the same product rather than a different company.
 */

@font-face {
  font-family: 'Fraunces';
  src: url('/site/fonts/fraunces-latin-opsz-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('/site/fonts/schibsted-grotesk-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --paper: #fdfcf9;
  --ground: #efece6;
  --ink: #1d2333;
  --ink-soft: #565149;
  --dimmed: #6e6960;
  --hairline: #e3dfd7;
  --iris: #7a52f4;
  --iris-deep: #5636bf;
  --iris-wash: #f2f0ff;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(29, 26, 18, 0.05), 0 6px 14px -4px rgba(29, 26, 18, 0.08);
  --shadow-lg: 0 2px 4px rgba(29, 26, 18, 0.06), 0 24px 40px -10px rgba(29, 26, 18, 0.14);
  --shadow-xl: 0 3px 6px rgba(29, 26, 18, 0.07), 0 36px 60px -12px rgba(29, 26, 18, 0.18);

  --measure: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background-color: var(--ground);
  /* The same grain the portal uses, so the two surfaces feel like one material. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 560;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: var(--iris-deep);
  text-underline-offset: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 10;
  background: var(--paper);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* ---- masthead ---------------------------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 5;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
}

.masthead-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}

.masthead-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.masthead-nav a:hover {
  color: var(--ink);
}

.locale-select-wrap {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.locale-select-wrap--nav {
  margin-left: 4px;
}

.locale-select-wrap--footer {
  margin-top: 8px;
}

.locale-select {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  color: var(--ink-soft);
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23565149' d='M1.1 1.2 6 6.1l4.9-4.9 1.1 1.1L6 8.2 0 2.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 7px;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  cursor: pointer;
}

.locale-select:hover,
.locale-select:focus {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--iris) 35%, var(--hairline));
  outline: none;
}

.locale-select:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--iris) 22%, transparent);
}

/* ---- buttons ----------------------------------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.button:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.button-primary {
  background: var(--iris);
  border-color: var(--iris);
  color: #fdfcf9;
}

.button-primary:hover {
  background: var(--iris-deep);
  border-color: var(--iris-deep);
}

.button-quiet {
  padding: 8px 16px;
}

/* ---- motion ------------------------------------------------------------------------------------ */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal-delay {
  transition-delay: 120ms;
}

@keyframes stamp-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}


/* ---- hero -------------------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
  isolation: isolate;
}

.hero-wash {
  pointer-events: none;
  position: absolute;
  inset: -10% -5% auto;
  height: 120%;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 50% at 78% 28%, rgba(122, 82, 244, 0.16), transparent 70%),
    radial-gradient(ellipse 45% 40% at 12% 70%, rgba(86, 54, 191, 0.08), transparent 65%),
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(253, 252, 249, 0.9), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.brand-signal {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iris-deep);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 62px);
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--iris-deep);
}

.lede {
  margin-top: 22px;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 34em;
}

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

.platform-lockups {
  margin-top: 26px;
}

.platform-lockups-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.platform-lockups ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-lockups li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.platform-lockups svg {
  display: block;
  flex-shrink: 0;
}

.footnote {
  margin-top: 24px;
  font-size: 14px;
  color: var(--dimmed);
  max-width: 42ch;
}

/* ---- the signature specimen -------------------------------------------------------------------- */

.specimen {
  position: relative;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.specimen-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  background: #f7f5f1;
}

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

.specimen-subject {
  margin-left: 10px;
  font-size: 13px;
  color: var(--dimmed);
}

.specimen-body {
  padding: 22px 20px 18px;
}

.specimen-message {
  color: var(--ink-soft);
  font-size: 15px;
}

.specimen-body hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 18px 0 16px;
}

/* Rendered signature: table + inline styles, matching HtmlSignatureEmitter. */
.sig {
  width: 100%;
  max-width: 430px;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.35;
  color: #1d2333;
}

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

.sig-compact {
  max-width: 100%;
}

.sig-banner-slot {
  margin-top: 12px;
  max-width: 430px;
}

.sig-banner-slot img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.sig-disclaimer {
  margin-top: 10px;
  max-width: 430px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  color: #888888;
}

.signature {
  display: flex;
  gap: 14px;
  align-items: center;
}

.js .stamp {
  opacity: 0;
}

.js .specimen.is-visible .stamp {
  animation: stamp-in 650ms var(--ease-out) 380ms forwards;
}

.js .specimen.is-visible .stamp-late {
  animation-delay: 620ms;
}

.signature-name {
  font-weight: 600;
  font-size: 15px;
}

.signature-title {
  font-size: 13px;
  color: var(--ink-soft);
}

.specimen-caption {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--iris-wash) 55%, var(--paper));
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

/* ---- bands ------------------------------------------------------------------------------------- */

.band {
  padding: 88px 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}

.band-quiet {
  background: transparent;
}

.band h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}

.section-head {
  max-width: 52ch;
}

.section-lede {
  margin-top: 16px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ---- how it works: visual dual path + directory ----------------------------------------------- */

.how-wrap {
  max-width: 1120px;
}

.how-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px 48px;
  align-items: start;
}

.how-intro h2 {
  max-width: 14ch;
}

.how-intro .section-lede {
  margin-top: 0;
  max-width: 38em;
}

.how-stage {
  margin-top: 44px;
  display: grid;
  gap: 0;
}

.how-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.how-path {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 26px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.how-path .path-index {
  margin-top: 18px;
}

.how-path h3 {
  margin-top: 8px;
  font-size: 22px;
}

.how-path p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 42ch;
}

.how-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 118px;
  padding: 16px 14px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--iris-wash) 55%, var(--paper)), #f7f5f1);
  border: 1px solid var(--hairline);
}

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

.how-node-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dimmed);
  text-align: center;
}

.how-node-accent .how-node-label {
  color: var(--iris-deep);
}

.how-arrow {
  width: 22px;
  height: 2px;
  flex-shrink: 0;
  background: var(--iris);
  position: relative;
  opacity: 0.55;
}

.how-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--iris);
  border-top: 2px solid var(--iris);
  transform: translateY(-50%) rotate(45deg);
}

.how-mail {
  position: relative;
  width: 46px;
  height: 32px;
  border-radius: 6px;
  border: 1.5px solid #b8b2a7;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.how-mail-fold {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 50% 55%, 100% 0);
  border-top: 1.5px solid #b8b2a7;
  opacity: 0.7;
}

.how-mail-stamped {
  border-color: var(--iris);
}

.how-stamp-mark {
  position: absolute;
  right: -6px;
  bottom: -8px;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--iris);
  color: #fdfcf9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.how-relay {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 32px;
}

.how-relay span {
  width: 8px;
  border-radius: 3px;
  background: var(--iris);
}

.how-relay span:nth-child(1) {
  height: 12px;
  opacity: 0.45;
}

.how-relay span:nth-child(2) {
  height: 20px;
  opacity: 0.7;
}

.how-relay span:nth-child(3) {
  height: 28px;
}

.how-diagram-client {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 10px;
  align-items: stretch;
}

.how-compose-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dde1e8;
}

.how-compose-bar {
  display: flex;
  gap: 5px;
}

.how-compose-bar span {
  width: 28px;
  height: 8px;
  border-radius: 3px;
  background: #e8ebf0;
}

.how-compose-bar .is-on {
  background: var(--iris);
  width: 36px;
}

.how-compose-lines {
  display: grid;
  gap: 5px;
}

.how-compose-lines span {
  height: 5px;
  border-radius: 2px;
  background: #e3dfd7;
}

.how-compose-lines .short {
  width: 55%;
}

.how-compose-sig {
  margin-top: 4px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--iris-wash), color-mix(in srgb, var(--iris) 22%, var(--paper)));
  border: 1px dashed color-mix(in srgb, var(--iris) 35%, var(--hairline));
}

.how-sidebar-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
}

.how-sidebar-title {
  font-size: 10px;
  font-weight: 700;
  color: #424242;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.how-sidebar-block {
  height: 18px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #eee;
}

.how-sidebar-block.short {
  height: 12px;
  width: 70%;
}

.how-sidebar-btn {
  margin-top: auto;
  height: 14px;
  border-radius: 3px;
  background: #0f6cbd;
}

.how-converge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0;
  padding: 4px 8px;
}

.how-converge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--iris), transparent);
  opacity: 0.45;
}

.how-converge-label {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--iris-deep);
}

.how-directory {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px 40px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--iris-wash) 72%, var(--paper)), var(--paper) 55%);
  box-shadow: var(--shadow-sm);
}

.how-directory h3 {
  margin-top: 8px;
  font-size: 22px;
}

.how-directory p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 48ch;
}

.how-directory-fields {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.how-directory-fields li {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  font-size: 13px;
}

.how-field-key {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 12px;
  color: var(--iris-deep);
}

.how-field-val {
  color: var(--ink);
  font-weight: 500;
}

.how-field-photo {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--iris-wash);
  color: var(--iris-deep);
  font-size: 11px;
  font-weight: 700;
}

.how-directory-sync {
  display: block !important;
  grid-template-columns: 1fr !important;
  text-align: center;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dimmed) !important;
  background: transparent !important;
  border-style: dashed !important;
}

.path-index {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--iris-deep);
}

/* ---- platform: operator console capabilities ------------------------------------------------- */

.platform-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 40% at 92% 8%, rgba(122, 82, 244, 0.08), transparent 70%),
    radial-gradient(ellipse 42% 48% at 4% 88%, rgba(86, 54, 191, 0.06), transparent 68%),
    var(--paper);
}

.platform-wrap {
  max-width: 1120px;
}

.platform-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px 48px;
  align-items: start;
}

.platform-intro h2 {
  max-width: 14ch;
}

.platform-intro .section-lede {
  margin-top: 0;
  max-width: 38em;
}

.platform-roles {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-roles li {
  padding: 7px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: color-mix(in srgb, var(--iris-wash) 50%, var(--paper));
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.platform-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 24px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.platform-card .path-index {
  margin-top: 16px;
}

.platform-card h3 {
  margin-top: 8px;
  font-size: 22px;
  max-width: 18ch;
}

.platform-card p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 42ch;
}

.platform-viz {
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--iris-wash) 48%, var(--paper)), #f7f5f1);
  padding: 12px;
  min-height: 148px;
}

.platform-viz-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.platform-viz-live {
  color: #1f7a4d;
}

.platform-viz-live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #2f9e68;
  box-shadow: 0 0 0 3px rgba(47, 158, 104, 0.2);
  vertical-align: 1px;
  animation: platform-pulse 1.8s var(--ease-out) infinite;
}

.platform-viz-chip {
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 70%, white);
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
  max-width: 14ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-lint {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.platform-lint li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--paper) 88%, white);
  border: 1px solid var(--hairline);
  font-size: 12.5px;
  font-weight: 550;
  color: var(--ink);
}

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

.platform-lint .is-ok .platform-lint-mark {
  background: #2f9e68;
}

.platform-lint .is-warn .platform-lint-mark {
  background: #d29a2b;
}

.platform-rules {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.platform-rules li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--paper) 88%, white);
  font-size: 12.5px;
  font-weight: 550;
}

.platform-rule-pri {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--dimmed);
}

.platform-rule-result {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.platform-rules .is-match {
  border-color: color-mix(in srgb, var(--iris) 45%, var(--hairline));
  background: color-mix(in srgb, var(--iris-wash) 70%, white);
  box-shadow: inset 3px 0 0 var(--iris);
}

.platform-rules .is-match .platform-rule-pri,
.platform-rules .is-match .platform-rule-result {
  color: var(--iris-deep);
}

.platform-rules .is-skip,
.platform-rules .is-rest {
  opacity: 0.72;
}

.platform-banner-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: linear-gradient(105deg, var(--iris-deep), var(--iris));
  color: #fdfcf9;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.platform-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.platform-metrics > div {
  padding: 10px 8px;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--paper) 88%, white);
  text-align: center;
}

.platform-metric-val {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}

.platform-metric-label {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.platform-stages {
  margin: 0 0 10px;
  padding: 10px 12px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--paper) 88%, white);
}

.platform-stages li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 650;
  color: var(--dimmed);
  text-align: center;
}

.platform-stages li span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--hairline);
  background: var(--paper);
  position: relative;
}

.platform-stages li.is-done {
  color: var(--ink-soft);
}

.platform-stages li.is-done span {
  border-color: #2f9e68;
  background: #2f9e68;
}

.platform-stages li.is-active {
  color: var(--iris-deep);
}

.platform-stages li.is-active span {
  border-color: var(--iris);
  background: var(--iris);
  box-shadow: 0 0 0 4px rgba(122, 82, 244, 0.18);
}

.platform-bypass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px dashed color-mix(in srgb, var(--iris) 35%, var(--hairline));
  background: color-mix(in srgb, var(--iris-wash) 40%, var(--paper));
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.platform-switch {
  position: relative;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 18%, var(--hairline));
  flex-shrink: 0;
}

.platform-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

@keyframes platform-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(47, 158, 104, 0.18);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(47, 158, 104, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-card {
    transition: none;
  }

  .platform-card:hover {
    transform: none;
  }

  .platform-viz-live::before {
    animation: none;
  }
}

/* ---- product: operator desk → sender desk ---------------------------------------------------- */

.product-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 6% 12%, rgba(122, 82, 244, 0.1), transparent 70%),
    radial-gradient(ellipse 50% 50% at 96% 78%, rgba(86, 54, 191, 0.08), transparent 68%),
    var(--paper);
}

.product-wrap {
  max-width: 1240px;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px 48px;
  align-items: start;
}

.product-intro h2 {
  max-width: 18ch;
}

.product-intro .section-lede {
  margin-top: 0;
  max-width: 36em;
}

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

.product-beats li {
  padding: 20px 22px 22px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: color-mix(in srgb, var(--iris-wash) 42%, var(--paper));
  box-shadow: var(--shadow-sm);
}

.product-beat-index {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--iris-deep);
}

.product-beats h3 {
  margin-top: 10px;
  font-size: 19px;
}

.product-beats p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.product-tray {
  margin-top: 40px;
  padding: 22px 20px 24px;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--iris-wash) 58%, var(--paper)), var(--paper) 55%);
  box-shadow: var(--shadow-sm);
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: stretch;
}

.product-desk {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-desk-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 0 4px 12px;
}

.product-desk-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iris-deep);
}

.product-desk-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.product-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 46px;
}

.product-bridge-line {
  width: 1px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(180deg, transparent, var(--iris) 20%, var(--iris) 80%, transparent);
}

.product-handoff {
  width: 118px;
  padding: 14px 12px 12px;
  border: 1px solid color-mix(in srgb, var(--iris) 28%, var(--hairline));
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.handoff-photo {
  display: block;
  margin: 0 auto 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #7a52f4;
}

.product-handoff-name {
  font-size: 13px;
  font-weight: 600;
}

.product-handoff-meta {
  margin-top: 2px;
  font-size: 11px;
  color: var(--dimmed);
}

.product-handoff-tag {
  margin-top: 10px;
  width: max-content;
  max-width: 100%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iris-deep);
  background: var(--iris-wash);
  border-radius: 999px;
  padding: 4px 8px;
}

.js .product-handoff {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
}

.js .product-bridge.is-visible .product-handoff {
  animation: stamp-in 700ms var(--ease-out) 180ms forwards;
}

.product-frame {
  margin: 0;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-frame .designer,
.product-frame .outlook {
  flex: 1;
}

.product-stage .designer {
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 300px;
}

.product-stage .designer-canvas {
  justify-content: center;
}

.product-stage .designer-inspector {
  display: none;
}

.js .product-frame-outlook .stamp {
  opacity: 0;
}

.js .product-desk.is-visible .product-frame-outlook .stamp {
  animation: stamp-in 650ms var(--ease-out) 320ms forwards;
}

.js .product-desk.is-visible .product-frame-outlook .stamp-late {
  animation-delay: 540ms;
}

.frame-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--hairline);
  background: #f7f5f1;
  flex-wrap: wrap;
}

.frame-title {
  margin-left: 6px;
  font-size: 13px;
  color: var(--dimmed);
  flex: 1;
  min-width: 12ch;
}

.frame-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a6a12;
  background: #f8efc8;
  border-radius: 999px;
  padding: 3px 8px;
}

.frame-actions {
  display: flex;
  gap: 6px;
}

.frame-chip {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink-soft);
}

.frame-chip-primary {
  background: var(--iris);
  border-color: var(--iris);
  color: #fdfcf9;
}

.product-caption {
  padding: 13px 16px 15px;
  border-top: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--iris-wash) 55%, var(--paper));
  font-size: 13px;
  color: var(--ink-soft);
}

.designer {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 200px;
  min-height: 320px;
  background: var(--ground);
}

.designer-palette,
.designer-inspector {
  background: var(--paper);
  border-right: 1px solid var(--hairline);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.designer-inspector {
  border-right: 0;
  border-left: 1px solid var(--hairline);
}

.designer-label {
  margin: 4px 0 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.palette-item {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 8px;
  border-radius: 8px;
}

.palette-item.is-active {
  background: var(--iris-wash);
  color: var(--iris-deep);
  font-weight: 500;
}

.designer-canvas {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.canvas-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--hairline);
}

.canvas-row.is-selected {
  border-color: var(--iris);
  box-shadow: 0 0 0 3px rgba(122, 82, 244, 0.12);
}

.canvas-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #7a52f4;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
}

.canvas-btn {
  display: inline-block;
  background: #5636bf;
  color: #fff;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

.canvas-copy {
  display: grid;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.canvas-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px dashed transparent;
}

.canvas-block.is-focused {
  border-color: var(--iris);
  background: color-mix(in srgb, var(--iris-wash) 50%, var(--paper));
}

.merge {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 12px;
  color: var(--iris-deep);
  background: var(--iris-wash);
  border-radius: 4px;
  padding: 1px 5px;
}

.canvas-hint {
  font-size: 13px;
  color: var(--dimmed);
}

.canvas-sep {
  color: var(--dimmed);
}

.canvas-banner {
  padding: 0;
  border-radius: 8px;
  border: 1px dashed color-mix(in srgb, var(--iris) 45%, var(--hairline));
  overflow: hidden;
  background: #1f1548;
}

.canvas-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.canvas-lint {
  font-size: 12px;
  color: var(--dimmed);
}

.inspector-heading {
  font-size: 15px;
  font-weight: 600;
  margin: 2px 0 8px;
}

.inspector-field {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--dimmed);
  margin-bottom: 8px;
}

.inspector-value {
  display: block;
  padding: 7px 9px;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  background: #f7f5f1;
  color: var(--ink);
  font-size: 13px;
}

.inspector-swatch {
  width: 28px;
  height: 18px;
  border-radius: 4px;
  background: var(--ink-soft);
  border: 1px solid var(--hairline);
}

.inspector-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--dimmed);
  line-height: 1.45;
}

.outlook {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  min-height: 340px;
  background: #edf0f5;
}

.outlook-compose {
  background: #fff;
  border-right: 1px solid #dde1e8;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.outlook-ribbon {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #e8ebf0;
  font-size: 12px;
  color: #5b6575;
}

.outlook-send {
  background: #0f6cbd;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.outlook-ribbon .is-on {
  color: var(--iris-deep);
  font-weight: 600;
}

.outlook-addin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 4px 5px;
  border-radius: 4px;
  background: var(--iris-wash);
  color: var(--iris-deep);
  font-weight: 600;
}

.outlook-addin svg {
  display: block;
  flex-shrink: 0;
}

.outlook-meta {
  padding: 8px 14px;
  border-bottom: 1px solid #e8ebf0;
  font-size: 13px;
  color: #242424;
  display: grid;
  gap: 6px;
}

.outlook-meta span {
  display: inline-block;
  width: 58px;
  color: #6b7280;
}

.outlook-message {
  padding: 16px 14px 18px;
  flex: 1;
}

.outlook-message .sig-banner-slot {
  max-width: 100%;
}

.outlook-message > p {
  font-size: 14px;
  color: #3b4250;
  margin-bottom: 16px;
}

.outlook-message hr {
  border: 0;
  border-top: 1px solid #e8ebf0;
  margin: 0 0 14px;
}

.outlook-sidebar {
  background: #fafafa;
  padding: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  border-left: 3px solid var(--iris);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 2px;
  padding: 11px 12px 10px;
  background: color-mix(in srgb, var(--iris-wash) 80%, #fff);
  border-bottom: 1px solid color-mix(in srgb, var(--iris) 18%, #e0e0e0);
}

.sidebar-brand svg {
  display: block;
  flex-shrink: 0;
}

.sidebar-brand-name {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

.sidebar-brand-meta {
  margin-top: 2px;
  font-size: 11px;
  color: var(--iris-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.outlook-sidebar .sidebar-card {
  margin: 0 12px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-card h3 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.sidebar-card h4 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.sidebar-why {
  font-size: 12px;
  color: #616161;
}

.sidebar-tabs {
  display: flex;
  gap: 6px;
}

.sidebar-tabs span {
  border: 1px solid #d1d1d1;
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  color: #424242;
}

.sidebar-tabs .is-active {
  border-color: #0f6cbd;
  color: #0f6cbd;
}

.sidebar-preview {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 8px;
  background: #fff;
}

.sidebar-preview .signature {
  gap: 10px;
}

.sidebar-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #7a52f4;
  flex-shrink: 0;
  display: block;
}

.sidebar-preview .signature-name {
  font-size: 13px;
}

.sidebar-preview .signature-title {
  font-size: 12px;
}

.sidebar-save {
  display: inline-flex;
  align-self: start;
  margin-top: 4px;
  background: #0f6cbd;
  color: #fff;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.outlook-sidebar .inspector-field {
  color: #616161;
}

.outlook-sidebar .inspector-value {
  background: #fff;
  border-color: #d1d1d1;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ---- partners ---------------------------------------------------------------------------------- */

.partners-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 40% at 4% 12%, rgba(122, 82, 244, 0.08), transparent 70%),
    radial-gradient(ellipse 42% 46% at 96% 88%, rgba(86, 54, 191, 0.07), transparent 68%),
    var(--paper);
}

.partners-wrap {
  max-width: 1180px;
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px 48px;
  align-items: start;
}

.partners-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px 36px;
  align-items: start;
}

.partners-intro h2 {
  max-width: 16ch;
}

.partners-intro .section-lede {
  margin-top: 0;
  max-width: 36em;
}

.partners-tenants {
  margin-top: 32px;
}

.partners-console {
  padding: 14px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--iris-wash) 45%, var(--paper)), #f7f5f1);
  box-shadow: var(--shadow-sm);
}

.partners-console-chrome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 12px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.partners-console-meta {
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-soft);
}

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

.partners-tenant {
  display: grid;
  gap: 6px;
  padding: 14px 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: var(--paper);
}

.partners-tenant-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.partners-tenant-status {
  justify-self: start;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partners-tenant-status.is-live {
  background: color-mix(in srgb, #2f9e68 16%, var(--paper));
  color: #1f7a4d;
}

.partners-tenant-status.is-pilot {
  background: var(--iris-wash);
  color: var(--iris-deep);
}

.partners-tenant-meta {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.partners-boundary {
  margin: 12px 4px 2px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dimmed);
  letter-spacing: 0.02em;
}

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

.partners-caps li {
  padding: 18px 18px 20px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.partners-caps h3 {
  margin-top: 8px;
  font-size: 18px;
}

.partners-caps p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 34ch;
}

.ticks {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-size: 15px;
}

.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--iris);
  border-bottom: 2px solid var(--iris);
  transform: rotate(-45deg);
}

.callout {
  position: sticky;
  top: 96px;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(122, 82, 244, 0.28), transparent 55%),
    #1d2333;
  color: #efece6;
  border-radius: 16px;
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-xl);
}

.callout-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #977dff;
}

.callout h3 {
  font-size: 24px;
  color: #fdfcf9;
}

.callout > p {
  margin: 12px 0 22px;
  font-size: 15px;
  color: #b3b7cc;
}

/* ---- contact form ------------------------------------------------------------------------------ */

.enquiry {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: #cdd0e0;
}

.optional {
  font-weight: 400;
  color: #8e93ad;
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid #454b63;
  background: #20243a;
  color: #fdfcf9;
  font: inherit;
  font-size: 15px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #666c85;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #977dff;
  box-shadow: 0 0 0 3px rgba(151, 125, 255, 0.25);
}

/* Off-screen rather than display:none: some form-fillers skip what is not rendered, and this field
   only earns its keep if a bot believes in it. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry button[type='submit'] {
  justify-self: start;
  margin-top: 4px;
}

.enquiry button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

.enquiry-status {
  margin: 0;
  font-size: 14px;
  min-height: 1.4em;
  color: #b3b7cc;
}

.enquiry-status[data-tone='ok'] {
  color: #8ce0b4;
}

.enquiry-status[data-tone='error'] {
  color: #ffb4a2;
}

.enquiry-fallback {
  margin: 14px 0 0;
  font-size: 14px;
  color: #b3b7cc;
}

.enquiry-fallback a {
  color: #cdc2ff;
}

/* ---- footer ------------------------------------------------------------------------------------ */

.footer {
  border-top: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--iris-wash) 22%, var(--paper)), var(--paper) 42%);
  padding: 48px 0 28px;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 36px 56px;
  align-items: start;
  padding-bottom: 32px;
}

.footer-brand {
  max-width: 34ch;
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.footer-wordmark span {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.footer-wordmark:hover {
  color: var(--iris-deep);
}

.footer-tag {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col-label {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--dimmed);
}

.footer-host {
  letter-spacing: 0.02em;
}

/* ---- consent bar ------------------------------------------------------------------------------- */

.consent-bar {
  display: none;
  position: fixed;
  z-index: 80;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 640px;
  margin-inline: auto;
  padding: 18px 20px;
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--iris);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.consent-bar.is-open {
  display: block;
}

.consent-bar p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.consent-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.consent-bar .button {
  cursor: pointer;
}

/* ---- partner margin ---------------------------------------------------------------------------- */

.partner-margin {
  margin-top: 28px;
  padding: 24px 24px 26px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: color-mix(in srgb, var(--iris-wash) 28%, var(--paper));
  box-shadow: var(--shadow-sm);
}

.partner-margin-head .eyebrow {
  margin-bottom: 8px;
}

.partner-margin-head h3 {
  font-size: 24px;
  max-width: 18ch;
}

.partner-margin-head > p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 54ch;
}

.partner-models {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.partner-model {
  padding: 16px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--paper);
}

.partner-model-viz {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--iris-wash) 40%, var(--paper)), #f7f5f1);
}

.partner-split {
  display: grid;
  grid-template-columns: 0.18fr 0.82fr;
  gap: 4px;
  min-height: 44px;
}

.partner-split span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
}

.partner-split-you {
  background: var(--iris);
  color: #fdfcf9;
}

.partner-split-us {
  background: color-mix(in srgb, var(--ink) 8%, var(--paper));
  color: var(--ink-soft);
  border: 1px solid var(--hairline);
}

.partner-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 650;
  color: var(--ink-soft);
}

.partner-flow-arrow {
  width: 28px;
  height: 2px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, var(--iris) 20%, var(--iris) 80%, transparent);
  position: relative;
}

.partner-flow-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--iris);
  border-top: 2px solid var(--iris);
  transform: translateY(-50%) rotate(45deg);
}

.partner-model h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 560;
  color: var(--ink);
}

.partner-model p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.partner-note {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--dimmed);
  max-width: 58ch;
}

/* ---- pricing ----------------------------------------------------------------------------------- */

.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;
}

.pricing-hero {
  position: relative;
  padding: 72px 0 28px;
  overflow: hidden;
  isolation: isolate;
}

.pricing-head {
  position: relative;
}

.pricing-head .brand-signal {
  margin-bottom: 14px;
}

.pricing-head h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.6vw, 52px);
  max-width: 16ch;
}

.pricing-head .lede {
  max-width: 54ch;
}

.pricing-promises {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-promises li {
  padding: 7px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.pricing-band {
  padding-top: 28px;
}

/* Homepage pricing: seat story + plan grid ----------------------------------------------------- */

.pricing-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.pricing-home::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 42% at 8% 18%, rgba(122, 82, 244, 0.09), transparent 70%),
    radial-gradient(ellipse 46% 40% at 96% 72%, rgba(86, 54, 191, 0.07), transparent 68%);
  z-index: 0;
}

.pricing-home-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.pricing-home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px 48px;
  align-items: start;
}

.pricing-home-intro h2 {
  max-width: 16ch;
}

.pricing-home-intro .section-lede {
  margin-top: 0;
  max-width: 38em;
}

.pricing-seat-stage {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper) 88%, white), color-mix(in srgb, var(--iris-wash) 35%, var(--paper)));
  box-shadow: var(--shadow-sm);
}

.pricing-seat-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: var(--paper);
}

.pricing-seat-step.is-accent {
  border-color: color-mix(in srgb, var(--iris) 42%, var(--hairline));
  background: color-mix(in srgb, var(--iris-wash) 70%, white);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--iris) 12%, transparent);
}

.pricing-seat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.pricing-seat-figure {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.pricing-seat-step.is-accent .pricing-seat-figure {
  color: var(--iris-deep);
}

.pricing-seat-note {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 22ch;
}

.pricing-seat-arrow {
  align-self: center;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--iris) 20%, var(--iris) 80%, transparent);
  position: relative;
}

.pricing-seat-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--iris);
  border-top: 2px solid var(--iris);
  transform: translateY(-50%) rotate(45deg);
}

.period-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: color-mix(in srgb, var(--paper) 80%, transparent);
}

.period-bar-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.period-bar .period-toggle {
  margin: 0;
}

.tier-for {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dimmed);
}

.tier-featured .tier-for {
  color: var(--iris-deep);
}

.tier-enterprise .tier-for {
  color: #977dff;
}

.tier-featured .tier-flag {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--iris);
  color: #fdfcf9;
  letter-spacing: 0.06em;
}

.pricing-foot {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px 32px;
}

.pricing-foot .pricing-terms {
  margin-top: 0;
  flex: 1 1 40ch;
}

.pricing-more {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 650;
  color: var(--iris-deep);
  text-decoration: none;
}

.pricing-more:hover {
  text-decoration: underline;
}

#pricing .pricing-fieldset {
  margin-top: 28px;
}

#pricing .pricing-promises {
  margin-top: 24px;
}

#pricing .tiers {
  margin-top: 22px;
}

/* The fieldset groups the period radios with the prices they control; it carries no chrome of its
   own, which is what fieldsets look like once the browser default is taken off. */
.pricing-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.period-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.period-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.period-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.period-toggle label:hover {
  color: var(--ink);
}

.period-save {
  font-size: 13px;
  color: var(--iris-deep);
  background: var(--iris-wash);
  border-radius: 999px;
  padding: 2px 8px;
}

#period-annual:checked ~ .period-toggle label[for='period-annual'],
#period-monthly:checked ~ .period-toggle label[for='period-monthly'] {
  background: var(--ink);
  color: var(--paper);
}

#period-annual:checked ~ .period-toggle label[for='period-annual'] .period-save {
  background: rgba(253, 252, 249, 0.16);
  color: var(--paper);
}

/* Focus has to land on the label, because the input it belongs to is off-screen. Each input
   highlights only its own label — a rule matching both would show two focus rings for one
   keyboard position. */
#period-annual:focus-visible ~ .period-toggle label[for='period-annual'],
#period-monthly:focus-visible ~ .period-toggle label[for='period-monthly'] {
  outline: 2px solid var(--iris);
  outline-offset: 2px;
}

/* Only one rate is shown at a time. Both are in the markup so the page carries every price it
   quotes — a reader with the stylesheet blocked sees two numbers rather than none. */
.rate {
  display: none;
}

.rate-custom,
#period-annual:checked ~ .tiers .rate-annual,
#period-monthly:checked ~ .tiers .rate-monthly {
  display: block;
}

.tiers {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 16px;
  align-items: stretch;
}

.tier {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.tier:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tier-featured {
  border-color: var(--iris);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--iris-wash) 78%, var(--paper)), var(--paper));
  box-shadow: var(--shadow-lg);
  position: relative;
}

.tier-featured::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--iris), var(--iris-deep));
}

.tier-enterprise {
  background: #1d2333;
  border-color: #2b3045;
  color: #efece6;
  box-shadow: var(--shadow-lg);
}

.tier-enterprise h2,
.tier-enterprise h3,
.tier-enterprise .rate-amount {
  color: #fdfcf9;
}

.tier-enterprise .tier-summary,
.tier-enterprise .rate-unit,
.tier-enterprise .ticks li {
  color: #b3b7cc;
}

.tier-enterprise .ticks li::before {
  border-color: #977dff;
}

.tier-enterprise .button {
  background: transparent;
  border-color: #454b63;
  color: #fdfcf9;
}

.tier-enterprise .button:hover {
  background: #2b3045;
  border-color: #666c85;
}

.tier-flag {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iris-deep);
  font-weight: 600;
}

.tier-flag:empty {
  visibility: hidden;
}

.tier-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.tier h2,
.tier h3 {
  font-size: 22px;
}

.tier-summary {
  font-size: 15px;
  color: var(--ink-soft);
}

.tier-rate {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

.tier-enterprise .tier-rate {
  border-top-color: #363c52;
}

.rate-amount {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.rate-unit {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--dimmed);
}

.tier .ticks {
  margin-top: 4px;
  align-self: stretch;
}

.tier .ticks li {
  font-size: 14px;
}

.tier .button {
  margin-top: 8px;
  align-self: end;
  justify-content: center;
  width: 100%;
}

@supports not (grid-template-rows: subgrid) {
  .tier {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }

  .tier-flag:empty {
    min-height: 1.7em;
  }

  .tier-summary {
    min-height: 4.8em;
  }

  .tier .ticks {
    flex: 1;
  }
}

.pricing-terms {
  margin-top: 28px;
  font-size: 14px;
  color: var(--dimmed);
  max-width: 76ch;
}

.value-list {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
}

.value-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 18px;
  align-items: start;
}

.value-list h3 {
  font-size: 19px;
}

.value-list p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 46ch;
}

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

.faq {
  margin: 0;
  display: grid;
  gap: 2px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  background: var(--hairline);
  box-shadow: var(--shadow-sm);
}

.faq details {
  background: var(--paper);
  padding: 18px 22px;
}

.faq details[open] {
  background: color-mix(in srgb, var(--iris-wash) 35%, var(--paper));
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq summary::after {
  content: '';
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-right: 2px solid var(--iris);
  border-bottom: 2px solid var(--iris);
  transform: rotate(45deg);
  transition: transform 160ms var(--ease-out);
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq p {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 68ch;
}

.pricing-cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(122, 82, 244, 0.12), transparent 65%),
    var(--paper);
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pricing-cta .section-lede {
  margin-top: 12px;
}

.pricing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- responsive -------------------------------------------------------------------------------- */

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 1100px) {
  .product-wrap {
    max-width: var(--measure);
  }

  .product-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .how-intro,
  .platform-intro,
  .pricing-home-intro,
  .partners-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-intro h2,
  .how-intro h2,
  .platform-intro h2,
  .pricing-home-intro h2,
  .partners-intro h2 {
    max-width: none;
  }

  .product-intro .section-lede,
  .how-intro .section-lede,
  .platform-intro .section-lede,
  .pricing-home-intro .section-lede,
  .partners-intro .section-lede {
    margin-top: 0;
  }

  .pricing-seat-stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-seat-arrow {
    width: 2px;
    height: 22px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, var(--iris) 20%, var(--iris) 80%, transparent);
  }

  .pricing-seat-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .period-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-beats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-tray {
    padding: 18px 16px 20px;
  }

  .product-stage {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-bridge {
    flex-direction: row;
    width: auto;
    padding: 4px 8px 12px;
  }

  .product-bridge-line {
    width: auto;
    height: 1px;
    min-height: 0;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--iris) 20%, var(--iris) 80%, transparent);
  }

  .product-handoff {
    width: auto;
    min-width: 220px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    row-gap: 0;
    text-align: left;
    padding: 12px 16px;
  }

  .product-handoff .handoff-photo {
    grid-row: 1 / 4;
    margin: 0;
    align-self: center;
  }

  .product-handoff-tag {
    justify-self: start;
  }

  .product-stage .designer {
    grid-template-columns: 148px minmax(0, 1fr) 200px;
  }

  .product-stage .designer-inspector {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hero-inner,
  .partners-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .callout {
    position: static;
  }

  .how-paths {
    grid-template-columns: 1fr;
  }

  .how-directory {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-directory-fields li {
    grid-template-columns: 100px 1fr;
  }

  .platform-grid,
  .partners-caps,
  .partners-tenant-grid,
  .partner-models,
  .value-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .designer,
  .product-stage .designer {
    grid-template-columns: 1fr;
  }

  .designer-palette {
    display: none;
  }

  .designer-inspector {
    border-left: 0;
    border-top: 1px solid var(--hairline);
  }

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

  .outlook-compose {
    border-right: 0;
    border-bottom: 1px solid #dde1e8;
  }

  .outlook-sidebar {
    border-left: 0;
    border-top: 3px solid var(--iris);
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero h1 {
    max-width: none;
  }

  .pricing-head h1 {
    max-width: none;
  }

  .masthead-nav a:not(.button) {
    display: none;
  }

  .masthead-nav .locale-select-wrap {
    display: inline-flex;
  }

  .masthead-nav {
    gap: 12px;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .tiers {
    grid-template-columns: 1fr;
  }

  .tier-summary {
    min-height: 0;
  }

  .tier:hover {
    transform: none;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }

  .tier {
    transition: none;
  }

  .tier:hover {
    transform: none;
  }

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

  .js .stamp,
  .js .specimen.is-visible .stamp,
  .js .specimen.is-visible .stamp-late,
  .js .product-handoff,
  .js .product-bridge.is-visible .product-handoff,
  .js .product-frame-outlook .stamp,
  .js .product-desk.is-visible .product-frame-outlook .stamp,
  .js .product-desk.is-visible .product-frame-outlook .stamp-late {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .faq summary::after {
    transition: none;
  }
}

/* The portal is light-only today, and a public page that flipped to dark while the product it links
   to did not would be a mismatch a visitor notices. Kept deliberately in one scheme. */
