/* ==========================================================================
   Thamra — marketing site.

   Built on the tokens in base.css so the page and the product read as one
   thing. Everything directional uses logical properties — margin-inline,
   padding-inline, inset-inline — so switching the document to dir="rtl"
   mirrors the layout without a second stylesheet.
   ========================================================================== */

body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.55;
  margin: 0;
}

:root[dir="rtl"] body {
  /* Latin UI faces have poor Arabic coverage; let the platform choose. */
  font-family: "SF Arabic", "Geeza Pro", "Noto Naskh Arabic", "Segoe UI", Tahoma, sans-serif;
}

.shell {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
}

.shell--narrow {
  max-width: 780px;
}

.skip {
  position: absolute;
  inset-inline-start: -9999px;
}
.skip:focus {
  inset-inline-start: 12px;
  top: 12px;
  z-index: 60;
  background: var(--panel);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

/* ---------- brand ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 9px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-ui);
}

.brand__name {
  font-weight: 650;
  letter-spacing: -0.2px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name span {
  font-size: var(--step-1);
  font-weight: 450;
  color: var(--ink-3);
  letter-spacing: 0;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.nav.is-stuck {
  border-bottom-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}

.nav__links {
  display: flex;
  gap: 22px;
  margin-inline-start: 14px;
  flex: 1;
}

.nav__links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: var(--step-2);
  white-space: nowrap;
}

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

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding-inline: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--ink-2);
  cursor: pointer;
  font: inherit;
  font-size: var(--step-1);
}

.icon-btn:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-weight: 550;
  font-size: var(--step-2);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.06s, background 0.15s, border-color 0.15s;
}

.btn:hover {
  border-color: var(--line-strong);
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
}

.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--ink-2);
}
.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--line);
}

.btn--lg {
  padding: 13px 22px;
  font-size: var(--step-3);
  border-radius: var(--radius);
}

/* ---------- shared section furniture ---------- */

.eyebrow {
  margin: 0 0 12px;
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--accent-ink);
}

/* base.css sets the eyebrow in the mono face, which is right for Latin and
   wrong for Arabic: the mono stack has no Arabic, so the browser falls back
   glyph by glyph and the letters stop joining. Tracking and uppercasing go
   with it — neither means anything in Arabic script. */
:root[dir="rtl"] .eyebrow {
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.section,
.band {
  padding-block: clamp(56px, 8vw, 96px);
}

.band {
  background: var(--sunken);
  border-block: 1px solid var(--line);
}

.section__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3.2vw, var(--step-6));
  line-height: 1.22;
  letter-spacing: -0.5px;
  font-weight: 650;
  max-width: 22ch;
}

.section__lede {
  margin: 0 0 34px;
  color: var(--ink-2);
  font-size: var(--step-3);
  max-width: 62ch;
}

.grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.hero {
  padding-block: clamp(44px, 7vw, 84px) clamp(48px, 8vw, 96px);
}

.hero__inner {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 680;
}

:root[dir="rtl"] .hero h1 {
  letter-spacing: 0;
  line-height: 1.25;
}

.lede {
  margin: 0 0 28px;
  color: var(--ink-2);
  font-size: var(--step-3);
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin: 18px 0 0;
  font-size: var(--step-1);
  color: var(--ink-3);
}

/* product sketch */

.hero__panel {
  min-width: 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 20px;
}

.panel__top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--step-1);
  color: var(--ink-3);
  margin-bottom: 16px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.stat {
  background: var(--sunken);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.stat b {
  display: block;
  font-size: var(--step-5);
  font-weight: 650;
  letter-spacing: -0.5px;
}

.stat span {
  font-size: var(--step-0);
  color: var(--ink-3);
}

.rep {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: var(--step-1);
  color: var(--ink-2);
  margin-bottom: 6px;
}

.rep i {
  font-style: normal;
  color: var(--ink-3);
}
.rep i b {
  color: var(--ink);
}

.bar {
  height: 6px;
  border-radius: 99px;
  background: var(--sunken);
  margin-bottom: 16px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--accent);
}

/* ---------- notes & modules ---------- */

.note h3,
.mod h3 {
  margin: 0 0 8px;
  font-size: var(--step-3);
  font-weight: 620;
  letter-spacing: -0.2px;
}

.note p,
.mod p {
  margin: 0;
  color: var(--ink-2);
  font-size: var(--step-2);
}

.note--edge {
  border-inline-start: 2px solid var(--accent);
  padding-inline-start: 16px;
}

.mod {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.15s, transform 0.15s;
}

.mod:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.mod__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  margin-bottom: 14px;
}

/* ---------- steps ---------- */

.steps {
  counter-reset: s;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  counter-increment: s;
  padding-top: 46px;
  position: relative;
}

