:root {
  --color-brand: #141931;
  --color-accent: #faa72c;
  --color-accent-hover: #f59a10;
  --color-bg: #f6f7fb;
  --color-surface: #ffffff;
  --color-surface-alt: #eef1f8;
  --color-text: #141931;
  --color-muted: #576177;
  --color-border: rgba(20, 25, 49, 0.12);
  --color-success: #0f7b46;
  --color-error: #b42318;
  --shadow-sm: 0 2px 10px rgba(20, 25, 49, 0.08);
  --shadow: 0 20px 50px rgba(20, 25, 49, 0.10);
  --shadow-lg: 0 28px 64px rgba(20, 25, 49, 0.15);
  --shadow-accent: 0 14px 40px rgba(250, 167, 44, 0.30);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --page-logo-width: clamp(20rem, 30vw, 30rem);
  --page-logo-top-space: 1.2rem;
  --transition-fast: 0.18s ease;
  --transition-base: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans', Arial, sans-serif;
  line-height: 1.6;
  background: var(--color-bg);
  color: var(--color-text);
}

h1,
h2,
h3,
.brand,
.section-kicker,
.eyebrow {
  font-family: 'Figtree', Arial, sans-serif;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

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

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

/* ========================================================================
   Layout
   ======================================================================== */

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================================================
   Header
   ======================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(20, 25, 49, 0.04);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.header-scrolled {
  background: rgba(246, 247, 251, 0.96);
  border-bottom-color: rgba(20, 25, 49, 0.18);
  box-shadow: 0 6px 28px rgba(20, 25, 49, 0.10);
}

.header-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  padding: 0.22rem 0;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  margin-left: 0;
}

.page-logo-wrap {
  display: flex;
  justify-content: center;
  padding-top: var(--page-logo-top-space);
}

.page-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--page-logo-width);
  max-width: 100%;
  transition: opacity var(--transition-base);
}

.page-logo:hover {
  opacity: 0.85;
}

.page-logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================================================================
   Navigation links
   ======================================================================== */

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.56rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-brand);
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
  background: rgba(20, 25, 49, 0.08);
}

.site-nav a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(250, 167, 44, 0.45);
  outline-offset: 3px;
}

.site-nav .nav-cta {
  background: var(--color-brand);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.site-nav a.is-active:not(.nav-cta) {
  background: rgba(250, 167, 44, 0.12);
  color: var(--color-brand);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #1e2648;
  box-shadow: 0 6px 20px rgba(20, 25, 49, 0.25);
}

/* ========================================================================
   Sections
   ======================================================================== */

.section {
  padding: 5.5rem 0;
  scroll-margin-top: 6rem;
}

.section-surface {
  background: var(--color-surface);
}

/* ========================================================================
   Hero
   ======================================================================== */

.hero {
  padding-top: 4.4rem;
  position: relative;
  overflow: hidden;
}

/* Virginia outline watermark */
.hero-bg-map {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -68%);
  width: 95%;
  max-width: 650px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-copy > *:not(.hero-bg-map) {
  position: relative;
  z-index: 1;
}

/* Gradient accent behind the hero section */
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(250, 167, 44, 0.10) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(20, 25, 49, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-layout > :only-child {
  grid-column: 1 / -1;
  max-width: 56rem;
}

/* ========================================================================
   Typography
   ======================================================================== */

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand);
}

/* Eyebrow left-to-right fade reveal */
.eyebrow.is-fade-reveal {
  -webkit-mask-image: linear-gradient(to right, #000 40%, transparent);
  mask-image: linear-gradient(to right, #000 40%, transparent);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: fade-reveal 3s ease 0.3s forwards;
}

@keyframes fade-reveal {
  to {
    -webkit-mask-size: 300% 100%;
    mask-size: 300% 100%;
  }
}

.section-kicker-light {
  color: var(--color-accent);
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.h1-gradient {
  background: linear-gradient(0deg, #efb15c 0%, #efb15c 40%, #f59a10 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.service-card p,
.proof-card p,
.scenario-card p,
.area-card p,
.contact-panel p,
.contact-placeholder {
  color: var(--color-muted);
}

/* ========================================================================
   Section heading with accent bar
   ======================================================================== */

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  position: relative;
  padding-bottom: 1rem;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  height: 4px;
  border-radius: 2px;
  background: var(--color-accent);
}

/* ========================================================================
   Buttons
   ======================================================================== */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-base),
    opacity var(--transition-fast);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--color-accent);
  color: var(--color-brand);
  box-shadow: 0 4px 16px rgba(250, 167, 44, 0.30);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-accent);
}

