/* =============================================================================
   IIC • Center of Excellence — Design tokens
   Display: Fraunces (headlines, brand, buttons, stage tracker numerals)
   Body/UI: Inter (paragraphs, forms, lists, data — kept legible at small sizes)
   Palette: cool "paper" surface + ink navy structure + a single warm ember
   accent spent on the one signature element (the stage tracker) and on
   primary actions, so it stays meaningful rather than decorative.
============================================================================= */
:root{
  --ink:        #10192B;
  --ink-soft:   #1B2740;
  --paper:      #F2F4F5;
  --paper-card: #FFFFFF;
  --line:       rgba(16,25,43,0.10);
  --line-strong:rgba(16,25,43,0.16);

  --ember:      #E08C2B;
  --ember-dark: #C4741B;
  --ember-tint: #FBEBD6;

  --teal:       #1F7A6C;
  --teal-tint:  #E3F1EE;

  --slate:      #3D4A5C;
  --danger:     #C1443C;
  --danger-tint:#F8E3E1;

  --text:       #10192B;
  --text-muted: #5B6472;
  --text-faint: #8790A0;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(16,25,43,0.06);
  --shadow: 0 6px 20px rgba(16,25,43,0.08);

  --nav-h: 68px;
  --bar-h: 60px;
  --content-w: 640px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 10px; color: var(--text); }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{ outline: 2px solid var(--ember); outline-offset: 2px; }

