:root {
  color-scheme: light;
  --gz-orange: #ff9f12;
  --gz-orange-strong: #f28705;
  --gz-yellow: #ffc84d;
  --gz-magenta: #e83d8e;
  --gz-purple: #332a48;
  --gz-purple-soft: #5d536f;
  --gz-teal: #139c8b;
  --gz-green: #4f9f37;
  --gz-red: #d94747;
  --paper: #fbfaf8;
  --panel: #ffffff;
  --line: #ebe8ef;
  --muted: #8a8493;
  --shadow: 0 22px 56px rgba(45, 38, 55, 0.16);
  --radius-card: 8px;
  --radius-control: 999px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--gz-purple);
  background:
    linear-gradient(180deg, rgba(255, 159, 18, 0.14), rgba(232, 61, 142, 0.08) 42%, rgba(19, 156, 139, 0.08)),
    #f3f1f5;
  font-family: var(--font);
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.prototype-stage {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.phone-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  width: min(430px, 100%);
  height: min(920px, calc(100dvh - 48px));
  min-height: 720px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(51, 42, 72, 0.1);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 8px;
  font-weight: 800;
  color: #19131f;
}

.status-icons {
  font-size: 13px;
  color: #211a2a;
}

.app-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 14px;
  background: rgba(251, 250, 248, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  justify-self: center;
  width: 188px;
  max-width: 100%;
  height: auto;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--gz-purple);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.35;
}

.avatar-button {
  color: #fff;
  background:
    linear-gradient(135deg, var(--gz-magenta), var(--gz-orange) 74%);
  border-color: transparent;
}

.screen {
  overflow-y: auto;
  padding: 18px 24px 96px;
  scrollbar-width: none;
}

.screen::-webkit-scrollbar {
  display: none;
}

.bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 10px 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 56px;
  padding: 7px 4px 5px;
  color: #a39dab;
  background: transparent;
  border: 0;
  border-radius: var(--radius-card);
  cursor: pointer;
}

.nav-item svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.nav-item span {
  font-size: 12px;
  font-weight: 800;
}

.nav-item.active {
  color: var(--gz-orange-strong);
}

.nav-badge {
  position: absolute;
  top: 2px;
  right: 18px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  color: #fff;
  background: var(--gz-magenta);
  border-radius: var(--radius-control);
  font-size: 11px;
  font-weight: 900;
}

.page-kicker {
  margin: 0 0 8px;
  color: var(--gz-orange-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  color: var(--gz-purple);
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.05;
  font-weight: 900;
}

.page-subtitle {
  margin: 10px 0 0;
  color: var(--gz-purple-soft);
  font-size: 15px;
  line-height: 1.42;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 26px 0 14px;
}

.section-title h2,
.section-title h3 {
  margin: 0;
  color: var(--gz-purple);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title button {
  color: var(--gz-orange-strong);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.search-bar {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 6px 8px 6px 18px;
  margin: 16px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  box-shadow: 0 8px 22px rgba(51, 42, 72, 0.05);
}

.search-bar svg {
  width: 21px;
  height: 21px;
  color: #a39dab;
}

.search-bar input {
  width: 100%;
  min-width: 0;
  color: var(--gz-purple);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
  font-weight: 700;
}

.search-bar input::placeholder {
  color: #aaa4b1;
}

.search-button,
.primary-button,
.secondary-button,
.ghost-button,
.text-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: var(--radius-control);
  border: 0;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.search-button svg,
.primary-button svg,
.secondary-button svg,
.ghost-button svg,
.text-button svg,
.danger-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.7;
}

.search-button {
  min-width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: var(--gz-orange);
}

.primary-button {
  padding: 0 22px;
  color: #fff;
  background: var(--gz-orange);
  box-shadow: 0 12px 22px rgba(242, 135, 5, 0.24);
}

.secondary-button {
  padding: 0 18px;
  color: var(--gz-purple);
  background: #fff;
  border: 1px solid var(--line);
}

.ghost-button {
  padding: 0 16px;
  color: var(--gz-orange-strong);
  background: rgba(255, 159, 18, 0.12);
}

.text-button {
  min-height: auto;
  padding: 0;
  color: var(--gz-orange-strong);
  background: transparent;
}

.danger-button {
  padding: 0 18px;
  color: #fff;
  background: var(--gz-red);
}

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

.scan-panel {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.scan-viewfinder {
  position: relative;
  min-height: 242px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(51, 42, 72, 0.12), rgba(51, 42, 72, 0.03)),
    #f7f3ea;
  border-radius: var(--radius-card);
}

.scan-viewfinder::before {
  content: "";
  position: absolute;
  inset: 32px 28px;
  border: 2px solid rgba(255, 159, 18, 0.78);
  border-radius: var(--radius-card);
  box-shadow: 0 0 0 999px rgba(20, 16, 28, 0.16);
}

.scan-line {
  position: absolute;
  right: 32px;
  left: 32px;
  top: 48%;
  height: 3px;
  background: var(--gz-magenta);
  box-shadow: 0 0 18px rgba(232, 61, 142, 0.7);
}

.camera-caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.camera-caption span {
  padding: 8px 10px;
  background: rgba(51, 42, 72, 0.72);
  border-radius: var(--radius-control);
}

.scan-panel .button-row {
  margin-top: 14px;
}

.chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 13px 7px 7px;
  color: var(--gz-purple);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.chip-dot {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--chip-color, var(--gz-orange));
  border-radius: 50%;
}

.chip-dot svg {
  width: 17px;
  height: 17px;
}

.product-list {
  display: grid;
  gap: 10px;
}

.product-card,
.recipe-ingredient,
.shopping-item,
.compare-card,
.info-block,
.account-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.product-card {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}

.product-copy {
  min-width: 0;
}

.product-copy h3,
.product-copy h4 {
  margin: 0 0 4px;
  color: var(--gz-purple);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag,
.source-tag,
.score-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-control);
  font-size: 11px;
  font-weight: 900;
}

