/* ============================================================
   Tessera — marketing landing
   Pure CSS, no frameworks, no external requests.
   Palette try-on (2026-07-07): plain white bg #FFFFFF (no grid texture) · imperial ink #0A2463
   blue bell #3E92CC (offline/device) · magenta bloom #D8315B (network/server + CTA)
   powder blue #9FC6E6 (lines/soft) · red #DC2626 (revocation) · imperial #0A2463 (audit)
   ============================================================ */

/* ---------- Onest Variable (self-hosted, weight 100–900) ----------
   url() paths must stay root-absolute: scripts/inline-css.sh inlines
   this stylesheet into every page regardless of directory depth. */

@font-face {
  font-family: 'Onest Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/assets/fonts/onest-cyrillic-ext-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Onest Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/assets/fonts/onest-cyrillic-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Onest Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/assets/fonts/onest-latin-ext-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Onest Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/assets/fonts/onest-latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --ink: #0A2463;
  --ink-2: #3A4A78;
  --ink-3: #6B779D;
  --line: #E1EAF4;
  --line-strong: #9FC6E6;

  --mint: #3E92CC;
  --mint-deep: #2A6E9E;      /* AA-safe for small text on light bg */
  --mint-soft: #EAF3FA;
  --amber: #D8315B;
  --amber-deep: #AD2148;     /* AA-safe */
  --amber-soft: #FBE7ED;
  --red: #DC2626;
  --red-deep: #B91C1C;
  --red-soft: #FCE9E9;
  --green: #16A34A;          /* semantic success — deliberately outside the brand palette */
  --green-soft: #E8F7EE;
  --blue: #0A2463;
  --blue-deep: #0A2463;      /* AA-safe */
  --blue-soft: #E7EBF6;

  --font-sans: 'Onest Variable', -apple-system, BlinkMacSystemFont, "Segoe UI",
               system-ui, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas,
               "Liberation Mono", monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1080px;
  --shadow-card: 0 1px 2px rgba(10, 36, 99, 0.05), 0 8px 28px rgba(10, 36, 99, 0.06);
}

/* ---------- reset ---------- */

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background-color: var(--bg);
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 0.5em; }
h1, h2, h3, .resilience-claim { text-wrap: balance; }

p { margin: 0 0 1em; }

.lede, .section-sub, .card p { text-wrap: pretty; }

a { color: var(--mint-deep); text-underline-offset: 3px; }
a:hover { color: var(--mint); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- skip link (visually hidden until focused) ---------- */

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;                 /* above .site-header (z-index 50) */
  padding: 12px 20px;
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(10, 36, 99, 0.25);
  transform: translateY(calc(-100% - 20px));
}
.skip-link:hover { color: #FFFFFF; }
.skip-link:focus,
.skip-link:focus-visible { transform: translateY(0); }

/* ---------- motion & interactive states ---------- */

a, .btn, .card {
  transition: color 200ms ease, background-color 200ms ease,
              border-color 200ms ease, box-shadow 200ms ease,
              transform 200ms ease;
}

/* staggered scroll-reveal — active only when JS is available (html.js);
   without JS everything stays visible */
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- brand mark: the rotated tessera tile ---------- */

.tile {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--mint);
  transform: rotate(45deg);
  flex: none;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: flex;
  flex-wrap: wrap;          /* on narrow screens actions drop to a second row */
  align-items: center;
  gap: 10px 16px;
  min-height: 64px;
  padding: 8px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover { color: var(--ink); }

.site-nav {
  display: flex;
  gap: 22px;
  margin-left: 8px;
}

.site-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--mint-deep);
  border-bottom-color: var(--mint);
}
.site-nav a[aria-current="page"] {
  color: var(--mint-deep);
  border-bottom-color: var(--mint);
  font-weight: 600;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
.lang-switch a, .lang-switch span {
  padding: 5px 10px;
  text-decoration: none;
  color: var(--ink-3);
}
.lang-switch span[aria-current="true"] {
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 600;
}
.lang-switch a:hover { background: var(--mint-soft); color: var(--mint-deep); }

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

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 22px;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(216, 49, 91, 0.28);
}
.btn-primary:hover {
  background: var(--amber-deep);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(216, 49, 91, 0.38);
}
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn-small { font-size: 14px; padding: 9px 16px; }

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

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::after {
  content: "";
  flex: 1;
  max-width: 180px;
  border-top: 2px dashed var(--line-strong);
}

