:root {
  /* Brand colors sampled from app icon (assets/img/brand-mark.png) */
  --brand-violet: #8735b5;
  --brand-cyan: #2888a1;
  --brand-blue: #3d75a6;
  --brand-teal: #08b69b;

  /* Semantic UI tokens */
  --primary: var(--brand-cyan);
  --primary-2: var(--brand-teal);
  --primary-dark: #1f6f86;
  --ink: #0f1b22;
  --muted: #526773;
  --paper: #fbfdff;
  --white: #ffffff;
  --sand: #eef7ff;
  --line: rgba(15, 27, 34, 0.12);
  --shadow: 0 18px 45px rgba(15, 27, 34, 0.14);
  --radius: 22px;

  /* Aliases (keep existing component styles working) */
  --blue: var(--primary);
  --blue-dark: #072335;
  --blue-soft: #e7fbf8;
  --coral: var(--brand-violet);
  --coral-dark: #6e2e94;

  /* Gradients & focus */
  --brand-gradient: linear-gradient(135deg, var(--brand-violet), var(--brand-teal));
  --primary-gradient: linear-gradient(135deg, var(--primary), var(--primary-2));
  --focus-ring: 0 0 0 4px rgba(40, 136, 161, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Accessible focus styles */
:where(a, button, summary, [role="button"], input, select, textarea):focus { outline: none; }
:where(a, button, summary, [role="button"], input, select, textarea):focus-visible {
  box-shadow: var(--focus-ring);
  border-radius: 14px;
}

img, svg { max-width: 100%; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }

h1, h2, h3 { margin: 0 0 0.55rem; line-height: 1.08; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.35rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 253, 255, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0.9;
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(40, 136, 161, 0.22);
}
.brand small { display: block; color: var(--muted); font-size: 0.82rem; }
.nav--desktop { display: none; align-items: center; gap: 18px; }
.nav a, .nav-mobile a { text-decoration: none; font-weight: 750; color: var(--blue-dark); }
.nav-mobile { position: relative; }
.nav-mobile summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}
.nav-mobile summary::-webkit-details-marker { display: none; }
.nav-mobile nav {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(86vw, 340px);
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.nav-mobile:not([open]) nav { display: none; }
.nav-mobile a { padding: 10px 12px; border-radius: 12px; }
.nav-mobile a:hover { background: var(--blue-soft); }
.language-switcher { position: relative; }
.language-switcher summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--blue-dark);
  font-weight: 850;
}
.language-switcher summary::-webkit-details-marker { display: none; }
.language-chevron {
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}
.language-switcher[open] .language-chevron { transform: rotate(225deg) translateY(-1px); }
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 178px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.language-switcher:not([open]) .language-menu { display: none; }
.language-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 800;
}
.language-menu a:hover { background: var(--blue-soft); }
.language-menu a.is-active {
  background: var(--blue);
  color: var(--white);
}
.nav-mobile .language-switcher { padding: 6px 0; }
.nav-mobile .language-menu {
  position: static;
  margin-top: 8px;
  box-shadow: none;
}
.language-mobile-list { display: none; }
.language-flag {
  display: inline-block;
  min-width: 1.25em;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui, sans-serif;
}
.mobile-menu-head { display: none; }