/* ---------------------------------------------------------------- layout */
.app-bar{
  position: sticky; top: 0; z-index: 40;
  height: var(--bar-h);
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
}
.app-bar__brand{ display: flex; align-items: baseline; gap: 8px; }
.app-bar__mark{ font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: 0.02em; }
.app-bar__tag{ font-size: 10.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; display: none; }
@media (min-width: 420px){ .app-bar__tag{ display: inline; } }
.app-bar__actions{ display: flex; align-items: center; gap: 10px; }
.points-chip{
  display: flex; align-items: center; gap: 5px;
  background: rgba(224,140,43,0.18); color: var(--ember);
  border: 1px solid rgba(224,140,43,0.35);
  padding: 5px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.app-bar__logout{
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: rgba(255,255,255,0.75);
}
.app-bar__logout:hover{ background: rgba(255,255,255,0.08); color: #fff; }

.app-main{
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 18px 16px calc(var(--nav-h) + 28px);
  min-height: 100vh;
}
.app-main--guest{ padding-bottom: 28px; }

.bottom-nav{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  height: var(--nav-h);
  background: var(--ink);
  display: flex;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 20px rgba(16,25,43,0.18);
}
.bottom-nav__item{
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: rgba(255,255,255,0.55); font-size: 10.5px; font-weight: 500;
  padding-top: 8px;
}
.bottom-nav__item.is-active{ color: var(--ember); }
.bottom-nav__item svg{ display: block; }

/* ---------------------------------------------------------------- flash */
.flash{
  max-width: var(--content-w); margin: 12px auto 0; padding: 12px 14px;
  border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 500;
}
.flash--success{ background: var(--teal-tint); color: var(--teal); }
.flash--error{ background: var(--danger-tint); color: var(--danger); }
.flash--info{ background: var(--ember-tint); color: var(--ember-dark); }

/* ---------------------------------------------------------------- type */
.page-eyebrow{
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 6px; display: block;
}
.page-title{ font-size: 26px; margin-bottom: 4px; }
.page-sub{ color: var(--text-muted); font-size: 14px; margin-bottom: 18px; }
.section-title{ font-size: 17px; margin: 26px 0 10px; }
.section-title:first-child{ margin-top: 0; }

/* ---------------------------------------------------------------- cards */
.card{
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.card--link{ display: block; }
.card--link:active{ transform: scale(0.99); }

.hub-card{
  display: flex; align-items: center; gap: 14px;
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 16px; margin-bottom: 12px;
}
.hub-card__icon{
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--ember);
}
.hub-card__body{ flex: 1; min-width: 0; }
.hub-card__title{ font-family: var(--font-display); font-weight: 600; font-size: 16.5px; }
.hub-card__desc{ color: var(--text-muted); font-size: 12.5px; margin-top: 2px; }
.hub-card__chev{ color: var(--text-faint); flex-shrink: 0; }

/* ---------------------------------------------------------------- signature: stage tracker */
.stage-tracker{ margin: 4px 0 6px; }
.stage-tracker__rail{
  display: flex; gap: 4px; margin-bottom: 10px;
}
.stage-tracker__seg{
  flex: 1; height: 6px; border-radius: 4px; background: var(--line-strong);
}
.stage-tracker__seg.is-done{ background: var(--teal); }
.stage-tracker__seg.is-current{ background: var(--ember); }
.stage-tracker__labels{
  display: flex; justify-content: space-between; gap: 4px;
}
.stage-tracker__label{
  font-size: 9.5px; color: var(--text-faint); text-align: center; flex: 1;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.stage-tracker__label.is-current{ color: var(--ember-dark); font-weight: 700; }
.stage-tracker__num{
  font-family: var(--font-display); font-size: 34px; color: var(--ink); font-weight: 600;
}
.stage-tracker__name{ font-family: var(--font-display); font-size: 15px; color: var(--ember-dark); font-weight: 600; }

/* ---------------------------------------------------------------- buttons */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid transparent; border-radius: 10px;
  padding: 11px 18px; font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: var(--font-display);
}
.btn--primary{ background: var(--ember); color: #fff; }
.btn--primary:hover{ background: var(--ember-dark); }
.btn--ink{ background: var(--ink); color: #fff; }
.btn--ghost{ background: transparent; border-color: var(--line-strong); color: var(--text); }
.btn--teal{ background: var(--teal); color: #fff; }
.btn--danger{ background: transparent; color: var(--danger); border-color: rgba(193,68,60,0.3); }
.btn--sm{ padding: 7px 12px; font-size: 12.5px; border-radius: 8px; }
.btn--block{ width: 100%; }
.btn[disabled]{ opacity: 0.5; cursor: not-allowed; }

/* ---------------------------------------------------------------- forms */
.field{ margin-bottom: 14px; }
.field label{ display: block; font-size: 12.5px; font-weight: 600; color: var(--slate); margin-bottom: 5px; }
.field .hint{ font-size: 11.5px; color: var(--text-faint); margin-top: 4px; }
input[type=text], input[type=email], input[type=password], input[type=number],
input[type=date], input[type=datetime-local], input[type=time], select, textarea{
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--paper-card); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 11px 12px; appearance: none;
}
textarea{ resize: vertical; min-height: 90px; }
input:focus, select:focus, textarea:focus{ border-color: var(--ember); }
.radio-row, .check-row{ display: flex; flex-wrap: wrap; gap: 8px; }
.pill-option{
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 14px;
  font-size: 13px; cursor: pointer; background: var(--paper-card);
}
.pill-option input{ display: none; }
.pill-option:has(input:checked){ background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------------------------------------------------------------- misc components */
.tag{
  display: inline-flex; align-items: center; font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px; background: var(--teal-tint); color: var(--teal);
}
.tag--ember{ background: var(--ember-tint); color: var(--ember-dark); }
.tag--slate{ background: var(--line); color: var(--slate); }
.tag--danger{ background: var(--danger-tint); color: var(--danger); }

.avatar{
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--ember);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.avatar--sm{ width: 30px; height: 30px; font-size: 12px; }

.list-item{
  display: flex; gap: 12px; align-items: flex-start; padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.list-item:last-child{ border-bottom: none; }
.list-item__body{ flex: 1; min-width: 0; }
.list-item__title{ font-weight: 600; font-size: 14.5px; }
.list-item__meta{ color: var(--text-muted); font-size: 12.5px; margin-top: 2px; }

.stat-strip{ display: flex; gap: 10px; margin-bottom: 16px; }
.stat{
  flex: 1; background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 13px 14px;
}
.stat__num{ font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.stat__label{ font-size: 10.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.rank-row{ display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.rank-row:last-child{ border-bottom: none; }
.rank-row__pos{ font-family: var(--font-display); font-weight: 700; color: var(--text-faint); width: 20px; }

.empty-state{
  text-align: center; padding: 34px 18px; color: var(--text-muted);
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
}
.empty-state h3{ color: var(--text); font-size: 15px; margin-bottom: 4px; }

.tabs{ display: flex; gap: 6px; overflow-x: auto; margin-bottom: 16px; padding-bottom: 2px; }
.tabs::-webkit-scrollbar{ display: none; }
.tabs a{
  flex-shrink: 0; padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: var(--paper-card); border: 1px solid var(--line-strong); color: var(--text-muted);
}
.tabs a.is-active{ background: var(--ink); color: #fff; border-color: var(--ink); }

.divider{ height: 1px; background: var(--line); margin: 16px 0; border: none; }

.progress-bar{ height: 8px; border-radius: 6px; background: var(--line); overflow: hidden; }
.progress-bar__fill{ height: 100%; background: var(--teal); }

/* ---------------------------------------------------------------- auth screens */
.auth-shell{
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 20% -10%, #1B2740 0%, var(--ink) 55%);
  padding: 28px 18px;
}
.auth-card{
  width: 100%; max-width: 380px; background: var(--paper-card);
  border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow);
}
.auth-wordmark{ text-align: center; margin-bottom: 22px; }
.auth-wordmark .mark{ font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--ink); }
.auth-wordmark .sub{ font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-top: 2px; }
.auth-foot{ text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.demo-note{
  margin-top: 16px; background: var(--ember-tint); color: var(--ember-dark);
  border-radius: 10px; padding: 10px 12px; font-size: 12px; line-height: 1.5;
}

/* ---------------------------------------------------------------- utility */
.flex-between{ display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mt-0{ margin-top: 0; } .mb-0{ margin-bottom: 0; }
.text-muted{ color: var(--text-muted); }
.text-sm{ font-size: 12.5px; }
.grow{ flex: 1; min-width: 0; }
.truncate{ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (min-width: 640px){
  .app-main{ padding-left: 24px; padding-right: 24px; }
}

/* =============================================================================
   Landing page — reuses every token above; adds full-bleed section bands and
   a handful of marketing-only components. Mobile-first: base rules are the
   phone layout, min-width blocks widen things up for tablet/desktop.
============================================================================= */

/* app-main gets zero padding in landing mode; each section manages its own. */
.app-main--landing{ padding: 0; max-width: none; }

/* Breaks a section out of app-main's centered column to go edge-to-edge,
   while .landing-inner puts the *content* back on a comfortable reading
   measure. This is how the hero/footer/step bands get full-width color. */
.full-bleed{ width: 100%; }
.landing-inner{
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 760px){
  .landing-inner{ max-width: 880px; padding: 0 28px; }
}

/* ------------------------------------------------------------- guest nav */
.guest-nav-wrap{ position: sticky; top: 0; z-index: 40; background: var(--ink); }
.guest-nav{
  display: flex; align-items: center; justify-content: space-between;
  height: var(--bar-h);
}
.guest-nav__brand{ display: flex; align-items: baseline; gap: 8px; color: #fff; }
.guest-nav__mark{ font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: 0.02em; }
.guest-nav__tag{ font-size: 10.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; display: none; }
@media (min-width: 460px){ .guest-nav__tag{ display: inline; } }
.guest-nav__actions{ display: flex; align-items: center; gap: 14px; }
.guest-nav__link{ color: rgba(255,255,255,0.75); font-size: 13.5px; font-weight: 600; }
.guest-nav__link:hover{ color: #fff; }

/* ------------------------------------------------------------------ hero */
.hero{
  position: relative;
  background: radial-gradient(circle at 18% -10%, #24314F 0%, var(--ink) 55%);
  color: #fff;
  overflow: hidden;
  padding-bottom: 34px;
}
.hero__glow{
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(320px 220px at 88% 8%, rgba(224,140,43,0.20), transparent 70%),
    radial-gradient(260px 200px at 8% 80%, rgba(31,122,108,0.16), transparent 70%);
}
.hero__inner{ position: relative; padding-top: 30px; }
.page-eyebrow--light{ color: rgba(255,255,255,0.55); }
.hero__title{
  font-size: 32px; letter-spacing: -0.015em; margin: 6px 0 12px; color: #fff;
}
.hero__sub{
  color: rgba(255,255,255,0.72); font-size: 15px; max-width: 46ch; margin-bottom: 22px;
}
.hero__cta{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.btn--ghost-light{ border-color: rgba(255,255,255,0.28); color: #fff; }
.btn--ghost-light:hover{ background: rgba(255,255,255,0.08); }

.install-chip{
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85); border-radius: 999px; padding: 7px 13px 7px 11px;
  font-size: 12.5px; font-weight: 600; font-family: var(--font-body); cursor: pointer;
  margin-bottom: 26px;
}
.install-chip:hover{ background: rgba(255,255,255,0.14); }

.hero-tracker{
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 16px 16px 14px; backdrop-filter: blur(2px);
}
.hero-tracker__head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hero-tracker__label{ font-family: var(--font-display); font-weight: 600; font-size: 15px; color: #fff; }
.hero-tracker .stage-tracker__seg{
  transform-origin: left; transform: scaleX(0); animation: heroSegFill 0.55s ease forwards;
}
.hero-tracker .stage-tracker__label{ color: rgba(255,255,255,0.45); }
.hero-tracker .stage-tracker__label.is-current{ color: var(--ember); }
@keyframes heroSegFill{ to{ transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce){
  .hero-tracker .stage-tracker__seg{ animation: none; transform: scaleX(1); }
}

/* --------------------------------------------------------------- stats */
/* Grid, not flex: long labels ("Lifecycle stages tracked") would otherwise
   force a min-content width past the viewport on narrow phones and clip. */
.landing-stats{
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 20px 18px 4px;
}
.landing-stats .stat{ flex: none; }
@media (min-width: 480px){ .landing-stats{ grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 760px){ .landing-stats{ padding-left: 28px; padding-right: 28px; } }

/* ------------------------------------------------------------- pillars */
.pillar-grid{
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 4px;
  padding-bottom: 8px;
}
@media (min-width: 620px){
  .pillar-grid{ grid-template-columns: 1fr 1fr; }
  .pillar-card--wide{ grid-column: 1 / -1; }
}
.pillar-card{
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px;
}
.pillar-card__icon{
  width: 40px; height: 40px; border-radius: 11px; margin-bottom: 12px;
  background: var(--ink); color: var(--ember);
  display: flex; align-items: center; justify-content: center;
}
.pillar-card__title{ font-size: 16.5px; margin-bottom: 4px; }
.pillar-card__desc{ color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }
.pillar-card__list{ display: flex; flex-direction: column; gap: 7px; }
.pillar-card__list li{
  font-size: 12.5px; font-weight: 600; color: var(--slate);
  padding-left: 16px; position: relative;
}
.pillar-card__list li::before{
  content: ''; position: absolute; left: 0; top: 6px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}
.pillar-card__list--row{ flex-direction: row; flex-wrap: wrap; gap: 8px 14px; }
.pillar-card__list--row li{ padding-left: 14px; }

/* ------------------------------------------------------------- steps */
.steps-section{ background: var(--ink-soft); color: #fff; padding: 34px 0 8px; margin-top: 30px; }
.steps-section .page-eyebrow{ color: rgba(255,255,255,0.5); }
.steps-section .section-title{ color: #fff; }
.steps-list{ list-style: none; margin: 18px 0 0; padding: 0; }
.steps-list__item{
  display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.steps-list__item:last-child{ border-bottom: none; }
.steps-list__num{
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(224,140,43,0.18); color: var(--ember); border: 1px solid rgba(224,140,43,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
}
.steps-list__title{ font-family: var(--font-display); font-weight: 600; font-size: 15.5px; margin-bottom: 3px; }
.steps-list__desc{ color: rgba(255,255,255,0.65); font-size: 13px; margin: 0; line-height: 1.5; }

/* ----------------------------------------------------------- audience */
.audience-grid{
  display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 4px;
}
@media (min-width: 620px){ .audience-grid{ grid-template-columns: 1fr 1fr; } }
.audience-card{
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 15px 16px;
}
.audience-card__label{ font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ember-dark); margin-bottom: 4px; }
.audience-card p{ font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* -------------------------------------------------------- install banner */
.install-banner{ background: var(--teal-tint); margin-top: 30px; padding: 26px 0; }
.install-banner__inner{ display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.install-banner__icon{
  width: 44px; height: 44px; border-radius: 12px; background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.install-banner__body .section-title{ color: var(--ink); }
.install-banner__actions{ width: 100%; }
.install-banner__ios{ font-size: 12.5px; color: var(--text-muted); margin: 8px 0 0; }
@media (min-width: 620px){
  .install-banner__inner{ flex-direction: row; align-items: center; }
  .install-banner__actions{ width: auto; margin-left: auto; text-align: right; }
}

/* -------------------------------------------------------------- final cta */
.final-cta{ text-align: center; padding: 40px 18px 34px; }
.final-cta__title{ font-size: 24px; margin-bottom: 6px; }
.final-cta .page-sub{ max-width: 42ch; margin-left: auto; margin-right: auto; }
.final-cta .btn{ margin-top: 6px; }

/* --------------------------------------------------------------- footer */
.landing-footer{ background: var(--ink); color: rgba(255,255,255,0.7); padding: 30px 0 0; }
.landing-footer__inner{
  display: flex; flex-direction: column; gap: 24px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.landing-footer__brand p{ margin-top: 8px; max-width: 40ch; color: rgba(255,255,255,0.5); }
/* Margin-based spacing (not just flex `gap`) so columns never visually
   collide, even in older WebKit builds that ignore gap on flex containers. */
.landing-footer__cols{ display: flex; flex-wrap: wrap; margin: -10px -18px 0 0; }
.landing-footer__cols > div{ margin: 10px 18px 0 0; min-width: 130px; }
.landing-footer__heading{
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.4); margin-bottom: 10px;
}
.landing-footer__cols a{
  display: block; font-size: 13px; color: rgba(255,255,255,0.7); padding: 4px 0;
}
.landing-footer__cols a:hover{ color: #fff; }
.landing-footer__legal{
  font-size: 11.5px; color: rgba(255,255,255,0.4); padding: 16px 18px 22px;
}
@media (min-width: 620px){
  .landing-footer__inner{ flex-direction: row; justify-content: space-between; }
}