:root {
  --bg: #faf3e7;
  --card: #fffcf6;
  --ink: #2c1f14;
  --ink-soft: #6b5848;
  --brown: #a87547;
  --brown-deep: #7a4f2e;
  --rose: #e85a4f;
  --yellow: #ffcb47;
  --border: #e8d9c2;
  --gold: #c58a43;
  --gold-2: #efbb59;
  --gold-soft: #fff1d4;
  --espresso: #2d2119;
  --espresso-2: #4a311f;
  --line-green: #087a38;
  --font-display: "Mitr", sans-serif;
  --font-body: "IBM Plex Sans Thai", sans-serif;
  --font-caps: "Bai Jamjuree", sans-serif;
  --shadow: 0 18px 52px rgba(76, 49, 28, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.lens-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px max(32px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid rgba(232, 217, 194, 0.92);
  background: rgba(255, 252, 246, 0.96);
  backdrop-filter: blur(16px);
}

.lens-brand {
  display: inline-flex;
  min-width: 220px;
  min-height: 48px;
  align-items: center;
}

.lens-brand-copy {
  display: grid;
  gap: 1px;
}

.lens-brand-th {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.lens-brand-en {
  color: #a15423;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.lens-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.lens-nav a {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #584739;
  font-size: 13px;
  font-weight: 550;
}

.lens-nav a:hover,
.lens-nav a[aria-current="page"] {
  color: var(--brown-deep);
}

.lens-nav a[aria-current="page"]::after {
  position: absolute;
  right: 4px;
  bottom: 2px;
  left: 4px;
  height: 2px;
  border-radius: 99px;
  background: var(--brown);
  content: "";
}

.lens-header-actions {
  display: flex;
  min-width: 220px;
  justify-content: flex-end;
}

.lens-book,
.lens-primary,
.lens-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
}

.lens-book,
.lens-primary {
  background: var(--yellow);
  color: #2c210e;
  box-shadow: 0 8px 20px rgba(188, 127, 16, 0.16);
}

.lens-secondary {
  border-color: var(--border);
  background: var(--card);
  color: var(--brown-deep);
}

.lens-hamburger {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}

.lens-scrim,
.lens-mobile-menu {
  display: none;
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.lens-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  color: #877363;
  font-size: 12px;
}

.lens-breadcrumbs a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.hero {
  padding: 30px 0 44px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 203, 71, 0.12), transparent 28%),
    var(--card);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(400px, 5fr);
  gap: 54px;
  align-items: center;
}

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

