:root {
  color: #1a1a2e;
  background: #f8f9fa;
  font-family: "Century Gothic", "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  --smg-primary: #6c63ff;
  --smg-primary-dark: #302780;
  --smg-accent: #ff6584;
  --smg-cyan: #12c7f3;
  --smg-ink: #1a1a2e;
  --smg-muted: #555555;
  --smg-soft: #eef2ff;
  --smg-bg: #f8f9fa;
  --smg-border: #e6e0ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98)),
    url("/assets/public-hero.svg") center top / cover no-repeat fixed;
}

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

button,
input,
select {
  font: inherit;
}

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

.landing-shell {
  background: #ffffff;
  color: #111111;
}

.landing-footer {
  display: none;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--smg-border);
  display: flex;
  gap: 18px;
  justify-content: center;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  border-radius: 9px;
  height: 36px;
  object-fit: cover;
  width: 36px;
}

.brand-name {
  color: var(--smg-ink);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.2;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.nav-link {
  color: var(--smg-muted);
  font-size: 14px;
  font-weight: 750;
}

.app-button,
.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 7px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
}

.app-button,
.primary-button {
  background: var(--smg-primary);
  color: white;
  box-shadow: 0 10px 22px rgba(108, 99, 255, 0.22);
}

.secondary-button {
  background: white;
  border-color: #c8d0ff;
  color: var(--smg-primary);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.82fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 96px);
  padding: clamp(22px, 4.5vw, 46px) clamp(18px, 4vw, 56px);
}

.hero-copy h1 {
  color: var(--smg-ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin: 0 0 14px;
  max-width: 620px;
}

.hero-kicker {
  color: var(--smg-muted);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 750;
  line-height: 1.42;
  margin: 0 0 20px;
  max-width: 560px;
}

.search-panel {
  max-width: 460px;
}

.search-panel-compact {
  background: white;
  border: 1px solid var(--smg-border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.08);
  max-width: none;
  padding: 14px;
}

.search-grid {
  display: grid;
  gap: 12px;
}

.search-grid-landing {
  gap: 12px;
  grid-template-columns: 1fr;
}

.search-grid-compact {
  grid-template-columns: 1fr 1fr auto;
}

.search-grid-landing .search-button {
  margin-top: 4px;
  width: 100%;
}

.landing-hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  padding: clamp(24px, 4vh, 38px) 24px 28px;
  text-align: center;
}

.landing-brand-lockup {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.1vw, 28px);
  justify-content: center;
  max-width: 100%;
}

.landing-logo {
  border-radius: clamp(13px, 1.6vw, 22px);
  box-shadow: 0 12px 26px rgba(48, 39, 128, 0.16);
  height: clamp(66px, 6.5vw, 98px);
  object-fit: cover;
  width: clamp(66px, 6.5vw, 98px);
}