.hero h1 {
  font-size: clamp(34px, 6.2vw, 58px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 17ch;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero .lede {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

/* centered hero (main pages) */
.hero--center .container { text-align: center; }
.hero--center h1 { margin-left: auto; margin-right: auto; }
.hero--center .lede { margin-left: auto; margin-right: auto; }
.hero--center .cta-row { justify-content: center; }
.hero--center .btn-primary { padding: 16px 34px; font-size: 17.5px; }
.hero-mail { margin-top: 18px; font-size: 15.5px; color: var(--ink-2); }
.hero-mail a { color: var(--mint-deep); font-weight: 600; }

/* ---------- figures (diagrams) ---------- */

.figure {
  margin: 36px 0 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.figure figcaption {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  padding: 10px 18px;
  border-top: 1px dashed var(--line);
  background: var(--bg);
}

/* ---------- native HTML diagrams (former SVG figures) ---------- */

.diag {
  padding: 24px 22px;
  display: grid;
  gap: 20px;
}

/* two stacked diag blocks inside one figure (audit: correlation + hash-chain);
   full width keeps each chain on a single line */
.diag-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.diag-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.diag-label--amber { color: var(--amber-deep); }
.diag-label--mint  { color: var(--mint-deep); }
.diag-label--blue  { color: var(--blue-deep); }

/* two panels with the offline boundary between them */
.diag-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.diag-panel {
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--surface);
}
.diag-panel--amber { border-color: var(--amber); }
.diag-panel--mint  { border-color: var(--mint); background: var(--mint-soft); }
.diag-panel .diag-label { margin-bottom: 8px; }

.diag-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.diag-list li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 15px;
  color: var(--ink-2);
}
.diag-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--line-strong);
}
.diag-panel--amber .diag-list li::before { background: var(--amber); }
.diag-panel--mint  .diag-list li::before { background: var(--mint); }
.diag-list .is-red { color: var(--red-deep); }
.diag-list .is-red::before { background: var(--red); }

/* the dashed offline boundary: horizontal on mobile, vertical on desktop */
.diag-divider {
  position: relative;
  margin: 30px 0;
  border-top: 3px dashed var(--line-strong);
}
.diag-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface);
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}

.diag-foot {
  margin: 0;
  text-align: center;
}
.diag-foot strong {
  display: block;
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.45;
}
.diag-foot span { color: var(--ink-3); font-size: 14.5px; }
.diag-foot .mint { color: var(--mint-deep); font-style: normal; }

/* checklist with mint check markers (fig. 2) */
.diag-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 620px;
}
.diag-checklist li {
  position: relative;
  padding: 10px 0 10px 38px;
  font-size: 15.5px;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.diag-checklist li:last-child { border-bottom: none; }
.diag-checklist li::before {
  content: "\2713";  /* ✓ */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  color: var(--mint-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.diag-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--mint-deep);
  background: var(--mint-soft);
  border: 1px solid var(--mint);
  border-radius: 999px;
  padding: 6px 14px;
}

/* vertical stepper with offline/network zones (fig. 3) */
.diag-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.diag-step {
  position: relative;
  padding: 0 0 20px 50px;
}
.diag-step::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 0;
  border-left: 2px dashed var(--line-strong);
}
.diag-step:last-child { padding-bottom: 0; }
.diag-step:last-child::before { display: none; }

.diag-step-mark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  transform: rotate(45deg);
  background: var(--surface);
  border: 2px solid var(--mint);
}
.diag-step-mark span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mint-deep);
}
.diag-step--net .diag-step-mark { border-color: var(--amber); }
.diag-step--net .diag-step-mark span { color: var(--amber-deep); }

.diag-step-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.diag-step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 60ch;
}

.diag-zone {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: 2px;
  white-space: nowrap;
}
.diag-zone--off { background: var(--mint-soft); color: var(--mint-deep); }
.diag-zone--net { background: var(--amber-soft); color: var(--amber-deep); }

