:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --surface-2: #eef4ef;
  --ink: #162019;
  --muted: #66736a;
  --line: #dce3dc;
  --accent: #176b54;
  --accent-2: #d94636;
  --warning: #b26a00;
  --warning-bg: #fff3d6;
  --danger: #b42318;
  --danger-bg: #ffe4df;
  --success: #177245;
  --success-bg: #def7e8;
  --draft: #6b7280;
  --draft-bg: #edf0f3;
  --shadow: 0 24px 60px rgba(22, 32, 25, 0.1);
  --shadow-soft: 0 14px 34px rgba(22, 32, 25, 0.08);
  --focus: 0 0 0 4px rgba(23, 107, 84, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
}

code {
  background: #eef4ef;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-header {
  align-items: center;
  background: rgba(247, 248, 244, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.brand {
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  padding: 5px 7px 5px 0;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.brand:hover {
  background: rgba(23, 107, 84, 0.08);
  color: var(--accent);
  transform: translateY(-1px);
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-size: 12px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.landing-nav,
.hero-actions,
.toolbar-actions,
.actions,
.button-row,
.filter-row,
.nav-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-nav a {
  color: var(--muted);
  font-weight: 650;
}

.landing-nav .button {
  color: inherit;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 750;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active,
.mini-button:active {
  transform: translateY(0);
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 20px rgba(23, 107, 84, 0.18);
}

.button.secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button.danger {
  background: var(--danger-bg);
  color: var(--danger);
}

.button.large {
  min-height: 48px;
  padding: 0 20px;
}

.hero {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 56px) clamp(32px, 5vw, 64px);
}

.launch-hero {
  min-height: calc(92vh - 72px);
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 7vw, 78px);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  letter-spacing: 0;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
  max-width: 620px;
}

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

.hero-preview {
  align-self: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.preview-top,
.preview-deal {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.preview-top {
  background: #17211a;
  border-radius: 8px;
  color: white;
  min-height: 84px;
  padding: 18px;
}

.preview-top span,
.preview-deal small {
  color: rgba(255, 255, 255, 0.75);
}

.preview-top strong {
  font-size: 32px;
}

.preview-deal,
.preview-email {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.preview-deal small {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.preview-deal span,
.status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  padding: 6px 10px;
  white-space: nowrap;
}

.preview-deal.urgent {
  background: var(--warning-bg);
  border-color: #ffd487;
}

.preview-deal.urgent span,
.status.expiring-soon {
  background: var(--warning-bg);
  color: var(--warning);
}

.preview-email {
  background: #f4f7f1;
}

.preview-email p {
  color: var(--muted);
  margin: 8px 0 0;
}

.section {
  padding: clamp(52px, 7vw, 84px) clamp(20px, 4vw, 56px);
}

.band {
  background: #eef4ef;
}

.works-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 239, 0.96)),
    radial-gradient(circle at 84% 18%, rgba(23, 107, 84, 0.12), transparent 30%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-card,
.feature-tile,
.summary-card,
.panel,
.deal-card,
.auth-card,
.modal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card {
  color: #334039;
  font-weight: 700;
  line-height: 1.45;
  min-height: 140px;
  padding: 20px;
}

.feature-tile,
.feature-card {
  min-height: 190px;
  padding: 20px;
}

.feature-card {
  display: grid;
  align-content: start;
}

.feature-tile span,
.steps span {
  color: var(--accent-2);
  font-weight: 900;
}

.feature-tile b,
.feature-card b,
.steps b {
  display: block;
  font-size: 18px;
  margin: 8px 0;
}

.feature-tile p,
.feature-card p,
.steps p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

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

.steps div {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  min-height: 170px;
  padding: 22px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.steps div:hover {
  border-color: #bfd4c8;
  box-shadow: 0 18px 38px rgba(22, 32, 25, 0.11);
  transform: translateY(-2px);
}

.cta-block {
  align-items: center;
  background: #17211a;
  color: white;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(36px, 6vw, 68px) clamp(20px, 4vw, 56px);
}

.social-proof {
  background: #17211a;
  color: white;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 850;
  line-height: 1.15;
  padding: clamp(36px, 6vw, 70px) clamp(20px, 4vw, 56px);
}

.pricing-section {
  background: white;
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.price-card strong {
  display: block;
  font-size: 28px;
  margin: 10px 0;
}

.price-card ul,
.plain-list {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  padding-left: 18px;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-column {
  display: grid;
  gap: 14px;
}

.faq-section {
  background: #f9faf7;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-column: auto;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.faq-item:hover {
  border-color: #bfd4c8;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 850;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  min-height: 68px;
  padding: 18px 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  align-items: center;
  background: #e9f2ed;
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 19px;
  font-weight: 850;
  height: 28px;
  justify-content: center;
  line-height: 28px;
  padding-bottom: 2px;
  transition: transform 0.28s ease, background 0.24s ease, color 0.24s ease;
  width: 28px;
}

.faq-item[open] .faq-icon {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-item p {
  animation: faqReveal 0.28s ease;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  padding: 0 20px 20px;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  align-items: center;
  background: white;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-block h2 {
  max-width: 680px;
  margin: 0;
}

.auth-wrap {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 24px;
}

.public-main {
  min-height: calc(100vh - 139px);
  padding: clamp(36px, 6vw, 70px) clamp(20px, 4vw, 56px);
}

.auth-card {
  box-shadow: var(--shadow);
  margin: auto;
  max-width: 440px;
  padding: 28px;
  width: 100%;
}

.auth-switch {
  margin-top: 16px;
}

.form-grid.compact {
  margin-top: 14px;
}

.demo-account-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}

.narrow {
  margin: 0 auto;
  max-width: 820px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  background: #fffafa;
  border-color: #e07163;
}

.field-error {
  color: var(--danger);
  font-size: 13px;
  font-weight: 750;
  margin: -2px 0 0;
}

.field label,
.check-group legend {
  color: #334039;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  background: white;
  border: 1px solid #cad5cc;
  border-radius: 8px;
  color: var(--ink);
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: var(--focus);
  outline: none;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

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

.loading-state {
  align-items: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  min-height: 100vh;
}

.spinner {
  animation: spin 1s linear infinite;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 999px;
  height: 38px;
  width: 38px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.app-header {
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(16px, 3vw, 36px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.app-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.app-nav a,
.nav-tabs button {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  min-height: 38px;
  padding: 0 12px;
  white-space: nowrap;
}

.app-nav a.active,
.nav-tabs button.active {
  background: #e9f2ed;
  color: var(--accent);
}

.app-main {
  padding: 24px clamp(16px, 3vw, 36px) 48px;
}

.view-header {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.public-header {
  margin: 0 auto 20px;
  max-width: 920px;
}

.view-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.summary-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.summary-card {
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.summary-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.summary-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.summary-card strong {
  display: block;
  font-size: 32px;
}

.panel {
  padding: 16px;
  box-shadow: 0 1px 0 rgba(22, 32, 25, 0.02);
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 980px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 10px;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

td strong {
  display: block;
}

td small,
.muted {
  color: var(--muted);
}

.toolbar {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 1fr) 180px auto;
  margin-bottom: 10px;
}

.status.active {
  background: var(--success-bg);
  color: var(--success);
}

.status.expired {
  background: var(--danger-bg);
  color: var(--danger);
}

.status.renewed {
  background: #e2f1ff;
  color: #14538c;
}

.status.draft {
  background: var(--draft-bg);
  color: var(--draft);
}

.status.expiring-soon {
  border: 1px solid #ffd487;
}

.status.expiring-soon,
.status.expiring-soon {
  background: var(--warning-bg);
  color: var(--warning);
}

.status.expired {
  background: var(--danger-bg);
  color: var(--danger);
}

.status.active {
  background: var(--success-bg);
  color: var(--success);
}

.status.renewed {
  background: #e2f1ff;
  color: #14538c;
}

.status.draft {
  background: var(--draft-bg);
  color: var(--draft);
}

.mini-button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  min-height: 34px;
  padding: 0 10px;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.mini-button:hover {
  border-color: #bfd4c8;
  transform: translateY(-1px);
}

.mini-button.primary {
  background: var(--accent);
  color: white;
}

.mini-button.danger {
  background: var(--danger-bg);
  color: var(--danger);
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field.full,
.check-group.full,
.form-section.full {
  grid-column: 1 / -1;
}

.check-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-check {
  align-items: center;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 750;
  gap: 7px;
  padding: 8px 10px;
}

.pill-check input {
  min-height: auto;
  width: auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-column: 1 / -1;
  padding: 14px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.details-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.deal-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.metric-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric {
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.metric small {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}

.timeline {
  border-left: 2px solid var(--line);
  display: grid;
  gap: 14px;
  margin-left: 7px;
  padding-left: 18px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  background: var(--accent);
  border: 3px solid white;
  border-radius: 999px;
  content: "";
  height: 12px;
  left: -26px;
  position: absolute;
  top: 3px;
  width: 12px;
}

.timeline-item b {
  display: block;
}

.timeline-item span {
  color: var(--muted);
  font-size: 13px;
}

.reminder-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  overflow-x: auto;
}

.reminder-column {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 240px;
  padding: 14px;
}

.deal-card {
  margin-top: 10px;
  padding: 12px;
}

.deal-card-list {
  display: none;
}

.card-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.deal-card b {
  display: block;
}

.deal-card .actions {
  margin-top: 10px;
}

.generator-layout,
.templates-layout,
.checklist-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.email-output,
.invoice-output,
.copy-box {
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 180px;
  padding: 14px;
  white-space: pre-wrap;
}

.modal-backdrop {
  align-items: center;
  background: rgba(22, 32, 25, 0.38);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 80;
}

.demo-banner,
.disclaimer,
.error-box {
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.45;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.demo-banner {
  background: #e9f2ed;
  border: 1px solid #c8ded1;
  color: #164735;
}

.disclaimer {
  background: #fff3d6;
  border: 1px solid #ffd487;
  color: #6c4300;
}

.error-box {
  background: var(--danger-bg);
  border: 1px solid #ffb9ad;
  color: var(--danger);
  font-weight: 700;
}

.error-box ul {
  margin-bottom: 0;
  margin-top: 8px;
  padding-left: 18px;
}

.subtle-count {
  color: var(--muted);
  font-size: 14px;
}

.empty-state {
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 760px;
  padding: 28px;
}

.panel-title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.legal {
  margin: 0 auto;
  max-width: 860px;
}

.legal p {
  color: var(--muted);
  line-height: 1.6;
}

.complete-check {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-weight: 800;
  gap: 6px;
  white-space: nowrap;
}

.complete-check input {
  min-height: auto;
  width: auto;
}

.stack-gap {
  margin-top: 14px;
}

.modal-card {
  box-shadow: var(--shadow);
  max-height: calc(100vh - 36px);
  max-width: 760px;
  overflow: auto;
  padding: 20px;
  width: 100%;
}

.toast {
  background: #17211a;
  border-radius: 8px;
  bottom: 18px;
  color: white;
  font-weight: 800;
  left: 50%;
  padding: 12px 16px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 100;
}

@media (max-width: 1100px) {
  .grid.four,
  .grid.five,
  .grid.three,
  .pricing-grid,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .deal-layout,
  .generator-layout,
  .templates-layout,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .landing-nav a {
    display: none;
  }

  .site-header,
  .app-header,
  .view-header,
  .cta-block {
    align-items: stretch;
    flex-direction: column;
  }

  .app-header {
    position: static;
  }

  .steps,
  .grid.four,
  .grid.five,
  .grid.three,
  .pricing-grid,
  .faq-grid,
  .summary-grid,
  .form-grid,
  .details-grid,
  .metric-list {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    min-width: 0;
  }

  .preview-deal,
  .preview-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .button,
  .mini-button {
    width: 100%;
  }

  .toolbar-actions,
  .actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .table-wrap {
    display: none;
  }

  .deal-card-list {
    display: grid;
    gap: 12px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-nav {
    width: 100%;
  }

  .app-nav a {
    flex: 0 0 auto;
  }
}
