:root {
  --paper: #f7efe1;
  --paper-soft: #fff8ec;
  --paper-deep: #eadcc6;
  --ink: #1c1c1a;
  --ink-soft: #615c52;
  --taupe: #c9b9a0;
  --taupe-dark: #8b7c66;
  --olive: #6d744d;
  --acid: #d7ff18;
  --acid-quiet: #edf8a4;
  --line: rgba(28, 28, 26, 0.14);
  --line-strong: rgba(28, 28, 26, 0.28);
  --shadow: 0 32px 90px rgba(54, 44, 31, 0.18);
  --shadow-soft: 0 18px 46px rgba(54, 44, 31, 0.12);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 255, 24, 0.26), transparent 9rem),
    radial-gradient(circle at 88% 14%, rgba(201, 185, 160, 0.42), transparent 18rem),
    linear-gradient(180deg, var(--paper) 0%, #fbf3e5 48%, #f0e3cf 100%);
  font-family: "Space Grotesk", ui-sans-serif, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  background:
    repeating-linear-gradient(0deg, rgba(28, 28, 26, 0.027) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(28, 28, 26, 0.018) 0 1px, transparent 1px 11px);
}

body::after {
  content: "";
  position: fixed;
  right: -5rem;
  top: 7rem;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  opacity: 0.46;
  pointer-events: none;
  background: var(--acid);
  clip-path: polygon(50% 0%, 58% 31%, 84% 11%, 70% 43%, 100% 40%, 72% 56%, 94% 78%, 62% 67%, 62% 100%, 48% 70%, 22% 92%, 35% 61%, 0% 62%, 31% 45%, 9% 20%, 40% 31%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 30;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
}

.site-header,
main,
.site-footer {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 0.82rem 0;
  background: rgba(247, 239, 225, 0.84);
  backdrop-filter: blur(18px);
}

.wordmark-link {
  display: block;
  width: clamp(136px, 16vw, 208px);
  border-radius: 14px;
  line-height: 0;
  overflow: hidden;
  text-decoration: none;
}

.wordmark {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.55rem);
}

.nav a,
.footer-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta {
  justify-self: end;
  padding: 0.7rem 1.02rem;
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle,
.menu-button {
  display: none;
}

main {
  padding-bottom: 3rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: stretch;
  min-height: calc(100vh - 92px);
  padding: clamp(1rem, 2.4vw, 1.7rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(110deg, rgba(255, 248, 236, 0.98), rgba(247, 239, 225, 0.9) 46%, rgba(234, 220, 198, 0.7)),
    var(--paper-soft);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  left: 2.4rem;
  right: 2.4rem;
  bottom: 1.2rem;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(28, 28, 26, 0.28) 35%, transparent 0);
  background-size: 14px 1px;
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: -4.8rem;
  width: 13rem;
  height: 13rem;
  opacity: 0.56;
  background: var(--acid);
  clip-path: polygon(50% 0%, 58% 31%, 84% 11%, 70% 43%, 100% 40%, 72% 56%, 94% 78%, 62% 67%, 62% 100%, 48% 70%, 22% 92%, 35% 61%, 0% 62%, 31% 45%, 9% 20%, 40% 31%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.4rem);
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 26, 0.16);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(54, 44, 31, 0.23);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9.4ch;
  margin-bottom: 1.05rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 5.7vw, 5.85rem);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

h1 span {
  display: block;
}

h2 {
  max-width: 12ch;
  margin-bottom: 0.95rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.35rem, 4.9vw, 5rem);
  font-weight: 720;
  line-height: 0.91;
  letter-spacing: -0.052em;
}

h3 {
  margin-bottom: 0.42rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 1.9vw, 1.52rem);
  line-height: 1.02;
}

.hero-subhead {
  max-width: 30ch;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.32rem, 2.25vw, 2.05rem);
  font-style: italic;
  line-height: 1.12;
}

.hero-note,
.section p,
.flow-list p,
.principles p,
.waitlist-copy p,
.form-note,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.62;
}

.hero-note {
  max-width: 34ch;
  margin: 0.2rem 0 0;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.45rem 0 1rem;
}

.button {
  padding: 0.92rem 1.18rem;
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(28, 28, 26, 0.2);
}

.button-primary:hover,
.nav-cta:hover {
  background: #000;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 248, 236, 0.72);
}

.button-secondary:hover {
  background: var(--acid-quiet);
}

.section {
  position: relative;
  margin-top: clamp(2.8rem, 6vw, 5.8rem);
}

