/* Bloom variant lab: one visual vocabulary, four composition systems. */

:root {
  --ink: #020202;
  --muted: #6a7282;
  --paper: #fafafa;
  --line: #eceef0;
  --bloom-blush: #f8d7d3;
  --bloom-green-ink: #00743a;
  --bloom-shadow-soft: 0 7px 17px rgba(31, 44, 37, 0.06);
  --bloom-shadow-stage: 0 11px 28px rgba(23, 32, 27, 0.14);
}

.control-dock {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
}

.page-header,
main {
  width: min(1360px, calc(100% - 48px));
}

.page-header {
  grid-template-columns: 180px minmax(440px, 1fr) 260px;
}

.header-copy h1 {
  max-width: 760px;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 28px;
}

.comparison-grid[data-view="ledger"] [data-variant-column]:not([data-variant-column="ledger"]),
.comparison-grid[data-view="orbit"] [data-variant-column]:not([data-variant-column="orbit"]),
.comparison-grid[data-view="ribbon"] [data-variant-column]:not([data-variant-column="ribbon"]),
.comparison-grid[data-view="mosaic"] [data-variant-column]:not([data-variant-column="mosaic"]) {
  display: none;
}

.comparison-grid[data-view="ledger"],
.comparison-grid[data-view="orbit"],
.comparison-grid[data-view="ribbon"],
.comparison-grid[data-view="mosaic"] {
  grid-template-columns: minmax(0, 1fr);
}

.comparison-grid[data-view="ledger"] .design-column,
.comparison-grid[data-view="orbit"] .design-column,
.comparison-grid[data-view="ribbon"] .design-column,
.comparison-grid[data-view="mosaic"] .design-column {
  width: min(100%, 700px);
  margin: 0 auto;
}

.design-label {
  min-height: 84px;
}

.design-label h2 {
  font-size: 24px;
}

.design-signature small {
  color: var(--bloom-slate);
}

.phone-shell--ledger {
  background: var(--bloom-acid);
}

.phone-shell--ledger::after {
  background: var(--bloom-slate);
}

.phone-shell--orbit {
  background: var(--bloom-panel);
}

.phone-shell--ribbon {
  background: var(--bloom-blush);
}

.phone-shell--ribbon::before {
  border-color: color-mix(in srgb, var(--coral) 48%, transparent);
}

.phone-shell--ribbon::after {
  background: var(--neon);
}

.phone-shell--mosaic {
  background: color-mix(in srgb, var(--neon) 18%, var(--bloom-panel));
}

.phone-shell--mosaic::before {
  border-style: solid;
  border-color: color-mix(in srgb, var(--bloom-slate) 24%, transparent);
}

.phone-shell--mosaic::after {
  background: var(--coral);
}

.phone--bloom .phone-screen {
  animation-duration: 380ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}

.phone--ledger .phone-screen {
  animation-name: ledger-screen-enter;
}

.phone--orbit .phone-screen {
  animation-name: orbit-screen-enter;
}

.phone--ribbon .phone-screen {
  animation-name: ribbon-screen-enter;
}

.phone--mosaic .phone-screen {
  animation-name: mosaic-screen-enter;
}

.phone--bloom .featured-offer__image--photo,
.phone--bloom .detail-product-image--photo {
  display: none;
}

.phone--bloom .featured-offer__image--cutout,
.phone--bloom .detail-product-image--cutout {
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}

.phone--bloom .tile-price strong,
.phone--bloom .tile-price span,
.phone--bloom .result-price strong,
.phone--bloom .result-price span,
.phone--bloom .featured-offer__price strong,
.phone--bloom .featured-offer__price s {
  white-space: nowrap;
}

.phone--bloom .offer-tile h4,
.phone--bloom .result-card h3 {
  overflow-wrap: normal;
  word-break: normal;
}

.phone--bloom .text-button {
  min-width: 44px;
}

