:root {
  --navy-950: #061a2e;
  --navy-900: #08233e;
  --navy-800: #0d3154;
  --teal-700: #0d6768;
  --teal-600: #138080;
  --teal-100: #dceeed;
  --gold-500: #d5a553;
  --gold-300: #efd29b;
  --ink: #172536;
  --muted: #5b6977;
  --mist: #f2f6f5;
  --sand: #f8f3e9;
  --white: #ffffff;
  --line: #d9e1e3;
  --shadow: 0 18px 50px rgba(6, 26, 46, 0.11);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(6, 26, 46, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand img { width: 46px; height: 46px; border-radius: 10px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; letter-spacing: 0.02em; }
.brand-tag { margin-top: 5px; color: var(--gold-300); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 7px; }
.site-nav a { padding: 10px 11px; border-radius: 9px; color: #eaf0f4; text-decoration: none; font-size: 0.94rem; font-weight: 700; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,0.09); }
.site-nav .nav-cta { margin-left: 5px; padding-inline: 17px; color: var(--navy-950); background: var(--gold-500); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: var(--navy-950); background: #e1b66b; }
.menu-toggle { display: none; padding: 9px 11px; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; color: var(--white); background: transparent; cursor: pointer; }

.eyebrow { margin: 0 0 14px; color: var(--teal-700); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-300); }
h1, h2, h3 { margin: 0; color: var(--navy-950); font-family: Georgia, "Times New Roman", serif; line-height: 1.12; }
h1 { max-width: 900px; font-size: clamp(2.7rem, 6.2vw, 5.4rem); letter-spacing: -0.038em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -0.026em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.72rem); }
.heading-line { display: block; }
.lead { max-width: 780px; margin: 24px 0 0; color: #dbe6ed; font-size: clamp(1.08rem, 2vw, 1.31rem); line-height: 1.68; }
.section-intro { max-width: 760px; margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.kicker { color: var(--teal-700); font-weight: 850; }
.gold-rule { width: 72px; height: 4px; margin: 20px 0 0; border-radius: 9px; background: var(--gold-500); }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -150px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(213,165,83,0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(213,165,83,0.035), 0 0 0 140px rgba(19,128,128,0.035);
}
.hero .container { position: relative; z-index: 1; padding-top: clamp(76px, 10vw, 124px); padding-bottom: clamp(76px, 10vw, 120px); }
.hero h1, .hero h2 { color: var(--white); }
.hero-home .container { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr); align-items: end; gap: 70px; }
.hero-note { padding: 25px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); background: rgba(255,255,255,0.065); box-shadow: var(--shadow); }
.hero-note strong { display: block; margin-bottom: 7px; color: var(--gold-300); font-family: Georgia, serif; font-size: 1.25rem; }
.hero-note p { margin: 0; color: #dce6ec; font-size: 0.96rem; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 33px; }
.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; padding: 12px 20px; border: 2px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 850; line-height: 1.2; transition: transform 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--gold-500); }
.button-primary:hover { background: #e2b768; }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.04); }
.button-secondary:hover { border-color: var(--white); }
.button-dark { color: var(--white); background: var(--navy-900); }
.button-dark:hover { background: var(--navy-800); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-700); text-decoration: none; font-weight: 850; }
.text-link::after { content: "\2192"; transition: transform 160ms ease; }
.text-link:hover::after { transform: translateX(4px); }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--mist); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 25px 30px; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--navy-950); font-family: Georgia, serif; font-size: 1.15rem; }
.trust-item span { color: var(--muted); font-size: 0.92rem; }

