:root {
  color-scheme: light;
  --navy: #082f49;
  --navy-2: #0b3d59;
  --ink: #123043;
  --muted: #617783;
  --teal: #008b83;
  --teal-soft: #dff5f1;
  --orange: #f36b32;
  --orange-soft: #fff0e7;
  --paper: #f5f8f8;
  --surface: #ffffff;
  --line: #dce6e8;
  --radius: 22px;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 96% 4%, rgba(0, 139, 131, 0.08), transparent 22rem),
    var(--paper);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-kerning: normal;
  font-synthesis: none;
  font-stretch: normal;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.motion-ready .topbar {
  animation: page-fade-down 560ms var(--ease-soft) both;
}

.motion-ready .intro-copy > * {
  animation: page-rise 640ms var(--ease-soft) both;
}

.motion-ready .intro-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.motion-ready .intro-copy > :nth-child(3) {
  animation-delay: 130ms;
}

.motion-ready .intro-copy > :nth-child(4) {
  animation-delay: 190ms;
}

.motion-ready .quick-card {
  animation: page-rise 700ms 150ms var(--ease-soft) both;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 680ms var(--ease-soft);
  will-change: opacity, transform;
}

.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(8, 47, 73, 0.1);
  background: rgba(245, 248, 248, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
}

.brand-logo--bens {
  width: 62px;
  height: auto;
}

.brand-logo--hotel {
  width: 70px;
  height: auto;
}

.brand-join {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.brand-join::before,
.brand-join::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.38);
  content: "";
}

.brand-join::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand-join::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.brand-caption {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.reading-time span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 139, 131, 0.12);
}

main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.intro {
  display: grid;
  min-height: 570px;
  align-items: center;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 8vw, 110px);
  padding: 72px 0 64px;
}

.eyebrow,
.section-kicker,
.quick-label {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.4rem, 3.5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.title-line {
  display: block;
}

.lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  position: relative;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background-clip: padding-box;
  font-size: 0.86rem;
  font-weight: 600;
  isolation: isolate;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button--primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(8, 47, 73, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 34px rgba(8, 47, 73, 0.25);
}

.button--quiet {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.button--quiet:hover,
.button--quiet:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(0, 139, 131, 0.45);
}

.quick-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(8, 47, 73, 0.12);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(8, 47, 73, 0.1);
}

.quick-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 8px;
  border-radius: 0 0 0 9px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  content: "";
}

.quick-card h2 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.mini-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-steps li {
  display: grid;
  position: relative;
  min-height: 66px;
  align-items: start;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.mini-steps li:not(:last-child)::after {
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: var(--line);
  content: "";
}

.mini-steps span,
.finish li span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.mini-steps p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.quick-note {
  margin: 16px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.quick-caveat {
  display: flex;
  gap: 7px;
  margin: 8px 0 0;
  color: #7b8c94;
  font-size: 0.68rem;
  line-height: 1.5;
}

.quick-caveat span {
  flex: 0 0 auto;
  color: var(--orange);
  font-weight: 700;
}

.section-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-nav a {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 220ms var(--ease-soft), color 220ms var(--ease-soft);
}

.section-nav a + a {
  border-left: 1px solid var(--line);
}

.section-nav a:hover,
.section-nav a:focus-visible {
  outline: none;
  background: white;
}

.section-nav span {
  color: var(--teal);
  font-size: 0.69rem;
}

.guide-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 30px;
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: rgba(8, 47, 73, 0.24);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-content {
  max-width: 930px;
}

.section-content--identity {
  max-width: none;
}

.section-content > h2,
.identity-copy > h2,
.faq h2,
.finish h2 {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-content > h2 span,
.identity-copy > h2 span {
  color: var(--teal);
}

.section-content > p:not(.section-kicker),
.identity-copy > p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1rem;
}

.identity-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 350px);
  gap: clamp(42px, 6vw, 76px);
}

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

.account-example {
  display: grid;
  max-width: 680px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.account-example > div:nth-child(2) {
  display: grid;
}

.account-example small,
.extension-copy small,
.flow small,
.video-copy small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.account-example strong {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.95rem;
}

.verified {
  padding: 7px 10px;
  border-radius: 999px;
  color: #00795f;
  background: #e5f7f0;
  font-size: 0.7rem;
  font-weight: 700;
}

.account-picker-demo {
  width: 100%;
  margin: 0;
}

.picker-window {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(8, 47, 73, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(8, 47, 73, 0.12);
}

.picker-window::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 5px;
  border-radius: 0 0 0 999px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  content: "";
}

.picker-brand {
  display: flex;
  min-height: 28px;
  align-items: center;
}

.picker-google-mark {
  color: #4285f4;
  background: conic-gradient(
    from -30deg,
    #4285f4 0 28%,
    #34a853 28% 47%,
    #fbbc05 47% 67%,
    #ea4335 67% 82%,
    #4285f4 82% 100%
  );
  background-clip: text;
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.picker-heading {
  margin: 16px 0 22px;
}

.picker-heading h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.picker-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.picker-options {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.picker-account {
  display: grid;
  position: relative;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  background: white;
}

.picker-account--selected {
  background: linear-gradient(100deg, rgba(223, 245, 241, 0.82), rgba(255, 255, 255, 0.96));
  box-shadow: inset 3px 0 0 var(--teal);
}

.picker-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.picker-person {
  display: grid;
  min-width: 0;
}

.picker-person strong,
.picker-person small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.picker-person strong {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.picker-person small {
  color: var(--muted);
  font-size: 0.68rem;
}

.picker-person em {
  width: max-content;
  margin-top: 5px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #00795f;
  background: #dff5ed;
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.picker-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--teal);
}

.picker-check svg,
.picker-other svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.picker-other {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: white;
  font-size: 0.72rem;
  font-weight: 500;
}

.picker-other > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: var(--paper);
}

.account-picker-demo figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: center;
}

.account-picker-demo figcaption strong {
  color: var(--teal);
}

.flow {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  margin: 38px 0 26px;
}

.flow article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.flow-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  color: white;
  background: var(--navy);
}

