/* ==========================================================================
   MYI369 — core stylesheet
   Built against DESIGN.md. Read that file before editing this one.
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */

:root {
  /* Canvas & surfaces */
  --canvas:          #08090B;
  --surface:         #101216;
  --surface-raised:  #16181E;
  --surface-sunken:  #050607;

  /* Lines */
  --border:          #232730;
  --border-strong:   #333947;

  /* Text */
  --text:            #F2F4F7;
  --text-secondary:  #99A1AF;
  --text-muted:      #6B7280;

  /* Accent — gold */
  --accent:          #F0B429;
  --accent-hover:    #FFC53D;
  --accent-press:    #D69E2E;
  --accent-soft:     rgba(240, 180, 41, 0.12);
  --accent-line:     rgba(240, 180, 41, 0.32);
  --on-accent:       #0A0A0A;

  /* Trade semantics — RESERVED. Never repurpose for UI feedback. */
  --long:            #16C784;
  --long-soft:       rgba(22, 199, 132, 0.12);
  --short:           #EA3943;
  --short-soft:      rgba(234, 57, 67, 0.12);

  --focus:           #F0B429;

  /* Type */
  --font-display: "Sora", "IBM Plex Sans Arabic", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Inter", "IBM Plex Sans Arabic", ui-sans-serif, system-ui, sans-serif;

  --fs-display: clamp(2.75rem, 6vw, 5rem);
  --fs-h1:      clamp(2.25rem, 4vw, 3.25rem);
  --fs-h2:      clamp(1.75rem, 2.6vw, 2.375rem);
  --fs-h3:      1.375rem;
  --fs-lead:    clamp(1.0625rem, 1.3vw, 1.1875rem);
  --fs-body:    1rem;
  --fs-sm:      0.875rem;
  --fs-xs:      0.75rem;

  /* Spacing ramp — 4px base */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;  --s-5: 24px;
  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;  --s-9: 96px;  --s-10: 128px;

  /* Radius */
  --r-sm: 8px; --r-md: 10px; --r-lg: 14px; --r-xl: 16px; --r-pill: 999px;

  /* Depth — every shadow carries offset AND blur */
  --shadow-1: 0 1px 2px rgba(0,0,0,.4);
  --shadow-2: 0 12px 32px -8px rgba(0,0,0,.65);
  --shadow-3: 0 24px 64px -12px rgba(0,0,0,.8);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur:      240ms;
  --dur-slow: 480ms;

  --container: 1200px;
  --measure: 68ch;
  --header-h: 68px;
}

/* --- 2. Reset ------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--s-5));
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }

button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; padding: 0; }

a { color: inherit; text-decoration: none; }

/* --- 3. Browser surfaces ------------------------------------------------- */
/* The parts we did not draw still carry the design. */

::selection { background: var(--accent); color: var(--on-accent); }

:root { color-scheme: dark; caret-color: var(--accent); }

/* The hidden attribute must win over any component `display`. */
[hidden] { display: none !important; }

/* We ship our own clear button; suppress the UA one so there are not two. */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
input[type="search"] { appearance: none; }

* { scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: var(--r-pill);
  border: 2px solid var(--canvas);
}
::-webkit-scrollbar-thumb:hover { background: #454C5C; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
:focus:not(:focus-visible) { outline: none; }

/* Every price, size and money figure aligns by digit. */
.num, td.num, .price-fig, [data-num] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* --- 4. Typography ------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
  color: var(--text);
}

.display { font-size: var(--fs-display); letter-spacing: -0.035em; line-height: 1.02; }
h1, .h1   { font-size: var(--fs-h1);      letter-spacing: -0.03em;  line-height: 1.08; }
h2, .h2   { font-size: var(--fs-h2);      letter-spacing: -0.022em; line-height: 1.15; font-weight: 650; }
h3, .h3   { font-size: var(--fs-h3);      letter-spacing: -0.015em; line-height: 1.25; font-weight: 600; }

.lead {
  font-size: var(--fs-lead);
  color: var(--text-secondary);
  line-height: 1.6;
  text-wrap: pretty;
  max-width: var(--measure);
}

p { text-wrap: pretty; }
.prose { max-width: var(--measure); }
.prose p + p { margin-top: var(--s-4); }

.t-sm  { font-size: var(--fs-sm); }
.t-xs  { font-size: var(--fs-xs); letter-spacing: .04em; font-weight: 500; }
.t-sec { color: var(--text-secondary); }
.t-mut { color: var(--text-muted); }
.t-acc { color: var(--accent); }
.t-long  { color: var(--long); }
.t-short { color: var(--short); }

