/* ==========================================================================
   Scout Labs HQ — Homepage (Build #1)
   Light-first corporate front door. Hand-authored CSS, no framework.
   ========================================================================== */

:root {
  /* Surfaces — a layered light environment, tonal rhythm section to section */
  --ivory:        #FBF7EF;   /* warm ivory   — hero, how it works */
  --ivory-hi:     #FEFCF6;   /* warm near-white — elevated content surfaces */
  --stone:        #F1EDE3;   /* warm neutral — trust */
  --mist:         #E9EDF3;   /* pale blue-gray — platform */
  --haze:         #DEE6F1;   /* deeper blue-gray — thesis (atmospheric) */
  --navy:         #0B1A2C;   /* deep navy — closing CTA */

  --paper:        var(--ivory);   /* page + generic surface base */
  --paper-alt:    var(--mist);
  --paper-blue:   #E7F0FE;
  --paper-ink:    var(--navy);

  /* Ink — deep navy / charcoal */
  --ink:          #0E1A2B;
  --ink-soft:     #33425A;
  --muted:        #6B7890;
  --faint:        #9AA6B8;

  /* Scout Blue — signature accent (brand mark fill) */
  --blue:         #2B7CF2;
  --blue-deep:    #1B5FD0;
  --blue-tint:    #DCE9FD;

  /* Lines / shadows — restrained */
  --line:         #E6E2D9;
  --line-cool:    #DDE3EC;
  --shadow-sm:    0 1px 2px rgba(14, 26, 43, .04), 0 4px 14px -6px rgba(14, 26, 43, .09);
  --shadow-lg:    0 2px 8px rgba(14, 26, 43, .05), 0 34px 64px -28px rgba(14, 26, 43, .16);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --r: 14px;
  --r-lg: 24px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue-tint); color: var(--ink); }

/* ---------- Layout primitives ------------------------------------------------ */

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

section { padding-block: clamp(72px, 11vw, 144px); }
.section-alt { background: var(--paper-alt); }

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--blue);
  display: inline-block;
}

h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -0.022em; color: var(--ink); }
h1 { font-size: clamp(2.9rem, 7vw, 5.1rem); font-weight: 650; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.015em; }

.lead { font-size: clamp(1.06rem, 1.5vw, 1.28rem); color: var(--ink-soft); line-height: 1.62; max-width: 44ch; }
.accent { color: var(--blue); }
.muted { color: var(--muted); }

/* ---------- Buttons -------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 550;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); box-shadow: var(--shadow-sm); }

.btn-ghost { border-color: var(--line-cool); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(14, 26, 43, .03); }

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); box-shadow: 0 12px 26px -12px rgba(43, 124, 242, .6); }

.btn-on-dark { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-on-dark:hover { background: rgba(255,255,255,.18); }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 550; font-size: 15px; color: var(--blue-deep);
}
.textlink .arw { transition: transform .25s var(--ease); }
.textlink:hover .arw { transform: translateX(3px); }

/* ---------- Header ------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 239, .74);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(251, 247, 239, .93); }

.nav {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand svg { width: 27px; height: 27px; color: var(--blue); flex: none; }
/* Wordmark matches the official Scout Labs lockup (mark + "SCOUT LABS"):
   the brand has no bespoke wordmark typeface — it is set in the product's sans,
   uppercase and tracked, exactly as in the app header and brand assets. */
.brand .wordmark {
  font-weight: 600; font-size: 14.5px; letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-center { display: flex; justify-content: center; gap: 34px; }
.nav-center a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 2px; position: relative; transition: color .2s var(--ease);
}
.nav-center a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--blue); transition: right .28s var(--ease);
}
.nav-center a:hover { color: var(--ink); }
.nav-center a:hover::after { right: 0; }

.nav-right { display: flex; justify-content: flex-end; }

.nav-toggle { display: none; }