.phone--bloom .toggle {
  min-width: 46px;
  min-height: 44px;
  border: 0;
  background: transparent;
}

.phone--bloom .toggle::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 46px;
  height: 28px;
  border: 1px solid color-mix(in srgb, var(--bloom-slate) 45%, transparent);
  border-radius: 14px;
  background: var(--bloom-panel);
}

.phone--bloom .toggle::after {
  top: 11px;
}

.phone--bloom .toggle[aria-checked="true"] {
  border: 0;
  background: transparent;
}

.phone--bloom .toggle[aria-checked="true"]::before {
  border-color: var(--bloom-green-ink);
  background: var(--neon);
}

@keyframes ledger-screen-enter {
  from {
    opacity: 0.84;
    transform: translateY(8px);
    filter: blur(2px);
    clip-path: inset(0 0 16% 0 round 12px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 round 0);
  }
}

@keyframes orbit-screen-enter {
  from {
    opacity: 0.84;
    transform: scale(0.992);
    filter: blur(4px);
    clip-path: circle(82% at 50% 18%);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    clip-path: circle(140% at 50% 18%);
  }
}

@keyframes ribbon-screen-enter {
  from {
    opacity: 0.84;
    transform: translateX(24px);
    filter: blur(2px);
    clip-path: inset(0 12% 0 0 round 14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    clip-path: inset(0 round 0);
  }
}

@keyframes mosaic-screen-enter {
  from {
    opacity: 0.84;
    transform: scale(0.992);
    filter: saturate(0.6) brightness(1.08);
    clip-path: inset(0 0 12% 0 round 16px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) brightness(1);
    clip-path: inset(0 round 0);
  }
}

/* Ledger — comparison is the composition. */

.phone--ledger .app-body {
  padding-left: 16px;
  padding-right: 16px;
}

.phone--ledger .app-title,
.phone--ledger .screen-title,
.phone--ledger .product-title,
.phone--ledger .catalogue-title {
  font-size: 25px;
  line-height: 1.02;
}

.phone--ledger .app-title {
  max-width: 290px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.phone--ledger .app-title strong,
.phone--ledger .screen-title {
  color: var(--coral);
}

.phone--ledger .search-control {
  border: 1px solid color-mix(in srgb, var(--bloom-slate) 28%, transparent);
  border-radius: 12px;
  box-shadow: none;
}

.phone--ledger .category-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  overflow: visible;
}

.phone--ledger .category-chip {
  width: auto;
  min-width: 0;
  min-height: 72px;
  gap: 4px;
}

.phone--ledger .category-orb,
.phone--ledger .category-chip.is-active .category-orb {
  width: 44px;
  height: 44px;
  border-width: 1px;
  box-shadow: none;
}

.phone--ledger .category-chip.is-active .category-orb {
  border-color: var(--coral);
  background: var(--bloom-blush);
}

.phone--ledger .featured-offer {
  min-height: 220px;
  margin-left: 0;
  margin-right: 0;
  padding: 16px;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--bloom-slate) 28%, transparent);
  border-radius: 12px;
  background: var(--bloom-panel);
  box-shadow: none;
  transform: none;
}

.phone--ledger .featured-offer::after {
  display: none;
}

.phone--ledger .featured-offer__copy,
.phone--ledger .featured-offer__image {
  transform: none;
}

.phone--ledger .featured-offer__copy {
  grid-column: 2;
  grid-row: 1;
}

.phone--ledger .featured-offer__copy h3 {
  margin-top: 8px;
  font-size: 20px;
}

.phone--ledger .featured-offer__image {
  grid-column: 1;
  grid-row: 1;
  width: 112px;
  height: 188px;
  border-radius: 50% 50% 12px 12px;
}

.phone--ledger .featured-offer .bloom-meter {
  margin-top: 4px;
}