/* horizontal chain of boxes with arrows (fig. 4) */
.diag-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.diag-chain-item {
  border: 2px solid var(--blue);
  border-radius: 10px;
  background: var(--surface);
  padding: 8px 14px;
  font-size: 14px;
}
.diag-chain-item b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.diag-chain-item small {
  color: var(--ink-3);
  font-size: 12.5px;
}
.diag-chain--hash .diag-chain-item {
  border-color: var(--line);
  font-family: var(--font-mono);
}
.diag-chain-item.is-cut {
  border: 2px dashed var(--red);
  background: var(--red-soft);
}
.diag-chain-item.is-cut b,
.diag-chain-item.is-cut small { color: var(--red-deep); }
.diag-arrow {
  color: var(--ink-3);
  font-size: 16px;
  flex: none;
}
.diag-chain--hash .diag-arrow.is-cut { color: var(--red); }

.diag-note {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--ink-3);
}
.diag-note--red { color: var(--red-deep); }

/* degradation grid (fig. 5) */
.diag-degrid {
  display: grid;
  gap: 14px;
}
.degrow {
  display: grid;
  gap: 8px;
}
.degcell {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 10px 14px;
  font-size: 14.5px;
  color: var(--ink);
}
.degcell b { display: block; color: var(--ink); font-size: 15.5px; }
.degcell small { display: block; color: var(--ink-3); font-size: 13px; }
.degcell--lose { border-color: var(--amber); background: var(--amber-soft); }
.degcell--keep { border-color: var(--mint); background: var(--mint-soft); }
.degtag {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.degcell--lose .degtag { color: var(--amber-deep); }
.degcell--keep .degtag { color: var(--mint-deep); }

@media (min-width: 720px) {
  .diag { padding: 30px 28px; }
  .diag-split {
    /* the middle column is wide enough for the boundary pill so it
       never overlaps panel content */
    grid-template-columns: 1fr 210px 1fr;
    align-items: stretch;
  }
  .diag-divider {
    margin: 0 auto;
    width: 0;
    border-top: none;
    border-left: 3px dashed var(--line-strong);
  }
  .diag-divider span {
    /* keep the pill horizontal over the vertical dashed line */
    max-width: none;
  }
  .degrow { grid-template-columns: 1fr 1.25fr 1.55fr; }
}

/* ---------- sections ---------- */

.section { padding: 72px 0 8px; }

.section-head { margin-bottom: 36px; max-width: 760px; }

.section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-index::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--mint);
  transform: rotate(45deg);
}
.section-index::after {
  content: "";
  flex: 1;
  max-width: 120px;
  border-top: 2px dashed var(--line-strong);
}

.section h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.section-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 64ch;
}

/* alternating band for visual rhythm */
.section-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 64px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.section-band + .section { padding-top: 72px; }

/* ---------- cards ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 18px;
  box-shadow: var(--shadow-card);
}
.card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 2px 4px rgba(10, 36, 99, 0.06), 0 14px 36px rgba(10, 36, 99, 0.10);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p { font-size: 15.5px; color: var(--ink-2); margin-bottom: 8px; }

.card-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 9px;
  border-radius: 5px;
  margin-bottom: 14px;
}
.tag-mint  { background: var(--mint-soft);  color: var(--mint-deep); }
.tag-amber { background: var(--amber-soft); color: var(--amber-deep); }
.tag-red   { background: var(--red-soft);   color: var(--red-deep); }
.tag-blue  { background: var(--blue-soft);  color: var(--blue-deep); }
.tag-gray  { background: var(--bg);         color: var(--ink-3); border: 1px solid var(--line); }

/* ---------- problem section ---------- */

.problem-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}

.problem-card { border-top: 4px solid var(--line-strong); }
.problem-card .card-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.problem-card--bad { border-top-color: var(--red); }
.problem-card--bad .card-label { color: var(--red-deep); }
.problem-card--good {
  grid-column: 1 / -1;
  border-top-color: var(--mint);
  background: linear-gradient(180deg, var(--mint-soft), var(--surface) 55%);
}
.problem-card--good .card-label { color: var(--mint-deep); }

