/* ============================================
   Captain Decision - Refined Brand System
   ============================================ */

:root {
  --ink-950: #06131f;
  --ink-900: #0d1f31;
  --ink-800: #17324b;
  --ink-700: #284865;
  --sky-500: #2aa7d6;
  --sky-400: #61c2e6;
  --sand-100: #eef3f6;
  --sand-50: #f7fafc;
  --white: #ffffff;
  --line: rgba(12, 29, 46, 0.12);
  --line-strong: rgba(12, 29, 46, 0.2);
  --text-primary: #102235;
  --text-secondary: #506176;
  --text-muted: #6e8196;
  --success: #0f9f75;

  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-base: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4.5rem;
  --spacing-3xl: 6rem;

  --radius-sm: 10px;
  --radius-base: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 14px 35px rgba(10, 27, 42, 0.08);
  --shadow-md: 0 24px 60px rgba(10, 27, 42, 0.14);
  --shadow-lg: 0 40px 90px rgba(6, 19, 31, 0.18);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(
      circle at top left,
      rgba(42, 167, 214, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #f9fcfe 0%, #eef3f6 100%);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink-900);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
}

h4 {
  font-size: 1.1rem;
}

small {
  color: var(--text-muted);
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.container-sm {
  width: min(900px, calc(100% - 2.5rem));
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 252, 0.84);
  border-bottom: 1px solid rgba(12, 29, 46, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}

.logo img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text-secondary);
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--ink-900);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink-900);
  font-size: 1.6rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 40, 63, 0.14);
  color: var(--ink-900);
}

.btn-outline:hover {
  border-color: rgba(15, 40, 63, 0.28);
  background: var(--white);
}

.btn-lg {
  padding: 1rem 1.75rem;
}

.btn-sm {
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
}

section {
  padding: var(--spacing-3xl) 0;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(97, 194, 230, 0.24),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(42, 167, 214, 0.18),
      transparent 20%
    );
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(15, 40, 63, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 48rem;
  margin-top: 1.4rem;
  margin-bottom: 2rem;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

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

.metric {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 40, 63, 0.1);
  border-radius: var(--radius-base);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 30px rgba(10, 27, 42, 0.04);
}

.metric strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink-900);
  font-size: 0.98rem;
}

