/* ============================================================
   HASKERTECH — style.css
   Brand system per Haskertech guidelines v1.0 — Software & Human Intelligence
   Palette: Pine #0A3D3C / Teal #0BA88E / Mint #2BD9BC / Amber #FFB020 on #EFF7F4
   Type: Outfit (headlines) · Manrope (body) · IBM Plex Mono (labels)
   Flat surfaces, 1px borders, no shadows.
   ============================================================ */

:root {
  --paper: #EFF7F4;
  --paper-alt: #E5F0EB;
  --band: #E0EDE7;
  --surface: #FFFFFF;
  --ink: #0A3D3C;
  --footer-bg: #062927;
  --chip-dark-bg: #14524B;
  --chip-dark-text: #C4E5DC;
  --text-2: #46615C;
  --text-3: #7B928B;
  --dark-2: #9DBFB6;
  --footer-link: #A8C6BE;
  --footer-muted: #5E7D75;
  --footer-muted-2: #7E998F;
  --azure: #0BA88E;       /* Teal — primary accent */
  --azure-dark: #2BD9BC;  /* Mint — accents on dark surfaces */
  --amber: #FFB020;       /* Amber — sparing highlights */
  --navy: #0A3D3C;        /* Pine */
  --border: #DCE9E3;
  --border-ph: #D3E2DB;
  --border-input: #D0E0D9;
  --border-btn2: #C0D4CC;
  --footer-divider: #17453E;
  --band-border: #D6E5DE;
  --arrow: #9FB8B0;
  --body-3: #32534D;
  --process-text: #3A5C55;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ---------- Type roles ---------- */

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--azure);
  text-transform: uppercase;
}

.display {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}

.page-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -.5px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-2);
  text-wrap: pretty;
  margin: 0;
}

.sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  text-wrap: pretty;
  margin: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--azure);
  color: var(--ink);
  padding: 16px 32px;
}
.btn-primary:hover { background: var(--ink); color: var(--paper); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14.5px 28px;
  border: 1.5px solid var(--border-btn2);
}
.btn-secondary:hover { border-color: var(--ink); }

.btn-nav {
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  padding: 12px 22px;
  letter-spacing: .3px;
}
.btn-nav:hover { background: var(--azure); color: var(--ink); }

.btn-ondark {
  background: var(--amber);
  color: var(--ink);
  font-size: 17px;
  padding: 18px 40px;
  white-space: nowrap;
}
.btn-ondark:hover { background: #FFFFFF; color: var(--ink); }

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 247, 244, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 30px;
  width: auto;
  display: block;
}

.logo--footer {
  height: 46px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--body-3);
  transition: color .15s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--azure); }

/* Mobile menu */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .15s ease;
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--body-3);
  border-top: 1px solid var(--border);
}
.mobile-menu a.active { color: var(--azure); }

/* ---------- Hero (home) ---------- */

.hero {
  padding-top: 104px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy .lede { max-width: 520px; }

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-art {
  height: 440px;
  border-radius: 20px;
  background: var(--paper-alt);
  border: 1px solid var(--border-ph);
  overflow: hidden;
}
.hero-art svg,
.hero-art img,
.about-art img,
.svc-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Fact strip (replaces client-logo strip) ---------- */

.fact-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper-alt);
}

.fact-strip-inner {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.fact-strip-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--azure);
  white-space: nowrap;
}

.fact-strip-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}
.fact-strip-text strong {
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Sections ---------- */

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.section--tight-bottom { padding-bottom: 48px; }
.section--tight-top { padding-top: 48px; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

/* ---------- Two tracks ---------- */

.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card--ink {
  background: var(--ink);
  border: none;
}

.card-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--azure);
}
.card--ink .card-eyebrow { color: var(--azure-dark); }

.card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -.3px;
  color: var(--ink);
  margin: 0;
}
.card--ink .card-title { color: var(--paper); }

.card-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}
.card--ink .card-text { color: var(--dark-2); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--paper-alt);
  color: var(--body-3);
}

.chip--dark {
  background: var(--chip-dark-bg);
  color: var(--chip-dark-text);
}

/* ---------- Services index (home) ---------- */

.svc-index-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
}

.link-azure {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--azure);
}
.link-azure:hover { text-decoration: underline; }

.svc-row {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 64px 300px 1fr 24px;
  gap: 24px;
  align-items: baseline;
  padding: 22px 8px;
  border-top: 1px solid var(--border);
  transition: background-color .15s ease;
}
.svc-row:hover { background: var(--paper-alt); }

.svc-row .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--azure);
}

.svc-row .name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.3px;
}

.svc-row .tagline {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.5;
}

.svc-row .arrow {
  font-size: 18px;
  color: var(--arrow);
}

/* ---------- Process band ---------- */

.process-band {
  background: var(--band);
  border-top: 1px solid var(--band-border);
}

.process-inner {
  padding-top: 88px;
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.process-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.process-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.process-col .icon-tile { margin-bottom: 4px; }

.process-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--azure);
}

.process-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--process-text);
  margin: 0;
}

/* ---------- Presence (replaces testimonials) ---------- */

.route {
  margin: 8px 0 32px;
}
.route svg { width: 100%; height: auto; }

.presence-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.card-photo {
  width: calc(100% + 80px);
  margin: -40px -40px 6px;
  height: 190px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
}

.addr-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}

