/* Mooov.money - landing page.
 * Design source: Figma file MFiE8pN4oCf07sOAjf80Gs (node 1:2).
 * Plain CSS, no preprocessor. Tokens at :root, sections grouped below.
 */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-dark: #0a1330;
  --border: #e7e9f1;
  --border-soft: #eef0f7;
  --text: #0b1020;
  --text-strong: #16203a;
  --text-body: #5d6680;
  --text-muted: #8a94a6;
  --text-dark-body: #a8b2cc;
  --text-dark-strong: #dee3f5;
  --success-bg: #e9f8f1;
  --success-fg: #0f8a5e;
  --gradient: linear-gradient(90deg, #8717d5 0%, #6771ce 50%, #47cbc7 100%);
  --gradient-soft: linear-gradient(
    90deg,
    rgba(135, 23, 213, 0.08) 0%,
    rgba(103, 113, 206, 0.08) 50%,
    rgba(71, 203, 199, 0.08) 100%
  );
  --shadow-sm: 0 1px 2px rgba(15, 20, 41, 0.04);
  --shadow-md: 0 2px 8px rgba(15, 20, 41, 0.04);
  --shadow-lg: 0 10px 30px rgba(15, 20, 41, 0.08);
  --shadow-xl: 0 10px 30px rgba(15, 20, 41, 0.18);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --container: 1180px;
  --side-pad: clamp(24px, 6vw, 130px);
  --section-y: clamp(56px, 9vw, 88px);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--side-pad) * 2);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--text-strong);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Reusable bits ---------- */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.btn {
  --btn-fg: var(--text-strong);
  --btn-bg: #fff;
  --btn-border: var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: 600 15px/1 var(--font);
  border: 1px solid var(--btn-border);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:focus-visible {
  outline: 2px solid #6771ce;
  outline-offset: 2px;
}
.btn--sm {
  padding: 10px 16px;
  font-size: 14.5px;
}
.btn--primary {
  --btn-fg: #fff;
  --btn-bg: var(--gradient);
  --btn-border: transparent;
  background: var(--gradient);
}
.btn--primary:hover {
  box-shadow: 0 8px 20px rgba(103, 113, 206, 0.4);
}
.btn--ghost {
  --btn-fg: var(--text-strong);
  --btn-bg: #fff;
  --btn-border: var(--border);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-strong);
  font-weight: 600;
  font-size: 13.5px;
}
.link-arrow:hover {
  color: #6771ce;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.section-head h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-head p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.55;
  max-width: 680px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b3bdd1;
  display: inline-block;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.pill--live {
  background: var(--success-bg);
  color: var(--success-fg);
}
.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1ac17f;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo__img {
  display: block;
  height: 32px;
  width: auto;
  align-self: center;
}
.logo__tld {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-body);
  letter-spacing: -0.01em;
  align-self: center;
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-strong);
}
.nav__links a:hover {
  color: #6771ce;
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__login {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-strong);
}
.nav__login:hover {
  color: #6771ce;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px var(--side-pad) 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-strong);
}
.nav__mobile-login {
  color: var(--text-body) !important;
}

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

.hero {
  padding-top: 64px;
  padding-bottom: 40px;
}
.hero__row {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 520px);
  gap: 48px;
  align-items: center;
}
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}
.hero__lede {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.52;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.hero__trust-label {
  margin-top: 18px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-body);
}
.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
}

/* Hero art: orb image + floating proof chips */

.hero-art {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  isolation: isolate;
}
.hero-art__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 30px 60px rgba(103, 113, 206, 0.18));
}
.hero-art__pill {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-strong);
}
.hero-art__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1ac17f;
  box-shadow: 0 0 0 4px rgba(26, 193, 127, 0.18);
}
.hero-art__chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.hero-art__chip-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.01em;
}
.hero-art__chip-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.05;
}
.hero-art__chip-delta {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--success-fg);
}
.hero-art__chip--approval {
  top: 22%;
  left: -18px;
}
.hero-art__chip--savings {
  bottom: 16%;
  right: -18px;
}

/* ---------- Expertise ---------- */

.expertise {
  padding: var(--section-y) 0;
}
.expertise > .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 8px;
}
.value__icon {
  width: 60px;
  height: 60px;
}
.value h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.value p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
  max-width: 240px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.feature p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
  flex: 1;
}
.feature .link-arrow {
  margin-top: 8px;
}