/* icon bullet lists inside the problem cards —
   ✕ / ✓ in a circle, same mechanism as .diag-checklist */
.problem-points {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.problem-points li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.5;
}
.problem-points li::before {
  position: absolute;
  left: 0;
  top: 1px;  /* (14.5px × 1.5 line box − 20px circle) / 2 — centered on the first text line */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.problem-points--bad li::before {
  content: "\2715";  /* ✕ */
  border: 2px solid var(--red);
  color: var(--red-deep);
  background: var(--red-soft);
}
.problem-points--good li::before {
  content: "\2713";  /* ✓ */
  border: 2px solid var(--green);
  color: var(--green);
  background: var(--green-soft);
  top: 2px;  /* (16px × 1.5 line box − 20px circle) / 2 */
}
.problem-points--good { gap: 10px; }
.problem-points--good li { font-size: 16px; }
@media (min-width: 861px) {
  .problem-card--good { display: flex; align-items: center; gap: 36px; }
  .problem-good-head { flex: 0 0 38%; }
  .problem-card--good .problem-points { flex: 1; margin-top: 0; }
}

.problem-note {
  border-left: 4px solid var(--amber);
  background: var(--amber-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--ink-2);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.problem-note strong { color: var(--ink); }

/* ---------- how it works: timeline ---------- */

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

.step {
  position: relative;
  padding: 0 0 30px 56px;
}
/* dashed connector — the "offline boundary" motif */
.step::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 38px;
  bottom: 0;
  border-left: 2px dashed var(--line-strong);
}
.step:last-child::before { display: none; }

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transform: rotate(45deg);
  background: var(--surface);
  border: 2px solid var(--mint);
}
.step-num span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--mint-deep);
}

.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { font-size: 16px; max-width: 70ch; margin-bottom: 0; }

/* ---------- features grid: bento on wide screens ---------- */

.features-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

/* .card--wide spans two columns only on the 3-column layout (≥1080px);
   see the media query at the bottom of the file */

/* ---------- scenarios ---------- */

.scenarios-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.scenario { display: flex; flex-direction: column; }
.scenario .figure { margin-top: auto; }
.scenario .figure { margin-top: 18px; }

/* in-card CTA link (e.g. link to a docs section) */
.scenario .card-link {
  margin-top: auto;
  padding-top: 14px;
  align-self: flex-start;
  font-weight: 600;
  color: var(--mint-deep);
  border-bottom: 2px solid transparent;
}
.scenario .card-link:hover { border-bottom-color: var(--mint); }
.scenario .card-link::after {
  content: "\2197";  /* ↗ */
  font-size: 0.78em;
  margin-left: 3px;
  color: var(--ink-3);
}
.scenario .card-link:hover::after { color: var(--mint-deep); }

/* ---------- comparison table ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.compare {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 15.5px;
}
.compare caption {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.compare th, .compare td {
  text-align: left;
  vertical-align: top;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: none; }

.compare thead th {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg);
  border-bottom: 2px solid var(--line-strong);
}
.compare thead th.col-tessera {
  color: var(--mint-deep);
  background: var(--mint-soft);
}
.compare tbody th {
  font-weight: 600;
  color: var(--ink);
  width: 20%;
}
.compare td.col-them { color: var(--ink-2); width: 25%; }
.compare td.col-tessera {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(234, 243, 250, 0.15), rgba(234, 243, 250, 0.55));
  border-right: 3px solid var(--mint);
  font-weight: 500;
}

/* On small screens the comparison table becomes a stack of cards:
   one card per criterion, labelled cells inside (no JS, data-label). */