.btn, .store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}
.btn-primary {
  background: var(--primary-gradient);
  color: var(--white) !important;
  padding: 12px 18px;
  box-shadow: 0 12px 24px rgba(40, 136, 161, 0.22);
}
.btn-primary:hover {
  filter: saturate(1.08) brightness(1.02);
}
.btn-primary:active { transform: translateY(1px); }
.btn-small { min-height: 40px; padding: 9px 14px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 7vw, 5.6rem) 0;
  background: transparent;
}
.hero-grid, .split {
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 5.4vw, 4.55rem);
  line-height: 0.98;
}
.hero .download-buttons,
.page-hero .download-buttons,
.section--blue .download-buttons,
.app-cta .download-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 1.55rem 0 1.05rem;
  align-items: stretch;
  background: transparent;
  box-shadow: none;
}
.hero .store-button,
.page-hero .store-button,
.section--blue .store-button,
.app-cta .store-button {
  width: 100%;
  min-width: 0;
  align-items: center;
  text-align: center;
  background-clip: padding-box;
}
.hero .store-button span,
.page-hero .store-button span,
.section--blue .store-button span,
.app-cta .store-button span {
  font-size: clamp(0.88rem, 1.08vw, 1rem);
  line-height: 1;
}
.hero .store-button strong,
.page-hero .store-button strong,
.section--blue .store-button strong,
.app-cta .store-button strong {
  font-size: clamp(1.28rem, 1.68vw, 1.52rem);
  line-height: 1;
}
.hero-subline, .page-hero p, .section-head p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 720px;
}
.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--brand-violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.9); }
.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.3rem 0;
}
.store-button {
  min-width: 184px;
  min-height: 58px;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #0b3b52);
  box-shadow: 0 12px 28px rgba(15, 27, 34, 0.18);
}
.store-button span { font-size: 0.74rem; opacity: 0.82; }
.store-button strong { font-size: 1.08rem; line-height: 1.05; }
.store-button.store-button--ios {
  border: none;
  background: var(--brand-gradient);
  box-shadow: 0 14px 30px rgba(40, 136, 161, 0.22);
}
.store-button--dark {
  background: var(--primary-gradient);
  box-shadow: 0 14px 30px rgba(8, 182, 155, 0.18);
}
.store-button--web {
  /* Like iOS, but teal → violet (top-left → bottom-right) */
  background: linear-gradient(to bottom right, var(--brand-teal), var(--brand-violet));
  box-shadow: 0 14px 30px rgba(8, 182, 155, 0.16);
}

.store-button:hover { filter: saturate(1.04) brightness(1.03); transform: translateY(-1px); transition: transform 160ms ease, filter 160ms ease; }
.store-button:active { transform: translateY(0px); }
.chip-row, .pill-grid, .phone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-row a, .chip-row span, .pill, .phone-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(40, 136, 161, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}
.hero-card { display: grid; place-items: center; position: relative; }
.hero-card::before {
  content: "";
  position: absolute;
  width: min(86%, 430px);
  height: 56%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(135, 53, 181, 0.22), rgba(40, 136, 161, 0.12), transparent 70%);
  filter: blur(10px);
}
.phone-card {
  width: min(100%, 360px);
  min-height: 480px;
  padding: 52px 24px 24px;
  border: 10px solid #102838;
  border-radius: 42px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(2, 48, 71, 0.25), rgba(2, 48, 71, 0.92)),
    var(--brand-gradient);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.phone-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 96px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #102838;
}
.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.mini-list a {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  text-decoration: none;
  font-weight: 850;
}

.page-hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background:
    radial-gradient(circle at right top, rgba(135, 53, 181, 0.18), transparent 25rem),
    linear-gradient(180deg, rgba(40, 136, 161, 0.10), var(--paper));
}
.page-hero--app, .page-hero--deal {
  /* Default: colorful brand hero (like the old screenshot 2) */
  background-color: var(--blue-dark);
  background:
    radial-gradient(circle at 18% 20%, rgba(135, 53, 181, 0.42), transparent 40rem),
    radial-gradient(circle at 82% 18%, rgba(8, 182, 155, 0.40), transparent 44rem),
    linear-gradient(to bottom right, rgba(135, 53, 181, 0.92), rgba(8, 182, 155, 0.90));
  color: var(--white);
}
.page-hero--app p, .page-hero--deal p { color: rgba(255, 255, 255, 0.82); }