.flow-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.flow-icon--google {
  color: #4285f4;
  background: #f2f6ff;
  font-size: 1.2rem;
  font-weight: 700;
}

.flow h3 {
  margin: 5px 0 6px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
}

.flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.flow-arrow {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  align-self: center;
  color: #9aabb2;
}

.flow-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms var(--ease-soft), opacity 180ms var(--ease-soft);
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.extension-card {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(8, 47, 73, 0.12);
  border-radius: 22px;
  background: white;
  box-shadow: 0 16px 42px rgba(8, 47, 73, 0.07);
}

.extension-logo {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, var(--teal), var(--navy));
}

.extension-logo svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.extension-copy h3 {
  margin: 2px 0 4px;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 600;
}

.extension-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.micro-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.micro-checks p {
  display: flex;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.micro-checks span {
  color: var(--teal);
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.video-poster {
  display: grid;
  position: relative;
  min-height: 154px;
  place-items: center;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(145deg, #102f47, #195a78);
}

.video-poster--teal {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(145deg, #006e69, #00a29a);
}

.video-poster--orange {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(145deg, #b6481f, var(--orange));
}

.play {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding-left: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
}

.duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 7px;
  border-radius: 6px;
  color: white;
  background: rgba(5, 23, 34, 0.65);
  font-size: 0.64rem;
  font-weight: 600;
}

.video-copy {
  padding: 18px;
}

.video-copy h3 {
  margin: 5px 0 6px;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
}

.video-copy p {
  min-height: 40px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.soon {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: #eef3f4;
  font-size: 0.65rem;
  font-weight: 700;
}

.faq {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 70px;
  padding: 90px 0;
}

.faq h2 {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: background-color 240ms var(--ease-soft);
}

summary {
  position: relative;
  padding: 19px 44px 19px 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 220ms var(--ease-soft), padding-left 220ms var(--ease-soft);
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 14px;
  height: 2px;
  color: var(--teal);
  background: currentColor;
  content: "";
  transform: translateY(-50%);
  transform-origin: center;
  transition: opacity 220ms ease, transform 300ms var(--ease-soft);
}

summary::after {
  transform: translateY(-50%) rotate(90deg);
}

summary:hover,
summary:focus-visible,
details[open] summary {
  color: var(--teal);
}

summary:focus-visible {
  outline: none;
}

details[open]:not(.is-closing) summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 220ms ease, transform 300ms var(--ease-soft);
}

details[open]:not(.is-closing) .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  max-width: 690px;
  margin: 0;
  padding-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.finish {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 36px;
  margin-bottom: 58px;
  padding: 38px;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 94% 8%, rgba(0, 178, 165, 0.22), transparent 13rem),
    var(--navy);
}

.finish .section-kicker {
  color: #7edbd3;
}

.finish h2 {
  margin: 0;
  color: white;
  font-size: 2rem;
}

.finish ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.finish li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d5e1e7;
  font-size: 0.78rem;
}

.finish li span {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: white;
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.66rem;
}

.button--light {
  color: var(--navy);
  background: white;
}

footer {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

footer a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

@keyframes page-fade-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .brand-caption {
    display: none;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quick-card {
    max-width: 600px;
  }

  .identity-layout {
    grid-template-columns: 1fr;
  }

  .account-picker-demo {
    max-width: 420px;
  }

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

  .flow-arrow {
    display: none;
  }

  .extension-card {
    grid-template-columns: auto 1fr;
  }

  .extension-card .button {
    grid-column: 1 / -1;
  }

  .video-grid,
  .micro-checks {
    grid-template-columns: 1fr;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .finish .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .topbar {
    min-height: 68px;
    padding: 0 18px;
  }

  .reading-time {
    font-size: 0;
  }

  .brand {
    gap: 10px;
  }

  .brand-logos {
    gap: 8px;
  }

  .brand-logo--bens {
    width: 50px;
  }

  .brand-logo--hotel {
    width: 52px;
  }

  .brand-caption {
    display: none;
  }

  main,
  footer {
    width: min(100% - 32px, 560px);
  }

  .intro {
    min-height: auto;
    padding: 56px 0 44px;
  }

  h1 {
    font-size: clamp(2.15rem, 8.2vw, 2.4rem);
    line-height: 1.05;
  }

  .title-line {
    display: inline;
  }

  .lead {
    font-size: 0.96rem;
  }

  .intro-actions,
  .intro-actions .button {
    width: 100%;
  }

  .section-nav {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .guide-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 64px 0;
  }

  .section-number {
    font-size: 0.75rem;
  }

  .section-content > h2,
  .identity-copy > h2,
  .faq h2 {
    font-size: 2rem;
  }

  .account-example {
    grid-template-columns: auto 1fr;
  }

  .verified {
    grid-column: 2;
    justify-self: start;
  }

  .picker-window {
    padding: 22px;
  }

  .extension-card {
    grid-template-columns: 1fr;
  }

  .extension-logo {
    width: 54px;
    height: 54px;
  }

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

  .faq {
    padding: 64px 0;
  }

  .finish {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .finish .button {
    grid-column: auto;
  }

  footer {
    min-height: 76px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

@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;
  }
}