@media (max-width: 719.98px) {
  .table-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
  .compare { min-width: 0; }
  .compare, .compare tbody { display: block; }
  .compare thead { display: none; }
  .compare tbody { display: grid; gap: 14px; }
  .compare tbody tr {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
  }
  .compare tbody th,
  .compare tbody td,
  .compare tbody td.col-them,
  .compare tbody td.col-tessera {
    display: block;
    width: auto;
    border-bottom: none;
    padding: 10px 18px;
  }
  .compare tbody th {
    padding: 14px 18px 4px;
    font-size: 16.5px;
    font-weight: 700;
  }
  .compare tbody td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 2px;
  }
  .compare tbody td.col-tessera {
    padding-bottom: 16px;
    background: linear-gradient(180deg, rgba(234, 243, 250, 0.55), rgba(234, 243, 250, 0.15));
  }
  .compare tbody td.col-tessera::before { color: var(--mint-deep); }
}

/* ---------- resilience ---------- */

.resilience-claim {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--ink);
  max-width: 30ch;
  line-height: 1.3;
}
.resilience-claim .mint { color: var(--mint); }

/* ---------- open core ---------- */

.opencore-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

.opencore-col { padding-bottom: 24px; }
.opencore-col h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 19px;
}
.opencore-col .lic {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.opencore-col--open { border-top: 4px solid var(--mint); }
.opencore-col--commercial { border-top: 4px solid var(--amber); }

.opencore-col ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.opencore-col li {
  position: relative;
  padding: 9px 0 9px 26px;
  border-bottom: 1px dashed var(--line);
  font-size: 15.5px;
}
.opencore-col li:last-child { border-bottom: none; }
.opencore-col li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  transform: rotate(45deg);
}
.opencore-col--open li::before { background: var(--mint); }
.opencore-col--commercial li::before { background: var(--amber); }

/* roadmap badge: muted, dashed — designed but not shipped yet */
.badge-roadmap {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg);
  border: 1px dashed var(--line-strong);
  border-radius: 5px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: 1px;
  white-space: nowrap;
}
.badge-roadmap + .badge-roadmap { margin-left: 4px; }
.opencore-col li:has(.badge-roadmap)::before { opacity: 0.45; }

