:root {
  --bg: #f2f2f7;
  --surface: #ffffff;
  --surface-soft: #e5e5ea;
  --surface-tint: #f8f8fb;
  --blue: #1065c0;
  --blue-soft: #e1f3fe;
  --blue-text: #1f6c9f;
  --green: #34c759;
  --green-soft: #edf3ec;
  --green-text: #346538;
  --orange: #ff9500;
  --orange-soft: #fff2dc;
  --red: #ff3b30;
  --text: #111116;
  --text-soft: #6e6e73;
  --text-muted: #a0a0a8;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --shadow: 0 18px 55px rgba(17, 17, 22, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101116;
    --surface: #1a1b21;
    --surface-soft: #2a2b33;
    --surface-tint: #15161c;
    --blue-soft: rgba(16, 101, 192, 0.18);
    --green-soft: rgba(52, 199, 89, 0.13);
    --orange-soft: rgba(255, 149, 0, 0.13);
    --text: #f5f5f7;
    --text-soft: #b8b8c0;
    --text-muted: #7d7d86;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.16);
    --shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 6%, rgba(16, 101, 192, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(52, 199, 89, 0.11), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(242, 242, 247, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(16, 17, 22, 0.78);
  }
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--blue), #4a9eff);
  color: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(16, 101, 192, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.brand-mark span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 620;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border);
  cursor: pointer;
}

.nav-toggle-lines {
  display: grid;
  gap: 4px;
  justify-content: center;
}

.nav-toggle-lines span {
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.hero {
  min-height: calc(100dvh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 40px;
  align-items: center;
  padding: 16px 22px 22px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--blue);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 720;
  box-shadow: 0 6px 18px rgba(17, 17, 22, 0.04);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -3.2px;
  font-weight: 820;
}

.lead {
  margin: 0;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius-sm);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.16s ease, opacity 0.16s ease, background 0.16s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(16, 101, 192, 0.24);
}

.btn-secondary {
  color: var(--blue);
  border: 1.5px solid rgba(16, 101, 192, 0.28);
  background: rgba(255, 255, 255, 0.5);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.hero-point {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 10px 26px rgba(17, 17, 22, 0.04);
}

.hero-point strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.hero-point span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.35;
}

.phone-stage {
  justify-self: end;
  position: relative;
  width: min(100%, 400px);
  min-height: 598px;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 78%;
  height: 76%;
  border-radius: 44px;
  background: linear-gradient(150deg, rgba(16, 101, 192, 0.25), rgba(52, 199, 89, 0.18));
  filter: blur(40px);
  opacity: 0.85;
}