/* ---------- Hero ------------------------------------------------------- */
/* Light-first hero with an integrated signal landscape bled into the page —
   no card, no border. The field renders in the right ~55% and fades to the
   warm-white background toward the copy and every edge. */

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 82vh, 820px);
  display: flex;
  align-items: center;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(56px, 8vw, 104px);
  /* warm ivory base, restrained cool-blue atmosphere pooling behind the signal field */
  background:
    radial-gradient(1400px 900px at 100% -6%, rgba(206, 221, 244, .85), rgba(206, 221, 244, 0) 58%),
    var(--ivory);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1150px 720px at 86% 6%, rgba(43, 124, 242, .15), rgba(43, 124, 242, .03) 44%, transparent 72%),
    radial-gradient(720px 520px at 0% 108%, rgba(240, 224, 194, .38), transparent 66%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 180px; z-index: 0;
  background: linear-gradient(180deg, rgba(233, 237, 243, 0), var(--mist));
  pointer-events: none;
}

.hero-field {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-copy {
  max-width: 33rem;
  /* soft warm cushion so type stays crisp over the field's left falloff */
  --hero-veil: radial-gradient(120% 120% at 0% 50%, rgba(251,247,239,.92) 55%, rgba(251,247,239,0) 100%);
}
.hero h1 { margin: 22px 0 24px; }
.hero .lead { max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-flow {
  position: absolute; z-index: 2;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(20px, 4.5vw, 52px);
  display: flex; gap: 6px 9px; align-items: center; flex-wrap: wrap;
  font-size: 10.5px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
  color: var(--faint);
  max-width: 62vw;
}
.hero-flow b { color: var(--blue-deep); font-weight: 700; }
.hero-flow span { color: var(--blue); }

/* ---------- Platform --------------------------------------------------- */

.platform-head { max-width: 46rem; }
.platform-head h2 { margin: 20px 0 20px; }
.platform-head .lead { max-width: 58ch; }

.flagship {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 46px);
  background: var(--ivory-hi);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 650; letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--paper-blue);
  border: 1px solid var(--blue-tint);
  padding: 6px 12px; border-radius: 999px;
}
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.status-pill.dev { color: #6a4b12; background: #FBF3E2; border-color: #F0E1C0; }
.status-pill.dev::before { background: #D9A21C; }
.status-pill.research { color: #4a5568; background: #EEF0F3; border-color: #E1E5EA; }
.status-pill.research::before { background: #8A97A8; }

.flagship-copy h3 { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 620; margin: 18px 0 8px; }
.flagship-copy .product-tag { font-size: 13px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.flagship-copy p { color: var(--ink-soft); margin: 14px 0 26px; max-width: 42ch; }
.flagship-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.device {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-cool);
  box-shadow: var(--shadow-lg);
  background: #dfe4ec;
}
.device img { width: 100%; height: auto; display: block; }
.device .device-mobile { display: none; }

.ecosystem {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.eco-item { background: var(--ivory-hi); padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 10px; }
.eco-item h4 { font-size: 1.12rem; font-weight: 620; letter-spacing: -0.01em; }
.eco-item .eco-domain { font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-deep); }
.eco-item p { font-size: 14.5px; color: var(--muted); flex: 1; }
.eco-item .status-pill { align-self: flex-start; margin-top: 6px; }

/* ---------- How Scout Works ------------------------------------------- */

.how-head { max-width: 40rem; margin-bottom: clamp(44px, 6vw, 72px); }
.how-head h2 { margin-top: 18px; }

.flow-rail {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px;
  margin-bottom: clamp(40px, 5vw, 60px);
  padding: 18px 22px;
  border: 1px solid var(--line-cool);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ivory-hi), var(--paper-blue));
  font-size: 12.5px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  width: fit-content; max-width: 100%;
}
.flow-rail span { white-space: nowrap; }
.flow-rail .on { color: var(--blue-deep); }
.flow-rail .sep { color: var(--blue); font-weight: 400; letter-spacing: 0; }

.stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.stage {
  padding-top: 26px;
  border-top: 2px solid var(--ink);
  position: relative;
}
.stage:nth-child(2) { border-top-color: var(--blue); }
.stage:nth-child(3) { border-top-color: var(--blue-tint); }
.stage .num { font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--muted); }
.stage h3 { font-size: 1.32rem; margin: 12px 0 10px; font-weight: 620; }
.stage p { color: var(--ink-soft); font-size: 15.5px; max-width: 34ch; }

/* ---------- Thesis --------------------------------------------------- */

.thesis .wrap { max-width: 960px; }
.thesis h2 { margin: 22px 0 34px; font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 620; }
.thesis p { font-size: clamp(1.08rem, 1.6vw, 1.34rem); color: var(--ink-soft); max-width: 62ch; }
.thesis p + p { margin-top: 20px; }
.thesis-statement {
  margin-top: 48px;
  display: grid;
  gap: 2px;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
}
.thesis-statement span:nth-child(1) { color: var(--faint); }
.thesis-statement span:nth-child(2) { color: var(--muted); }
.thesis-statement span:nth-child(3) { color: var(--ink-soft); }
.thesis-statement span:nth-child(4) { color: var(--blue); }

/* ---------- Trust --------------------------------------------------- */

.trust-head { max-width: 40rem; margin-bottom: clamp(40px, 5vw, 64px); }
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 0;
}
.principle {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.principles .principle:nth-child(1), .principles .principle:nth-child(2) { border-top: none; }
.principle h3 {
  font-size: 13px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.principle h3::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--blue); transform: rotate(45deg); }