.phone--ledger .offer-grid,
.phone--ledger .saved-offers {
  grid-template-columns: 1fr;
  gap: 8px;
  padding-left: 0;
  padding-right: 0;
}

.phone--ledger .offer-tile {
  min-height: 132px;
  padding: 12px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 82px;
  grid-template-rows: auto auto 1fr;
  gap: 4px 12px;
  align-items: start;
  border: 1px solid color-mix(in srgb, var(--bloom-slate) 20%, transparent);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  transform: none;
}

.phone--ledger .offer-tile:nth-child(2) {
  margin-left: 0;
  background: var(--bloom-acid);
  transform: none;
}

.phone--ledger .offer-tile__image-wrap,
.phone--ledger .offer-tile:nth-child(2) .offer-tile__image-wrap {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 92px;
  height: 108px;
  margin: 0;
  border-radius: 12px;
}

.phone--ledger .offer-tile h4,
.phone--ledger .offer-tile p,
.phone--ledger .tile-price {
  grid-column: 2;
}

.phone--ledger .offer-tile h4 {
  min-height: 0;
  padding-right: 20px;
}

.phone--ledger .tile-price {
  margin-top: 4px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: end;
}

.phone--ledger .offer-tile .bloom-meter {
  grid-column: 3;
  grid-row: 1 / 4;
  align-self: center;
}

.phone--ledger .offer-tile .favorite-button {
  top: 4px;
  right: 4px;
  background: transparent;
  box-shadow: none;
}

.phone--ledger .result-card,
.phone--ledger .price-truth,
.phone--ledger .filter-panel {
  border: 1px solid color-mix(in srgb, var(--bloom-slate) 24%, transparent);
  border-radius: 12px;
  box-shadow: none;
}

.phone--ledger .result-card:nth-child(2) {
  background: var(--bloom-acid);
}

.phone--ledger .result-card img {
  border-radius: 12px;
}

.phone--ledger .detail-image-stage {
  height: 244px;
  margin-bottom: 16px;
}

.phone--ledger .detail-image-stage::before {
  width: 176px;
  height: 176px;
  left: 0;
  top: 24px;
  transform: none;
}

.phone--ledger .detail-image-stage img {
  top: 16px;
  left: 8px;
  width: 168px;
  height: 168px;
  transform: none;
}

.phone--ledger .bloom-detail-readout {
  left: 152px;
  right: 0;
  bottom: 24px;
  min-height: 132px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid color-mix(in srgb, var(--bloom-slate) 24%, transparent);
  border-radius: 12px;
  background: var(--bloom-acid);
}

.phone--ledger .catalogue-feature {
  border: 1px solid color-mix(in srgb, var(--bloom-slate) 28%, transparent);
  border-radius: 12px;
  box-shadow: none;
  transform: none;
}

.phone--ledger .catalogue-feature::after,
.phone--ledger .catalogue-feature__copy {
  transform: none;
}

.phone--ledger .bottom-nav {
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 56px;
  padding: 4px;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border: 1px solid color-mix(in srgb, var(--bloom-slate) 24%, transparent);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--bloom-shadow-soft);
}

.phone--ledger .bottom-nav button,
.phone--ledger .bottom-nav .bloom-nav-focus {
  width: auto;
  min-width: 44px;
  min-height: 48px;
  border-radius: 12px;
  box-shadow: none;
  transform: none;
}

.phone--ledger .bottom-nav button.is-active {
  background: #020202;
  color: #ffffff;
}

.phone--ledger .bottom-nav button.is-active .icon {
  stroke: var(--neon);
}

.phone--ledger .bottom-nav .bloom-nav-focus:not(.is-active) {
  background: var(--bloom-acid);
}

/* Ribbon — horizontal sequences and tipped offer slabs. */

.phone--ribbon .app-body {
  padding-left: 20px;
  padding-right: 8px;
}