.tag {
  color: var(--gz-purple);
  background: #f3f1f5;
}

.source-tag {
  color: var(--gz-orange-strong);
  background: rgba(255, 159, 18, 0.14);
}

.source-tag.recipe {
  color: var(--gz-teal);
  background: rgba(19, 156, 139, 0.12);
}

.score-pill {
  color: #fff;
  background: var(--score-color, var(--gz-green));
}

.open-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--gz-orange-strong);
  background: rgba(255, 159, 18, 0.12);
  border-radius: 50%;
}

.open-arrow svg {
  width: 18px;
  height: 18px;
}

.product-thumb,
.product-photo {
  position: relative;
  overflow: hidden;
  background: var(--photo-bg, #fff1cf);
  border-radius: var(--radius-card);
}

.product-thumb {
  height: 78px;
}

.product-photo {
  min-height: 220px;
  margin-top: 14px;
}

.pack {
  position: absolute;
  inset: 14px auto auto 18px;
  width: 58px;
  height: 66px;
  padding: 9px 6px;
  color: #fff;
  background: var(--pack-bg, var(--gz-orange));
  border-radius: 7px 7px 4px 4px;
  box-shadow: 0 14px 20px rgba(51, 42, 72, 0.18);
  transform: rotate(-6deg);
}

.product-photo .pack {
  inset: 44px auto auto 54px;
  width: 132px;
  height: 156px;
  padding: 18px 14px;
  border-radius: 14px 14px 7px 7px;
}

.pack::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 31%;
  background: rgba(255, 255, 255, 0.24);
}

.pack strong,
.pack span {
  position: relative;
  display: block;
}

.pack strong {
  font-size: 8px;
  line-height: 1.05;
  text-transform: uppercase;
}

.pack span {
  margin-top: 4px;
  font-size: 6px;
  font-weight: 900;
}

.product-photo .pack strong {
  font-size: 18px;
}

.product-photo .pack span {
  font-size: 12px;
}