.steps li::before {
  content: counter(s);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 650;
  font-size: var(--step-2);
}

.steps b {
  display: block;
  margin-bottom: 6px;
  font-size: var(--step-3);
  font-weight: 620;
}

.steps span {
  color: var(--ink-2);
  font-size: var(--step-2);
}

/* ---------- offline ---------- */

.offline {
  padding-block: clamp(56px, 8vw, 96px);
  background: var(--sunken);
  border-block: 1px solid var(--line);
}

.offline__inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .offline__inner {
    grid-template-columns: 1.6fr 0.4fr;
  }
}

.offline__glyph {
  width: min(160px, 40vw);
  height: auto;
  justify-self: center;
  color: var(--accent);
  opacity: 0.5;
}

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

.pills li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: var(--step-1);
  color: var(--ink-2);
}

/* ---------- cta ---------- */

.cta {
  padding-block: clamp(56px, 8vw, 88px);
}

.cta__inner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  max-width: 820px;
}

.cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, var(--step-5));
  letter-spacing: -0.4px;
  font-weight: 650;
}

.cta p {
  margin: 0 0 26px;
  color: var(--ink-2);
  font-size: var(--step-3);
}

.cta .hero__actions {
  justify-content: center;
}

/* ---------- faq ---------- */

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

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 570;
  font-size: var(--step-3);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

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

.faq__item summary::after {
  content: "+";
  color: var(--ink-3);
  font-weight: 400;
  font-size: 1.35em;
  line-height: 1;
  flex: none;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 0 0 20px;
  color: var(--ink-2);
  font-size: var(--step-2);
  max-width: 68ch;
}

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

.foot {
  border-top: 1px solid var(--line);
  padding-block: 34px;
}

.foot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.foot__links {
  display: flex;
  gap: 20px;
}

.foot__links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: var(--step-2);
}

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

.foot small {
  color: var(--ink-3);
  font-size: var(--step-1);
}

/* ---------- small screens ---------- */

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
  .nav__inner {
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .nav__actions .btn--ghost {
    display: none;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* ==========================================================================
   Homepage v2 — the structures the richer page added.

   Everything below is expressed in the tokens from base.css and in logical
   properties, so a theme change is a values change and Arabic mirrors without
   a second stylesheet.
   ========================================================================== */

/* ---------- icons ----------
   One sprite, referenced with <use>. Sized here rather than per instance so a
   change of scale is one edit. */

.ico {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: currentColor;
}

.ico--lg {
  width: 22px;
  height: 22px;
}

/* ---------- reveal on scroll ----------
   The hiding rule is scoped to .js-reveal, which site.js puts on <html>. With
   the script blocked — or while printing — nothing is ever hidden. */

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--d, 0) * 70ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

.hero__grid {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 76px) clamp(48px, 8vw, 90px);
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.02fr 0.98fr;
  }
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.9vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 680;
}

:root[dir="rtl"] .hero__title {
  letter-spacing: 0;
  line-height: 1.26;
}

.hero__lede {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: var(--step-3);
  max-width: 56ch;
}

.hero__sub {
  margin: 0 0 26px;
  color: var(--ink-3);
  font-size: var(--step-2);
  max-width: 58ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- sign in, in the hero ----------
   Laid out with logical properties like the rest of this file, so Arabic
   mirrors it without a second rule. */

.signin-inline {
  margin-block-start: 24px;
  padding: 18px;
  max-width: 34rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.signin-inline__title {
  margin: 0 0 12px;
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--ink);
}

/* The two fields share a row and the button takes the next one whole. Three
   across would fit the card but not the hero column it sits in, and a button
   that only sometimes clears the wrap looks like a mistake rather than a
   layout. Below 560px the fields stack too — a password field at half a
   phone's width is not a field. */
.signin-inline__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signin-inline__fields .input {
  flex: 1 1 12rem;
  width: auto;
}

.signin-inline__fields .btn {
  flex: 1 0 100%;
}

@media (max-width: 560px) {
  .signin-inline__fields .input {
    flex: 1 1 100%;
  }
}

.signin-inline__error {
  margin: 10px 0 0;
  font-size: var(--step-1);
  color: var(--hot);
}

.signin-inline__alt {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  margin: 12px 0 0;
  font-size: var(--step-1);
  color: var(--ink-3);
}

.signin-inline__alt a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: none;
}

.signin-inline__alt a:hover {
  text-decoration: underline;
}

.signin-inline__sep {
  color: var(--line-strong);
}

.hero__trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0 0;
  font-size: var(--step-1);
  color: var(--ink-3);
  max-width: 54ch;
}

.hero__trust .ico {
  color: var(--accent);
  margin-top: 2px;
}

/* ---------- the product mock ----------
   A rendering of the real screen. Its numbers are the ones sales_kpis
   computes, so the page cannot drift from the product by accident. */

