:root {
  --bg: #020812;
  --bg-deep: #00050d;
  --surface: #071522;
  --surface-raised: #0a1c2a;
  --surface-soft: #0c2231;
  --line: #183346;
  --line-bright: #275167;
  --text: #f5f7f8;
  --muted: #a8b4bd;
  --muted-strong: #c8d0d6;
  --cyan: #36d8e9;
  --cyan-bright: #74e7f1;
  --cyan-soft: rgba(54, 216, 233, 0.1);
  --green: #74d892;
  --green-soft: rgba(116, 216, 146, 0.1);
  --amber: #efb65f;
  --amber-soft: rgba(239, 182, 95, 0.1);
  --violet: #9c83ff;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --container: 1180px;
  --section: clamp(72px, 9vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% -10%, rgba(29, 139, 180, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(116, 231, 241, 0.7);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 4.75rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 620;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section-tight {
  padding-block: clamp(48px, 6vw, 72px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan-bright);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: var(--cyan);
  content: "";
}

.lede {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--cyan-bright);
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(24, 51, 70, 0.72);
  background: rgba(2, 8, 18, 0.86);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.site-nav a:not(.button) {
  position: relative;
  padding-block: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  transition: color 160ms ease;
}

.site-nav a:not(.button):hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  content: "";
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg {
  width: 21px;
  height: 21px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(54, 216, 233, 0.72);
  border-radius: 12px;
  background: linear-gradient(120deg, #25cfe3, #58e2ee);
  box-shadow: 0 12px 34px rgba(28, 187, 212, 0.16);
  color: #04131b;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(28, 187, 212, 0.24);
}

.button-secondary {
  border-color: var(--line-bright);
  background: var(--surface-raised);
  box-shadow: none;
  color: var(--text);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.84rem;
}

.button svg {
  width: 17px;
  height: 17px;
}

.hero {
  padding-block: clamp(72px, 9vw, 124px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 1.07fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

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

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

.proof-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.proof-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  color: var(--cyan);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(18, 47, 65, 0.46), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
}

.demo {
  padding: 24px;
  overflow: hidden;
}

.demo-toolbar {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.demo-toolbar strong {
  color: var(--cyan-bright);
  font-weight: 600;
}

.app-tabs {
  display: flex;
  gap: 8px;
}

.app-tab {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted-strong);
}

.question-card {
  margin-bottom: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 8, 18, 0.58);
}

.question-label,
.micro-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.question-card p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.result-heading {
  margin-bottom: 12px;
  color: var(--cyan-bright);
  font-size: 1.05rem;
  font-weight: 600;
}

.carrier-list {
  display: grid;
  gap: 10px;
}

.carrier-row {
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 116px 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(9, 25, 38, 0.78);
}

.carrier-name {
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 600;
}

.carrier-note {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.source-chip,
.status-chip {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--muted-strong);
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
}

.status-chip.success {
  border-color: rgba(116, 216, 146, 0.36);
  background: var(--green-soft);
  color: var(--green);
}

.status-chip.warning {
  border-color: rgba(239, 182, 95, 0.36);
  background: var(--amber-soft);
  color: var(--amber);
}

.decline-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 2px solid var(--amber);
  border-radius: 0 10px 10px 0;
  background: var(--amber-soft);
  color: var(--muted-strong);
  font-size: 0.76rem;
  line-height: 1.55;
}

.verified {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
}

.verified svg {
  width: 15px;
  height: 15px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 20px;
}

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

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

.info-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(14, 42, 58, 0.44), transparent 58%), var(--surface);
}

.info-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.icon-box {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(54, 216, 233, 0.26);
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan-bright);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.icon-box.compact {
  margin: 0;
}

.step-card {
  position: relative;
  padding: 64px 24px 26px;
}

.step-number {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(54, 216, 233, 0.48);
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan-bright);
  font-size: 0.75rem;
  font-weight: 650;
}

.format-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.format-list span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.67rem;
}

.banner {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  background: linear-gradient(105deg, rgba(54, 216, 233, 0.11), rgba(10, 28, 42, 0.72));
}

.banner h2,
.banner h3 {
  margin-bottom: 8px;
}

.banner p {
  max-width: 700px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
}

.feature-list {
  display: grid;
  gap: 4px;
}

.feature-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.feature-item:first-child {
  padding-top: 0;
}

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

.feature-item svg {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  color: var(--cyan);
}