.section-kicker,
.feature-heading,
.trust-intro,
.waitlist-copy {
  max-width: 720px;
}

.problem-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(0.6rem, 2vw, 1rem) 0;
}

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

.problem-card {
  position: relative;
  min-height: 215px;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(241, 229, 210, 0.72)),
    var(--paper-soft);
  box-shadow: var(--shadow-soft);
}

.problem-card:nth-child(even) {
  transform: translateY(1.4rem);
}

.problem-card::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1rem;
  height: 1px;
  opacity: 0.55;
  background-image: linear-gradient(90deg, rgba(28, 28, 26, 0.24) 35%, transparent 0);
  background-size: 11px 1px;
}

.problem-icon {
  position: relative;
  display: block;
  width: 3.7rem;
  height: 3.4rem;
  margin-bottom: 1.55rem;
}

.problem-icon::before,
.problem-icon::after {
  content: "";
  position: absolute;
}

.problem-icon.pile::before {
  inset: 0.8rem 0.25rem 0.25rem;
  border: 2px solid var(--ink);
  border-radius: 0.35rem;
  transform: rotate(-5deg);
}

.problem-icon.pile::after,
.problem-icon.fade::after,
.problem-icon.fear::after,
.problem-icon.category::after {
  right: 0.15rem;
  top: 0;
  width: 1.15rem;
  height: 1.15rem;
  background: var(--acid);
  clip-path: polygon(50% 0%, 58% 31%, 84% 11%, 70% 43%, 100% 40%, 72% 56%, 94% 78%, 62% 67%, 62% 100%, 48% 70%, 22% 92%, 35% 61%, 0% 62%, 31% 45%, 9% 20%, 40% 31%);
}

.problem-icon.fade::before {
  left: 0.35rem;
  top: 0.45rem;
  width: 2.25rem;
  height: 2.45rem;
  border: 2px dashed var(--ink);
  border-radius: 0.28rem;
  opacity: 0.8;
}

.problem-icon.fear::before {
  left: 0.2rem;
  top: 0.78rem;
  width: 2.6rem;
  height: 1.8rem;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 43% 43%;
}

.problem-icon.category::before {
  left: 0.2rem;
  top: 1rem;
  width: 2.8rem;
  height: 1.45rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.walkthrough {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.2rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 14%, rgba(215, 255, 24, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(255, 248, 236, 0.88), rgba(234, 220, 198, 0.62));
}

.walkthrough-copy h2 {
  max-width: 11.5ch;
}

.flow-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.flow-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px dashed var(--line-strong);
}

.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-list p {
  margin-bottom: 0;
}

.phone-showcase {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.phone-showcase img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% center;
}

.feature-section {
  padding: clamp(1rem, 4vw, 2.5rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.3), rgba(255, 248, 236, 0.68)),
    radial-gradient(circle at 92% 12%, rgba(215, 255, 24, 0.22), transparent 9rem);
}

.feature-heading {
  margin: 0 auto clamp(1.2rem, 3vw, 2rem);
  text-align: center;
}

.feature-heading h2 {
  max-width: 13ch;
  margin-right: auto;
  margin-left: auto;
}

.feature-board {
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.feature-board img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trust-section {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.2rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 236, 0.62);
}

.trust-intro h2 {
  max-width: 11.5ch;
}

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

.principles article {
  min-height: 205px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.9), rgba(241, 229, 210, 0.6));
}

.line-icon {
  position: relative;
  display: block;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1.3rem;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
}

.line-icon::after {
  right: 0;
  top: 0;
  width: 1.08rem;
  height: 1.08rem;
  background: var(--acid);
  clip-path: polygon(50% 0%, 58% 31%, 84% 11%, 70% 43%, 100% 40%, 72% 56%, 94% 78%, 62% 67%, 62% 100%, 48% 70%, 22% 92%, 35% 61%, 0% 62%, 31% 45%, 9% 20%, 40% 31%);
}

.line-icon.photo::before {
  left: 0.25rem;
  bottom: 0.55rem;
  width: 2.55rem;
  height: 1.65rem;
  border: 2px solid var(--ink);
  border-radius: 1.2rem 1.2rem 0.9rem 0.9rem;
}

.line-icon.review::before {
  left: 0.5rem;
  top: 0.62rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.line-icon.accountant::before {
  left: 0.65rem;
  top: 0.42rem;
  width: 1.75rem;
  height: 2.3rem;
  border: 2px solid var(--ink);
  border-radius: 0.25rem;
}

.disclaimer {
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--line-strong);
  font-size: 0.95rem;
}