.phone--ribbon .app-toolbar,
.phone--ribbon .screen-header,
.phone--ribbon .search-control,
.phone--ribbon .filter-panel,
.phone--ribbon .results-summary,
.phone--ribbon .proof-note,
.phone--ribbon .detail-toolbar,
.phone--ribbon .detail-image-stage,
.phone--ribbon .product-title,
.phone--ribbon .product-meta,
.phone--ribbon .price-truth,
.phone--ribbon .offer-facts,
.phone--ribbon .saved-tabs,
.phone--ribbon .alert-section {
  margin-right: 12px;
}

.phone--ribbon .app-title {
  max-width: 300px;
  margin-bottom: 16px;
  font-size: 31px;
}

.phone--ribbon .search-control {
  width: calc(100% - 12px);
}

.phone--ribbon .category-row {
  gap: 12px;
  padding-top: 12px;
  scroll-snap-type: x mandatory;
}

.phone--ribbon .category-chip {
  min-width: 72px;
  scroll-snap-align: start;
}

.phone--ribbon .category-orb {
  width: 60px;
  height: 60px;
}

.phone--ribbon .category-chip.is-active .category-orb {
  width: 64px;
  height: 64px;
  border-color: var(--coral);
}

.phone--ribbon .featured-offer {
  width: calc(100% - 24px);
  min-height: 244px;
  margin-left: 4px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 14px;
  background: var(--bloom-blush);
  transform: rotate(-2deg);
}

.phone--ribbon .featured-offer::after {
  width: 172px;
  height: 172px;
}

.phone--ribbon .featured-offer__copy,
.phone--ribbon .featured-offer__image {
  transform: rotate(2deg);
}

.phone--ribbon .section-heading {
  margin-right: 12px;
}

.phone--ribbon .offer-grid,
.phone--ribbon .saved-offers,
.phone--ribbon .result-list,
.phone--ribbon .retailer-list {
  display: flex;
  gap: 12px;
  padding: 8px 20px 16px 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.phone--ribbon .offer-grid::-webkit-scrollbar,
.phone--ribbon .saved-offers::-webkit-scrollbar,
.phone--ribbon .result-list::-webkit-scrollbar,
.phone--ribbon .retailer-list::-webkit-scrollbar {
  display: none;
}

.phone--ribbon .offer-tile {
  flex: 0 0 76%;
  min-height: 260px;
  scroll-snap-align: center;
}

.phone--ribbon .offer-tile:nth-child(2) {
  margin-left: 0;
}

.phone--ribbon .result-card {
  flex: 0 0 82%;
  min-height: 280px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  scroll-snap-align: center;
}

.phone--ribbon .result-card img {
  width: 100%;
  height: 112px;
  margin-bottom: 12px;
  border-radius: 14px;
}

.phone--ribbon .result-card .favorite-button {
  top: 20px;
  right: 20px;
}

.phone--ribbon .result-card .bloom-meter {
  margin-top: 8px;
}

.phone--ribbon .detail-image-stage {
  height: 292px;
}

.phone--ribbon .detail-image-stage::before {
  transform: translateX(-50%) rotate(-5deg);
}

.phone--ribbon .detail-image-stage img {
  transform: translateX(-50%) rotate(4deg);
}

.phone--ribbon .bloom-detail-readout {
  left: 20px;
  right: 4px;
  background: var(--bloom-blush);
  transform: rotate(-2deg);
}

.phone--ribbon .price-truth {
  transform: rotate(1deg);
}

.phone--ribbon .catalogue-feature {
  width: calc(100% - 20px);
  transform: rotate(-2deg);
}

.phone--ribbon .catalogue-feature__copy {
  transform: rotate(2deg);
}

.phone--ribbon .retailer-row {
  flex: 0 0 78%;
  min-height: 108px;
  padding: 16px;
  grid-template-columns: 52px minmax(0, 1fr) 44px;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--bloom-shadow-soft);
  scroll-snap-align: center;
}