/* Exception: keep /download hero dark like photo 1 */
body.page-download .page-hero--app {
  background-color: var(--blue-dark);
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 182, 155, 0.22), transparent 42rem),
    radial-gradient(circle at 78% 10%, rgba(135, 53, 181, 0.18), transparent 46rem),
    linear-gradient(135deg, var(--blue-dark), #09344a);
}
.page-hero--beach { background: linear-gradient(135deg, #dff6ff, #fff2d9); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.breadcrumbs a { color: inherit; text-decoration: none; }

.section { padding: clamp(2.4rem, 5.8vw, 4.4rem) 0; }
.section--sand {
  background:
    radial-gradient(circle at left top, rgba(8, 182, 155, 0.12), transparent 34rem),
    radial-gradient(circle at right top, rgba(135, 53, 181, 0.10), transparent 34rem),
    linear-gradient(180deg, var(--sand), var(--paper));
}
.section--blue {
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 182, 155, 0.22), transparent 42rem),
    radial-gradient(circle at 78% 10%, rgba(135, 53, 181, 0.18), transparent 46rem),
    linear-gradient(135deg, var(--blue-dark), #09344a);
  color: var(--white);
}
.section--blue p { color: rgba(255, 255, 255, 0.8); }
.section--blue .app-panel { color: var(--ink); }
.section--blue .app-panel p { color: var(--muted); }
.section--blue .app-panel li { color: var(--ink); }
.section--related { padding-top: 1.5rem; }
.section-head { margin-bottom: 1.05rem; }
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}
.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 16px;
  padding: 4px 16px 14px;
  -webkit-overflow-scrolling: touch;
}
.card-grid::-webkit-scrollbar { height: 6px; }
.card-grid::-webkit-scrollbar-track { background: transparent; }
.card-grid::-webkit-scrollbar-thumb {
  background: rgba(2, 48, 71, 0.16);
  border-radius: 999px;
}
.card-grid {
  scrollbar-width: thin;
  scrollbar-color: rgba(2, 48, 71, 0.16) transparent;
}
.feature-card, .card, .app-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(2, 48, 71, 0.08);
}
.feature-card { padding: 24px; }
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}
.card-link {
  display: block;
  min-height: 100%;
  padding: 20px;
  text-decoration: none;
}
.card {
  flex: 0 0 clamp(260px, 30vw, 335px);
  scroll-snap-align: start;
}
.card:hover { transform: translateY(-2px); transition: transform 180ms ease; }
.card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-violet);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.card p {
  color: var(--muted);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.1em;
}
.card-cta {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}
.card--empty { padding: 24px; }
.app-panel {
  padding: 28px;
  color: var(--ink);
}
.section--blue .app-panel {
  background:
    radial-gradient(circle at 0% 0%, rgba(40, 136, 161, 0.10), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(40, 136, 161, 0.18);
  box-shadow: 0 18px 45px rgba(15, 27, 34, 0.18);
}
.check-list { margin: 1rem 0 0; padding-left: 1.2rem; }

.prose {
  max-width: 820px;
}
.prose h2 { margin-top: 2rem; }
.prose a { color: var(--blue); font-weight: 800; }
.faq details {
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.faq summary { cursor: pointer; font-weight: 900; }

.app-cta {
  padding: 34px 0;
  color: var(--white);
  /* Make the lower CTA block match the dark CI look (photo 1) */
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 182, 155, 0.22), transparent 42rem),
    radial-gradient(circle at 78% 10%, rgba(135, 53, 181, 0.18), transparent 46rem),
    linear-gradient(135deg, var(--blue-dark), #09344a);
}
.app-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.app-cta p { color: rgba(255, 255, 255, 0.86); }

.site-footer {
  padding: 38px 0 20px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 18% 10%, rgba(8, 182, 155, 0.14), transparent 32rem),
    radial-gradient(circle at 82% 0%, rgba(135, 53, 181, 0.12), transparent 30rem),
    linear-gradient(180deg, #071923, #040a10);
}
.footer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.footer-grid a {
  display: block;
  margin: 8px 0;
  color: inherit;
  text-decoration: none;
}
.brand--footer { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: minmax(0, 1.06fr) minmax(310px, 0.74fr); }
  .split { grid-template-columns: 1.1fr 0.9fr; }
  .nav--desktop { display: flex; }
  .nav-mobile { display: none; }
}