/* Arabic: more leading, zero tracking, never uppercase, never letterspaced. */
[dir="rtl"] body,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .display, [dir="rtl"] .h1, [dir="rtl"] .h2, [dir="rtl"] .h3 {
  letter-spacing: 0;
}
[dir="rtl"] body { line-height: 1.85; }
[dir="rtl"] .display { line-height: 1.2; }
[dir="rtl"] h1, [dir="rtl"] .h1 { line-height: 1.3; }
[dir="rtl"] h2, [dir="rtl"] .h2 { line-height: 1.4; }
[dir="rtl"] .lead { line-height: 1.85; }
[dir="rtl"] .t-xs, [dir="rtl"] .badge { letter-spacing: 0; text-transform: none; }

/* --- 5. Layout ----------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
@media (min-width: 900px) { .container { padding-inline: 40px; } }

.section { padding-block: var(--s-9); }
@media (min-width: 900px) { .section { padding-block: var(--s-10); } }

/* More space above a heading than below it. */
.section-head { margin-bottom: var(--s-7); max-width: var(--measure); }
.section-head h2 + .lead { margin-top: var(--s-4); }

.rule { height: 1px; background: var(--border); border: 0; }

.stack > * + * { margin-top: var(--s-4); }
.stack-lg > * + * { margin-top: var(--s-6); }

.grid { display: grid; gap: var(--s-5); }
/* Grid and flex children default to min-width:auto, which lets wide content
   (a scrollable screenshot) push the whole document wider than the viewport.
   In LTR that is merely clipped; in RTL it shoves the page off-screen. */
.grid > * { min-width: 0; }
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

.skip-link {
  position: absolute;
  inset-inline-start: var(--s-4);
  top: -100px;
  z-index: 200;
  background: var(--accent);
  color: var(--on-accent);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  font-weight: 600;
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: var(--s-3); }

/* --- 6. Buttons ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1;
  text-align: center;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn--primary:active { background: var(--accent-press); transform: translateY(0); }

.btn--secondary {
  /* Not transparent: this button sits on the hero artwork, and letting the
     scene show through it made it read as a rendering fault rather than a
     control. Translucent dark keeps the glass feel while staying a surface. */
  background: rgba(16, 18, 22, .72);
  backdrop-filter: blur(6px);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--secondary:hover { background: var(--surface-raised); border-color: var(--accent-line); }
.btn--secondary:active { background: var(--surface); transform: translateY(0); }

.btn--ghost { color: var(--text-secondary); padding-inline: var(--s-3); }
.btn--ghost:hover { color: var(--text); }

.btn--lg { min-height: 52px; padding: var(--s-4) var(--s-6); font-size: var(--fs-body); }
.btn--block { width: 100%; }

.btn:disabled, .btn[aria-disabled="true"] {
  opacity: .38;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.btn.is-loading { pointer-events: none; position: relative; color: transparent; }
.btn.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px; height: 18px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  color: var(--on-accent);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Arrow inside a link nudges on hover — the one motion affordance on links. */
.link-arrow { display: inline-flex; align-items: center; gap: var(--s-2); color: var(--accent); font-weight: 600; }
.link-arrow svg { transition: transform var(--dur) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(3px); }
[dir="rtl"] .link-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .link-arrow:hover svg { transform: scaleX(-1) translateX(3px); }

/* --- 7. Header ----------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease-out);
}
.header.is-scrolled { border-bottom-color: var(--border); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--s-5);
}

.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 32px; width: auto; }
@media (max-width: 559px) { .logo__img { height: 28px; } }
.footer .logo__img { height: 36px; }

.logo--tagline { flex-direction: column; gap: 3px; }
.logo__tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
}
@media (max-width: 559px) { .logo__tag { font-size: 9px; } }

.nav { display: none; margin-inline-start: auto; }
@media (min-width: 900px) { .nav { display: flex; align-items: center; gap: var(--s-1); } }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: var(--s-3);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__link:hover { color: var(--text); }
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset-inline: var(--s-3);
  bottom: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header__actions { display: flex; align-items: center; gap: var(--s-2); margin-inline-start: auto; }
@media (min-width: 900px) { .header__actions { margin-inline-start: var(--s-4); } }

/* Language toggle and primary CTA stay in the bar at every width. */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  min-height: 44px;
  padding-inline: var(--s-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.lang-toggle:hover { color: var(--text); border-color: var(--border-strong); }

/* The primary CTA stays in the bar at every width — it never hides in the menu.
   Below 560px the language toggle drops its label to make room. */
.header__cta { display: inline-flex; }
@media (max-width: 559px) {
  .header__cta { padding-inline: var(--s-4); }
  .lang-toggle { padding-inline: var(--s-2); }
  .lang-toggle [data-lang-label] { display: none; }
  .header__inner { gap: var(--s-3); }
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
}
.burger:hover { border-color: var(--border-strong); }
@media (min-width: 900px) { .burger { display: none; } }

/* Mobile sheet */
.sheet {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--canvas);
  padding: var(--s-6) var(--s-5) var(--s-8);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              visibility var(--dur);
}
.sheet.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.sheet__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}
.sheet__link:hover { color: var(--accent); }
@media (min-width: 900px) { .sheet { display: none; } }

