:root {
  --ink: #080f3f;
  --muted: #56607d;
  --brand: #4057ff;
  --brand-dark: #2836cf;
  --soft: #f4f7ff;
  --line: #dfe5f3;
  --white: #ffffff;
  --green: #36a866;
  --amber: #f5a43a;
  --violet: #8862f0;
  --shadow: 0 18px 45px rgba(27, 39, 91, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.password-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 24%, rgba(92, 128, 255, 0.2), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(136, 98, 240, 0.22), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 55%, #f4f7ff 100%);
}

.password-screen.is-hidden {
  display: none;
}

.password-panel {
  width: min(500px, 100%);
  padding: 34px;
  border: 1px solid rgba(214, 222, 245, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.password-brand {
  margin-bottom: 30px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.password-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.1rem);
  line-height: 1.03;
}

.password-copy {
  color: var(--muted);
  line-height: 1.6;
}

.password-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.password-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.password-row input,
.search-panel input {
  min-width: 0;
  border: 0;
  outline: 0;
}

.password-row input {
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.password-row button,
.search-panel button,
.primary-cta {
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(64, 87, 255, 0.22);
}

.password-row button {
  min-width: 112px;
  padding: 0 20px;
}

.password-error {
  min-height: 22px;
  margin: 10px 0 0;
  color: #c93636;
  font-weight: 700;
}

.site-shell.is-locked {
  max-height: 100vh;
  overflow: hidden;
  filter: blur(6px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1220px, calc(100% - 34px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.45rem;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5168ff, #2535c9);
  position: relative;
  transform: rotate(-35deg);
  box-shadow: 0 10px 22px rgba(64, 87, 255, 0.24);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 7px;
  top: 7px;
  border-radius: 999px;
  background: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
  color: #202743;
  font-weight: 700;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 27px 0 24px;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.hero {
  position: relative;
  z-index: 3;
  overflow: visible;
  min-height: 360px;
  padding: 42px 20px 36px;
  background:
    radial-gradient(circle at 15% 10%, rgba(153, 189, 255, 0.28), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(136, 98, 240, 0.2), transparent 22%),
    linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(2.4rem, 5.7vw, 4.7rem);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 630px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero-card-left {
  position: absolute;
  left: -36px;
  top: 74px;
  width: 200px;
  height: 150px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, #c8dcff, #8fb2ff);
  opacity: 0.78;
  transform: rotate(-17deg);
  box-shadow: 0 20px 36px rgba(84, 121, 214, 0.16);
}

.hero-card-left::before,
.hero-card-left::after,
.hero-card-left span {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.66);
}

.hero-card-left::before {
  left: 30px;
  top: 42px;
  width: 54px;
  height: 42px;
  border: 9px solid rgba(255, 255, 255, 0.72);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: transparent;
  transform: rotate(35deg);
}

.hero-card-left::after {
  right: 20px;
  top: 70px;
  width: 70px;
  height: 12px;
  border-radius: 999px;
}

.hero-card-left span {
  right: 28px;
  top: 98px;
  width: 56px;
  height: 10px;
  border-radius: 999px;
}

.hero-gift {
  position: absolute;
  right: 72px;
  top: 92px;
  width: 128px;
  height: 112px;
  border-radius: 8px 8px 14px 14px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.42) 42% 58%, transparent 58%),
    linear-gradient(135deg, #a996ff, #6f7cff);
  box-shadow: 0 22px 38px rgba(92, 99, 220, 0.2);
}

.hero-gift::before,
.hero-gift::after {
  content: "";
  position: absolute;
  top: -36px;
  width: 54px;
  height: 38px;
  border: 12px solid #a996ff;
  border-radius: 50% 50% 0 50%;
}

.hero-gift::before {
  left: 8px;
  transform: rotate(18deg);
}

.hero-gift::after {
  right: 8px;
  transform: scaleX(-1) rotate(18deg);
}

.search-panel {
  width: min(900px, 100%);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-wrap {
  position: relative;
  z-index: 40;
  width: min(900px, 100%);
  margin: 26px auto 0;
}

.search-panel span {
  padding-left: 18px;
  color: var(--ink);
  font-size: 1.8rem;
}

.search-panel input {
  color: var(--ink);
  font-weight: 600;
}

.search-panel input::placeholder {
  color: #8b97bd;
}

.search-panel button {
  min-height: 48px;
  padding: 0 36px;
}

.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 50;
  display: none;
  max-height: 310px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  text-align: left;
}

.search-results.is-open {
  display: grid;
  gap: 6px;
}

.search-results p {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 700;
}

.search-result {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 6px;
}

.search-result:hover,
.search-result:focus {
  outline: 0;
  background: var(--soft);
}

.search-result span {
  color: var(--ink);
  font-weight: 800;
}

.search-result-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--soft);
}

.category-grid,
.rewards-section,
.how-it-works,
.site-footer {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
}

.reward-footer {
  margin-top: 0;
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 22px 0 22px;
}

.category {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(27, 39, 91, 0.08);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  font-size: 2rem;
}

.category-icon.fast {
  background: #fff0d8;
}

.category-icon.restaurants {
  background: #dff6e8;
}

.category-icon.retail {
  background: #eee3ff;
}

.category h2,
.category p {
  margin: 0;
}

.category h2 {
  font-size: 1.2rem;
}

.category p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.35;
}

.category a {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 800;
}

.rewards-section,
.recent-section {
  padding: 4px 0 34px;
}

.is-hidden {
  display: none !important;
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.how-it-works h2 {
  margin: 0;
  font-size: 1.55rem;
}

.section-heading p {
  margin: 9px 0 18px;
  color: var(--muted);
}

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

.reward-card {
  min-height: 114px;
  padding: 15px 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(27, 39, 91, 0.07);
}

.reward-card.is-hidden {
  display: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #a06300;
  background: #fff0d5;
  font-size: 0.75rem;
  font-weight: 800;
}

.tag.trending {
  color: #7651d1;
  background: #efe7ff;
}

.tag.featured {
  color: #1f8150;
  background: #e3f7ec;
}

.reward-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 7px 0 10px;
  font-size: 1.05rem;
}

.updated-label {
  display: block;
  margin: -2px 0 10px;
  color: #7380a5;
  font-size: 0.78rem;
  font-weight: 800;
}

.reward-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: contain;
  background: var(--soft);
}

.reward-card a {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.88rem;
}

.reward-card.is-unavailable {
  opacity: 0.78;
}

.reward-card.is-unavailable a {
  color: #6b7699;
  border-color: var(--line);
}

.extra-reward.is-collapsed {
  display: none;
}

.view-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin: 20px auto 0;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(27, 39, 91, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.view-more-button[aria-expanded="true"] .chevron {
  transform: translateY(2px) rotate(225deg);
}

.recent-section {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
  padding-top: 0;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.recent-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(27, 39, 91, 0.05);
  font-weight: 800;
}

.how-it-works {
  padding: 28px 0 32px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
  text-align: left;
}

.steps article {
  display: flex;
  gap: 16px;
  align-items: start;
}

.steps span {
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  font-weight: 800;
}

.steps h3,
.steps p {
  margin: 0;
}

.steps p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
  line-height: 1.5;
}

.site-footer strong {
  color: var(--ink);
}

.reward-page {
  min-height: calc(100vh - 77px);
  display: grid;
  place-items: center;
  padding: 34px 18px;
  background:
    radial-gradient(circle at 18% 22%, rgba(92, 128, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(136, 98, 240, 0.2), transparent 24%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.content-page {
  min-height: calc(100vh - 77px);
  padding: 50px 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(92, 128, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.content-panel {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.content-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 1;
}

.content-panel h2 {
  margin: 30px 0 8px;
  font-size: 1.2rem;
}

.content-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.content-panel a {
  color: var(--brand);
  font-weight: 800;
}

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

.about-stat {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244, 247, 255, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.about-stat strong {
  display: block;
  color: var(--brand);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.about-note {
  padding: 16px 18px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
}

.reward-hero {
  position: relative;
  overflow: hidden;
  width: min(860px, 100%);
  padding: 54px 52px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
}

.reward-page-art {
  position: absolute;
  right: -34px;
  top: -28px;
  width: 172px;
  height: 130px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.48) 42% 58%, transparent 58%),
    linear-gradient(135deg, #a996ff, #5f70ff);
  opacity: 0.3;
  transform: rotate(12deg);
}

.reward-page-art::before,
.reward-page-art::after {
  content: "";
  position: absolute;
  top: -32px;
  width: 54px;
  height: 38px;
  border: 11px solid #9f90ff;
  border-radius: 50% 50% 0 50%;
}

.reward-page-art::before {
  left: 28px;
  transform: rotate(18deg);
}

.reward-page-art::after {
  right: 28px;
  transform: scaleX(-1) rotate(18deg);
}

.reward-page-art span {
  position: absolute;
  inset: 52px 0 auto;
  height: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.reward-detail h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
}

.landing-reward-icon {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 18px;
  object-fit: contain;
  background: var(--soft);
  box-shadow: 0 12px 24px rgba(27, 39, 91, 0.08);
}

.reward-detail p:not(.eyebrow) {
  max-width: 540px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.primary-cta {
  display: inline-grid;
  place-items: center;
  min-width: 240px;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 30px;
}

.primary-cta.is-disabled {
  pointer-events: none;
  color: #6b7699;
  background: #eef2fb;
  box-shadow: none;
}

.cta-disclaimer {
  max-width: 460px;
  margin: 12px auto 0;
  color: #6b7699;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.reward-trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.reward-trust-strip span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--brand);
  background: var(--soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.expect-box {
  margin-top: 18px;
  margin-bottom: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.expect-box h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

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

.expect-list article {
  display: flex;
  gap: 12px;
  align-items: center;
}

.expect-list strong {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
}

.expect-list span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.unavailable-note {
  max-width: 520px;
  margin: 18px auto 0;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #6b7699;
  background: var(--soft);
  font-weight: 800;
}

.reward-detail .updated-label {
  margin: 14px auto 0;
  color: #7380a5;
  font-size: 0.84rem;
  font-weight: 800;
}

.reward-detail .unavailable-note {
  margin: 18px auto 0;
  color: #6b7699;
  font-size: 0.95rem;
  line-height: 1.45;
}

.back-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  color: var(--brand);
  font-weight: 800;
}

.mobile-search-pill {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(64, 87, 255, 0.26);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 10px 0;
    align-items: center;
    gap: 16px;
  }

  .nav-links {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    font-size: 0.86rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 28px), transparent 100%);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    padding: 8px 9px;
    border-bottom: 0;
    border-radius: 999px;
  }

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

  .hero-card-left,
  .hero-gift {
    opacity: 0.28;
  }

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

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

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

  .site-footer,
  .steps,
  .reward-trust-strip,
  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 22px, 1220px);
    gap: 10px;
  }

  .brand {
    gap: 9px;
    font-size: 1rem;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .brand-mark::before {
    width: 7px;
    height: 7px;
    right: 6px;
    top: 6px;
  }

  .nav-links {
    font-size: 0.78rem;
  }

  .nav-links a {
    padding: 7px 8px;
  }

  .password-panel,
  .reward-hero {
    padding: 24px;
  }

  .password-row,
  .search-panel,
  .category,
  .reward-grid,
  .recent-grid {
    grid-template-columns: 1fr;
  }

  .search-panel {
    padding: 14px;
  }

  .search-panel span {
    display: none;
  }

  .search-panel input {
    min-height: 42px;
  }

  .search-panel button,
  .password-row button {
    width: 100%;
    min-height: 48px;
  }

  .category {
    text-align: center;
  }

  .category-icon {
    margin: 0 auto;
  }

  .mobile-search-pill {
    display: block;
  }

  .mobile-search-pill.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }

  body[data-page="home"] {
    padding-bottom: 68px;
  }
}