.landing-brand-lockup h1 {
  color: #050505;
  font-size: clamp(50px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.landing-tagline {
  color: #141414;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.22;
  margin: clamp(18px, 2.5vh, 24px) 0 clamp(34px, 5vh, 48px);
}

.landing-search {
  width: min(760px, 100%);
}

.landing-search .search-panel {
  max-width: none;
}

.landing-search .search-grid-landing {
  gap: 22px;
}

.landing-search .field label,
.landing-search .field-help {
  display: none;
}

.landing-search .field input {
  background: #ffffff;
  border: 1px solid #d9dce6;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(26, 26, 46, 0.09);
  color: #111111;
  font-size: clamp(20px, 1.65vw, 26px);
  font-weight: 400;
  min-height: 56px;
  padding: 8px 24px;
}

.landing-search .field input::placeholder {
  color: #a7abb6;
  opacity: 1;
}

.landing-search .field input:focus {
  border-color: #4246d6;
  outline: 3px solid rgba(66, 70, 214, 0.14);
}

.landing-search .search-button {
  background: #ffffff;
  border: 3px solid #4246d6;
  border-radius: 16px;
  box-shadow: none;
  color: #111111;
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 400;
  margin: 4px auto 0;
  max-width: 255px;
  min-height: 54px;
  padding: 8px 22px;
  width: 100%;
}

.landing-proof {
  color: #181818;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 400;
  line-height: 1.35;
  margin: clamp(34px, 4.6vh, 42px) 0 clamp(20px, 3vh, 28px);
}

.landing-stores {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-stores p {
  color: #191919;
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.store-badge-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.store-badge {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 46, 0.16);
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(26, 26, 46, 0.08);
  color: #ffffff;
  display: inline-flex;
  gap: 11px;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  padding: 2px 5px;
  text-align: left;
}

.store-badge-image img {
  display: block;
  height: 54px;
  object-fit: contain;
  width: auto;
}

.field label {
  color: var(--smg-muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.location-field {
  position: relative;
}

.field input {
  background: #f8f9fa;
  border: 1px solid #dfe3f4;
  border-radius: 7px;
  color: var(--smg-ink);
  min-height: 42px;
  padding: 8px 12px;
  width: 100%;
}

.field input:focus {
  border-color: var(--smg-primary);
  outline: 2px solid rgba(108, 99, 255, 0.16);
}

.field-help {
  color: var(--smg-muted);
  font-size: 12px;
  margin: 6px 0 0;
}

.suggestion-list {
  background: white;
  border: 1px solid #d9e2ff;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(26, 26, 46, 0.14);
  left: 0;
  max-height: 260px;
  overflow: auto;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
}

.suggestion-item {
  background: white;
  border: 0;
  border-bottom: 1px solid #eef2ff;
  color: var(--smg-ink);
  cursor: pointer;
  display: block;
  font-size: 14px;
  padding: 12px 14px;
  text-align: left;
  width: 100%;
}

.suggestion-item:hover,
.suggestion-item:focus {
  background: #eef2ff;
  outline: none;
}

.privacy-note {
  color: var(--smg-muted);
  font-size: 13px;
  margin: 12px 0 0;
}

.hero-panel {
  align-self: stretch;
  background: linear-gradient(145deg, #281968, #152a75 68%, #06395f);
  border-radius: 8px;
  color: white;
  display: grid;
  gap: 12px;
  min-height: 340px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.hero-panel::after {
  background:
    radial-gradient(circle at 30% 20%, rgba(18, 199, 243, 0.32), transparent 26%),
    radial-gradient(circle at 78% 80%, rgba(255, 101, 132, 0.2), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  margin: 0;
}

.hero-panel p {
  color: #f5f7ff;
  margin: 0;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.signal {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 12px;
}

.signal strong {
  display: block;
  font-size: 16px;
}

.signal span {
  color: #dbeafe;
  font-size: 13px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px clamp(18px, 4vw, 56px);
}

.results-page {
  min-height: calc(100vh - 72px);
}

.results-search {
  padding-bottom: 10px;
  padding-top: 16px;
}

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

.section-header h2 {
  color: var(--smg-ink);
  font-size: 26px;
  font-weight: 400;
  margin: 0;
}

.section-header h1 {
  color: var(--smg-ink);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.section-header p {
  color: var(--smg-muted);
  margin: 4px 0 0;
  max-width: 700px;
}

.match-note {
  color: var(--smg-primary);
  font-size: 14px;
  font-weight: 800;
}

.result-tabs {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--smg-border);
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0;
  overflow-x: auto;
  padding: 9px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 57px;
  z-index: 8;
  backdrop-filter: blur(12px);
}

.result-tab {
  align-items: center;
  background: white;
  border: 1px solid #dfe3f4;
  border-radius: 8px;
  color: var(--smg-muted);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 400;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
}

.result-tab span {
  align-items: center;
  background: #eef2ff;
  border-radius: 999px;
  color: var(--smg-primary);
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  min-width: 24px;
  padding: 2px 7px;
}

.result-tab.is-active {
  background: var(--smg-primary);
  border-color: var(--smg-primary);
  color: white;
  box-shadow: 0 10px 22px rgba(108, 99, 255, 0.18);
}

.result-tab.is-active span {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

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

.card {
  background: white;
  border: 1px solid #e6e0ff;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(26, 26, 46, 0.06);
  padding: 18px;
}

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

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

.avatar {
  align-items: center;
  background: linear-gradient(145deg, #eef2ff, #e0f7ff);
  border-radius: 8px;
  color: var(--smg-primary);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.card-title {
  color: var(--smg-ink);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.meta-line {
  color: var(--smg-muted);
  font-size: 14px;
  margin: 2px 0 0;
}

.badge {
  background: #e8f5e9;
  border-radius: 999px;
  color: #166534;
  font-size: 12px;
  font-weight: 850;
  padding: 5px 9px;
  white-space: nowrap;
}

.badge.neutral {
  background: var(--smg-soft);
  color: var(--smg-primary);
}

.button-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.bio {
  color: #34344a;
  font-size: 14px;
  margin: 0;
}

.activity-result-card {
  display: grid;
  gap: 12px;
}

.activity-result-top {
  align-items: center;
  color: var(--smg-primary);
  display: flex;
  font-size: 13px;
  font-weight: 850;
  gap: 10px;
  justify-content: space-between;
}

.activity-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.activity-page {
  min-height: calc(100vh - 74px);
}

.activity-hero {
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(28px, 7vw, 72px) clamp(18px, 4vw, 56px);
}

.activity-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(108, 99, 255, 0.16), transparent 34%);
  border: 1px solid #e6e0ff;
  border-radius: 10px;
  box-shadow: 0 18px 56px rgba(108, 99, 255, 0.12);
  padding: clamp(22px, 4vw, 38px);
}

.activity-card-top {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.activity-skill {
  color: var(--smg-primary);
  font-size: 13px;
  font-weight: 850;
}

.activity-card h1 {
  color: var(--smg-ink);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  margin: 0 0 14px;
}

.activity-description {
  color: #34344a;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.activity-facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0;
}

.activity-facts div {
  background: #f8f9fa;
  border: 1px solid #e6e0ff;
  border-radius: 8px;
  padding: 14px;
}

.activity-facts span {
  color: var(--smg-muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.activity-facts strong {
  color: var(--smg-ink);
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.activity-action {
  align-items: center;
  background: linear-gradient(145deg, #281968, #152a75 72%, #06395f);
  border-radius: 8px;
  color: white;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px;
}

.activity-action h2 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.activity-action p {
  color: #f5f7ff;
  margin: 0;
}

.detail-page {
  padding-top: 34px;
}

.detail-card h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 10px;
}

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

.detail-tile {
  background: #f8f9fa;
  border: 1px solid #e6e0ff;
  border-radius: 7px;
  padding: 12px;
}

.detail-label {
  color: var(--smg-muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.detail-value {
  color: var(--smg-ink);
  font-weight: 850;
}

.cta-panel {
  background: linear-gradient(180deg, #eef2ff, #ffffff);
  border: 1px solid #c8d0ff;
}

.cta-panel h3 {
  color: var(--smg-ink);
  margin: 0 0 8px;
}

.cta-panel p {
  color: var(--smg-muted);
  margin: 0 0 14px;
}

.empty-state,
.loading-state {
  background: white;
  border: 1px dashed #c8d0ff;
  border-radius: 8px;
  color: var(--smg-muted);
  padding: 28px;
  text-align: center;
}

.footer {
  border-top: 1px solid var(--smg-border);
  color: var(--smg-muted);
  margin-top: 30px;
  padding: 24px clamp(18px, 4vw, 56px) 30px;
  text-align: center;
}

.footer-stores {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-stores p {
  color: #191919;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.2;
  margin: 0;
}

.footer .store-badge-row {
  gap: 12px;
}

.footer .store-badge-image img {
  height: 42px;
}

.back-to-search {
  align-items: center;
  background: var(--smg-primary);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 12px 28px rgba(108, 99, 255, 0.26);
  color: white;
  display: none;
  font-size: 14px;
  font-weight: 850;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.modal-open {
  overflow: hidden;
}

.download-modal[hidden] {
  display: none;
}

.download-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 60;
}

.download-modal-backdrop {
  background: rgba(26, 26, 46, 0.58);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.download-dialog {
  background: white;
  border: 1px solid var(--smg-border);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(26, 26, 46, 0.28);
  display: grid;
  gap: 20px;
  grid-template-columns: 210px minmax(0, 1fr);
  max-width: 680px;
  padding: 24px;
  position: relative;
  width: min(100%, 680px);
  z-index: 1;
}

.download-close {
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #dfe3f4;
  border-radius: 999px;
  color: var(--smg-muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 22px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 36px;
}

.download-qr-wrap {
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #e6e0ff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  padding: 12px;
}

.download-qr-wrap img {
  display: block;
  height: 184px;
  width: 184px;
}

.download-copy {
  align-content: center;
  display: grid;
  gap: 12px;
  padding-right: 22px;
}

.download-copy h2 {
  color: var(--smg-ink);
  font-size: 26px;
  line-height: 1.12;
  margin: 0;
}

.download-copy p {
  color: var(--smg-muted);
  margin: 0;
}

.modal-store-buttons {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-top: 4px;
}

.modal-store-buttons a {
  align-items: center;
  background: var(--smg-primary);
  border-radius: 7px;
  color: white;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  justify-content: center;
  min-height: 42px;
  padding: 9px 10px;
}

@media (max-width: 900px) {
  .hero,
  .activity-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .search-grid-compact {
    grid-template-columns: 1fr;
  }

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

  .activity-facts {
    grid-template-columns: 1fr;
  }

  .activity-action {
    align-items: stretch;
    flex-direction: column;
  }

  .download-dialog {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .download-copy {
    padding-right: 0;
  }

  .landing-hero {
    padding-top: 28px;
  }

  .landing-brand-lockup h1 {
    font-size: clamp(50px, 11vw, 76px);
  }

  .landing-logo {
    height: clamp(62px, 12vw, 84px);
    width: clamp(62px, 12vw, 84px);
  }

  .landing-tagline {
    margin-bottom: 38px;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .nav-actions {
    width: 100%;
  }

  .app-button {
    width: 100%;
  }

  .result-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .back-to-search {
    display: inline-flex;
  }

  .result-tabs {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
    padding: 8px 10px;
    top: 57px;
  }

  .result-tab {
    flex: 1 1 0;
    font-size: 13px;
    gap: 4px;
    min-width: 0;
    padding: 8px 6px;
  }

  .result-tab span {
    font-size: 11px;
    min-width: 20px;
    padding: 1px 5px;
  }

  .download-dialog {
    padding: 20px;
  }

  .download-qr-wrap img {
    height: 170px;
    width: 170px;
  }

  .modal-store-buttons {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    justify-content: flex-start;
    min-height: 100vh;
    padding: 30px 16px 28px;
  }

  .landing-brand-lockup {
    flex-direction: column;
    gap: 12px;
  }

  .landing-brand-lockup h1 {
    font-size: clamp(44px, 15vw, 62px);
    line-height: 1.02;
  }

  .landing-logo {
    border-radius: 15px;
    height: 68px;
    width: 68px;
  }

  .landing-tagline {
    font-size: 22px;
    margin: 16px 0 32px;
  }

  .landing-search .search-grid-landing {
    gap: 18px;
  }

  .landing-search .field input {
    font-size: 20px;
    min-height: 58px;
    padding: 8px 20px;
  }

  .landing-search .search-button {
    border-width: 3px;
    border-radius: 15px;
    font-size: 22px;
    max-width: 240px;
    min-height: 52px;
  }

  .landing-proof {
    font-size: 19px;
    margin: 34px 0 24px;
  }

  .landing-stores p {
    font-size: 23px;
  }

  .store-badge-row {
    gap: 10px;
  }

  .store-badge-image img {
    height: 44px;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .topbar {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 22px;
    padding-top: 22px;
  }

  .hero-kicker {
    font-size: clamp(17px, 2vw, 21px);
    margin-bottom: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 4.2vw, 48px);
  }

  .field-help {
    display: none;
  }

  .hero-panel {
    min-height: 300px;
  }

  .landing-hero {
    padding-top: 22px;
  }

  .landing-brand-lockup h1 {
    font-size: clamp(50px, 5.6vw, 82px);
  }

  .landing-logo {
    height: clamp(66px, 6vw, 84px);
    width: clamp(66px, 6vw, 84px);
  }

  .landing-tagline {
    font-size: clamp(21px, 1.55vw, 27px);
    margin-bottom: clamp(28px, 4vh, 38px);
  }

  .landing-search .search-grid-landing {
    gap: 18px;
  }

  .landing-search .field input {
    min-height: 52px;
  }

  .landing-search .search-button {
    min-height: 50px;
  }

  .landing-proof {
    margin: clamp(26px, 3.4vh, 34px) 0 18px;
  }

  .store-badge-image img {
    height: 46px;
  }
}