.principle p { color: var(--ink-soft); font-size: 15.5px; max-width: 42ch; }

/* ---------- Closing CTA ------------------------------------------------ */

.closing {
  position: relative;
  background: var(--paper-ink);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.closing canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.closing::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 480px at 50% 0%, rgba(43,124,242,.22), transparent 70%);
  pointer-events: none;
}
.closing .wrap { position: relative; z-index: 1; max-width: 780px; }
.closing h2 { color: #fff; font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 620; }
.closing p { color: rgba(255,255,255,.72); font-size: 1.15rem; margin: 20px 0 36px; }
.closing-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.closing-cta .btn-blue:hover { box-shadow: 0 14px 34px -12px rgba(43,124,242,.8); }
.closing-sign {
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.closing-sign .cs-name { font-size: 13px; font-weight: 700; letter-spacing: .24em; color: rgba(255,255,255,.85); }
.closing-sign .cs-tag { font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 600; letter-spacing: -0.01em; margin-top: 8px; }
.closing-sign .cs-tag b { color: var(--blue); font-weight: 600; }

/* ---------- Footer -------------------------------------------------- */

.site-footer { background: var(--stone); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand svg { color: var(--blue); }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 30ch; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 14.5px; padding: 5px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--blue-deep); }
.footer-base {
  max-width: var(--maxw); margin: 40px auto 0; padding: 22px var(--gutter) 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}

/* ---------- Section atmosphere & tonal rhythm ----------------------- */
/* Light-first, but the page environment carries character: warm ivory and
   soft stone alternating with cooler blue-gray atmospheric sections, each
   with a broad, restrained gradient behind the content. */

#platform, #how, #thesis, #trust { position: relative; isolation: isolate; }
#platform > .wrap, #how > .wrap, #thesis > .wrap, #trust > .wrap {
  position: relative; z-index: 1;
}
#platform::before, #how::before, #thesis::before, #trust::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* Platform — pale blue-gray stone environment */
#platform { background: var(--mist); border-top: 1px solid rgba(43, 124, 242, .09); }
#platform::before {
  background:
    radial-gradient(1100px 520px at 18% -6%, rgba(255, 255, 255, .70), transparent 62%),
    radial-gradient(900px 620px at 98% 44%, rgba(43, 124, 242, .07), transparent 70%);
}