.opencore-principle {
  border-left: 4px solid var(--mint);
  background: var(--mint-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--ink);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- final CTA ---------- */

.final-cta {
  margin-top: 80px;
  background: var(--ink);
  color: #C8D2E0;
  padding: 80px 0;
  text-align: center;
}
.final-cta .tile { width: 18px; height: 18px; margin-bottom: 26px; }
.final-cta h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.final-cta p {
  max-width: 56ch;
  margin: 0 auto 32px;
  font-size: 17px;
  color: #A8B5C7;
}
.final-cta .cta-row { justify-content: center; margin-bottom: 0; }
.final-cta .btn-secondary {
  background: transparent;
  color: #E8EDF4;
  border-color: #4A586C;
}
.final-cta .btn-secondary:hover { border-color: #E8EDF4; color: #FFFFFF; }
.final-cta .cta-mail {
  margin: 22px auto 0;
  font-size: 15px;
  color: #A8B5C7;
}
.final-cta .cta-mail a {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #C8D2E0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta .cta-mail a:hover { color: #FFFFFF; }

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

.site-footer {
  background: var(--ink);
  border-top: 1px solid #2A3648;
  padding: 26px 0 34px;
  color: #8C99AB;
  font-size: 14.5px;
}
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}
.site-footer a { color: #C8D2E0; }
.site-footer a:hover { color: #FFFFFF; }
.site-footer .muted { color: var(--ink-3); }
.footer-spacer { flex: 1; }
.site-footer .lang-switch { border-color: #3A4760; }
.site-footer .lang-switch a { color: #A8B5C7; }
.site-footer .lang-switch a:hover { background: #2A3648; color: #FFFFFF; }
.site-footer .lang-switch span[aria-current="true"] { background: var(--bg); color: var(--ink); }

/* ---------- language redirect page ---------- */

.lang-gate {
  min-height: 100vh;   /* fallback for browsers without dvh */
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.lang-gate .tile { width: 20px; height: 20px; margin: 0 auto 28px; }
.lang-gate h1 { font-size: 30px; margin-bottom: 8px; }
.lang-gate p { color: var(--ink-3); margin-bottom: 28px; }
.lang-gate .cta-row { justify-content: center; }

/* ============================================================
   Responsive: mobile-first, breakpoints ~720 / ~1080
   ============================================================ */

@media (min-width: 720px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .scenarios-grid { grid-template-columns: repeat(2, 1fr); }
  .opencore-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 72px; }
  .steps { gap: 0; }
}

@media (min-width: 1080px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; }
  .features-grid .card--wide { grid-column: span 2; }
  .hero { padding-top: 88px; }
  .section { padding-top: 88px; }
  .section-band { padding-top: 88px; padding-bottom: 88px; }
}

/* ============================================================
   Product pages (Access / Codes / Census) — 2026-07-05
   Line color coding: Access = mint, Codes = amber, Census = blue.
   ============================================================ */

.eyebrow--amber { color: var(--amber-deep); }
.eyebrow--amber::after { background: var(--amber); }
.eyebrow--blue { color: var(--blue-deep); }
.eyebrow--blue::after { background: var(--blue); }

/* KPI triple under product hero */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 0;
}
.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-card);
}
.kpi b {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 4px;
}
.kpi--mint  b { color: var(--mint-deep); }
.kpi--amber b { color: var(--amber-deep); }
.kpi--blue  b { color: var(--blue-deep); }
.kpi span { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; }

/* chips row */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  white-space: nowrap;
}
.chip b { color: var(--ink); font-weight: 700; }

/* delegation chain (Access) */
.pchain {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
}
.pchain-node {
  flex: 5;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.pchain-node--owner  { border-top-color: var(--ink); }
.pchain-node--org    { border-top-color: var(--amber); }
.pchain-node--eng    { border-top-color: var(--blue); }
.pchain-node--device { border-top-color: var(--mint); background: var(--mint-soft); }
.pchain-node h3 { font-size: 16px; margin-bottom: 6px; overflow-wrap: break-word; hyphens: auto; }
.pchain-node p { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; flex: 1; margin-bottom: 8px; overflow-wrap: break-word; hyphens: auto; }
.pchain-cap {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--bg);
  color: var(--ink-3);
}
.pchain-node--device .pchain-cap { background: #FFFFFF; color: var(--mint-deep); }
.pchain-arrow {
  flex: 6;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 8px 0;
}
.pchain-arrow svg.taper {
  width: 100%;
  height: 30px;
  flex-shrink: 0;
  display: block;
  margin-bottom: 12px;
}
.pchain-grant {
  background: var(--surface);
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.pchain-grant h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.pchain-grant--org h4 { color: var(--amber-deep); }
.pchain-grant--eng h4 { color: var(--blue-deep); }
.pchain-grant--login h4 { color: var(--mint-deep); }
.pchain-grant ul { margin: 0; padding: 0; list-style: none; }
.pchain-grant li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 13px;
  position: relative;
  overflow-wrap: break-word;
  hyphens: auto;
}
.pchain-grant li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--ink-3);
  font-size: 0.85em;
}
.pchain-pct {
  text-align: center;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-3);
}

/* pipeline (Census) */
.pipe {
  display: flex;
  align-items: stretch;
  margin-top: 8px;
}
.pipe-step {
  flex: 1;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.pipe-step h3 { font-size: 17px; margin: 4px 0 6px; }
.pipe-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 1px;
}
.pipe-step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; flex: 1; margin-bottom: 10px; }
.pipe-cmd {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  padding: 4px 10px;
  border-radius: 5px;
}
.pipe-arrow {
  display: flex;
  align-items: center;
  padding: 0 6px;
  color: var(--blue);
  flex-shrink: 0;
  opacity: 0.45;
}