.section { padding: clamp(74px, 9vw, 112px) 0; }
.section-soft { background: var(--mist); }
.section-sand { background: var(--sand); }
.section-dark { color: var(--white); background: var(--navy-950); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-intro { color: #cbd8df; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.section-head .text-link { flex: 0 0 auto; }

.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.pillar-card { position: relative; display: flex; min-height: 410px; flex-direction: column; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 36px rgba(6,26,46,0.07); }
.pillar-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--teal-600); }
.pillar-card:nth-child(2)::before { background: var(--gold-500); }
.pillar-card:nth-child(3)::before { background: var(--navy-800); }
.pillar-number { color: var(--teal-700); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; }
.pillar-card h3 { margin-top: 15px; }
.pillar-card p { margin: 17px 0 23px; color: var(--muted); }
.pillar-card .text-link { margin-top: auto; }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr); gap: clamp(42px, 8vw, 96px); align-items: center; }
.split.reverse { grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.05fr); }
.feature-panel { padding: clamp(30px, 5vw, 48px); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.feature-panel h3 { margin-bottom: 18px; }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: var(--muted); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; color: var(--teal-700); font-weight: 900; }
.quote-panel { padding: 38px; border-left: 5px solid var(--gold-500); background: var(--white); box-shadow: var(--shadow); }
.quote-panel blockquote { margin: 0; color: var(--navy-950); font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.27; }
.quote-panel p { margin: 20px 0 0; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 27px 25px; border-top: 3px solid var(--teal-600); background: rgba(255,255,255,0.06); }
.step p { margin: 12px 0 0; color: #cbd8df; font-size: 0.94rem; }

.outcome-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; margin-top: 38px; }
.outcome { position: relative; display: grid; min-height: 118px; grid-column: span 2; place-items: center; padding: 26px 20px; overflow: hidden; border: 1px solid rgba(13,103,104,0.18); border-radius: 18px; background: radial-gradient(circle at 100% 100%, rgba(19,128,128,0.10), transparent 48%), var(--white); box-shadow: 0 12px 30px rgba(6,26,46,0.07); text-align: center; text-wrap: balance; color: var(--navy-900); font-family: Georgia, serif; font-size: clamp(1.08rem, 1.65vw, 1.27rem); font-weight: 700; line-height: 1.25; }
.outcome::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--teal-600), var(--gold-500)); }
.outcome::after { content: ""; position: absolute; right: -34px; bottom: -39px; width: 82px; height: 82px; border: 1px solid rgba(13,103,104,0.13); border-radius: 50%; }
.outcome:nth-child(4) { grid-column: 2 / span 2; }
.outcome:nth-child(5) { grid-column: 4 / span 2; }

.founder-photo { position: relative; max-width: 420px; padding: 16px; border-radius: 28px; background: var(--navy-900); box-shadow: var(--shadow); }
.founder-photo img { width: 100%; border-radius: 18px; }
.founder-photo::after { content: "20+ years of hands-on MedTech experience"; display: block; padding: 18px 10px 5px; color: var(--gold-300); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.12em; text-align: center; text-transform: uppercase; }

.page-hero .container { padding-top: clamp(68px, 8vw, 100px); padding-bottom: clamp(68px, 8vw, 98px); }
.page-hero h1 { max-width: 980px; font-size: clamp(2.6rem, 5.3vw, 4.75rem); }
.anchor-nav { position: sticky; top: 82px; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); }
.anchor-links { display: flex; gap: 7px; overflow-x: auto; padding: 12px 0; }
.anchor-links a { flex: 0 0 auto; padding: 9px 13px; border-radius: 8px; color: var(--navy-900); text-decoration: none; font-size: 0.88rem; font-weight: 800; }
.anchor-links a:hover { background: var(--teal-100); }