/* How it works — back to warm ivory */
#how { background: var(--ivory); border-top: 1px solid var(--line); }
#how::before {
  background: radial-gradient(1000px 560px at 92% 10%, rgba(240, 226, 196, .30), transparent 68%);
}

/* Thesis — the most pronounced atmospheric section */
#thesis { background: var(--haze); border-top: 1px solid rgba(43, 124, 242, .11); }
#thesis::before {
  background:
    radial-gradient(1250px 760px at 80% 4%, rgba(43, 124, 242, .13), transparent 66%),
    radial-gradient(1100px 900px at -4% 92%, rgba(168, 186, 214, .30), transparent 68%);
}

/* Trust — warm neutral, a whisper of blue */
#trust { background: var(--stone); border-top: 1px solid var(--line); }
#trust::before {
  background: radial-gradient(1000px 560px at 96% 0%, rgba(43, 124, 242, .05), transparent 66%);
}

/* Closing — light gives way to deep navy (intentional, kept) */
.closing { background: var(--navy); }

/* ---------- Reveal-on-scroll motion ---------------------------------- */

/* Progressive enhancement: hidden only when JS is active (html.js). */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Responsive --------------------------------------------- */

@media (max-width: 960px) {
  .nav { grid-template-columns: auto 1fr; }
  .nav-center {
    grid-column: 1 / -1;
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 10px;
    margin-top: 12px;
    border-top: 1px solid var(--line);
  }
  .nav-center a { padding: 12px 4px; font-size: 16px; }
  .nav-center a::after { display: none; }
  .nav.open .nav-center { display: flex; }
  .nav-right { display: none; }
  .nav.open .nav-right { display: flex; grid-column: 1 / -1; order: 4; }
  .nav.open .nav-right .btn { width: 100%; justify-content: center; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border: 1px solid var(--line-cool); border-radius: 12px;
    background: transparent; cursor: pointer; color: var(--ink);
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 17px; height: 1.6px; background: currentColor; position: relative;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
  }
  .nav-toggle span::before { position: absolute; top: -5.5px; }
  .nav-toggle span::after { position: absolute; top: 5.5px; }
  .nav.open .nav-toggle span { background: transparent; }
  .nav.open .nav-toggle span::before { transform: translateY(5.5px) rotate(45deg); }
  .nav.open .nav-toggle span::after { transform: translateY(-5.5px) rotate(-45deg); }

  .hero { min-height: 0; padding-top: clamp(40px, 12vw, 72px); padding-bottom: clamp(72px, 20vw, 130px); }
  .hero-copy { max-width: none; }
  /* field becomes a faint base in the lower area only — masked away from the
     headline so it never competes with the copy */
  .hero-field {
    opacity: .4;
    -webkit-mask-image: linear-gradient(180deg, transparent 34%, #000 78%);
            mask-image: linear-gradient(180deg, transparent 34%, #000 78%);
  }
  .hero-flow {
    position: static; margin-top: 32px; max-width: none;
    justify-content: flex-start;
  }

  .flagship { grid-template-columns: 1fr; }
  .flagship-media { order: -1; }
  .device .device-desktop { display: none; }
  .device .device-mobile { display: block; margin: 0 auto; max-width: 320px; }

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

  .stages { grid-template-columns: 1fr; gap: 0; }
  .stage { padding: 24px 0; border-top: 1px solid var(--line); }
  .stage:first-child { border-top: 2px solid var(--ink); }

  .principles { grid-template-columns: 1fr; }
  .principle { padding: 26px 0; }
  .principles .principle:nth-child(2) { border-top: 1px solid var(--line); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-cta .btn, .flagship-cta .btn, .closing-cta .btn { flex: 1 1 auto; justify-content: center; }
  .flagship-cta { flex-direction: column; align-items: stretch; }
  .flagship-cta .textlink { justify-content: center; }
  .flow-rail { border-radius: 18px; letter-spacing: .1em; padding: 14px 18px; }
  .hero-flow { letter-spacing: .13em; font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { justify-content: flex-start; }
}