.mock {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  min-width: 0;
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--sunken);
}

.mock__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
}

.mock__title {
  margin-inline-start: 8px;
  font-size: var(--step-1);
  color: var(--ink-2);
  font-weight: 550;
}

.mock__bar .pill {
  margin-inline-start: auto;
}

.mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 14px 4px;
}

.mock__kpi {
  background: var(--sunken);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  min-width: 0;
}

.mock__kpi span {
  display: block;
  font-size: var(--step-0);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

:root[dir="rtl"] .mock__kpi span {
  letter-spacing: 0;
  text-transform: none;
}

.mock__kpi b {
  display: block;
  margin-top: 4px;
  font-size: var(--step-4);
  font-weight: 650;
  letter-spacing: -0.4px;
  /* Figures stay left-to-right and lined up, in either direction. */
  font-variant-numeric: tabular-nums;
  direction: ltr;
  text-align: start;
}

.trend {
  font-style: normal;
  font-size: var(--step-0);
  font-variant-numeric: tabular-nums;
  direction: ltr;
  display: inline-block;
}

/* The glyph carries the direction; colour only reinforces it. */
.trend--up {
  color: var(--accent-ink);
}

.trend--down {
  color: var(--warm);
}

.mock__chart {
  padding: 14px;
}

.mock__chart-head {
  display: block;
  font-size: var(--step-1);
  color: var(--ink-3);
  margin-bottom: 10px;
}

.mock__cols {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 84px;
}

.mock__cols i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: var(--accent);
  opacity: 0.85;
}

.mock__cols i:last-child {
  opacity: 1;
}

.mock__rows {
  padding: 4px 14px 18px;
}

.mock__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: var(--step-1);
  color: var(--ink-2);
  margin-bottom: 5px;
}

.mock__row b {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  direction: ltr;
}

.mock__bar-line {
  height: 5px;
  border-radius: 99px;
  background: var(--sunken);
  margin-bottom: 12px;
  overflow: hidden;
}

.mock__bar-line i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 99px;
  background: var(--accent);
}

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

.band {
  padding-block: clamp(52px, 7.5vw, 92px);
}

.band--sunken {
  background: var(--sunken);
  border-block: 1px solid var(--line);
}

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

@media (min-width: 700px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1060px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- feature row (icon beside copy) ---------- */

.feat {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.feat .ico {
  color: var(--accent);
  margin-top: 3px;
}

.feat h3 {
  margin: 0 0 5px;
  font-size: var(--step-2);
  font-weight: 620;
}

.feat p {
  margin: 0;
  color: var(--ink-2);
  font-size: var(--step-2);
}

/* ---------- industry tiles ---------- */

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

@media (min-width: 700px) {
  .tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tiles li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  font-size: var(--step-2);
  font-weight: 550;
  color: var(--ink-2);
}

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

.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  border-top: 3px solid var(--accent);
}

.plan h3 {
  margin: 0 0 8px;
  font-size: var(--step-2);
  font-weight: 620;
}

.plan p {
  margin: 0;
  color: var(--ink-2);
  font-size: var(--step-2);
}

/* ---------- steps ---------- */

.steps__when {
  display: inline-block;
  margin-bottom: 8px;
  font-size: var(--step-0);
  font-weight: 650;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border-radius: 99px;
  padding: 3px 10px;
}

:root[dir="rtl"] .steps__when {
  letter-spacing: 0;
  text-transform: none;
}

.steps li {
  padding-top: 0;
}

.steps li::before {
  display: none;
}

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

.foot__grid {
  display: grid;
  gap: 28px;
  padding-block: 40px 28px;
}

@media (min-width: 760px) {
  .foot__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}

.foot__brand p {
  margin: 12px 0 0;
  color: var(--ink-3);
  font-size: var(--step-1);
  max-width: 32ch;
}

.foot__col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot__col h4 {
  margin: 0 0 3px;
  font-size: var(--step-0);
  font-weight: 650;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-3);
}

:root[dir="rtl"] .foot__col h4 {
  letter-spacing: 0;
  text-transform: none;
}

.foot__col a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: var(--step-2);
}

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

.foot__base {
  border-top: 1px solid var(--line);
  padding-block: 18px;
}

/* ---------- print ----------
   The page is a document too. Chrome goes, nothing stays hidden behind an
   observer that will never fire on paper. */

@media print {
  .nav,
  .skip,
  .hero__cta,
  .signin-inline,
  .cta,
  .foot__col {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .band,
  .hero {
    padding-block: 12px;
    background: #fff;
    border: 0;
  }

  .mod,
  .plan,
  .mock,
  .tiles li {
    break-inside: avoid;
    box-shadow: none;
  }
}