.metric span {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(12, 29, 46, 0.96) 0%,
    rgba(18, 50, 75, 0.96) 100%
  );
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.panel-kicker,
.panel-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-kicker {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.panel-chip {
  background: rgba(97, 194, 230, 0.18);
  color: #ccefff;
}

.hero-panel-body {
  display: grid;
  gap: 1rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.signal-card {
  min-height: 160px;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.signal-primary {
  background: linear-gradient(
    135deg,
    rgba(97, 194, 230, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.signal-label {
  display: block;
  margin-bottom: 0.65rem;
  color: #9bdff8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
}

.signal-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  font-size: 0.94rem;
}

.solutions-section {
  position: relative;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header p {
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

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

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

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 167, 214, 0.36);
  box-shadow: var(--shadow-md);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(42, 167, 214, 0.16),
    rgba(9, 28, 43, 0.08)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.card h3 {
  margin: 0;
}

.card p {
  flex: 1;
}

.card-footer {
  margin-top: 0.75rem;
}

.features {
  background: linear-gradient(
    180deg,
    rgba(12, 29, 46, 0.03) 0%,
    rgba(12, 29, 46, 0.06) 100%
  );
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 2.2rem;
  align-items: center;
}

.section-lead {
  margin-top: 0;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(15, 40, 63, 0.1);
}

.feature-item:last-child {
  border-bottom: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(42, 167, 214, 0.12);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

.feature-content h4 {
  margin-bottom: 0.35rem;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: var(--spacing-3xl);
  align-items: center;
}

.content-split-tight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-2xl);
  align-items: start;
}

.section-title-centered {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.surface-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84) 0%,
    rgba(240, 247, 251, 0.92) 100%
  );
  box-shadow: var(--shadow-sm);
}

.surface-card h3,
.surface-card h4 {
  margin-top: 0;
}

.visual-card {
  position: relative;
  min-height: 380px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(97, 194, 230, 0.28),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(224, 242, 254, 0.96) 0%,
      rgba(247, 250, 252, 0.98) 100%
    );
  border: 1px solid rgba(15, 40, 63, 0.08);
  box-shadow: var(--shadow-md);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.visual-card img {
  position: relative;
  z-index: 1;
  width: min(240px, 72%);
  margin-left: auto;
  margin-top: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(10, 27, 42, 0.15);
  opacity: 0.96;
}

.visual-card-copy {
  position: relative;
  z-index: 1;
  max-width: 20rem;
  text-align: center;
  margin: 0 auto;
}

.visual-card-copy p:last-child {
  margin-bottom: 0;
}

.founder-panel {
  padding: 1.75rem;
  border: 1px solid rgba(15, 40, 63, 0.12);
  border-radius: 32px;
  background: linear-gradient(
    160deg,
    rgba(13, 31, 49, 0.96) 0%,
    rgba(23, 50, 75, 0.95) 100%
  );
  box-shadow: var(--shadow-md);
}

.founder-label {
  margin-bottom: 0.65rem;
  color: #9fdcf2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-panel h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.founder-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.founder-visual {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.founder-visual img {
  width: min(240px, 60%);
  margin: 0 auto;
  opacity: 0.95;
}

.operations-section .card {
  background: rgba(247, 250, 252, 0.85);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at top left,
      rgba(97, 194, 230, 0.2),
      transparent 24%
    ),
    linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.cta .btn {
  background: var(--white);
  color: var(--ink-900);
}

.cta .btn:hover {
  background: #f0f6fa;
}

.legal-card {
  padding: clamp(1.75rem, 2vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.legal-meta {
  margin-bottom: var(--spacing-lg);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-intro {
  font-size: 1.05rem;
}

.legal-section + .legal-section {
  margin-top: var(--spacing-xl);
}

.legal-section h2 {
  margin-bottom: 1rem;
}

.legal-list {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
  color: var(--text-secondary);
}

.legal-list li + li {
  margin-top: 0.7rem;
}

.legal-contact {
  margin-top: var(--spacing-xl);
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(12, 29, 46, 0.04) 0%,
    rgba(42, 167, 214, 0.08) 100%
  );
  border: 1px solid rgba(15, 40, 63, 0.08);
}

.legal-contact a {
  color: var(--ink-900);
  font-weight: 700;
}

footer {
  margin-top: 3rem;
  padding: 4rem 0 2rem;
  background: #071521;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 0.9rem;
  color: var(--white);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.footer-section a:hover {
  color: #a4e2f8;
}

.footer-section ul {
  list-style: none;
}

.footer-section li + li {
  margin-top: 0.55rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
  font-size: 0.9rem;
}

/* Simple centered footer */
.site-footer {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-2xl) 0;
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-base);
  align-items: center;
}

.site-footer-content p {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer-content nav {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
}

.site-footer-content a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.site-footer-content a:hover {
  color: var(--sky-400);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink-900);
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 40, 63, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(42, 167, 214, 0.5);
  box-shadow: 0 0 0 4px rgba(42, 167, 214, 0.12);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.mt-xs {
  margin-top: var(--spacing-xs);
}
.mt-sm {
  margin-top: var(--spacing-sm);
}
.mt-base {
  margin-top: var(--spacing-base);
}
.mt-md {
  margin-top: var(--spacing-md);
}
.mt-lg {
  margin-top: var(--spacing-lg);
}
.mt-xl {
  margin-top: var(--spacing-xl);
}
.mb-xs {
  margin-bottom: var(--spacing-xs);
}
.mb-sm {
  margin-bottom: var(--spacing-sm);
}
.mb-base {
  margin-bottom: var(--spacing-base);
}
.mb-md {
  margin-bottom: var(--spacing-md);
}
.mb-lg {
  margin-bottom: var(--spacing-lg);
}
.mb-xl {
  margin-bottom: var(--spacing-xl);
}
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--ink-900);
}
.text-accent {
  color: var(--sky-500);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-muted {
  color: var(--text-muted);
}
.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.bg-surface {
  background-color: var(--sand-50);
}
.bg-primary {
  background-color: var(--ink-900);
}
.bg-accent {
  background-color: var(--sky-500);
}
.gap-base {
  gap: var(--spacing-base);
}
.gap-lg {
  gap: var(--spacing-lg);
}
.flex {
  display: flex;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-column {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.hidden {
  display: none;
}

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

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .hero-layout,
  .content-split,
  .content-split-tight,
  .features-layout,
  .footer-content,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .signal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --spacing-2xl: 3.5rem;
    --spacing-3xl: 4.25rem;
  }

  .container,
  .container-sm {
    width: min(100% - 1.25rem, 1200px);
  }

  nav {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    padding: 1rem;
    border: 1px solid rgba(15, 40, 63, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions .btn,
  .cta .btn {
    width: 100%;
  }

  .card,
  .founder-panel,
  .hero-panel,
  .cta {
    border-radius: 24px;
  }
}

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