.eyebrow {
  margin-bottom: 11px;
  color: #a15423;
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.eyebrow::after {
  width: 26px;
  background: var(--gold);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 17px;
  font-size: clamp(43px, 4.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.13;
  text-wrap: balance;
}

.hero h1 .g {
  color: var(--brown);
}

.hero p.lead {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.hero-ctas {
  margin-bottom: 18px;
}

.btn {
  min-height: 48px;
  padding: 11px 18px;
  border-radius: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn-gold {
  background: var(--yellow);
  color: #2c210e;
  box-shadow: 0 10px 24px rgba(188, 127, 16, 0.16);
}

.btn-line {
  background: var(--line-green);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--card);
}

.hero-badges {
  gap: 7px;
}

.hb {
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid #ead7b8;
  background: #fff5e2;
  color: var(--brown-deep);
  font-size: 11px;
}

.hero-photo {
  isolation: isolate;
  margin: 0;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-photo-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 30px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 203, 71, 0.28), transparent 28%),
    linear-gradient(135deg, #efe0ca, #fffaf1);
  color: var(--brown-deep);
  text-align: center;
}

.hero-photo img {
  position: relative;
  z-index: 1;
}

.hero-photo .ph-tag {
  z-index: 2;
}

.hero-photo-fallback span {
  font-family: var(--font-caps);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-photo-fallback small {
  font-size: 12px;
}

.hero-photo.is-image-error img {
  visibility: hidden;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-photo .ph-tag {
  left: 14px;
  bottom: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  background: rgba(45, 33, 25, 0.82);
}

.lens-family-nav {
  position: sticky;
  top: 70px;
  z-index: 45;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 252, 246, 0.97);
  box-shadow: 0 8px 22px rgba(76, 49, 28, 0.045);
  backdrop-filter: blur(12px);
}

.lens-family-nav::after {
  display: none;
}

.lens-family-nav-inner {
  display: flex;
  width: min(1200px, calc(100% - 48px));
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: thin;
}

.lens-family-nav a {
  display: inline-flex;
  min-height: 54px;
  flex: 0 0 auto;
  align-items: center;
  padding: 8px 13px;
  border-bottom: 2px solid transparent;
  color: #6d5948;
  font-size: 12px;
  font-weight: 650;
}

.lens-family-nav a:hover,
.lens-family-nav a[aria-current="true"] {
  border-color: var(--brown);
  color: var(--brown-deep);
}

.guide {
  padding: 50px 0 0;
  scroll-margin-top: 142px;
}

.guide-title {
  font-size: clamp(25px, 3vw, 34px) !important;
  font-weight: 600;
}

.guide-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.g-card {
  min-width: 0;
  min-height: 224px;
  padding: 19px 16px;
  border-radius: 17px;
  background: rgba(255, 252, 246, 0.84);
  box-shadow: 0 8px 24px rgba(76, 49, 28, 0.045);
}

.g-card .em {
  font-size: 22px;
}

.g-card h3 {
  font-size: 15px;
  line-height: 1.45;
}

.g-card p {
  color: var(--ink-soft);
  font-size: 12.5px;
}

.g-card .go {
  color: var(--brown-deep);
  font-size: 12px;
}

.lens-process {
  padding: 38px 0 4px;
}

.lens-process-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 23px 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(76, 49, 28, 0.055);
}

.lens-step {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 5px 28px;
}

.lens-step + .lens-step {
  border-left: 1px solid var(--border);
}

.lens-step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--brown-deep);
  font-family: var(--font-caps);
  font-weight: 700;
}

.lens-step h2,
.lens-step h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.lens-step p {
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.55;
}

.fam {
  padding: 62px 0 0;
  scroll-margin-top: 142px;
}

.fam-head {
  align-items: flex-start;
  margin-bottom: 20px;
}

.fam-head h2 {
  font-size: clamp(28px, 3.1vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.fam-head .sub {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 14px;
}

.fam-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  background: var(--espresso);
  color: #f4c975;
  font-size: 11px;
}

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

.lens-card {
  min-width: 0;
  gap: 9px;
  padding: 21px 19px;
  border-radius: 17px;
  background: rgba(255, 252, 246, 0.88);
  box-shadow: 0 8px 24px rgba(76, 49, 28, 0.045);
}

.lens-card .brand-tag {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
}

.lens-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.lens-card .for {
  color: var(--brown-deep);
  font-size: 12px;
}

.lens-card p,
.lens-card ul li {
  font-size: 12.5px;
}

.trial {
  width: fit-content;
  min-height: 30px;
  margin-top: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eaf5e6;
  color: #25672e;
  font-size: 12px;
}

.lens-compare {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(76, 49, 28, 0.055);
}

.lens-compare-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.lens-compare-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.lens-compare-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.65;
}

.lens-compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  scrollbar-width: thin;
}

.lens-compare-scroll:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.lens-compare table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 12.5px;
  line-height: 1.5;
}