.feature-item h3 {
  margin-bottom: 7px;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.scenario-card {
  padding: 26px;
}

.scenario-title {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.scenario-title h3 {
  margin: 0;
}

.scenario-title p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.scenario-grid div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.scenario-grid dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.scenario-grid dd {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.analysis {
  padding: 26px;
}

.analysis-top {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.analysis-top p {
  color: var(--muted);
  font-size: 0.84rem;
}

.carrier-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.carrier-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(2, 8, 18, 0.5);
}

.carrier-card-head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.detail-group {
  padding-block: 14px;
  border-top: 1px solid var(--line);
}

.detail-group h4 {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-group p,
.detail-group ul {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.76rem;
  line-height: 1.55;
}

.detail-group ul {
  padding-left: 17px;
}

.detail-source {
  display: block;
  margin-top: 7px;
  color: var(--cyan-bright);
  font-size: 0.67rem;
}

.terms {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(116, 216, 146, 0.26);
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.73rem;
}

.terms.warning {
  border-color: rgba(239, 182, 95, 0.26);
  background: var(--amber-soft);
  color: var(--amber);
}

.process-row {
  margin-top: 22px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
}

.process-item {
  position: relative;
  color: var(--muted);
  font-size: 0.74rem;
}

.process-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.8rem;
}

.process-index {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: var(--cyan-bright);
  font-size: 0.65rem;
}

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

.pricing-card {
  padding: 32px;
}

.pricing-card .card-kicker {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-bright);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card .card-kicker span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  font-size: 0.72rem;
}

.pricing-card .card-kicker.violet {
  color: var(--violet);
}

.pricing-card .card-kicker.violet span {
  border-color: rgba(156, 131, 255, 0.45);
}

.pricing-card > p {
  color: var(--muted);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(54, 216, 233, 0.44);
  border-radius: 50%;
  color: var(--cyan-bright);
  content: "✓";
  font-size: 0.62rem;
  line-height: 1;
}

.scope-card {
  margin-top: 20px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 42px;
}

.scope-card p {
  color: var(--muted);
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  color: var(--muted-strong);
  font-size: 0.85rem;
}

.security-visual {
  position: relative;
  min-height: 460px;
  padding: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.feature-list.spaced {
  margin-top: 42px;
}

.security-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(54, 216, 233, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(54, 216, 233, 0.035), 0 0 0 64px rgba(54, 216, 233, 0.025);
}

.security-lock {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(54, 216, 233, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 216, 233, 0.2), rgba(4, 17, 26, 0.92));
  color: var(--cyan-bright);
  box-shadow: 0 0 45px rgba(54, 216, 233, 0.15);
}

.security-lock svg {
  width: 34px;
  height: 34px;
}

.security-node {
  position: absolute;
  z-index: 2;
  width: 190px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(9, 25, 38, 0.95);
}

.security-node strong {
  display: block;
  color: var(--text);
  font-size: 0.78rem;
}

.security-node span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.security-node.one {
  top: 35px;
  right: 28px;
}

.security-node.two {
  right: 28px;
  bottom: 35px;
}

.security-node.three {
  bottom: 35px;
  left: 28px;
}

.trust-note {
  margin-top: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(239, 182, 95, 0.28);
  border-radius: 12px;
  background: var(--amber-soft);
}

.trust-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--amber);
}

.trust-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 0.87rem;
}

.trust-note p {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer {
  margin-top: var(--section);
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-main {
  padding-block: 52px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: start;
  gap: 60px;
}

.footer-brand img {
  width: 124px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 290px;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #788792;
  font-size: 0.75rem;
}

.footer-bottom a:hover {
  color: var(--muted-strong);
}

@media (max-width: 980px) {
  .site-header-inner {
    min-height: 76px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 20px 24px 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 8, 18, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.button) {
    padding: 14px 8px;
  }

  .site-nav a[aria-current="page"]::after {
    right: auto;
    bottom: 7px;
    left: 8px;
    width: 28px;
  }

  .site-nav .button {
    margin-top: 10px;
  }

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

  .hero-grid {
    gap: 56px;
  }

  .hero-copy {
    max-width: 740px;
  }

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

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

  .scope-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --section: 72px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .site-brand img {
    width: 118px;
  }

  .hero {
    padding-block: 64px 76px;
  }

  .hero-grid {
    gap: 44px;
  }

  .proof-row,
  .cards-3,
  .cards-4,
  .pricing-grid,
  .carrier-comparison,
  .scenario-grid,
  .process-row,
  .scope-list {
    grid-template-columns: 1fr;
  }

  .demo {
    padding: 16px;
  }

  .demo-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .carrier-row {
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
  }

  .carrier-note {
    grid-column: 1 / -1;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .banner {
    padding: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .analysis,
  .pricing-card,
  .scope-card,
  .security-visual {
    padding: 20px;
  }

  .analysis-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .security-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .security-ring,
  .security-lock {
    display: none;
  }

  .security-node {
    position: static;
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-row: auto;
  }

  .footer-main .button {
    width: fit-content;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