.addr {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.addr .addr-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-3);
  text-transform: uppercase;
}
.card--ink .addr .addr-label { color: var(--footer-muted-2); }

.addr .addr-line {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--body-3);
}
.card--ink .addr .addr-line { color: #D9EDE6; }

.addr-note {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.card--ink .addr-note {
  color: var(--dark-2);
  border-top-color: var(--chip-dark-bg);
}

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

.cta-band { background: var(--ink); }

.cta-inner {
  padding-top: 88px;
  padding-bottom: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -1px;
  color: var(--paper);
  line-height: 1.15;
  margin: 0;
}

.cta-sub {
  font-size: 17px;
  color: var(--dark-2);
  margin: 0;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.cta-photo {
  width: 340px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
}

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

.footer { background: var(--footer-bg); }

.footer-inner {
  padding-top: 64px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.footer-blurb {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--footer-muted-2);
  max-width: 320px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--footer-muted);
}

.footer-col a {
  text-decoration: none;
  font-size: 14.5px;
  color: var(--footer-link);
  transition: color .15s ease;
}
.footer-col a:hover { color: #FFFFFF; }

.footer-col span { font-size: 14.5px; color: var(--footer-link); }
.footer-col .muted { color: var(--footer-muted-2); }

.footer-addresses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--footer-divider);
  padding-top: 32px;
}

.f-addr {
  font-size: 13px;
  line-height: 1.7;
  color: var(--footer-muted-2);
}

.f-addr-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--footer-muted);
  margin-bottom: 8px;
}

.footer-note {
  font-size: 12.5px;
  color: var(--footer-muted);
  margin: -16px 0 0;
}

.footer-bottom {
  border-top: 1px solid var(--footer-divider);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--footer-muted);
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  color: var(--footer-muted);
  text-decoration: none;
}
.footer-social a:hover { color: var(--footer-link); }

/* ---------- Services page ---------- */

.page-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  padding-top: 88px;
  padding-bottom: 64px;
}

.svc-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 96px;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}

.svc-card-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-card .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--azure);
}

.svc-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 27px;
  letter-spacing: -.5px;
  margin: 0;
}

.svc-card-desc {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
  margin: 0;
}

.svc-art {
  height: 200px;
  border-radius: 14px;
  background: var(--paper-alt);
  border: 1px solid var(--border-ph);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ---------- About page ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 64px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--body-3);
}
.about-copy p { margin: 0; }

.about-art {
  height: 380px;
  border-radius: 20px;
  background: var(--paper-alt);
  border: 1px solid var(--border-ph);
  overflow: hidden;
}
.about-art svg { width: 100%; height: 100%; }

.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 96px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.2px;
  margin: 0;
}

.value-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 96px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .15s ease;
}
a.info-card:hover { border-color: var(--azure); }

.info-card .info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-3);
}

.info-card .info-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
}

.info-card--ink {
  background: var(--ink);
  border: none;
}
.info-card--ink .info-label { color: var(--azure-dark); }
.info-card--ink .info-value { color: var(--paper); }

.info-card .addr-list { gap: 16px; margin-top: 10px; }

.icon-tile {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.icon-tile--sm {
  width: 44px;
  height: 44px;
}

.info-card--row {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--body-3);
}

.field input,
.field textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 16px;
  border: 1px solid var(--border-input);
  border-radius: 10px;
  background: #F6FBF9;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--azure); }

.form-note {
  font-size: 14px;
  color: var(--text-3);
  margin: 0;
}
.form-note.success { color: var(--azure); font-weight: 500; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1000px) {
  .fact-strip-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fact-strip-label { white-space: normal; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
  .hero-art { height: 260px; }
  .tracks,
  .presence-cards,
  .process-cols,
  .value-cards { grid-template-columns: 1fr; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-art { height: 280px; }
  .svc-card { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .svc-art { height: 180px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .cta-photo { width: 100%; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-addresses { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 800px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .nav-inner { height: 64px; }
  .nav-links .nav-link { display: none; }
  .nav-links { gap: 12px; }
  .btn-nav { font-size: 13px; padding: 10px 16px; }
  .burger { display: flex; }
  .logo { height: 24px; }

  .display { font-size: 38px; line-height: 1.08; letter-spacing: -1px; }
  .page-title { font-size: 34px; letter-spacing: -.6px; }
  .section-title { font-size: 26px; letter-spacing: -.4px; }
  .lede { font-size: 16px; }
  .sub { font-size: 16px; }

  .section { padding-top: 48px; padding-bottom: 48px; }
  .section--tight-bottom { padding-bottom: 24px; }
  .section--tight-top { padding-top: 24px; }
  .page-head { padding-top: 48px; padding-bottom: 40px; }
  .process-inner { padding-top: 56px; padding-bottom: 56px; }
  .cta-inner { padding-top: 56px; padding-bottom: 56px; }
  .cta-title { font-size: 30px; letter-spacing: -.6px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .card { padding: 28px; border-radius: 18px; }
  .card-photo { width: calc(100% + 56px); margin: -28px -28px 4px; height: 160px; }
  .form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .svc-row {
    grid-template-columns: 40px 1fr 20px;
    gap: 12px;
    align-items: center;
    padding: 18px 4px;
    min-height: 44px;
  }
  .svc-row .tagline { display: none; }
  .svc-row .name { font-size: 17px; }
  .svc-row .num { font-size: 13px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-addresses { grid-template-columns: 1fr; }
}

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