.lens-compare th,
.lens-compare td {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.lens-compare tr > :last-child {
  border-right: 0;
}

.lens-compare tbody tr:last-child > * {
  border-bottom: 0;
}

.lens-compare thead th {
  background: #f7eddf;
  color: var(--brown-deep);
  font-weight: 700;
  white-space: nowrap;
}

.lens-compare tbody th {
  color: var(--ink);
  font-weight: 650;
}

.compare-yes {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eaf5e6;
  color: #25672e;
  font-weight: 700;
  white-space: nowrap;
}

.lens-compare-hint {
  display: none;
}

.lens-family-collapsed .lens-grid .lens-card:nth-child(n + 4) {
  display: none;
}

.lens-disclosure {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 15px;
  border: 1px solid var(--border-strong, #d9c2a2);
  border-radius: 12px;
  background: var(--card);
  color: var(--brown-deep);
  font-weight: 650;
  cursor: pointer;
}

.lens-disclosure svg {
  transition: transform 160ms ease;
}

.lens-disclosure[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lens-disclosure--mobile {
  display: none;
}

.starter-grid {
  grid-template-columns: minmax(0, 760px);
}

.starter-card {
  border-color: #ddbd87;
  background: linear-gradient(135deg, var(--card), #fff5df);
}

.starter-card .price {
  color: var(--brown-deep);
  font-size: 20px;
}

.section-note {
  max-width: 900px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 11px;
}

#myopia {
  scroll-margin-top: 150px;
}

.opts {
  margin-top: 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 203, 71, 0.14), transparent 26%),
    linear-gradient(135deg, var(--espresso), var(--espresso-2));
}

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

.opt {
  border-radius: 14px;
}

.opt h3 {
  margin: 0 0 5px;
  color: #f2c770;
  font-size: 14px;
}

.cta {
  padding: 64px 0 72px;
}

.cta .wrap > div {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(28px, 3.1vw, 38px);
}

.cta p {
  max-width: 740px;
  margin-inline: auto;
  color: var(--ink-soft);
}

.cta .note {
  color: var(--ink-soft);
  font-size: 11px;
}

.lens-footer {
  padding: 42px 24px 24px;
  border-top: 0;
  background: #2d2119;
  color: rgba(255, 248, 238, 0.72);
  text-align: left;
}

.lens-footer-shell {
  display: grid;
  width: min(1200px, 100%);
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 44px;
  margin: 0 auto;
}

.lens-footer h2 {
  margin: 0 0 8px;
  color: #fff8ee;
  font-size: 17px;
  font-weight: 500;
}

.lens-footer p {
  margin: 4px 0;
  color: rgba(255, 248, 238, 0.72);
  font-size: 12px;
}

.lens-footer-links {
  display: grid;
  align-content: start;
  gap: 3px;
}

.lens-footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 248, 238, 0.78);
  font-size: 12px;
}

.lens-footer-bottom {
  display: flex;
  width: min(1200px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 238, 0.74);
  font-size: 12px;
}

.rv,
.rv.on {
  opacity: 1;
  transform: none;
}

:is(a, button, summary):focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .lens-header {
    padding-inline: 24px;
  }

  .lens-brand,
  .lens-header-actions {
    min-width: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 34px;
  }

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

@media (max-width: 980px) {
  .lens-nav,
  .lens-book {
    display: none;
  }

  .lens-hamburger {
    display: grid;
  }

  .lens-scrim {
    position: fixed;
    inset: 0;
    z-index: 78;
    display: block;
    border: 0;
    background: rgba(31, 22, 16, 0.48);
  }

  .lens-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    display: flex;
    width: min(360px, calc(100% - 36px));
    height: 100dvh;
    flex-direction: column;
    padding: 18px;
    background: var(--card);
    box-shadow: -24px 0 64px rgba(31, 22, 16, 0.2);
  }

  .lens-mobile-menu-head {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }

  .lens-mobile-menu-close {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
  }

  .lens-mobile-menu nav {
    display: grid;
    gap: 4px;
    padding: 18px 0;
  }

  .lens-mobile-menu nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    border-bottom: 1px solid #f0e4d3;
    font-weight: 600;
  }

  .lens-mobile-menu .lens-primary {
    margin-top: auto;
  }

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

  .hero-photo {
    width: min(680px, 100%);
  }

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

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