.service-section { scroll-margin-top: 145px; }
.service-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 34px; margin-top: 42px; }
.service-box { padding: 29px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.service-box h3 { margin-bottom: 17px; font-size: 1.25rem; }
.service-box p:last-child { margin-bottom: 0; }
.plain-list { margin: 0; padding-left: 20px; color: var(--muted); }
.plain-list li + li { margin-top: 8px; }
.deliverable { border: 0; color: var(--white); background: var(--navy-900); }
.deliverable h3 { color: var(--gold-300); }
.deliverable p, .deliverable li { color: #d8e3ea; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 18px; }
.mode { padding: 20px; border: 1px solid rgba(255,255,255,0.17); border-radius: 12px; background: rgba(255,255,255,0.06); }
.mode strong { display: block; margin-bottom: 8px; color: var(--white); }
.boundary { margin-top: 24px; padding: 20px 22px; border-left: 4px solid var(--gold-500); background: var(--sand); color: var(--muted); font-size: 0.93rem; }
.boundary strong { color: var(--navy-950); }

.compare-wrap { overflow-x: auto; margin-top: 37px; border: 1px solid var(--line); border-radius: 14px; }
.compare { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--white); }
.compare th, .compare td { padding: 20px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.compare th { color: var(--white); background: var(--navy-900); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.compare tr:last-child td { border-bottom: 0; }
.compare td:first-child { color: var(--navy-950); font-weight: 850; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; }
.insight-card { position: relative; display: flex; min-height: 330px; flex-direction: column; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 36px rgba(6,26,46,0.055); }
.insight-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--teal-600); }
.insight-card:nth-child(2)::before { background: var(--gold-500); }
.insight-card:nth-child(3)::before { background: var(--navy-800); }
.insight-meta { color: var(--teal-700); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.insight-card h3 { margin-top: 14px; }
.insight-card p { color: var(--muted); }
.insight-card .text-link { margin-top: auto; }
.insight-library { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.insight-featured { position: relative; grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr); gap: clamp(30px, 6vw, 72px); min-height: 360px; align-items: center; padding: clamp(32px, 6vw, 58px); overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--navy-950); box-shadow: var(--shadow); }
.insight-featured::after { content: "01"; position: absolute; right: clamp(20px, 4vw, 52px); bottom: -38px; color: rgba(255,255,255,0.045); font-family: Georgia, serif; font-size: clamp(11rem, 24vw, 19rem); font-weight: 700; line-height: 1; }
.insight-featured > * { position: relative; z-index: 1; }
.insight-featured h2 { margin-top: 15px; color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); }
.insight-featured p { color: #d4e0e7; }
.insight-featured .insight-meta { color: var(--gold-300); }
.insight-featured .text-link { color: var(--gold-300); }
.insight-featured-idea { padding: 28px; border: 1px solid rgba(255,255,255,0.16); border-radius: 15px; background: rgba(255,255,255,0.06); }
.insight-featured-idea p { margin: 0; color: var(--white); font-family: Georgia, serif; font-size: clamp(1.25rem, 2.2vw, 1.65rem); line-height: 1.4; }
.library-card { min-height: 355px; }
.library-card .article-summary { margin-bottom: 24px; }
.insight-principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.insight-principle { padding: 23px; border-top: 3px solid var(--teal-600); background: var(--white); }
.insight-principle strong { display: block; color: var(--navy-950); font-family: Georgia, serif; font-size: 1.1rem; }
.insight-principle p { margin: 9px 0 0; color: var(--muted); font-size: 0.92rem; }
.article { padding: clamp(62px, 8vw, 98px) 0; }
.article-header { margin-bottom: 48px; }
.article h1, .article-header h2 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
.article .article-lead { margin-top: 22px; color: var(--muted); font-size: 1.2rem; }
.article-body { font-size: 1.05rem; }
.article-body h2 { margin: 52px 0 18px; font-size: clamp(1.75rem, 3.4vw, 2.55rem); }
.article-body .article-header h2 { margin: 0; }
.article-body h3 { margin: 34px 0 12px; }
.article-body p, .article-body ul { color: #394a5a; }
.article-callout { margin: 36px 0; padding: 27px 30px; border-left: 5px solid var(--gold-500); background: var(--sand); }
.article-callout p { margin: 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.3rem; }
.article-hero .container { padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(58px, 7vw, 90px); }
.article-hero h1 { max-width: 980px; font-size: clamp(2.55rem, 5.4vw, 4.85rem); }
.article-back { display: inline-flex; margin-bottom: 30px; align-items: center; gap: 8px; color: var(--gold-300); text-decoration: none; font-size: 0.88rem; font-weight: 850; }
.article-back::before { content: "\2190"; transition: transform 160ms ease; }
.article-back:hover::before { transform: translateX(-4px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: #cbd8df; font-size: 0.9rem; }
.article-meta span + span::before { content: "\2022"; margin-right: 18px; color: var(--gold-300); }
.article-byline { color: var(--white); font-weight: 800; }
.article-byline a { color: var(--gold-300); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-page .article-header { margin-bottom: 38px; }
.article-page .article-body > p:first-of-type { font-size: 1.16rem; }
.article-endnote { margin-top: 50px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.94rem; }
.related-insights .insight-card { min-height: 280px; }
.related-insights .insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-950); font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #bac8cd; border-radius: 9px; color: var(--ink); background: var(--white); }
.field textarea { min-height: 150px; resize: vertical; }
.field-hint { margin: 0; color: var(--muted); font-size: 0.85rem; }
.form-status { min-height: 28px; margin-top: 15px; color: var(--teal-700); font-weight: 800; }
.contact-card { padding: 36px; border-radius: var(--radius); color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.contact-card h2, .contact-card h3 { color: var(--white); }
.contact-card p { color: #d4e0e7; }
.contact-card a { color: var(--gold-300); font-weight: 800; }

.cta-band { color: var(--white); background: var(--teal-700); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 55px; padding-bottom: 55px; }
.cta-band h2 { max-width: 730px; color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.cta-band p { max-width: 710px; margin: 12px 0 0; color: #d7efed; }

.site-footer { color: #c9d5dc; background: #041424; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 44px; padding-top: 58px; padding-bottom: 42px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; font-family: Georgia, serif; font-size: 1.25rem; }
.footer-brand img { width: 40px; height: 40px; border-radius: 9px; }
.footer-copy { max-width: 420px; margin: 17px 0 0; color: #aebdc7; font-size: 0.91rem; }
.footer-heading { margin: 0 0 13px; color: var(--gold-300); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #c9d5dc; text-decoration: none; font-size: 0.91rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,0.11); color: #8799a5; font-size: 0.82rem; }

@media (max-width: 930px) {
  .menu-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: 82px; right: 22px; left: 22px; display: none; align-items: stretch; flex-direction: column; padding: 15px; border: 1px solid rgba(255,255,255,0.13); border-radius: 13px; background: var(--navy-900); box-shadow: var(--shadow); }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav .nav-cta { margin: 4px 0 0; text-align: center; }
  .hero-home .container, .split, .split.reverse { grid-template-columns: 1fr; }
  .hero-note { max-width: 560px; }
  .pillar-grid, .insight-grid { grid-template-columns: 1fr; }
  .insight-library { grid-template-columns: 1fr; }
  .insight-featured { grid-column: auto; grid-template-columns: 1fr; }
  .insight-principles { grid-template-columns: 1fr; }
  .related-insights .insight-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 30px, var(--max)); }
  .brand-tag { display: none; }
  .nav-shell { min-height: 72px; }
  .site-nav { top: 72px; right: 15px; left: 15px; }
  .anchor-nav { top: 72px; }
  .section-head { display: block; }
  .section-head .text-link { margin-top: 18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 17px 8px; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .steps, .mode-grid, .form-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .outcome, .outcome:nth-child(4), .outcome:nth-child(5) { min-height: 108px; grid-column: auto; }
  .outcome:last-child { grid-column: 1 / -1; min-height: 96px; }
  .field.full { grid-column: auto; }
  .insight-featured { padding: 30px 25px; }
  .insight-featured-idea { padding: 22px; }
  .article-meta { display: grid; gap: 6px; }
  .article-meta span + span::before { content: none; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome:last-child { grid-column: auto; min-height: 108px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