/* ---------- Why expertise ---------- */

.why {
  background: var(--bg-soft);
  padding: var(--section-y) 0;
}
.why__row {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.why__left h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.why__left p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 18px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stat__icon {
  width: 48px;
  height: 48px;
}
.stat__value {
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat__label {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-body);
  max-width: 160px;
}

/* ---------- Orchestration ---------- */

.orchestration {
  padding: var(--section-y) 0;
}
.orchestration > .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.orch-box {
  background: var(--bg-soft);
  border-radius: var(--radius-2xl);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.orch-flow {
  display: grid;
  grid-template-columns: 160px 15px 1fr 15px 160px;
  gap: 14px;
  align-items: stretch;
}
.orch-node {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.orch-node__title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-strong);
}
.orch-node__caption {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-body);
}
.orch-dots {
  width: 100%;
  height: 3px;
  align-self: center;
}
.orch-layer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.orch-layer__eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6771ce;
  text-align: center;
}
.orch-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.orch-step {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.orch-step p {
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-strong);
}
.orch-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.orch-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-strong);
}

/* ---------- Reach ---------- */

.reach {
  padding: 40px 0 var(--section-y);
}
.reach__row {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.reach__left h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.reach__left p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 18px;
}
.reach__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reach__map {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}
.reach__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.reach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.reach-card img {
  margin-bottom: 4px;
}
.reach-card__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.reach-card__value {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.reach-card__caption {
  font-size: 12px;
  color: var(--text-body);
}

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

.cta {
  padding: 80px 0;
}
.cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 24px;
  align-items: center;
}
.cta-card__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-card__left h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.cta-card__left p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}
.cta-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cta-card__art {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  justify-self: end;
}

/* ---------- Verticals (dark) ---------- */

.verticals {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0;
}
.verticals__row {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.verticals__left h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}
.verticals__left p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dark-body);
  max-width: 340px;
}
.verticals__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vert-col__title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 18px;
}
/* When the section's two-column body shares one eyebrow ("PROCESSING")
   we drop the per-column titles and let the eyebrow span the grid.
   Without `grid-column: 1 / -1` it would land in cell A and shove
   column B's first item up against the heading. */
.vert-col__title--solo {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.vert-col ul {
  display: flex;
  flex-direction: column;
}
.vert-col li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-dark-strong);
}
.vert-col li:last-child {
  border-bottom: 0;
}

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

.footer {
  padding: 64px 0 32px;
  background: #fff;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(5, minmax(0, 1fr));
  gap: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 260px;
}
.footer__brand p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-body);
}
.logo--footer .logo__img {
  height: 28px;
}
.logo--footer .logo__tld {
  font-size: 12px;
  margin-top: 3px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__col a {
  font-size: 13.5px;
  color: var(--text-body);
  padding: 3px 0;
}
.footer__col a:hover {
  color: var(--text-strong);
}
.footer__title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__base p {
  font-size: 12.5px;
  color: var(--text-body);
}
.footer__links {
  display: flex;
  gap: 18px;
}
.footer__links a {
  font-size: 12.5px;
  color: var(--text-body);
}
.footer__links a:hover {
  color: var(--text-strong);
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
  .hero__row {
    grid-template-columns: 1fr;
  }
  .hero-art {
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-art__chip--approval {
    left: 0;
  }
  .hero-art__chip--savings {
    right: 0;
  }
  .values,
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .why__row,
  .reach__row,
  .verticals__row {
    grid-template-columns: 1fr;
  }
  .reach__cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .cta-card__art {
    max-height: 120px;
    justify-self: center;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .orch-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .orch-dots {
    transform: rotate(90deg);
    width: 30px;
    justify-self: center;
  }
  .orch-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .reach__cards {
    grid-template-columns: 1fr;
  }
  .verticals__right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .values,
  .features {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .hero-art__chip {
    min-width: 0;
    padding: 10px 12px;
  }
  .hero-art__chip-value {
    font-size: 20px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__base {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .hero__trust {
    gap: 16px;
  }
}

/* ---------- Reveal animation ---------- */

[data-section] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-section].is-revealed,
[data-section][data-section="nav"] {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-section] {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}