@media (max-width: 700px) {
  .lens-header {
    min-height: 64px;
    padding: 8px 14px;
    backdrop-filter: none;
  }

  .lens-brand {
    min-width: 0;
    min-height: 44px;
  }

  .lens-brand-th {
    max-width: min(62vw, 248px);
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lens-brand-en {
    font-size: 9px;
  }

  .wrap,
  .lens-family-nav-inner {
    width: min(100% - 36px, 560px);
  }

  .hero {
    padding: 14px 0 28px;
  }

  .lens-breadcrumbs {
    margin-bottom: 18px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero h1 {
    margin-bottom: 13px;
    font-size: clamp(31px, 9vw, 36px);
    line-height: 1.18;
    text-wrap: pretty;
  }

  .hero p.lead {
    margin-bottom: 17px;
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 8px;
  }

  .hero-ctas .btn {
    min-width: 0;
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero-badges {
    display: none;
  }

  .hero-photo {
    border-radius: 19px;
  }

  .hero-photo .ph-tag {
    max-width: calc(100% - 28px);
    font-size: 10px;
  }

  .lens-family-nav {
    top: 64px;
  }

  .lens-family-nav::after {
    content: '›';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    width: 44px;
    place-items: center;
    background: linear-gradient(90deg, rgba(255, 252, 246, 0), #fffcf6 56%);
    color: var(--brown-deep);
    font-size: 25px;
    font-weight: 700;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  .lens-family-nav.is-scroll-end::after {
    opacity: 0;
  }

  .lens-family-nav-inner {
    gap: 0;
  }

  .lens-family-nav a {
    min-height: 48px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .guide {
    padding-top: 34px;
    scroll-margin-top: 124px;
  }

  .guide-title {
    font-size: 24px !important;
  }

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

  .g-card {
    min-height: 190px;
    padding: 15px 13px;
    border-radius: 14px;
  }

  .g-card h3 {
    font-size: 13px;
  }

  .g-card p,
  .g-card .go {
    font-size: 12px;
  }

  .lens-process {
    padding-top: 28px;
  }

  .lens-process-shell {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
  }

  .lens-step {
    padding: 12px 4px;
  }

  .lens-step + .lens-step {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .fam {
    padding-top: 44px;
    scroll-margin-top: 124px;
  }

  .fam-head {
    margin-bottom: 15px;
  }

  .fam-head h2 {
    font-size: 25px;
    line-height: 1.35;
  }

  .fam-head .sub {
    font-size: 13px;
  }

  .fam-badge {
    margin-top: 4px;
  }

  .lens-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .lens-family-collapsed .lens-grid .lens-card:nth-child(n + 3) {
    display: none;
  }

  .lens-disclosure--mobile {
    display: inline-flex;
  }

  .lens-card {
    padding: 18px 16px;
  }

  .lens-compare {
    margin-top: 18px;
    padding: 18px 14px;
    border-radius: 17px;
  }

  .lens-compare-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }

  .lens-compare-head h3 {
    font-size: 19px;
    line-height: 1.4;
  }

  .lens-compare-head p {
    font-size: 12px;
  }

  .lens-compare table {
    min-width: 720px;
    font-size: 12px;
  }

  .lens-compare th,
  .lens-compare td {
    padding: 11px 12px;
  }

  .lens-compare-hint {
    display: block;
    margin: 9px 2px 0;
    color: var(--ink-soft);
    font-size: 11px;
  }

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

  .opts {
    padding: 24px 18px;
    border-radius: 18px;
  }

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

  .cta {
    padding: 46px 0 58px;
  }

  .cta .wrap > div {
    padding: 26px 17px;
    border-radius: 18px;
  }

  .cta h2 {
    font-size: 25px;
  }

  .cta .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .lens-footer {
    padding: 34px 18px 24px;
  }

  .lens-footer-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

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

  .lens-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 18px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 30px;
  }

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

  .g-card {
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
