/* tounes.io — layout and components.
 * Source of truth: docs/briefs/marketing-site-design (Tounes Site / Tounes Spec).
 * Colours come only from tokens.css (M3 role custom properties); no hex here.
 * The prototype sized with container units (cqi) on a full-width container;
 * on the real site that container is the viewport, so cqi became vw. */

/* ---------- Fonts: Archivo, self-hosted (Loos when its files land) ---------- */

@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-600.woff2') format('woff2');
  font-weight: 600 690;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Expanded';
  src: url('/fonts/archivo-expanded-600.woff2') format('woff2');
  font-weight: 600 690;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Expanded';
  src: url('/fonts/archivo-expanded-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-text: 'Loos Normal', 'Loos', 'Archivo', system-ui, sans-serif;
  --font-display: 'Loos Extended', 'Archivo Expanded', 'Archivo', system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 56px);
  --panel-gutter: clamp(12px, 3vw, 56px);
  --panel-radius: clamp(24px, 3vw, 32px);
  --max: 1200px;
  --header-h: 72px;
}

/* ---------- Base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-surface);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

h1,
h2,
p,
ul,
dl,
dd {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--md-sys-color-primary);
  outline-offset: 3px;
}

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

main {
  flex: 1 1 auto;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 10;
  padding: 10px 16px;
  border-radius: 20px;
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Type roles (Tounes Spec, "Type") ---------- */