.button-secondary {
  background: transparent;
  color: var(--color-brand);
  border: 1.5px solid var(--color-border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(20, 25, 49, 0.05);
  border-color: rgba(20, 25, 49, 0.32);
  box-shadow: var(--shadow-sm);
}

.button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ========================================================================
   Proof strip (hero highlights)
   ======================================================================== */

.proof-strip,
.area-cities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.proof-strip li {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.proof-strip li:hover {
  border-color: rgba(250, 167, 44, 0.45);
  box-shadow: 0 8px 28px rgba(250, 167, 44, 0.14);
}

/* ========================================================================
   Hero media
   ======================================================================== */

.hero-media {
  display: flex;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  transition: box-shadow var(--transition-base);
  will-change: transform;
}

.hero-image:hover {
  box-shadow: var(--shadow-lg);
}

/* ========================================================================
   Card grid
   ======================================================================== */

.card-grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ========================================================================
   Cards — shared styles + hover interactivity
   ======================================================================== */

.service-card,
.proof-card,
.scenario-card,
.area-card,
.contact-panel,
.contact-form-shell {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

/* Gradient border overlay on hoverable cards */
.service-card::before,
.proof-card::before,
.scenario-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    rgba(250, 167, 44, 0.45) 50%,
    rgba(250, 167, 44, 0.15) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.service-card:hover::before,
.proof-card:hover::before,
.scenario-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.proof-card:hover,
.scenario-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

/* ========================================================================
   Service card icons
   ======================================================================== */

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: rgba(250, 167, 44, 0.16);
  color: var(--color-accent-hover);
  transition: background-color var(--transition-base);
}

.service-card:hover .card-icon {
  background: rgba(250, 167, 44, 0.30);
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

/* ========================================================================
   Area card (dark branded section)
   ======================================================================== */

.area-card {
  background: linear-gradient(135deg, rgba(20, 25, 49, 0.98), rgba(31, 40, 77, 0.96));
  color: #ffffff;
  border-color: rgba(250, 167, 44, 0.22);
  position: relative;
  overflow: hidden;
}

/* Accent glow on the area card */
.area-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(250, 167, 44, 0.10) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.area-card > * {
  position: relative;
  z-index: 1;
}

/* Cursor-follow glow overlay for dark sections */
[data-glow]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  z-index: 0;
  background: radial-gradient(
    400px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(250, 167, 44, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}

[data-glow].glow-active::after {
  opacity: 1;
}

.area-card p {
  color: rgba(255, 255, 255, 0.82);
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.area-cities li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.area-cities li:hover {
  background: rgba(250, 167, 44, 0.24);
  border-color: rgba(250, 167, 44, 0.40);
}

/* ========================================================================
   Contact section
   ======================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-panel {
  background: var(--color-brand);
  color: #ffffff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

/* Accent glow inside contact panel */
.contact-panel::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(250, 167, 44, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-placeholder {
  margin: 0;
  font-weight: 600;
}

/* ========================================================================
   Contact form
   ======================================================================== */

.contact-form-shell {
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field span {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface-alt);
  color: var(--color-text);
  font: inherit;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(20, 25, 49, 0.22);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: 0 0 0 4px rgba(250, 167, 44, 0.18);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 700;
}

.form-status.is-pending {
  color: var(--color-muted);
}

.form-status.is-success {
  color: var(--color-success);
}

.form-status.is-error {
  color: var(--color-error);
}

/* Submit button success animation */
.button-primary.is-success {
  background: var(--color-success);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 123, 70, 0.30);
  pointer-events: none;
}

.button-primary .btn-label,
.button-primary .btn-check {
  transition: opacity 0.2s ease;
}

.button-primary .btn-check {
  position: absolute;
  opacity: 0;
}

.button-primary.is-success .btn-label {
  opacity: 0;
}

.button-primary.is-success .btn-check {
  position: static;
  opacity: 1;
}

/* ========================================================================
   Footer
   ======================================================================== */

.site-footer {
  padding: 2.5rem 0;
  background: var(--color-brand);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-accent);
}

/* ========================================================================
   Reveal animations with staggered delays
   ======================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.is-visible {
  animation: fade-up 0.5s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered card reveals within grids */
.card-grid .reveal:nth-child(1) { animation-delay: 0s; }
.card-grid .reveal:nth-child(2) { animation-delay: 0.08s; }
.card-grid .reveal:nth-child(3) { animation-delay: 0.16s; }
.card-grid .reveal:nth-child(4) { animation-delay: 0.24s; }
.card-grid .reveal:nth-child(5) { animation-delay: 0.32s; }
.card-grid .reveal:nth-child(6) { animation-delay: 0.40s; }
.card-grid .reveal:nth-child(7) { animation-delay: 0.48s; }
.card-grid .reveal:nth-child(8) { animation-delay: 0.56s; }

/* Staggered proof strip with pop */
.proof-strip li {
  opacity: 0;
  transform: translateY(12px) scale(0.92);
}

.proof-strip li.is-visible {
  animation: pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.proof-strip li:nth-child(1).is-visible { animation-delay: 0.1s; }
.proof-strip li:nth-child(2).is-visible { animation-delay: 0.22s; }
.proof-strip li:nth-child(3).is-visible { animation-delay: 0.34s; }
.proof-strip li:nth-child(4).is-visible { animation-delay: 0.46s; }

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ========================================================================
   Responsive — 1080px
   ======================================================================== */

@media (max-width: 1080px) {
  .services-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ========================================================================
   Responsive — 900px
   ======================================================================== */

@media (max-width: 900px) {
  .hero-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .header-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.15rem 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
  }

  .hero-layout,
  .contact-layout {
    display: grid;
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ========================================================================
   Responsive — 640px
   ======================================================================== */

@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }

  h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.6rem, 4.5vw, 2rem);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-bg-map {
    top: 28%;
    width: 90%;
  }

  .hero-actions {
    margin: 1.5rem 0;
  }

  .services-grid,
  .proof-grid,
  .scenario-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    width: 100%;
    gap: 0.3rem;
    justify-content: center;
  }

  .site-nav a {
    flex: 1 1 auto;
    padding: 0.38rem 0.6rem;
    font-size: 0.78rem;
    min-height: 2.2rem;
    text-align: center;
  }

  .section-heading {
    margin-bottom: 1.75rem;
  }

  :root {
    --page-logo-width: min(14rem, 62vw);
  }

  /* Reveal gradient border on scroll for touch devices */
  .service-card.reveal.is-visible::before,
  .proof-card.reveal.is-visible::before,
  .scenario-card.reveal.is-visible::before {
    animation: border-reveal 0.6s ease 0.8s both;
  }
}

@keyframes border-reveal {
  from { opacity: 0; }
  to { opacity: 0.7; }
}

/* ========================================================================
   Reduced motion
   ======================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
}