.brand-moment {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2.8rem, 6vw, 5.8rem);
  padding: clamp(1.35rem, 4.5vw, 3.2rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 255, 24, 0.22), transparent 12rem),
    linear-gradient(120deg, #1c1c1a, #27251f);
  box-shadow: var(--shadow);
}

.brand-moment::before {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 15rem;
  height: 15rem;
  background: var(--acid);
  opacity: 0.88;
  clip-path: polygon(50% 0%, 58% 31%, 84% 11%, 70% 43%, 100% 40%, 72% 56%, 94% 78%, 62% 67%, 62% 100%, 48% 70%, 22% 92%, 35% 61%, 0% 62%, 31% 45%, 9% 20%, 40% 31%);
}

.brand-moment .eyebrow,
.brand-lines p {
  color: rgba(247, 239, 225, 0.76);
}

.brand-moment h2 {
  max-width: none;
  margin-bottom: 0;
  color: var(--paper);
  font-style: italic;
}

.brand-moment-word,
.brand-lines {
  position: relative;
  z-index: 1;
}

.starburst {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  background: var(--acid);
  clip-path: polygon(50% 0%, 58% 31%, 84% 11%, 70% 43%, 100% 40%, 72% 56%, 94% 78%, 62% 67%, 62% 100%, 48% 70%, 22% 92%, 35% 61%, 0% 62%, 31% 45%, 9% 20%, 40% 31%);
}

.brand-lines {
  display: grid;
  gap: 0.72rem;
}

.brand-lines p {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(247, 239, 225, 0.18);
  border-radius: 999px;
  background: rgba(247, 239, 225, 0.07);
  font-weight: 700;
}

.brand-lines strong {
  color: var(--paper);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.3rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.88), rgba(234, 220, 198, 0.72)),
    var(--paper-soft);
}

.waitlist-copy h2 {
  max-width: 10.5ch;
}

.waitlist-form {
  position: relative;
  display: grid;
  gap: 0.72rem;
  padding: clamp(1.1rem, 3vw, 1.55rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.82);
  box-shadow: var(--shadow-soft);
}

.waitlist-form::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0.85rem;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(28, 28, 26, 0.2) 35%, transparent 0);
  background-size: 10px 1px;
}

.waitlist-form label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.84rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.96);
  font: inherit;
}

.hp-wrap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  gap: 0.72rem;
  padding: 2.6rem 0 3.4rem;
}

.footer-wordmark {
  width: 140px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--taupe-dark);
  font-size: 0.86rem;
}

.button:focus-visible,
.nav a:focus-visible,
.nav-cta:focus-visible,
.wordmark-link:focus-visible,
.menu-button:focus-visible,
.footer-links a:focus-visible,
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: 3px solid rgba(215, 255, 24, 0.95);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0.4rem;
  }

  .hero-art {
    min-height: clamp(320px, 58vw, 520px);
  }

  .problem-section,
  .trust-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .problem-card:nth-child(even),
  .phone-showcase {
    transform: none;
  }

  .walkthrough {
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    max-width: 560px;
    margin-inline: auto;
  }
}

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

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0.55rem 0.82rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 248, 236, 0.78);
    font-weight: 800;
    cursor: pointer;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle:checked ~ .nav,
  .menu-toggle:checked ~ .nav-cta {
    display: flex;
  }

  .menu-toggle:checked ~ .nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 248, 236, 0.96);
  }

  .menu-toggle:checked ~ .nav-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .brand-moment {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 1rem, var(--max));
  }

  .site-header {
    padding-top: 0.62rem;
  }

  .wordmark-link {
    width: 142px;
  }

  .hero,
  .walkthrough,
  .trust-section,
  .waitlist-section,
  .brand-moment,
  .feature-section {
    border-radius: 26px;
    padding: 1rem;
  }

  h1 {
    font-size: clamp(2.72rem, 15.2vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.35rem);
  }

  .hero-subhead {
    font-size: clamp(1.22rem, 6.2vw, 1.78rem);
  }

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

  .hero-art {
    min-height: 295px;
    border-radius: 22px;
  }

  .hero-art img {
    object-position: 68% center;
  }

  .problem-strip {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 185px;
  }

  .phone-showcase,
  .feature-board {
    border-radius: 22px;
  }

  .brand-lines p {
    border-radius: 18px;
  }

  .footer-links {
    flex-direction: column;
  }
}