.display {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 650;
  font-size: clamp(32px, 5.42vw - 0.5px, 45px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.display-small {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 650;
  font-size: clamp(28px, 3.34vw + 12px, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.headline {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 650;
  font-size: clamp(24px, 1.667vw + 14px, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.title-large {
  font-size: 22px;
  line-height: 28px;
  font-weight: 650;
  text-wrap: balance;
}

.lead {
  font-size: clamp(16px, 0.84vw + 11px, 18px);
  line-height: 1.6;
  color: var(--md-sys-color-on-surface-variant);
  max-width: 56ch;
  text-wrap: pretty;
}

p {
  text-wrap: pretty;
}

/* ---------- Buttons and links (Tounes Spec, "Buttons and links") ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.btn-sm {
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
}

.btn-lg {
  height: 56px;
  padding: 0 28px;
  border-radius: 28px;
  font-size: 17px;
}

.btn-primary {
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 56px color-mix(in srgb, var(--md-sys-color-on-primary) 10%, transparent);
}

.btn-primary:active {
  box-shadow: inset 0 0 0 56px color-mix(in srgb, var(--md-sys-color-on-primary) 12%, transparent);
}

.btn-secondary {
  background: transparent;
  color: var(--md-sys-color-primary);
  box-shadow: inset 0 0 0 1px var(--md-sys-color-outline);
}

.btn-secondary:hover {
  background: color-mix(in srgb, var(--md-sys-color-primary) 8%, transparent);
}

.btn-secondary:active {
  background: color-mix(in srgb, var(--md-sys-color-primary) 12%, transparent);
}

.text-link {
  color: var(--md-sys-color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.text-link:hover {
  text-decoration-thickness: 2px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.actions--center {
  justify-content: center;
}

/* ---------- Header (Tounes Spec, "Header with language switch") ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--md-sys-color-surface);
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}

.bar {
  height: var(--header-h);
  padding: 0 clamp(16px, 5vw, 56px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  border-radius: 9px;
}

.brand span,
.footer-logo span {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.bar-spacer {
  flex: 1 1 auto;
}

.nav-full {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 40px;
  padding: 0 10px;
  border-radius: 20px;
  color: var(--md-sys-color-on-surface);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover,
.lang-switch:hover {
  background: var(--md-sys-color-surface-container-high);
}

.nav-link[aria-current='page'] {
  text-decoration: underline;
  text-decoration-color: var(--md-sys-color-primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 40px;
  padding: 0 12px;
  border-radius: 20px;
  color: var(--md-sys-color-primary);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.header-cta {
  display: none;
}

/* The menu is a <details>: no JavaScript. The sheet hangs off the sticky
 * header, which is its containing block. */
.menu > summary {
  list-style: none;
}

.menu > summary::-webkit-details-marker {
  display: none;
}

.menu-button {
  width: 48px;
  height: 48px;
  margin-right: -4px;
  border-radius: 24px;
  background: var(--md-sys-color-surface-container-high);
  cursor: pointer;
}

.menu-icon {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--md-sys-color-on-surface);
}

.menu-sheet {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-top: 1px solid var(--md-sys-color-outline-variant);
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  background: var(--md-sys-color-surface-container-low);
  padding: 8px clamp(16px, 5vw, 56px) 20px;
}

.menu-nav {
  display: flex;
  flex-direction: column;
}

.menu-link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 4px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  color: var(--md-sys-color-on-surface);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.menu-link[aria-current='page'] {
  text-decoration: underline;
  text-decoration-color: var(--md-sys-color-primary);
  text-underline-offset: 6px;
}

.menu-cta {
  margin-top: 20px;
}

@media (min-width: 600px) {
  .header-cta {
    display: inline-flex;
  }

  .menu-cta {
    display: none;
  }
}

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

  .menu {
    display: none;
  }
}

/* ---------- Page hero ---------- */

.hero {
  padding: clamp(40px, 7vw, 88px) var(--gutter) clamp(24px, 4vw, 48px);
}

.hero--home {
  padding-bottom: clamp(32px, 5vw, 64px);
}

.hero--pricing {
  padding-bottom: clamp(24px, 4vw, 40px);
}

.hero--about,
.hero--contact {
  padding-bottom: clamp(48px, 7vw, 96px);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.hero--about .hero-inner,
.hero--contact .hero-inner {
  gap: clamp(32px, 5vw, 72px);
}

.hero-inner--top {
  align-items: flex-start;
}

.hero-text {
  flex: 1 1 420px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero--home .hero-text,
.hero--about .hero-text,
.hero--contact .hero-text {
  gap: 24px;
}

.hero--contact .hero-text {
  align-items: flex-start;
}

.hero--contact .lead {
  line-height: 1.65;
  max-width: 52ch;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-title {
  max-width: 18ch;
}

.about-body {
  font-size: 18px;
  line-height: 1.7;
  max-width: 62ch;
}

/* ---------- Plates (Tounes Spec, "Illustrations") ---------- */

.plate {
  flex: 0 1 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
}

.plate img {
  width: 100%;
  height: auto;
}

.plate--hero {
  flex: 1 1 380px;
  max-width: 520px;
}

.plate--sm {
  flex-basis: 400px;
}

.plate--lg {
  flex-basis: 460px;
}

.plate--nf {
  flex: none;
  width: min(100%, 320px);
}

.plate--placeholder {
  background: repeating-linear-gradient(
    135deg,
    transparent 0 11px,
    var(--md-sys-color-surface-container-high) 11px 12px
  );
}

/* ---------- Home ---------- */

.reasons {
  padding: clamp(24px, 4vw, 48px) var(--gutter) clamp(48px, 7vw, 96px);
}

.reasons-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 48px);
}

.reason {
  flex: 1 1 280px;
  min-width: 0;
  padding-top: 20px;
  border-top: 4px solid;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reason p {
  color: var(--md-sys-color-on-surface-variant);
}

.rule-primary {
  border-top-color: var(--md-sys-color-primary);
}

.rule-secondary {
  border-top-color: var(--md-sys-color-secondary);
}

.rule-tertiary {
  border-top-color: var(--md-sys-color-tertiary);
}

.panel-section {
  padding: 0 var(--panel-gutter);
}

.panel-section--tight {
  padding-bottom: clamp(24px, 3vw, 32px);
}

.panel {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--panel-radius);
  padding: clamp(28px, 6vw, 72px);
}

.panel--primary {
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

.panel--secondary {
  background: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}

.panel--tertiary {
  background: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
  padding: clamp(28px, 5vw, 56px);
  gap: 12px clamp(32px, 5vw, 72px);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 16px clamp(32px, 5vw, 72px);
  align-items: baseline;
}

.split > h2 {
  flex: 1 1 300px;
}

.panel--tertiary > h2 {
  flex-basis: 280px;
}

.split-body {
  flex: 1.4 1 340px;
  font-size: 17px;
  line-height: 1.65;
}

.teaser {
  padding: clamp(48px, 7vw, 96px) var(--gutter);
}

.teaser-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.teaser-body p {
  color: var(--md-sys-color-on-surface-variant);
}

.closing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px clamp(32px, 5vw, 72px);
  align-items: flex-end;
}

.closing-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.closing-text p {
  font-size: 17px;
  max-width: 52ch;
}

/* ---------- Feature rows (Directors, Boards, Data) ---------- */

.rows-section {
  padding: clamp(16px, 3vw, 40px) var(--gutter) clamp(48px, 7vw, 88px);
}

.rows-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px clamp(32px, 5vw, 72px);
  padding: 28px 0;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}

.rows-section .row > h2,
.rows-section .row > dt {
  flex: 1 1 280px;
}

.row-body {
  flex: 1.4 1 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.row-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--md-sys-color-on-surface-variant);
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 6vw, 64px);
}

main > div > .panel-section:last-child {
  padding-bottom: clamp(48px, 7vw, 96px);
}

.row--term {
  align-items: baseline;
}

.row--term dt {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 650;
  font-size: clamp(22px, 0.84vw + 17px, 26px);
  line-height: 1.25;
  color: var(--md-sys-color-tertiary);
}

.row--term dd {
  flex: 1.4 1 340px;
  font-size: 17px;
  line-height: 1.65;
}

.row-footer {
  padding-top: 28px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}

.rows-section:has(.data-terms) {
  padding-bottom: clamp(48px, 7vw, 96px);
}

/* ---------- Pricing (Tounes Spec, "Pricing table") ---------- */

.pricing {
  padding: 0 var(--panel-gutter);
}

.pricing-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  align-items: flex-start;
}

.price-card {
  flex: 1.5 1 460px;
  min-width: 0;
  background: var(--md-sys-color-surface-container-low);
  border-radius: clamp(24px, 3vw, 28px);
  padding: clamp(8px, 2vw, 16px) clamp(16px, 3vw, 32px) clamp(16px, 3vw, 28px);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.price-table thead th {
  padding: 16px 8px 12px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  color: var(--md-sys-color-on-surface-variant);
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  text-align: right;
}

.price-table thead th:first-child {
  padding-left: 0;
  text-align: left;
}

.price-table thead th:last-child {
  padding-right: 0;
}

.price-table tbody th,
.price-table td {
  padding: 18px 8px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}

.price-table tbody th {
  padding-left: 0;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.price-table td {
  text-align: right;
}

.price-table td:last-child {
  padding-right: 0;
}

.price-annual {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 650;
  font-size: clamp(17px, 1vw + 12px, 20px);
}

.chip-free {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  background: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
  font-size: 15px;
  font-weight: 600;
}

.price-monthly {
  font-size: 16px;
  color: var(--md-sys-color-on-surface-variant);
  white-space: nowrap;
}

.price-note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--md-sys-color-on-surface-variant);
}

.includes {
  flex: 1 1 320px;
  min-width: 0;
  padding: clamp(8px, 2vw, 24px) 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.includes ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.includes li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.55;
}

.includes svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--md-sys-color-secondary);
}

