.brand-logo {
  width: 32px;
  height: 32px;
  flex: none;
  object-fit: contain;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(21, 35, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 35, 31, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.section-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(21, 35, 31, 0.08);
  background: rgba(246, 243, 235, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: end center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--forest);
}

.brand-mark::before {
  position: absolute;
  width: 18px;
  height: 18px;
  transform: translateY(-7px) rotate(45deg);
  border-radius: 3px;
  background: var(--white);
  content: "";
}

.brand-mark span {
  z-index: 1;
  width: 16px;
  height: 17px;
  border-radius: 3px 3px 0 0;
  background: var(--white);
}

.launch-badge {
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--mint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-header > .ui-action {
  justify-self: end;
}

a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(238, 124, 69, 0.45);
  outline-offset: 3px;
}

.header-login {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.86rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 76px;
  align-items: center;
  min-height: 720px;
  padding-block: 80px 96px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 5.3vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.22rem;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

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

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.trust-list {
  display: flex;
  gap: 25px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.trust-list li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  isolation: isolate;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 24px 18px 32px;
  border-radius: 48% 52% 46% 54% / 52% 42% 58% 48%;
  background:
    radial-gradient(circle at 25% 25%, #e6eddf, transparent 38%),
    linear-gradient(145deg, #d4e2d5, #cad8c7);
  content: "";
}

.hero-visual-stage {
  position: relative;
  width: 100%;
  padding: 58px 46px 72px;
}

.plan-card {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-inline: auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow);
}

.plan-card-header,
.result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.plan-card-header h2 {
  margin: 0;
  font-family: inherit;
  font-size: 1.85rem;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.card-kicker {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.score-ring {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 72%, var(--paper-deep) 0);
}

.score-ring::before {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.score-ring span {
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 850;
}

.task-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.task-row-alert {
  border-color: #efc4ad;
  background: #fff8f2;
}

.task-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--forest);
  background: var(--mint);
  font-size: 0.7rem;
  font-weight: 850;
}

.task-row-alert .task-icon {
  color: #873f21;
  background: var(--orange-soft);
}

.task-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.task-copy strong {
  overflow: hidden;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-copy small {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-status {
  padding: 6px 9px;
  border-radius: 999px;
  color: #873f21;
  background: var(--orange-soft);
  font-size: 0.6rem;
  font-weight: 820;
}

.task-status-soft {
  color: var(--forest);
  background: var(--mint-light);
}

.plan-progress {
  height: 7px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--paper-deep);
}

.plan-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--forest);
}

.plan-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.feature-bubble {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 168px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 35, 31, 0.08);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(21, 35, 31, 0.1);
}

.feature-bubble i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: var(--forest);
  background: var(--mint);
  font-style: normal;
  font-weight: 850;
}

.feature-bubble span {
  display: flex;
  flex-direction: column;
}

.feature-bubble strong {
  font-size: 0.75rem;
}

.feature-bubble small {
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.feature-bubble-reminder {
  top: 6px;
  right: 18px;
}

.feature-bubble-documents {
  right: 4px;
  bottom: 8px;
}

.feature-bubble-services {
  bottom: 30px;
  left: 4px;
}

.problem-section {
  padding-block: 92px;
  color: var(--white);
  background: var(--forest);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 100px;
  align-items: end;
}

.problem-section .eyebrow {
  color: #b9d0c2;
}

.problem-section h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.problem-copy {
  color: #d7e1dc;
  font-size: 1.03rem;
}

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

.steps-section,
.example-section {
  padding-block: 120px;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 54px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.66);
}

.step-card-featured {
  border-color: transparent;
  background: var(--mint);
}

.step-number {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 55px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 850;
}

.step-card-featured .step-number {
  border-color: var(--forest);
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
}

.plan-result {
  scroll-margin-top: 92px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.plan-result[hidden] {
  display: none;
}

.result-header h3 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.house-label {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--mint-light);
  font-size: 0.68rem;
  font-weight: 800;
}

.generated-tasks {
  display: grid;
  gap: 16px;
  margin-block: 24px;
}

.generated-task {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 35, 31, 0.04);
}

.generated-task-safety,
.generated-task-important {
  border-color: #e8c5b2;
}

.generated-task-date {
  display: flex;
  width: 100px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  flex-direction: column;
  color: var(--forest);
  background: var(--mint);
  text-decoration: none;
}

.generated-task-date span {
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.generated-task-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.generated-task-main {
  min-width: 0;
}

.generated-task .priority-pill {
  margin-bottom: 12px;
  color: var(--forest);
  background: var(--mint-light);
}

.generated-task-safety .priority-pill,
.generated-task-important .priority-pill {
  color: #873f21;
  background: var(--orange-soft);
}

.generated-task h4 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.3;
}

.generated-task p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.generated-task-source {
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 820;
}

.generated-task-side {
  display: flex;
  gap: 22px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  flex-direction: column;
}

.generated-task-meta-group {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.generated-task-meta-group span {
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.generated-task-meta-group strong {
  font-size: 0.8rem;
  line-height: 1.45;
}

.plan-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.plan-summary > span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--mint-light);
  font-size: 0.7rem;
}