@media (max-width: 759px) {
  body:has(.nav-mobile[open]) { overflow: hidden; }
  .nav-mobile[open] summary {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 101;
    width: 46px;
    height: 46px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(2, 48, 71, 0.12);
  }
  .nav-mobile[open] summary::before,
  .nav-mobile[open] summary::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 22px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-dark);
  }
  .nav-mobile[open] summary::before { transform: rotate(45deg); }
  .nav-mobile[open] summary::after { transform: rotate(-45deg); }
  .nav-mobile nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    width: 100vw;
    height: 100dvh;
    overflow-y: auto;
    align-content: start;
    gap: 0;
    padding: 18px 22px 24px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at top left, rgba(135, 53, 181, 0.12), transparent 18rem),
      var(--paper);
    box-shadow: none;
  }
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-right: 58px;
  }
  .mobile-menu-close {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--blue-dark);
    font-size: 2rem;
    line-height: 1;
    opacity: 0;
  }
  .nav-mobile a {
    padding: 8px 14px;
    font-size: 1.06rem;
  }
  .nav-mobile .btn-primary {
    width: 100%;
    margin: 8px 0 4px;
    color: var(--white) !important;
  }
  .nav-mobile .language-switcher { display: none; }
  .nav-mobile .language-mobile-list {
    display: grid;
    gap: 6px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile .language-mobile-list a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--blue-dark);
    font-weight: 800;
  }
  .nav-mobile .language-mobile-list a.is-active {
    background: var(--blue);
    color: var(--white);
  }
  .download-buttons { flex-direction: column; }
  .store-button { width: 100%; }
  .hero .download-buttons,
  .page-hero .download-buttons,
  .section--blue .download-buttons,
  .app-cta .download-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
  }
  .hero .download-buttons::-webkit-scrollbar,
  .page-hero .download-buttons::-webkit-scrollbar,
  .section--blue .download-buttons::-webkit-scrollbar,
  .app-cta .download-buttons::-webkit-scrollbar { display: none; }
  .hero .store-button,
  .page-hero .store-button,
  .section--blue .store-button,
  .app-cta .store-button {
    display: flex;
    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: 42px;
    padding: 7px 7px;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(2, 48, 71, 0.18);
  }
  .hero .store-button span,
  .page-hero .store-button span,
  .section--blue .store-button span,
  .app-cta .store-button span {
    font-size: clamp(0.62rem, 2.15vw, 0.78rem);
    line-height: 1.05;
    white-space: nowrap;
  }
  .hero .store-button strong,
  .page-hero .store-button strong,
  .section--blue .store-button strong,
  .app-cta .store-button strong {
    font-size: clamp(0.9rem, 3vw, 1.08rem);
    line-height: 1.05;
    white-space: nowrap;
  }
  .chip-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }
  .chip-row::-webkit-scrollbar { display: none; }
  .chip-row a,
  .chip-row span {
    display: flex;
    justify-content: center;
    min-width: 0;
    padding: 8px 6px;
    font-size: clamp(0.76rem, 3.1vw, 0.94rem);
    white-space: nowrap;
  }
  .section-head--row { display: block; }
  .section-head--row .text-link { display: inline-flex; margin-top: 0.45rem; }
  .hero { padding-top: 2.6rem; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.8vw, 3.05rem);
    overflow-wrap: normal;
  }
  .phone-card { min-height: 420px; }
  .card-grid {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-left: 16px;
  }
  .card {
    flex-basis: 84%;
    max-width: 84%;
  }
  .card-grid::-webkit-scrollbar { display: none; }
  .card-grid { scrollbar-width: none; }
}