.phone-frame {
  position: relative;
  width: 276px;
  height: 598px;
  border-radius: 39px;
  background: #0d0d1a;
  padding: 10px;
  box-shadow: 0 34px 90px rgba(17, 17, 22, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: #f2f2f7;
}

.app-preview {
  width: calc(100% / 0.95);
  height: calc(100% / 0.95);
  padding: 35px 10px 40px;
  background: #f2f2f7;
  color: #1c1c1e;
  font-variant-numeric: tabular-nums;
  transform: scale(0.95);
  transform-origin: top left;
}

.preview-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 23px;
  border-radius: 999px;
  background: #050508;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}

.preview-date-control {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 760;
}

.preview-date-arrow {
  width: 23px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #6e6e73;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.preview-weight {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, 0.1);
}

.preview-weight strong {
  font-size: 9px;
  line-height: 1;
}

.preview-weight span {
  margin-top: 2px;
  color: #8e8e93;
  font-size: 6px;
}

.preview-progress {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  margin: 5px 3px 3px;
}

.preview-time-block {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.preview-time-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(#146cc3 4deg, #e5e5ea 0);
  display: grid;
  place-items: center;
}

.preview-time-ring-inner {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: #f2f2f7;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.preview-time-ring-inner strong {
  font-size: 14px;
  line-height: 1;
}

.preview-time-ring-inner span {
  margin-top: 2px;
  color: #636366;
  font-size: 9px;
}

.preview-progress-caption {
  color: #636366;
  font-size: 9px;
  font-weight: 600;
}

.preview-calorie-ring {
  justify-self: center;
  width: 103px;
  height: 103px;
  border-radius: 50%;
  background: conic-gradient(#2fc65c 14deg, #e5e5ea 0);
  display: grid;
  place-items: center;
}

.preview-calorie-ring-inner {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f2f2f7;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.preview-calorie-ring-inner strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.7px;
}

.preview-calorie-ring-inner b {
  margin-top: 3px;
  font-size: 12px;
}

.preview-calorie-ring-inner span {
  margin-top: 5px;
  color: #6e6e73;
  font-size: 7px;
  font-weight: 600;
}

.preview-goal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 2px 1px 0;
}

.preview-goal-row > span {
  min-width: 0;
  height: 22px;
  padding: 0 7px;
  border: 1px solid #d1d1d6;
  border-radius: 999px;
  background: #fff;
  color: #6e6e73;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  font-size: 6.5px;
}

.preview-goal-row strong {
  color: #636366;
}

.preview-goal-message {
  margin: 8px 0 7px;
  color: #636366;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
}

.preview-balance {
  margin: 0 1px 7px;
}

.preview-balance-labels {
  display: flex;
  justify-content: space-between;
  font-size: 7.5px;
}

.preview-balance-labels strong:first-child {
  color: #15903e;
}

.preview-balance-labels strong:last-child {
  color: #c62828;
}

.preview-balance-track {
  position: relative;
  height: 7px;
  margin-top: 5px;
  border-radius: 999px;
  background: #e1e1e6;
}

.preview-balance-fill {
  position: absolute;
  left: 13%;
  width: 37%;
  height: 100%;
  border-radius: 999px;
  background: #30c95c;
}

.preview-target-marker,
.preview-zero-marker {
  position: absolute;
  top: -4px;
  width: 2px;
  height: 15px;
  border-radius: 2px;
}

.preview-target-marker {
  left: 40%;
  background: #ff9500;
}

.preview-zero-marker {
  left: 50%;
  background: #1c1c1e;
}

.preview-zero-label {
  width: 50%;
  margin-top: 2px;
  text-align: right;
  color: #636366;
  font-size: 6px;
  font-weight: 700;
}

.preview-balance-copy {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 3px;
  margin-top: 3px;
  font-size: 7.5px;
}

.preview-balance-copy strong {
  color: #158f3d;
  font-size: 10px;
}

.preview-balance-copy span {
  color: #8e8e93;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 7px;
}

.preview-card {
  border-radius: 13px;
  background: #fff;
  padding: 9px;
}

.preview-card-label {
  color: #636366;
  font-size: 8px;
  font-weight: 700;
}

.preview-card-number {
  margin: 7px 0 6px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.preview-card-number span {
  color: #8e8e93;
  font-size: 8px;
  font-weight: 500;
}

.preview-meal {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5ea;
  padding: 5px 0;
  color: #6e6e73;
  font-size: 7px;
}

.preview-meal strong {
  color: #3a3a3c;
}

.preview-meal .preview-blue {
  color: #146cc3;
}

.preview-weight-card {
  position: relative;
  height: 74px;
  margin-top: 7px;
  padding: 8px;
  overflow: hidden;
  border-radius: 13px;
  background: #fff;
}

.preview-segmented {
  height: 21px;
  padding: 2px;
  border-radius: 6px;
  background: #ededed;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-align: center;
  color: #6e6e73;
  font-size: 7px;
}

.preview-segmented strong {
  height: 17px;
  border-radius: 5px;
  background: #fff;
  color: #1c1c1e;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 3px rgba(17, 17, 22, 0.12);
}

.preview-weight-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
  color: #636366;
  font-size: 7.5px;
}

.preview-weight-title span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #30c95c;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
}

.preview-chart-line {
  width: 70%;
  height: 16px;
  margin: 1px auto 0;
  border-bottom: 1.5px solid #146cc3;
  border-radius: 0 0 50% 40%;
  transform: rotate(-2deg);
}

.preview-tab-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38px;
  padding: 4px 10px 3px;
  border-top: 1px solid #dedee3;
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.preview-tab-bar span {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1px;
  color: #8e8e93;
  font-size: 5px;
  font-weight: 600;
}

.preview-tab-bar b {
  font-size: 10px;
  line-height: 1;
}

.preview-tab-bar .active {
  color: #0a66c2;
}

.section {
  padding: 70px 0;
}

.section.compact {
  padding-top: 36px;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.section-copy {
  max-width: 660px;
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
}

.bento {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card.large {
  grid-row: span 2;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.card.tinted-blue {
  background: linear-gradient(160deg, #0a1628 0%, #1065c0 68%, #4a9eff 100%);
  color: #fff;
}

.card.tinted-blue p,
.card.tinted-blue .muted {
  color: rgba(255, 255, 255, 0.72);
}

.card.tinted-green {
  background: var(--green-soft);
}

.card.tinted-orange {
  background: var(--orange-soft);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.mini-dashboard {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-tile {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  padding: 14px;
}

.mini-label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.mini-number {
  margin-top: 10px;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1px;
}

.ring-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.ring {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 248deg, rgba(255, 255, 255, 0.2) 0);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.ring::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #0f2d54;
}

.ring-text {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.list-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.list-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
}

.list-row:last-child {
  border-bottom: 0;
}

.icon-box {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
}

.icon-blue {
  background: var(--blue-soft);
  color: var(--blue-text);
}

.icon-green {
  background: var(--green-soft);
  color: var(--green-text);
}

.icon-orange {
  background: var(--orange-soft);
  color: #9a6200;
}

.list-row strong {
  display: block;
  font-size: 15px;
}

.list-row span {
  color: var(--text-soft);
  display: block;
  margin-top: 2px;
  font-size: 13px;
}

.page-hero {
  padding: 76px 0 34px;
}

.page-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  margin-bottom: 10px;
}

.page-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -2.7px;
}

.page-lead {
  max-width: 720px;
  color: var(--text-soft);
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 28px 0 8px;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  line-height: 1.62;
  font-size: 15px;
}

.legal-card ul {
  padding-left: 18px;
}

.legal-card strong {
  color: var(--text);
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 720;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-tint);
  color: var(--text);
  padding: 13px 14px;
  outline: 0;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(16, 101, 192, 0.1);
}

.form-note {
  min-height: 20px;
  color: var(--green-text);
  font-size: 13px;
  font-weight: 650;
}

.site-footer {
  padding: 36px 0 46px;
  border-top: 1px solid var(--border);
}

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

.footer-company {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 620;
}

@media (prefers-reduced-motion: no-preference) {
  .card,
  .btn,
  .nav-links a {
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  }

  .card:hover {
    transform: translateY(-2px);
  }
}

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

  .phone-stage {
    justify-self: center;
    min-height: 598px;
  }

  .bento,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card.large {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 62px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    padding: 38px 16px 44px;
    gap: 24px;
  }

  h1,
  .page-title {
    letter-spacing: -2px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 474px;
  }

  .phone-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 276px;
    height: 598px;
    border-radius: 39px;
    padding: 10px;
    transform: translate(-50%, -50%) scale(0.78);
  }

  .phone-screen {
    border-radius: 31px;
  }

  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