.phone--ribbon .bottom-nav {
  left: 20px;
  right: 20px;
  bottom: 16px;
  min-height: 64px;
  padding: 4px 8px;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border-radius: 33px;
  background: #ffffff;
  box-shadow: var(--bloom-shadow-stage);
}

.phone--ribbon .bottom-nav button,
.phone--ribbon .bottom-nav .bloom-nav-focus {
  width: auto;
  min-width: 44px;
  min-height: 52px;
  border-radius: 50%;
  box-shadow: none;
  transform: none;
}

.phone--ribbon .bottom-nav button.is-active {
  background: #020202;
  color: #ffffff;
}

.phone--ribbon .bottom-nav button.is-active .icon {
  stroke: var(--neon);
}

.phone--ribbon .bottom-nav .bloom-nav-focus:not(.is-active) {
  background: var(--neon);
}

/* Mosaic — the product photography establishes hierarchy. */

.phone--mosaic .app-body {
  padding-left: 16px;
  padding-right: 16px;
}

.phone--mosaic .app-title {
  max-width: 320px;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 29px;
}

.phone--mosaic .app-title strong {
  color: var(--coral);
}

.phone--mosaic .category-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 12px;
  overflow: visible;
}

.phone--mosaic .category-chip {
  width: auto;
  min-width: 0;
  min-height: 72px;
  padding: 8px 12px;
  flex-direction: row;
  justify-content: flex-start;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--bloom-shadow-soft);
}

.phone--mosaic .category-orb,
.phone--mosaic .category-chip.is-active .category-orb {
  width: 52px;
  height: 52px;
  flex: none;
  border: 0;
  box-shadow: none;
}

.phone--mosaic .category-chip.is-active {
  background: var(--bloom-acid);
  color: #020202;
}

.phone--mosaic .featured-offer {
  min-height: 320px;
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
  display: block;
  border-radius: 16px;
  background: #020202;
  box-shadow: var(--bloom-shadow-stage);
  transform: none;
}

.phone--mosaic .featured-offer::after {
  display: none;
}

.phone--mosaic .featured-offer__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: normal;
  transform: none;
}

.phone--mosaic .featured-offer__image--cutout,
.phone--mosaic .detail-product-image--cutout {
  display: none;
}

.phone--mosaic .featured-offer__image--photo,
.phone--mosaic .detail-product-image--photo {
  display: block;
}

.phone--mosaic .featured-offer__copy {
  min-height: 280px;
  justify-content: flex-end;
  color: #ffffff;
  transform: none;
}

.phone--mosaic .featured-offer__copy h3 {
  margin-top: auto;
  font-size: 25px;
}

.phone--mosaic .featured-offer__copy p,
.phone--mosaic .featured-offer .text-button {
  color: #ffffff;
}

.phone--mosaic .featured-offer__price {
  margin-top: 8px;
}

.phone--mosaic .featured-offer .bloom-meter {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: #ffffff;
}

.phone--mosaic .offer-grid,
.phone--mosaic .saved-offers {
  gap: 8px;
  padding-left: 0;
  padding-right: 0;
}

.phone--mosaic .offer-tile {
  min-height: 248px;
  border-radius: 14px;
  transform: none;
}

.phone--mosaic .offer-tile:first-child {
  grid-column: 1 / -1;
  min-height: 176px;
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 4px 12px;
  align-items: start;
}

.phone--mosaic .offer-tile:first-child .offer-tile__image-wrap {
  grid-column: 1;
  grid-row: 1 / 4;
  height: 152px;
  margin: 0;
  border-radius: 14px;
}

.phone--mosaic .offer-tile:first-child h4,
.phone--mosaic .offer-tile:first-child p,
.phone--mosaic .offer-tile:first-child .tile-price {
  grid-column: 2;
}

.phone--mosaic .offer-tile:first-child .bloom-meter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 76px;
}