.includes path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq {
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(48px, 7vw, 96px);
}

.faq .split {
  align-items: flex-start;
  gap: 24px clamp(32px, 5vw, 72px);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 20px 0;
  border-top: 1px solid var(--md-sys-color-outline-variant);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item dt {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.4;
}

.faq-item dd {
  font-size: 16px;
  color: var(--md-sys-color-on-surface-variant);
}

/* ---------- 404 ---------- */

.not-found {
  padding: clamp(40px, 6vw, 72px) var(--gutter) clamp(56px, 8vw, 104px);
}

.not-found-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.not-found-inner h1 {
  margin-top: 8px;
}

.not-found-inner p {
  font-size: 17px;
  color: var(--md-sys-color-on-surface-variant);
}

/* ---------- Legal (Tounes Spec, "Legal page layout") ---------- */

.legal {
  padding: clamp(32px, 6vw, 72px) var(--gutter) clamp(48px, 7vw, 96px);
}

.legal-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.toc-side {
  display: none;
  flex: 0 0 240px;
  position: sticky;
  top: 104px;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}

.toc-heading {
  padding: 0 12px 8px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}

.toc-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list a {
  display: block;
  padding: 7px 12px;
  border-radius: 12px;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.toc-list a:hover {
  background: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
}

.legal-article {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 68ch;
}

.legal-article h1 {
  margin-bottom: 16px;
}

.updated-chip {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 28px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--md-sys-color-surface-container-high);
  font-size: 14px;
  font-weight: 500;
}

.updated-label {
  color: var(--md-sys-color-on-surface-variant);
}

.legal-notice {
  margin-bottom: 28px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
  font-size: 16px;
  line-height: 1.55;
}

.toc-inline {
  margin-bottom: 28px;
  border-radius: 16px;
  background: var(--md-sys-color-surface-container-low);
}

.toc-inline > summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.toc-inline > summary::-webkit-details-marker {
  display: none;
}

.toc-list--inline {
  padding: 0 8px 12px;
}

.toc-list--inline a {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 15px;
}

.legal-body h2 {
  margin: 0 0 10px;
  padding-top: 24px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
  font-size: 20px;
  line-height: 28px;
  font-weight: 650;
  text-wrap: balance;
}

.legal-body p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.7;
}

.legal-body ul {
  margin: 0 0 16px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-body li {
  padding-left: 4px;
  font-size: 17px;
  line-height: 1.65;
}

@media (min-width: 840px) {
  .toc-side {
    display: flex;
  }

  .toc-inline {
    display: none;
  }
}

/* ---------- Footer (Tounes Spec, "Footer and 404") ---------- */

.site-footer {
  background: var(--md-sys-color-surface-container-low);
  border-top: 1px solid var(--md-sys-color-outline-variant);
}

.footer-inner {
  padding: clamp(32px, 5vw, 48px) var(--gutter) 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  border-radius: 8px;
}

.footer-logo span {
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  align-items: center;
}

.footer-links a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--md-sys-color-on-surface);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--md-sys-color-outline-variant);
}

.footer-links a:hover {
  text-decoration-color: var(--md-sys-color-on-surface);
}

.footer-copy {
  font-size: 13px;
  line-height: 16px;
  color: var(--md-sys-color-on-surface-variant);
}