.food-piece {
  position: absolute;
  background: var(--piece-bg, #d49a43);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.1);
}

.piece-a {
  right: 18px;
  bottom: 16px;
  width: 34px;
  height: 24px;
  border-radius: 50%;
  transform: rotate(14deg);
}

.piece-b {
  right: 44px;
  bottom: 36px;
  width: 28px;
  height: 21px;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.product-photo .piece-a {
  right: 70px;
  bottom: 45px;
  width: 78px;
  height: 54px;
}

.product-photo .piece-b {
  right: 125px;
  bottom: 88px;
  width: 62px;
  height: 44px;
}

.barcode {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 54px;
  height: 26px;
  background:
    linear-gradient(90deg, #291f36 0 4px, transparent 4px 7px, #291f36 7px 9px, transparent 9px 14px, #291f36 14px 20px, transparent 20px 24px, #291f36 24px 27px, transparent 27px 32px, #291f36 32px 40px, transparent 40px 44px, #291f36 44px 47px, transparent 47px);
  opacity: 0.5;
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.hero-copy h1 {
  margin: 4px 0 8px;
  color: var(--gz-purple);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 950;
}

.brand-line {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.favorite-button.is-saved {
  color: #fff;
  background: var(--gz-magenta);
  border-color: var(--gz-magenta);
}

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

.metric {
  min-width: 0;
  padding: 8px 7px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.metric strong {
  display: block;
  color: var(--gz-purple);
  font-size: 16px;
  font-weight: 950;
}

.metric span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.tab-row,
.filter-tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  padding: 4px;
  margin: 16px 0;
  background: #efedf2;
  border-radius: var(--radius-control);
}

.tab-row button,
.filter-tabs button {
  min-height: 38px;
  color: var(--gz-purple-soft);
  background: transparent;
  border: 0;
  border-radius: var(--radius-control);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.tab-row button.active,
.filter-tabs button.active {
  color: var(--gz-purple);
  background: #fff;
  box-shadow: 0 4px 12px rgba(51, 42, 72, 0.08);
}

.info-block {
  padding: 14px;
}

.info-block h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 950;
}

.info-block p {
  margin: 0;
  color: var(--gz-purple-soft);
  font-size: 14px;
  line-height: 1.42;
}

.insight-list,
.ingredient-list,
.benefit-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-list li,
.ingredient-list li,
.benefit-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--gz-purple-soft);
  font-size: 14px;
  line-height: 1.34;
}

.insight-list svg,
.benefit-list svg {
  width: 20px;
  height: 20px;
  color: var(--gz-orange-strong);
  stroke-width: 2.4;
}

.ingredient-list li {
  grid-template-columns: 1fr auto;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.ingredient-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.nutrition-table th,
.nutrition-table td {
  padding: 11px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-align: left;
}

.nutrition-table th {
  color: var(--muted);
  font-weight: 900;
}

.nutrition-table td {
  color: var(--gz-purple);
  font-weight: 900;
}

.nutrition-table tr:last-child th,
.nutrition-table tr:last-child td {
  border-bottom: 0;
}

.sticky-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 6px 0 16px;
}

.compare-options {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(176px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.compare-options::-webkit-scrollbar {
  display: none;
}

.compare-card {
  display: grid;
  gap: 9px;
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.compare-card.selected {
  border-color: var(--gz-orange);
  box-shadow: 0 0 0 2px rgba(255, 159, 18, 0.15);
}

.compare-card .product-thumb {
  height: 112px;
}

.compare-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

.compare-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.compare-matrix {
  display: grid;
  gap: 8px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 86px 86px;
  gap: 7px;
  align-items: stretch;
}

.compare-row > span,
.compare-row > strong {
  display: grid;
  align-items: center;
  min-height: 44px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  font-size: 12px;
  line-height: 1.18;
}

.compare-row > span {
  color: var(--muted);
  font-weight: 900;
}

.compare-row > strong {
  color: var(--gz-purple);
  font-weight: 950;
  text-align: center;
}

.compare-row > strong.win {
  color: #fff;
  background: var(--gz-teal);
  border-color: var(--gz-teal);
}

.recipe-ingredient {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.recipe-ingredient h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.recipe-ingredient p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.list-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.summary-tile {
  padding: 12px 8px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.summary-tile strong {
  display: block;
  font-size: 19px;
  font-weight: 950;
}

.summary-tile span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.shopping-group {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gz-purple);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.group-header svg {
  width: 18px;
  height: 18px;
  color: var(--gz-orange-strong);
}

.shopping-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.shopping-item.is-done {
  opacity: 0.58;
}

.check-button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: transparent;
  background: #fff;
  border: 2px solid #d9d5df;
  border-radius: 50%;
  cursor: pointer;
}

.check-button.checked {
  color: #fff;
  background: var(--gz-teal);
  border-color: var(--gz-teal);
}

.check-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 3;
}

.item-copy {
  min-width: 0;
}

.item-copy h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 950;
}

.item-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.qty-control {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 32px;
  padding: 0 8px;
  color: var(--gz-purple);
  background: #f5f2f7;
  border: 0;
  border-radius: var(--radius-control);
  font-size: 12px;
  font-weight: 950;
}

.empty-state {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 38px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.empty-state svg {
  width: 44px;
  height: 44px;
  color: var(--gz-orange-strong);
}

.empty-state h2 {
  margin: 0;
  font-size: 20px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.account-panel {
  padding: 22px 18px;
}

.account-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 10px 0 22px;
  text-align: center;
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #fff;
  background: linear-gradient(135deg, var(--gz-magenta), var(--gz-orange));
  border-radius: 50%;
}

.account-avatar svg {
  width: 34px;
  height: 34px;
}

.account-hero h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 950;
}

.benefit-list {
  margin: 6px 0 22px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: end center;
  padding: 20px;
  background: rgba(24, 18, 32, 0.36);
}

.modal {
  width: min(430px, 100%);
  padding: 18px;
  background: #fff;
  border-radius: 16px 16px 8px 8px;
  box-shadow: var(--shadow);
}

.modal header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.modal h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
}

.modal p {
  margin: 8px 0 16px;
  color: var(--gz-purple-soft);
  line-height: 1.4;
}

.modal .button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: min(340px, calc(100vw - 48px));
  padding: 13px 16px;
  color: #fff;
  background: var(--gz-purple);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 40px rgba(24, 18, 32, 0.24);
  font-weight: 850;
  transform: translateY(140%);
  transition: transform 180ms ease;
}

.toast.show {
  transform: translateY(0);
}

@media (max-width: 520px) {
  .prototype-stage {
    display: block;
    padding: 0;
  }

  .phone-shell {
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .screen {
    padding-right: 18px;
    padding-left: 18px;
  }

  .app-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-logo {
    width: 164px;
  }

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

  .compare-row {
    grid-template-columns: 1fr 74px 74px;
  }

  .modal-backdrop {
    padding: 0;
  }

  .modal {
    border-radius: 16px 16px 0 0;
  }
}