.phone--mosaic .offer-tile:nth-child(2) {
  grid-column: 1 / -1;
  margin-left: 0;
  background: var(--bloom-acid);
  transform: none;
}

.phone--mosaic .result-card {
  min-height: 184px;
  grid-template-columns: 132px minmax(0, 1fr);
  border-radius: 14px;
  overflow: hidden;
}

.phone--mosaic .result-card img {
  width: 132px;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.phone--mosaic .result-card__body {
  min-width: 0;
  padding-right: 24px;
}

.phone--mosaic .result-price {
  display: grid;
  justify-items: start;
  gap: 4px;
}

.phone--mosaic .detail-image-stage {
  height: 332px;
}

.phone--mosaic .detail-image-stage::before {
  display: none;
}

.phone--mosaic .detail-image-stage img {
  top: 0;
  width: 100%;
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
}

.phone--mosaic .bloom-detail-readout {
  left: 16px;
  right: 16px;
  bottom: 0;
  border-radius: 16px;
  background: var(--bloom-acid);
  box-shadow: var(--bloom-shadow-soft);
}

.phone--mosaic .catalogue-feature {
  height: 292px;
  border-radius: 16px;
  background: #020202;
  transform: none;
}

.phone--mosaic .catalogue-feature::after {
  display: none;
}

.phone--mosaic .catalogue-feature img {
  opacity: 0.62;
  mix-blend-mode: normal;
}

.phone--mosaic .catalogue-feature__copy {
  color: #ffffff;
  transform: none;
}

.phone--mosaic .catalogue-feature__copy p {
  color: #ffffff;
}

.phone--mosaic .retailer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.phone--mosaic .retailer-row {
  min-height: 144px;
  padding: 16px;
  grid-template-columns: 1fr 44px;
  align-content: start;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--bloom-shadow-soft);
}

.phone--mosaic .retailer-logo {
  width: 52px;
  height: 52px;
  grid-column: 1;
}

.phone--mosaic .retailer-copy {
  grid-column: 1 / -1;
}

.phone--mosaic .retailer-row .compact-button {
  grid-column: 2;
  grid-row: 1;
}

.phone--mosaic .bottom-nav {
  left: 20px;
  right: 20px;
  bottom: 16px;
  grid-template-columns: repeat(5, 48px);
  gap: 8px;
}

.phone--mosaic .bottom-nav button.is-active {
  background: var(--coral);
  color: #ffffff;
}

.phone--mosaic .bottom-nav button.is-active .icon {
  stroke: #ffffff;
}

.phone--mosaic .bottom-nav .bloom-nav-focus {
  background: #020202;
  color: var(--neon);
}

.empty-state {
  min-height: 320px;
  padding: 48px 24px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-radius: 16px;
  background: var(--bloom-panel);
}

.empty-state > .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--coral);
}

.empty-state h3,
.empty-state p {
  margin: 0;
}

.empty-state h3 {
  font-size: 20px;
}

.empty-state p {
  max-width: 280px;
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--bloom-slate);
  font-size: 12px;
  line-height: 1.4;
}

@media (hover: hover) {
  .design-column:hover .design-label h2 {
    color: var(--coral);
  }

  .phone--ledger .bottom-nav .bloom-nav-focus:hover,
  .phone--ribbon .bottom-nav .bloom-nav-focus:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1080px) {
  .page-header {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .view-switch {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .view-switch::-webkit-scrollbar {
    display: none;
  }

  .view-button {
    flex: none;
  }
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .page-header,
  main {
    width: min(100% - 24px, 1360px);
  }

  .page-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .header-copy h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .demo-note {
    grid-column: 1;
  }

  .view-switch {
    width: 100%;
    overflow: visible;
  }

  .view-button {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    flex: 1;
    font-size: 11px;
  }

  .phone-shell {
    min-height: 900px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .phone {
    width: min(390px, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .phone--bloom .phone-screen {
    animation: none;
  }
}