/* --- 8. Cards ------------------------------------------------------------ */
/* Cards never nest. */

.card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}

a.card, .card--link {
  display: block;
  transition: background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
a.card:hover, .card--link:hover {
  background: var(--surface-raised);
  border-color: var(--accent-line);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}

/* Product frame — the well an indicator screenshot sits in. */
.frame {
  background: var(--surface-sunken);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.frame img, .frame video { width: 100%; display: block; }

/* Wide, dense screenshots scroll rather than shrink to illegibility. */
.frame { min-width: 0; }
.frame--scroll { position: relative; }
.frame--scroll .frame__scroller { min-width: 0; overflow-x: auto; overscroll-behavior-x: contain; }
.frame--scroll .frame__scroller img { max-width: none; width: 100%; min-width: 720px; }
@media (min-width: 900px) {
  .frame--scroll .frame__scroller img { min-width: 0; }
}
.frame--scroll::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: 48px;
  background: linear-gradient(to left, var(--surface-sunken), transparent);
  pointer-events: none;
}
[dir="rtl"] .frame--scroll::after { background: linear-gradient(to right, var(--surface-sunken), transparent); }
@media (min-width: 900px) { .frame--scroll::after { display: none; } }

/* --- 9. Badge ------------------------------------------------------------ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--surface-raised);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.badge--accent { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-line); }
.badge--long   { background: var(--long-soft);   color: var(--long);   border-color: rgba(22,199,132,.3); }
.badge--short  { background: var(--short-soft);  color: var(--short);  border-color: rgba(234,57,67,.3); }

/* --- 10. Forms ----------------------------------------------------------- */

.field { display: block; }
.field__label {
  display: block;
  margin-bottom: var(--s-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
}
.field__hint { margin-top: var(--s-2); font-size: var(--fs-sm); color: var(--text-muted); }

.input, .textarea, .select {
  width: 100%;
  min-height: 44px;
  padding: var(--s-3) 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }

.input:hover, .textarea:hover, .select:hover { border-color: #3F4757; }

.input:focus-visible, .textarea:focus-visible, .select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.select {
  appearance: none;
  padding-inline-end: var(--s-8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2399A1AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
[dir="rtl"] .select { background-position: left 14px center; }

.field.has-error .input,
.field.has-error .textarea,
.field.has-error .select { border-color: var(--short); }
.field__error {
  display: none;
  margin-top: var(--s-2);
  font-size: var(--fs-sm);
  color: var(--short);
}
.field.has-error .field__error { display: block; }

.input:disabled, .textarea:disabled, .select:disabled {
  opacity: .5;
  cursor: not-allowed;
  background: var(--surface-sunken);
}

/* --- 11. Accordion ------------------------------------------------------- */

.acc__item { border-bottom: 1px solid var(--border); }

.acc__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  min-height: 64px;
  padding-block: var(--s-4);
  text-align: start;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--dur-fast) var(--ease-out);
}
.acc__trigger:hover { color: var(--accent); }
.acc__icon {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform var(--dur) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.acc__trigger[aria-expanded="true"] .acc__icon { transform: rotate(180deg); color: var(--accent); }

/* Animate on grid-template-rows, never max-height. */
.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease-out);
}
.acc__panel > div { overflow: hidden; }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__body {
  padding-bottom: var(--s-5);
  color: var(--text-secondary);
  max-width: var(--measure);
}
.acc__body p + p { margin-top: var(--s-3); }
.acc__body strong { color: var(--text); font-weight: 600; }

/* --- 12. Tables ---------------------------------------------------------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); }
.table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 560px; }
.table th, .table td { padding: var(--s-3) var(--s-4); text-align: start; }
.table thead th {
  background: var(--surface-raised);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.table tbody tr + tr { border-top: 1px solid var(--border); }
.table tbody td { color: var(--text-secondary); }
.table tbody td:first-child { color: var(--text); font-weight: 500; }

/* --- 13. Footer ---------------------------------------------------------- */

.footer { border-top: 1px solid var(--border); padding-block: var(--s-8) var(--s-6); margin-top: var(--s-9); }
.footer__grid { display: grid; gap: var(--s-7); }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__title { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--s-4); }
.footer__link { display: block; padding-block: var(--s-2); font-size: var(--fs-sm); color: var(--text-secondary); transition: color var(--dur-fast) var(--ease-out); }
.footer__link:hover { color: var(--accent); }
.footer__bottom { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--border); }
.footer__legal { font-size: var(--fs-sm); color: var(--text-muted); max-width: 76ch; }
.footer__legal + .footer__legal { margin-top: var(--s-3); }

/* --- 14. Utilities ------------------------------------------------------- */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hidden { display: none !important; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mt-8 { margin-top: var(--s-8); }

/* Reveal — one authored entrance, from an already-visible default. */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  }
  .js .reveal.is-in { opacity: 1; transform: none; }
}