/* note band under schemas */
.note-band {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.note-band--mint  { background: var(--mint-soft);  border: 1px solid var(--mint); }
.note-band--blue  { background: var(--blue-soft);  border: 1px solid var(--blue); }
.note-band--mint  strong { color: var(--mint-deep); }
.note-band--blue  strong { color: var(--blue-deep); }
.note-band svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.note-band--mint svg { color: var(--mint-deep); }
.note-band--blue svg { color: var(--blue-deep); }

/* cross-product banner links */
.xlink {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.xlink:hover { color: var(--ink); }
.xlink svg { flex-shrink: 0; width: 20px; height: 20px; }
.xlink-go { margin-left: auto; font-weight: 700; white-space: nowrap; }
.xlink--mint  { background: var(--mint-soft);  border: 1px solid var(--mint); }
.xlink--mint  b, .xlink--mint  .xlink-go, .xlink--mint  svg { color: var(--mint-deep); }
.xlink--amber { background: var(--amber-soft); border: 1px solid var(--amber); }
.xlink--amber b, .xlink--amber .xlink-go, .xlink--amber svg { color: var(--amber-deep); }
.xlink--blue  { background: var(--blue-soft);  border: 1px solid var(--blue); }
.xlink--blue  b, .xlink--blue  .xlink-go, .xlink--blue  svg { color: var(--blue-deep); }

/* product cards on the home page */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--ink-2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(10, 36, 99, 0.06), 0 14px 36px rgba(10, 36, 99, 0.10);
  color: var(--ink-2);
}
.product-card--mint  { border-top-color: var(--mint); }
.product-card--amber { border-top-color: var(--amber); }
.product-card--blue  { border-top-color: var(--blue); }
.product-card h3 { font-size: 20px; margin-bottom: 2px; }
.product-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.product-card--mint  .product-kicker { color: var(--mint-deep); }
.product-card--amber .product-kicker { color: var(--amber-deep); }
.product-card--blue  .product-kicker { color: var(--blue-deep); }
.product-card p { font-size: 14.5px; line-height: 1.55; flex: 1; }
.product-card .product-outcome {
  flex: 0 0 auto;
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 600;
}
.card-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}
.chain-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.card-chain svg { color: var(--ink-3); flex-shrink: 0; transform: rotate(90deg); }
.chain-pill {
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}
.product-card--mint  .chain-pill { background: var(--mint-soft);  color: var(--mint-deep); }
.product-card--amber .chain-pill { background: var(--amber-soft); color: var(--amber-deep); }
.product-card--blue  .chain-pill { background: var(--blue-soft);  color: var(--blue-deep); }
.product-more { font-weight: 700; font-size: 14.5px; }
.product-card--mint  .product-more { color: var(--mint-deep); }
.product-card--amber .product-more { color: var(--amber-deep); }
.product-card--blue  .product-more { color: var(--blue-deep); }
.product-picker {
  margin-top: 22px;
  border-left: 4px solid var(--mint);
  background: var(--mint-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  color: var(--ink-2);
}
.picker-title { font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.picker-list { list-style: none; margin: 0 0 10px; padding: 0; display: grid; gap: 6px; }
.picker-list b { color: var(--ink); font-weight: 600; }
.picker-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.picker-list a:hover { color: var(--mint-deep); }
.picker-cta {
  max-width: 860px;
  margin: 18px auto 0;
  padding: 26px 24px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.picker-cta-title { font-size: 20px; font-weight: 700; color: var(--ink); }
.picker-cta .cta-row { justify-content: center; margin-top: 14px; }
.picker-cta .hero-mail { margin-top: 12px; }

/* schema figure wrapper (inline SVG diagrams from decks) */
.schema-figure { margin: 8px 0 0; }
.schema-figure svg { width: 100%; height: auto; }

@media (max-width: 1080px) {
  .pchain { flex-direction: column; }
  .pchain-arrow { padding: 12px 0 0; }
  .pchain-arrow svg.taper { display: none; }
}
@media (max-width: 860px) {
  .kpi-row { grid-template-columns: 1fr; }
  .chip { white-space: normal; height: auto; min-height: 34px; padding: 6px 15px; line-height: 1.35; }
  .pipe { flex-direction: column; }
  .pipe-arrow { justify-content: center; padding: 4px 0; transform: rotate(90deg); }
}
@media (min-width: 861px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  /* keep kicker/title/body rows aligned across the three cards */
  @supports (grid-template-rows: subgrid) {
    .product-card {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 6;
      row-gap: 0;
    }
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  a, .btn, .card, .skip-link { transition: none; }
  .btn:hover, .btn:active, .card:hover { transform: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- print ---------- */

@media print {
  .site-header, .final-cta .cta-row, .cta-row { display: none; }
  body { background: #FFFFFF; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