.plan-summary strong {
  color: var(--forest);
}

.result-disclaimer {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.example-plan {
  margin-top: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(21, 35, 31, 0.06);
}

.example-plan .generated-tasks {
  margin-bottom: 16px;
}

.example-plan .result-disclaimer {
  margin-bottom: 0;
}

.capabilities-section {
  padding-block: 110px;
  background: var(--mint-light);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.capabilities-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.capabilities-grid i {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--forest);
  background: var(--mint);
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 800;
}

.capabilities-grid span {
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capabilities-grid h3 {
  margin: 10px 0;
}

.capabilities-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.section-heading-row {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.52fr;
  gap: 80px;
  align-items: end;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  color: var(--ink-soft);
}

.detail-card {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 225px;
  gap: 36px;
  align-items: start;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(21, 35, 31, 0.06);
}

.detail-date {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 18px;
  flex-direction: column;
  background: var(--mint);
}

.detail-date span {
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.detail-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.priority-pill,
.pricing-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #873f21;
  background: var(--orange-soft);
  font-size: 0.66rem;
  font-weight: 800;
}

.detail-main h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.detail-main p {
  color: var(--ink-soft);
}

.detail-main a {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 820;
}

.detail-meta {
  display: flex;
  gap: 6px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  flex-direction: column;
}

.detail-meta span {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 720;
  text-transform: uppercase;
}

.detail-meta span:first-child {
  margin-top: 0;
}

.detail-meta strong {
  font-size: 0.83rem;
}

.pricing-section {
  padding-block: 115px;
  color: var(--white);
  background: var(--forest-dark);
}

.pricing-heading {
  max-width: 790px;
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.pricing-heading .eyebrow {
  color: #b9d0c2;
}

.pricing-heading p:not(.eyebrow) {
  max-width: 560px;
  color: #c9d6d0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  padding: 36px;
  border-radius: var(--radius-lg);
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
}

.offer-annual {
  border: 2px solid var(--orange);
}

.offer-ultimate {
  border: 1px dashed #9aa39e;
  color: #5f6964;
  background: #e8e9e4;
  box-shadow: none;
}

.offer-ultimate .pricing-label {
  color: #52605a;
  background: #d5d9d4;
}

.offer-ultimate .price span,
.offer-ultimate .monthly-equivalent,
.offer-ultimate li,
.offer-ultimate small {
  color: #68726d;
}

.offer-ultimate li::before {
  color: #87918c;
}

.future-offer-note {
  margin: -8px 0 28px;
  color: #5f6964;
  font-size: 0.76rem;
  line-height: 1.55;
}

.pricing-label {
  color: var(--forest);
  background: var(--mint);
}

.price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding-block: 6px 22px;
  border-bottom: 1px solid var(--line);
}

.price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.standard-price {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.standard-price strong {
  color: var(--ink);
}

.monthly-equivalent {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin-block: 24px 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.pricing-card li::before {
  color: var(--forest);
  content: "✓";
  font-weight: 900;
}

.pricing-card small {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  text-align: center;
}

.pricing-card-footer {
  margin-top: auto;
}

.pricing-card-footer .ui-action {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding-block: 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-self: end;
}

.footer-links a {
  font-weight: 740;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 70px;
  }

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

  .hero-visual {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .problem-grid,
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .pricing-card {
    max-width: none;
  }

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

  .detail-card {
    grid-template-columns: 90px 1fr;
  }

  .detail-meta {
    grid-column: 2;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .generated-task {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 24px;
  }

  .generated-task-date {
    width: 82px;
  }

  .generated-task-side {
    display: grid;
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .site-header > .ui-action {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero {
    min-height: auto;
    padding-block: 52px 70px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-list {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .hero-visual::before {
    inset: 16px 0;
  }

  .hero-visual-stage {
    padding: 48px 8px;
  }

  .plan-card {
    padding: 21px;
  }

  .task-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .task-status {
    display: none;
  }

  .feature-bubble {
    display: none;
  }

  .problem-section,
  .steps-section,
  .example-section,
  .capabilities-section,
  .pricing-section {
    padding-block: 76px;
  }

  .problem-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps-grid,
  .capabilities-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 220px;
  }

  .step-number {
    margin-bottom: 35px;
  }

  .result-header {
    gap: 15px;
    flex-direction: column;
  }

  .generated-task {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    border-radius: 18px;
  }

  .generated-task-date {
    width: 66px;
    border-radius: 14px;
  }

  .generated-task-date strong {
    font-size: 1.65rem;
  }

  .generated-task h4 {
    font-size: 1.02rem;
  }

  .generated-task-side {
    grid-column: 1 / -1;
  }

  .plan-summary {
    display: grid;
    grid-template-columns: 1fr;
  }

  .example-plan {
    padding: 20px;
  }

  .detail-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .detail-date {
    width: 82px;
  }

  .detail-meta {
    grid-column: 1;
  }

  .pricing-card {
    padding: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-links {
    justify-self: start;
  }
}

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

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