:root {
  --ink: #12203f;
  --ink-soft: #516079;
  --ink-muted: #627087;
  --blue: #1c47ff;
  --blue-dark: #1236d3;
  --blue-soft: #eef2ff;
  --aqua: #dff9f5;
  --mint: #9be8d9;
  --sun: #fff1b8;
  --paper: #fbfcff;
  --card: #fff;
  --line: #dfe5f0;
  --line-strong: #8492aa;
  --control-line: #8492aa;
  --good: #08775d;
  --good-bg: #e6faf4;
  --warn: #885700;
  --warn-bg: #fff7dc;
  --danger: #a52d3b;
  --shadow-sm: 0 3px 12px rgb(22 39 76 / 7%);
  --shadow-lg: 0 24px 80px -28px rgb(27 54 120 / 28%);
  --radius: 28px;
  --radius-sm: 17px;
  --max: 1180px;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 0;
  scrollbar-gutter: stable;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 7%, rgb(210 237 255 / 64%), transparent 25rem),
    radial-gradient(circle at 92% 12%, rgb(222 255 244 / 65%), transparent 28rem), var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 5px var(--ink);
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  text-decoration: none;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.025em;
  line-height: 1;
}

.brand-wordmark > span {
  font-weight: 600;
}

.brand strong {
  font-weight: 780;
}

.brand-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.organisation-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 720;
  text-underline-offset: 4px;
}

.organisation-link:hover {
  color: var(--blue);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  min-height: 620px;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  margin: 0 auto;
  padding: 36px 0 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(50px, 6.1vw, 78px);
  line-height: 1.01;
  letter-spacing: -0.065em;
}

h1 span {
  color: var(--blue);
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.button,
.text-button {
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 32px rgb(28 71 255 / 25%);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 17px 38px rgb(28 71 255 / 32%);
}

.button-large {
  min-height: 62px;
  padding: 15px 25px;
  border-radius: 17px;
  font-size: 18px;
}

.button-secondary {
  border-color: var(--control-line);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.text-button {
  min-height: 48px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 720;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-button:hover {
  color: var(--blue);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line b {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--good-bg);
  color: var(--good);
  font-size: 12px;
}

.hero-motion-control {
  min-height: 48px;
  margin-top: 8px;
}

.hero-motion-toggle {
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 646px;
  isolation: isolate;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 6px -4px 4px;
  border-radius: 44% 56% 61% 39% / 48% 40% 60% 52%;
  background:
    radial-gradient(circle at 76% 17%, rgb(255 255 255 / 90%) 0 8%, transparent 31%),
    linear-gradient(145deg, #d9e7ff 3%, #d8fbf3 68%, #fff0bd 100%);
  filter: drop-shadow(0 34px 38px rgb(40 72 136 / 12%));
  transform: rotate(-2.5deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 65px;
  left: 50%;
  width: 290px;
  height: 430px;
  border-radius: 50%;
  background: rgb(62 116 255 / 19%);
  filter: blur(54px);
  transform: translateX(-50%);
}

.visual-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgb(28 71 255 / 15%);
  border-radius: 50%;
}

.orbit-one {
  inset: 38px 24px 45px 6px;
  transform: rotate(15deg);
}

.orbit-two {
  inset: 76px 38px 92px -6px;
  border-color: rgb(8 119 93 / 17%);
  transform: rotate(-14deg);
}

.hero-phone {
  position: absolute;
  z-index: 2;
  top: -8px;
  right: 0;
  left: 0;
  width: 286px;
  height: 566px;
  padding: 10px;
  margin: 0 auto;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 46px;
  background: linear-gradient(145deg, #27324d 0%, #10172a 62%, #293652 100%);
  box-shadow:
    0 52px 78px -32px rgb(16 34 75 / 55%),
    0 18px 28px -18px rgb(16 34 75 / 38%),
    inset 0 0 0 1px rgb(255 255 255 / 13%);
}

.hero-phone::before,
.hero-phone::after {
  content: "";
  position: absolute;
  top: 106px;
  width: 3px;
  height: 64px;
  border-radius: 3px 0 0 3px;
  background: #293650;
}

.hero-phone::before {
  left: -4px;
}

.hero-phone::after {
  top: 132px;
  right: -4px;
  height: 42px;
  border-radius: 0 3px 3px 0;
}

.hero-phone-island {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 0;
  left: 0;
  width: 78px;
  height: 23px;
  margin: 0 auto;
  border-radius: 20px;
  background: #080c17;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 5%);
}

.hero-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #10172a;
  color: #18213b;
}

.hero-phone-screen::after,
.guide-device-screen::after,
.branded-preview-screen::after {
  content: "";
  position: absolute;
  z-index: 20;
  inset: 0;
  border: 2px solid rgb(16 23 42 / 82%);
  border-radius: inherit;
  pointer-events: none;
}

.guide-device-screen::after {
  border-width: 3px;
  border-color: #1b2030;
}

.hero-phone-screen .mockup {
  transform: none;
  backface-visibility: visible;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: auto;
}

.hero-screen-loading {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 82px 22px;
  background: #f5f7fb;
}

.hero-screen-loading span {
  height: 42px;
  border-radius: 9px;
  background: linear-gradient(90deg, #e9edf4, #f8faff 52%, #e9edf4);
  background-size: 220% 100%;
  animation: heroLoading 1.1s ease-in-out infinite;
}

.hero-showcase-frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
}

.hero-showcase-frame.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-showcase-frame.is-active {
  z-index: 1;
}

.hero-screen-transition-veil {
  position: absolute;
  z-index: 10;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--hero-tap-x, 50%) var(--hero-tap-y, 50%),
      rgb(74 124 255 / 24%),
      transparent 42%
    ),
    rgb(9 18 38 / 56%);
  opacity: 0;
  pointer-events: none;
}

.hero-screen-transition-veil.is-visible {
  animation: heroScreenVeil 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-showcase-frame .mockup-highlight {
  animation: none;
}

.hero-showcase-frame.is-active .mockup-highlight {
  animation: mockupPulse 1.45s cubic-bezier(0.4, 0, 0.6, 1) 1;
}

.hero-showcase-frame.is-tapping .mockup-highlight {
  animation: none;
  box-shadow:
    0 0 0 3px rgb(239 68 68 / 16%),
    inset 0 0 0 3px #d72d2d,
    inset 0 0 13px rgb(239 68 68 / 24%);
}

[data-hero-motion="complete"] .hero-showcase-frame.is-active .mockup-highlight,
[data-hero-motion="paused"] .hero-showcase-frame.is-active .mockup-highlight {
  animation: none;
}

.hero-touch-cue {
  position: absolute;
  z-index: 12;
  top: var(--hero-tap-y, 50%);
  left: var(--hero-tap-x, 50%);
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #1748d4;
  box-shadow:
    0 0 0 0 rgb(23 72 212 / 42%),
    0 5px 13px rgb(16 35 84 / 28%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-touch-cue::after {
  position: absolute;
  inset: -8px;
  border: 2px solid rgb(23 72 212 / 52%);
  border-radius: inherit;
  content: "";
  opacity: 0;
}

.hero-touch-cue.is-visible {
  animation: heroTouchCue 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-touch-cue.is-visible::after {
  animation: heroTouchRing 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-showcase-caption.is-changing > div {
  animation: heroCaptionChange 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroScreenVeil {
  0%,
  5% {
    opacity: 0;
  }

  38%,
  48% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes heroTouchCue {
  0% {
    box-shadow:
      0 0 0 0 rgb(23 72 212 / 42%),
      0 5px 13px rgb(16 35 84 / 28%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  48% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.84);
  }

  100% {
    box-shadow:
      0 0 0 13px rgb(23 72 212 / 0%),
      0 5px 13px rgb(16 35 84 / 22%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes heroTouchRing {
  0%,
  38% {
    opacity: 0;
    transform: scale(0.72);
  }

  55% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes heroCaptionChange {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  40%,
  52% {
    opacity: 0;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-showcase-caption {
  position: absolute;
  z-index: 4;
  bottom: 4px;
  left: 50%;
  display: grid;
  width: min(292px, calc(100% - 40px));
  min-height: 64px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: 17px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 17px 42px rgb(28 52 102 / 18%);
  color: var(--ink);
  transform: translateX(-50%);
  backdrop-filter: blur(16px) saturate(1.25);
}

.hero-showcase-caption small,
.hero-showcase-caption strong {
  display: block;
}

.hero-showcase-caption small {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-showcase-caption strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-showcase-progress {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-showcase-progress i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #b7c1d2;
  transition:
    width 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms ease;
}

.hero-showcase-progress i.is-active {
  width: 18px;
  background: var(--blue);
}

@keyframes heroLoading {
  to {
    background-position: -120% 0;
  }
}

.how-it-works {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 0 auto 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.how-it-works > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 22px 25px;
  background: rgb(255 255 255 / 90%);
}

.how-it-works > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
}

.how-it-works p,
.how-it-works small {
  display: block;
  margin: 0;
}

.how-it-works strong {
  display: block;
  font-size: 16px;
}

.how-it-works small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 13px;
}

.finder-section {
  position: relative;
  padding: 96px 24px 104px;
  background:
    radial-gradient(circle at 16% 8%, rgb(117 150 255 / 23%), transparent 25rem),
    radial-gradient(circle at 86% 92%, rgb(95 225 196 / 16%), transparent 30rem), #111c3b;
}

.finder-shell {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.finder-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
  color: #fff;
}

.finder-topline h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.finder-topline .eyebrow {
  color: #9ab5ff;
}

.progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: #aeb8d1;
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.progress li {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.progress li + li::before {
  content: "";
  width: 26px;
  height: 1px;
  margin-right: 7px;
  background: #52607d;
}

.progress span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #52607d;
  border-radius: 50%;
}

.progress .is-current {
  color: #fff;
}

.progress .is-current span,
.progress .is-complete span {
  border-color: #86a5ff;
  background: var(--blue);
  color: #fff;
}

.progress .is-complete {
  color: #bfcae2;
}

.finder-card {
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 38px 90px -30px rgb(0 0 0 / 48%);
}

.finder-section.is-guide-mode {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: clamp(12px, 3vh, 28px) 24px;
}

.finder-section.is-guide-mode .finder-topline {
  display: none;
}

.finder-section.is-guide-mode .finder-card,
.finder-section.is-guide-mode #finder-stage {
  min-height: 0;
}

.finder-card h2[tabindex="-1"]:focus {
  outline: 2px solid transparent;
  outline-offset: 4px;
}

#finder-stage {
  min-height: inherit;
}

.no-script-fallback {
  min-height: 540px;
  padding: clamp(32px, 7vw, 72px);
  background: linear-gradient(145deg, #f7f9ff, #eef9f5);
}

.no-script-fallback h2 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.no-script-fallback > p:not(.question-kicker) {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 17px;
}

.question-view {
  display: grid;
  min-height: 540px;
  grid-template-columns: 0.66fr 1.34fr;
}

.question-aside {
  position: relative;
  overflow: hidden;
  padding: 38px 36px;
  background: linear-gradient(150deg, #edf2ff, #e4faf5);
}

.question-aside::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 46px solid rgb(28 71 255 / 8%);
  border-radius: 50%;
}

.question-aside-icon {
  display: flex;
  width: min(100%, 152px);
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 10px 12px;
  overflow: hidden;
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.question-aside-icon .question-context-logo {
  width: auto;
  max-width: 128px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  object-position: center;
}

.question-aside-icon .question-context-logo.official-logo--icon,
.question-aside-icon .question-context-logo--house {
  width: 44px;
  height: 44px;
}

.question-kicker-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.question-kicker-row .question-kicker {
  margin: 0;
}

.question-mobile-mark {
  display: none;
}

.question-aside-title {
  max-width: 280px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.question-aside-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.question-main {
  padding: 42px 46px;
}

.question-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.question-main h2 {
  margin-bottom: 9px;
  font-size: clamp(29px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.question-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 16px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-grid.choice-grid-wide {
  grid-template-columns: repeat(3, 1fr);
}

.choice-button {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border: 1.5px solid var(--control-line);
  border-radius: 17px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    border 140ms ease,
    background 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.choice-button:hover {
  border-color: #91a7ff;
  background: #f8faff;
  box-shadow: 0 10px 24px rgb(28 71 255 / 9%);
  transform: translateY(-1px);
}

.choice-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 22px;
  font-weight: 850;
}

.choice-official-mark {
  display: flex;
  width: 52px;
  height: 48px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.choice-official-mark .official-logo {
  width: auto;
  max-width: 48px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  object-position: center;
}

.choice-official-mark .official-logo--brands-apple {
  width: 23px;
  height: 72px;
  max-height: none;
}

.choice-copy {
  display: block;
  min-width: 0;
}

.choice-copy strong,
.choice-copy small {
  display: block;
}

.choice-copy strong {
  font-size: 16px;
  line-height: 1.25;
}

.choice-copy small {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.35;
}

.question-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.back-button {
  min-height: 46px;
  padding: 8px 5px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.helper-box {
  margin-top: 22px;
  padding: 17px 19px;
  border: 1px solid #eadca4;
  border-radius: 14px;
  background: var(--warn-bg);
  color: #644f17;
  font-size: 14px;
}

.helper-box strong {
  display: block;
  margin-bottom: 3px;
  color: #4c390b;
}

.model-search {
  position: relative;
}

.model-search label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}

.model-search input {
  width: 100%;
  min-height: 58px;
  padding: 12px 16px 12px 48px;
  border: 1.5px solid var(--line-strong);
  border-radius: 15px;
  color: var(--ink);
  font-size: 17px;
}

.model-search::before {
  content: "⌕";
  position: absolute;
  top: 38px;
  left: 17px;
  color: var(--ink-muted);
  font-size: 23px;
}

.popular-models {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.model-chip {
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid var(--control-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}

.model-chip:hover {
  border-color: #91a7ff;
  color: var(--blue);
  background: var(--blue-soft);
}

.result-view {
  min-height: 540px;
  padding: 42px;
}

.result-status {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.result-status-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  background: var(--good-bg);
  color: var(--good);
  font-size: 27px;
  font-weight: 850;
}

.result-status.is-caution .result-status-icon {
  background: var(--warn-bg);
  color: var(--warn);
}

.result-status.is-choice:not(.is-caution) .result-status-icon {
  background: var(--blue-soft);
  color: var(--blue);
}

.result-status h2 {
  margin-bottom: 7px;
  font-size: clamp(30px, 4.5vw, 43px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.result-status p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.next-steps {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid #d8c579;
  border-radius: 16px;
  background: var(--warn-bg);
  color: #554317;
  font-size: 14px;
}

.next-steps > strong {
  display: block;
  margin-bottom: 7px;
  color: #3f310e;
  font-size: 16px;
}

.next-steps ol {
  margin: 0;
  padding-left: 21px;
}

.next-steps li + li {
  margin-top: 5px;
}

.provider-choice-helper {
  margin-top: 18px;
}

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

.provider-choice-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.result-route-actions {
  margin-top: 16px;
}

.provider-option {
  display: grid;
  min-width: 0;
  min-height: 88px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #c8d2e4;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.provider-option:hover {
  border-color: #8ea4f2;
  background: #f8faff;
}

.provider-option:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.provider-option.is-recommended {
  border-color: #7791ef;
  background: linear-gradient(145deg, #f5f7ff, #fff 72%);
  box-shadow: 0 14px 30px -26px rgb(28 71 255 / 80%);
}

.provider-option .method-icon {
  overflow: hidden;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin: 0;
  border-radius: 12px;
}

.provider-option .method-icon img {
  width: 38px;
  height: 38px;
}

.provider-option .method-icon.is-wordmark {
  width: 92px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.provider-option .method-icon.is-wordmark img {
  width: 88px;
  height: auto;
  max-height: 30px;
}

.provider-option-copy {
  display: block;
  min-width: 0;
}

.provider-option-copy strong,
.provider-option-copy small {
  display: block;
}

.provider-option-copy strong {
  font-size: 16px;
  line-height: 1.2;
}

.provider-option-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: normal;
}

.provider-option-arrow {
  color: var(--blue);
  font-size: 20px;
  font-weight: 850;
}

.provider-choice-context {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #eef2ff;
  color: var(--ink-soft);
  font-size: 13px;
}

.provider-decision-action {
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 9px 12px;
  font-size: 14px;
}

.method-card {
  display: flex;
  min-height: 268px;
  flex-direction: column;
  padding: 24px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.method-card.is-primary {
  border-color: #aebfff;
  background: linear-gradient(155deg, #f6f8ff, #fff 68%);
  box-shadow: 0 16px 34px rgb(28 71 255 / 10%);
}

.method-label {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.method-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.method-card p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.method-card-details {
  margin-top: 14px;
}

.method-card-details .method-fact-details {
  margin-top: 0;
}

.method-card .method-type {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  color: #34445f;
  font-size: 12px;
  font-weight: 850;
}

.method-type > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgb(28 71 255 / 10%);
}

.method-facts {
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px solid #dce3ee;
  list-style: none;
}

.method-facts li {
  display: grid;
  grid-template-columns: minmax(104px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #e6ebf2;
}

.method-facts strong {
  color: #34445f;
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.method-facts span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.method-fact-details {
  margin-top: 13px;
  padding: 0 13px;
  border: 1px solid #d5deeb;
  border-radius: 13px;
  background: #f8faff;
}

.method-fact-details summary {
  min-height: 46px;
  padding: 11px 0;
  color: #34445f;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}

.method-fact-details .method-type {
  margin-top: 4px;
}

.method-fact-details .method-facts {
  margin-bottom: 13px;
}

.result-rationale {
  display: none;
}

.method-card.is-comparison {
  min-height: 0;
}

.method-card .button {
  width: 100%;
  margin-top: 14px;
}

.result-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 15px 17px;
  border-radius: 14px;
  background: #f3f5f9;
  color: var(--ink-soft);
  font-size: 13px;
}

.guide-view {
  min-height: 0;
}

.guide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.guide-head p {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guide-head strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
}

.guide-method-behaviour {
  display: block;
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 720;
}

.guide-head-actions {
  display: flex;
  gap: 8px;
}

.icon-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--control-line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.guide-step-layout {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "visual summary"
    "visual copy"
    "visual controls"
    "visual help";
  grid-template-rows: auto 1fr auto auto;
}

.guide-visual {
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  grid-area: visual;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 20%, rgb(255 255 255 / 65%), transparent 14rem),
    linear-gradient(150deg, #e8efff, #e7fbf5);
}

.guide-device {
  position: relative;
  width: 248px;
  height: 510px;
  flex: 0 0 auto;
  border: 10px solid #1b2030;
  border-radius: 38px;
  background: #1b2030;
  box-shadow: 0 28px 52px -25px rgb(17 28 59 / 60%);
  transform: scale(1);
}

.guide-device::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 50%;
  width: 78px;
  height: 21px;
  border-radius: 14px;
  background: #1b2030;
  transform: translateX(-50%);
}

.guide-device.is-android::before {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #0b0e15;
}

.guide-device.is-tablet {
  width: 390px;
  height: 520px;
  border-radius: 28px;
  transform: scale(0.82);
}

.guide-device.is-tablet::before {
  width: 54px;
  height: 14px;
  border-radius: 9px;
}

.guide-device.is-tablet .guide-device-screen {
  border-radius: 18px;
}

.guide-device.is-desktop {
  width: 560px;
  height: 383px;
  border-radius: 18px;
  transform: scale(0.62);
}

.guide-device.is-desktop::before {
  display: none;
}

.guide-device.is-desktop .guide-device-screen {
  border-radius: 7px;
}

.guide-device-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #1b2030;
}

.guide-device-screen > .mockup {
  position: absolute;
  inset: 0;
  backface-visibility: visible;
  transform: none;
}

.guide-step-summary {
  align-self: end;
  grid-area: summary;
  padding: 32px 36px 0;
}

.guide-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-self: start;
  grid-area: copy;
  padding: 0 36px 12px;
}

.guide-controls {
  min-width: 0;
  grid-area: controls;
  padding: 0 36px 28px;
}

.step-count {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-step-summary h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.guide-copy > p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 17px;
}

.guide-readiness {
  margin: 0 0 14px;
  padding: 0 14px;
  border: 1px solid #cbd5e5;
  border-radius: 14px;
  background: #f8faff;
  color: #34445f;
  font-size: 13px;
}

.guide-readiness summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-weight: 850;
}

.guide-readiness summary small {
  color: var(--ink-muted);
  font-weight: 720;
}

.guide-readiness ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.guide-readiness li + li {
  margin-top: 5px;
}

.setup-notice {
  margin-bottom: 22px;
  padding: 15px 17px;
  border: 1px solid #d8e1f4;
  border-radius: 14px;
  background: #f5f8ff;
  color: #3e4d6c;
  font-size: 13px;
}

.before-start {
  margin-bottom: 12px;
  padding: 16px 17px;
  border: 1px solid #98a7bd;
  border-radius: 14px;
  background: #fff;
  color: #3e4d66;
  font-size: 13px;
}

.before-start > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
}

.before-start ul {
  margin: 0;
  padding-left: 19px;
}

.before-start li + li {
  margin-top: 4px;
}

.button:disabled {
  border-color: #98a5b8;
  background: #eef1f5;
  box-shadow: none;
  color: #657187;
  cursor: default;
  opacity: 1;
  transform: none;
}

.setup-notice strong {
  color: var(--ink);
}

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

.guide-nav.is-first {
  grid-template-columns: 1fr;
}

.guide-nav .button-primary {
  width: 100%;
}

.guide-nav .button-secondary {
  min-width: 110px;
}

.guide-nav .guide-back {
  min-width: 96px;
  min-height: 44px;
  justify-self: start;
  padding: 8px 10px 8px 2px;
  text-align: left;
}

.mobile-security-link {
  display: none;
}

.security-info-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 0 14px;
  padding: 13px 14px;
  border: 1px solid #b9c8e5;
  border-radius: 16px;
  background: #f5f8ff;
}

.security-info-callout.is-computer {
  grid-template-columns: 1fr;
}

.security-info-callout-copy {
  min-width: 0;
}

.security-info-microsoft {
  display: block;
  width: 98px;
  height: auto;
  margin-bottom: 8px;
}

.security-info-callout strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.security-info-callout p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.security-info-callout a {
  color: var(--blue-dark);
  font-weight: 850;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.security-info-qr {
  width: 142px;
  margin: 0;
  padding: 5px;
  border: 1px solid #d4ddeb;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.security-info-qr img {
  display: block;
  width: 132px;
  height: 132px;
}

.security-info-qr figcaption {
  margin-top: 3px;
  color: #53627a;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
}

.guide-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

.guide-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: #d3d9e6;
}

.guide-dot.is-current {
  width: 22px;
  border-radius: 999px;
  background: var(--blue);
}

.guide-help {
  grid-area: help;
  margin: 12px 36px;
  border-top: 1px solid var(--line);
}

.guide-help summary {
  min-height: 50px;
  padding: 13px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.guide-help p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 13px;
}

.it-message {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f8fb;
  color: #3d4b66;
  font-size: 14px;
}

.copy-fallback {
  display: flex;
  width: min(100%, 560px);
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.copy-fallback input {
  width: 100%;
  min-height: 48px;
  padding: 9px 12px;
  border: 1.5px solid var(--control-line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}

.branded-offer h2 {
  margin-bottom: 42px;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.branded-offer {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  grid-template-areas:
    "copy preview"
    "actions preview"
    "followup followup"
    "enquiry enquiry";
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: 28px clamp(36px, 5vw, 68px);
  margin: 0 auto 100px;
  padding: clamp(42px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgb(91 132 255 / 30%);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0 0, rgb(63 112 255 / 25%), transparent 30rem),
    linear-gradient(145deg, #102f4c, #081d33 72%);
  box-shadow: 0 35px 90px -45px rgb(7 29 55 / 78%);
  color: #fff;
  scroll-margin-top: 24px;
}

.branded-offer-copy {
  grid-area: copy;
}

.branded-offer .eyebrow {
  color: #9db8ff;
}

.branded-offer h2 {
  max-width: 480px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(36px, 4.3vw, 56px);
}

.branded-offer-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #dce8f7;
  font-size: 16px;
}

.branded-offer-points {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.branded-offer-points li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  padding: 0;
  color: #f5f8ff;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.45;
}

.branded-offer-points li::before {
  content: "✓";
  color: #9db8ff;
  font-weight: 900;
  text-align: center;
}

.branded-offer-actions {
  display: grid;
  grid-area: actions;
  gap: 12px;
}

.branded-offer-actions .button {
  min-height: 52px;
  padding-right: 18px;
  padding-left: 18px;
  text-align: center;
}

.branded-offer .button-primary {
  border-color: #3162ff;
  background: #3162ff;
  color: #fff;
  box-shadow: 0 14px 30px -20px rgb(49 98 255 / 82%);
}

.branded-offer .button-primary:hover {
  border-color: #4b75ff;
  background: #4b75ff;
}

.branded-offer .button-secondary {
  border-color: rgb(255 255 255 / 44%);
  background: rgb(255 255 255 / 6%);
  color: #fff;
}

.branded-offer .button-secondary:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 12%);
}

.branded-offer a:focus-visible {
  box-shadow:
    0 0 0 2px #102f4c,
    0 0 0 5px #9db8ff;
}

.branded-product-preview {
  width: 100%;
  min-width: 0;
  grid-area: preview;
  margin: 0;
  scroll-margin-top: 12px;
}

.branded-preview-window {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 25px;
  background: #f5f7fc;
  box-shadow: 0 30px 60px -30px rgb(0 0 0 / 72%);
}

.branded-preview-browser {
  display: grid;
  min-height: 58px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 9px 16px;
  border-bottom: 1px solid #d5deed;
  background: #edf2f9;
  color: #3d506d;
}

.branded-preview-dots {
  display: flex;
  gap: 5px;
}

.branded-preview-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aab6c9;
}

.branded-preview-address {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 8px;
  padding: 7px 12px;
  overflow: hidden;
  border: 1px solid #d4deec;
  border-radius: 10px;
  background: #fff;
  white-space: nowrap;
}

.branded-preview-address small {
  flex: 0 0 auto;
  color: #66758b;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.branded-preview-address strong {
  overflow: hidden;
  color: #193657;
  font-size: 12px;
  text-overflow: ellipsis;
}

.branded-preview-secure {
  color: #45627f;
  font-size: 10px;
  font-weight: 800;
}

.branded-preview-stage {
  display: grid;
  min-height: 566px;
  grid-template-columns: minmax(190px, 0.85fr) minmax(270px, 1.15fr);
  align-items: center;
  gap: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgb(49 98 255 / 18%), transparent 20rem),
    linear-gradient(145deg, #f6f8fd, #ebf1fa);
}

.branded-preview-brand {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 25px;
  border-radius: 23px;
  background: #102f4c;
  box-shadow: 0 24px 45px -30px rgb(10 38 70 / 85%);
  color: #fff;
}

.branded-preview-logo-plate {
  display: grid;
  width: min(100%, 230px);
  min-width: 0;
  min-height: 56px;
  margin-bottom: 24px;
  padding: 0;
  place-items: center start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.branded-preview-logo-plate img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 1px rgb(255 255 255 / 92%)) drop-shadow(0 1px 2px rgb(0 0 0 / 80%));
}

.branded-preview-logo-plate strong {
  display: -webkit-box;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.branded-preview-logo-plate:is([data-logo-state="fallback"], [data-logo-state="loading"]) {
  width: 100%;
  min-height: 0;
  padding: 13px 15px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 13px;
  background: rgb(255 255 255 / 7%);
}

.branded-preview-logo-plate:is([data-logo-state="fallback"], [data-logo-state="loading"])::before {
  content: "Organisation name";
  margin-bottom: 5px;
  color: #9db8ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branded-preview-logo-plate:is([data-logo-state="fallback"], [data-logo-state="loading"]) strong {
  font-size: clamp(16px, 1.7vw, 20px);
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  -webkit-line-clamp: 3;
}

.branded-preview-brand > span {
  color: #9db8ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.branded-preview-brand p {
  margin: 10px 0 22px;
  color: #dce8f7;
  font-size: 14px;
  line-height: 1.55;
}

.branded-preview-brand small {
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
}

.branded-preview-phone {
  position: relative;
  width: 248px;
  height: 510px;
  justify-self: center;
  padding: 9px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 41px;
  background: linear-gradient(145deg, #29344f, #10172a 65%, #2d3955);
  box-shadow:
    0 32px 48px -28px rgb(11 42 33 / 55%),
    inset 0 0 0 1px rgb(255 255 255 / 12%);
}

.branded-preview-island {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 0;
  left: 0;
  width: 70px;
  height: 21px;
  margin: 0 auto;
  border-radius: 20px;
  background: #080c17;
}

.branded-preview-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: #10172a;
}

.branded-preview-screen > .mockup {
  backface-visibility: visible;
  transform: none;
}

.branded-preview-fallback {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  color: #f7f9ff;
}

.branded-preview-fallback small {
  color: #c8d6eb;
}

.branded-preview-fallback strong {
  font-size: 22px;
}

.branded-preview-fallback span {
  padding: 12px;
  border: 2px solid #1c47ff;
  border-radius: 10px;
  background: #eef2ff;
  color: #25334c;
  font-size: 14px;
  font-weight: 800;
}

.branded-product-preview figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 11px;
  color: #c8d6eb;
  font-size: 11px;
  text-align: right;
}

.branded-product-preview figcaption > * {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.branded-product-preview figcaption strong {
  color: #fff;
  font-weight: 820;
}

.branded-preview-scope {
  flex-basis: 100%;
  color: #9db8ff;
  font-weight: 760;
}

.tenant-preview-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  scroll-margin-top: 18px;
}

.tenant-preview-form > label,
.branded-enquiry-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #f3fbf8;
  font-size: 12px;
  font-weight: 820;
}

.tenant-preview-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.tenant-preview-input-shell {
  position: relative;
  min-width: 0;
}

.tenant-preview-form-row .button {
  width: 100%;
}

.tenant-preview-form input,
.branded-enquiry-form input,
.branded-enquiry-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.branded-enquiry-form textarea {
  min-height: 94px;
  resize: vertical;
}

.tenant-preview-form input:focus,
.branded-enquiry-form input:focus,
.branded-enquiry-form textarea:focus {
  border-color: #5b84ff;
  outline: 3px solid rgb(91 132 255 / 26%);
}

.tenant-preview-form input:-webkit-autofill,
.tenant-preview-form input:-webkit-autofill:hover,
.tenant-preview-form input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: var(--ink);
}

.tenant-preview-privacy,
.tenant-preview-status,
.branded-enquiry-fallback {
  margin: 9px 0 0;
  color: #cbd9eb;
  font-size: 12.5px;
  line-height: 1.5;
}

.tenant-preview-status {
  min-height: 16px;
  color: #edf4ff;
  font-weight: 700;
}

.tenant-preview-status:empty {
  min-height: 0;
  margin-top: 0;
}

.tenant-preview-status.is-error {
  color: #ffe2cf;
}

.tenant-preview-policy-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgb(157 184 255 / 34%);
  border-radius: 13px;
  background: rgb(157 184 255 / 10%);
  color: #dce8f7;
  font-size: 12px;
  line-height: 1.55;
}

.tenant-preview-policy-note strong {
  color: #fff;
}

.organisation-landing-main {
  padding: 42px 0 0;
}

.organisation-hero {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 56px;
  text-align: center;
}

.organisation-hero h1 {
  max-width: 860px;
  margin: 0 auto 22px;
  font-size: clamp(43px, 6vw, 70px);
}

.organisation-hero .hero-intro {
  max-width: 740px;
  margin: 0 auto 26px;
}

.organisation-hero .hero-actions {
  justify-content: center;
  margin-bottom: 10px;
}

.organisation-hero-assurance {
  margin: 0 auto 18px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 720;
}

.organisation-policy {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  grid-template-areas:
    "copy example"
    "boundary boundary";
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
  gap: 34px clamp(34px, 5vw, 64px);
  margin: 0 auto 42px;
  padding: clamp(34px, 4.5vw, 54px);
  border: 1px solid rgb(49 98 255 / 18%);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0, rgb(157 184 255 / 26%), transparent 26rem),
    linear-gradient(145deg, rgb(255 255 255 / 94%), #f4f7ff);
  box-shadow: 0 30px 80px -58px rgb(10 43 82 / 62%);
}

.organisation-policy-copy {
  min-width: 0;
  grid-area: copy;
  align-self: center;
}

.organisation-policy h2 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(36px, 4.2vw, 54px);
}

.organisation-policy-intro {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.organisation-policy-example {
  min-width: 0;
  grid-area: example;
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgb(91 132 255 / 25%);
  border-radius: 25px;
  background: radial-gradient(circle at 100% 0, rgb(91 132 255 / 24%), transparent 18rem), #102f4c;
  box-shadow: 0 28px 58px -42px rgb(7 29 55 / 85%);
  color: #fff;
}

.organisation-policy-example .eyebrow {
  color: #9db8ff;
}

.organisation-profile-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.organisation-profile-heading h3 {
  max-width: 360px;
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.6vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.organisation-profile-heading > span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  color: #dce8f7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.organisation-route-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.organisation-route-list li {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 15px;
  background: rgb(255 255 255 / 7%);
}

.organisation-route-list strong,
.organisation-route-list small {
  display: block;
}

.organisation-route-list strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
}

.organisation-route-list small {
  color: #cbd9eb;
  font-size: 11px;
  line-height: 1.45;
}

.route-status {
  display: inline-flex;
  min-width: 58px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-status--shown {
  background: #dff7eb;
  color: #075c3f;
}

.route-status--hidden {
  background: rgb(255 255 255 / 12%);
  color: #dce8f7;
}

.organisation-profile-note {
  margin: 16px 0 0;
  color: #cbd9eb;
  font-size: 12px;
  line-height: 1.55;
}

.organisation-policy-details {
  grid-area: boundary;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgb(49 98 255 / 18%);
  color: #39516e;
  font-size: 13px;
}

.organisation-policy-details p {
  margin: 0;
  line-height: 1.45;
}

.organisation-policy-details nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.organisation-policy-details a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #17478f;
  font-weight: 760;
  text-underline-offset: 3px;
}

.organisation-landing-main .branded-offer {
  scroll-margin-top: 20px;
}

@media (max-width: 980px) {
  .organisation-policy {
    grid-template-areas:
      "copy"
      "example"
      "boundary";
    grid-template-columns: minmax(0, 1fr);
  }

  .organisation-policy-example {
    width: min(100%, 680px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .organisation-landing-main {
    padding-top: 16px;
  }

  .organisation-hero {
    width: min(100% - 32px, 900px);
    padding: 24px 0 38px;
    text-align: left;
  }

  .organisation-hero h1 {
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1.04;
  }

  .organisation-hero .hero-actions {
    justify-content: flex-start;
  }

  .organisation-policy {
    width: min(100% - 32px, var(--max));
    gap: 26px;
    margin-bottom: 24px;
    padding: 25px 20px;
    border-radius: 25px;
  }

  .organisation-policy h2 {
    font-size: clamp(35px, 11vw, 46px);
  }

  .organisation-policy-intro {
    font-size: 16px;
  }

  .organisation-policy-example {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .organisation-profile-heading {
    display: block;
  }

  .organisation-profile-heading > span {
    display: inline-flex;
    margin-top: 12px;
  }

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

.branded-enquiry-card {
  display: grid;
  grid-area: enquiry;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px 42px;
  margin-top: 10px;
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 24px;
  background: rgb(255 255 255 / 8%);
}

.branded-enquiry-card .eyebrow {
  margin-bottom: 8px;
}

.branded-enquiry-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(25px, 3vw, 35px);
  letter-spacing: -0.045em;
}

.branded-enquiry-card > div > p:not(.eyebrow) {
  margin: 0;
  color: #dce8f7;
  font-size: 14px;
}

.branded-enquiry-form {
  display: grid;
  gap: 12px;
  scroll-margin-top: 18px;
}

.branded-enquiry-primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.branded-enquiry-primary .button {
  min-width: 220px;
}

.branded-enquiry-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.branded-enquiry-message {
  grid-column: 1 / -1;
}

.branded-enquiry-form .button {
  width: 100%;
}

.branded-enquiry-assurance {
  margin: 0;
  color: #e1eaf8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.branded-enquiry-details {
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 13px;
  background: rgb(255 255 255 / 5%);
}

.branded-enquiry-details > summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 13px;
  color: #f3f7ff;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
}

.branded-enquiry-details > summary:focus-visible {
  border-radius: 12px;
  outline: 3px solid rgb(157 184 255 / 58%);
  outline-offset: 2px;
}

.branded-enquiry-details[open] > summary {
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.branded-enquiry-details > .branded-enquiry-fields {
  padding: 13px;
}

.branded-enquiry-fallback a {
  color: #fff;
}

footer {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  grid-template-columns: 1fr auto;
  gap: 22px 40px;
  align-items: center;
  margin: 0 auto;
  padding: 35px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 12px;
}

.brand-footer {
  font-size: 16px;
}

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

footer p {
  margin: 10px 0 0;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

footer nav a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-weight: 700;
  text-underline-offset: 4px;
}

.verified {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1100px) {
  .orbit-one {
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 28px;
    padding: 28px 0 38px;
  }

  .hero-visual {
    min-height: 591px;
  }

  .hero-visual::before {
    inset: 10px 10px 8px;
    transform: none;
  }

  .orbit-one {
    inset: 42px 22px 50px;
    transform: none;
  }

  .orbit-two {
    inset: 80px 42px 96px 10px;
    transform: none;
  }

  .hero-phone {
    top: -12px;
    width: 260px;
    height: 515px;
    padding: 9px;
    border-radius: 42px;
  }

  .hero-phone-screen {
    border-radius: 33px;
  }

  .hero-phone-island {
    top: 16px;
    width: 70px;
    height: 21px;
  }

  .branded-offer {
    grid-template-areas:
      "copy"
      "actions"
      "preview"
      "followup"
      "enquiry";
    grid-template-columns: minmax(0, 1fr);
  }

  .branded-offer-copy {
    max-width: 680px;
  }

  .branded-product-preview {
    max-width: 720px;
    justify-self: center;
  }

  .branded-offer-actions {
    width: min(100%, 620px);
  }

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

  .choice-grid.choice-grid-wide {
    grid-template-columns: 1fr 1fr;
  }

  .question-view {
    grid-template-columns: 0.53fr 1.47fr;
  }

  .question-aside {
    padding: 32px 26px;
  }

  .question-main {
    padding: 38px 34px;
  }

  .guide-step-summary {
    padding: 28px 30px 0;
  }

  .guide-copy {
    padding: 0 30px 26px;
  }
}

@media (min-width: 981px) and (max-width: 1080px) {
  .branded-offer {
    grid-template-areas:
      "copy"
      "actions"
      "preview"
      "followup"
      "enquiry";
    grid-template-columns: minmax(0, 1fr);
  }

  .branded-offer-copy {
    max-width: 680px;
  }

  .branded-product-preview {
    max-width: 720px;
    justify-self: center;
  }

  .branded-offer-actions {
    width: min(100%, 620px);
  }

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

@media (min-width: 761px) and (max-width: 1080px) {
  .branded-offer-copy {
    width: min(100%, 680px);
    justify-self: center;
  }

  .branded-offer-actions {
    justify-self: center;
  }

  .branded-product-preview figcaption {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 20px;
  }

  .hero-actions {
    width: min(100%, 360px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

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

  .question-view {
    display: flex;
    flex-direction: column;
  }

  .question-aside {
    padding: 18px 28px;
  }

  .question-aside::after,
  .question-aside-icon {
    display: none;
  }

  .question-aside-title {
    max-width: none;
    margin: 0 0 4px;
    font-size: 18px;
    letter-spacing: -0.025em;
  }

  .question-aside-copy {
    margin: 0;
    font-size: 14px;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .setup-page.is-guide-screen:has(.guide-view) {
    padding-bottom: 240px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 0;
  }

  body {
    font-size: 17px;
  }

  .site-header,
  .hero,
  .how-it-works,
  .branded-offer,
  footer {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    min-height: 72px;
  }

  .organisation-link {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 13px;
  }

  .hero {
    display: block;
    padding: 34px 0 46px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  h1 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-intro {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    justify-content: center;
    gap: 8px 14px;
    font-size: 13px;
  }

  .hero-visual {
    min-height: 603px;
    margin: 32px auto 0;
  }

  .hero-phone {
    top: 0;
  }

  .how-it-works {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .how-it-works > div {
    min-height: 90px;
  }

  .finder-section {
    padding: 65px 16px 72px;
  }

  .finder-section.is-guide-mode {
    min-height: 100svh;
    align-items: start;
    padding: 12px 8px;
  }

  .finder-topline {
    display: block;
  }

  .progress {
    margin-top: 22px;
  }

  .progress li {
    flex: 1;
  }

  .progress li + li::before {
    display: none;
  }

  .progress li:not(.is-current) {
    font-size: 0;
  }

  .progress li:not(.is-current) span {
    font-size: 12px;
  }

  .finder-card {
    min-height: 0;
    border-radius: 23px;
  }

  #finder-stage {
    min-height: 0;
  }

  .question-view {
    display: block;
    min-height: 0;
  }

  .question-aside {
    display: block;
    padding: 16px 20px;
    border-bottom: 1px solid #c9d4e5;
  }

  .question-aside-title {
    font-size: 16px;
  }

  .question-aside-copy {
    font-size: 13px;
    line-height: 1.45;
  }

  .question-main {
    padding: 31px 22px 25px;
  }

  .choice-grid,
  .choice-grid.choice-grid-wide {
    grid-template-columns: 1fr;
  }

  .choice-button {
    min-height: 78px;
  }

  .question-actions {
    margin-top: 23px;
  }

  .result-view {
    padding: 30px 22px;
  }

  .result-status {
    display: block;
  }

  .result-status-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }

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

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

  .guide-head {
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
  }

  .guide-head-actions {
    flex-direction: row;
    gap: 6px;
  }

  .icon-button {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .guide-step-layout {
    display: grid;
    min-height: 0;
    grid-template-areas:
      "summary"
      "visual"
      "copy";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 472px auto;
  }

  .guide-visual {
    height: 472px;
    min-height: 472px;
    padding: 0;
  }

  .guide-device {
    transform: scale(0.92);
  }

  .guide-device.is-desktop {
    transform: scale(0.5);
  }

  .guide-device.is-tablet {
    transform: scale(0.72);
  }

  .guide-step-summary {
    align-self: stretch;
    padding: 4px 18px 8px;
  }

  .guide-step-summary .step-count {
    margin-bottom: 4px;
  }

  .guide-copy {
    align-self: stretch;
    padding: 16px 18px 22px;
  }

  .guide-step-summary h2 {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .guide-copy > p {
    font-size: 16px;
  }

  .guide-nav {
    grid-template-columns: 1fr 1.5fr;
  }

  .guide-nav .button-secondary {
    min-width: 0;
  }

  .branded-offer {
    margin-bottom: 70px;
    padding: 30px 24px;
    border-radius: 27px;
  }

  .branded-offer h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .branded-offer-actions {
    width: 100%;
  }

  .branded-offer-actions .button {
    width: 100%;
  }

  .tenant-preview-form-row,
  .branded-enquiry-primary,
  .branded-enquiry-fields {
    grid-template-columns: 1fr;
  }

  .branded-enquiry-primary .button {
    min-width: 0;
  }

  .branded-enquiry-message {
    grid-column: auto;
  }

  .tenant-preview-form-row .button {
    width: 100%;
  }

  .branded-enquiry-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .branded-preview-browser {
    grid-template-columns: minmax(0, 1fr);
    padding: 8px;
  }

  .branded-preview-dots,
  .branded-preview-secure {
    display: none;
  }

  .branded-preview-address {
    display: block;
    text-align: center;
  }

  .branded-preview-address small,
  .branded-preview-address strong {
    display: block;
  }

  .branded-preview-address small {
    margin-bottom: 2px;
  }

  .branded-preview-stage {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
  }

  .branded-preview-brand {
    min-height: 0;
    padding: 23px;
  }

  .branded-preview-brand img {
    width: min(100%, 190px);
    margin-bottom: 18px;
  }

  .branded-preview-brand p {
    margin-bottom: 15px;
  }

  .branded-product-preview figcaption {
    justify-content: flex-start;
    text-align: left;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer nav {
    justify-content: flex-start;
  }

  .verified {
    grid-column: auto;
  }
}

@media (min-width: 621px) and (max-width: 760px) {
  .branded-preview-stage {
    min-height: 566px;
    grid-template-columns: minmax(190px, 0.85fr) minmax(270px, 1.15fr);
    gap: 18px;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 16px;
  }

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

  .organisation-link {
    font-size: 12px;
  }

  .branded-offer {
    padding: 25px 18px;
  }

  .branded-offer-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .organisation-route-list li {
    grid-template-columns: minmax(0, 1fr);
  }

  .route-status {
    justify-self: start;
  }

  .branded-preview-stage {
    padding: 12px;
  }

  .branded-preview-brand {
    padding: 20px;
  }

  .branded-preview-brand p {
    display: none;
  }

  .branded-preview-brand small {
    padding-top: 13px;
  }

  .branded-preview-phone {
    width: min(100%, 214px);
    height: auto;
    aspect-ratio: 248 / 510;
    padding: 8px;
    border-radius: 36px;
  }

  .branded-preview-screen {
    border-radius: 28px;
  }

  .branded-preview-island {
    top: 14px;
    width: 62px;
    height: 19px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: 42px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero-intro {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-actions {
    margin-bottom: 12px;
  }

  .hero .trust-line {
    flex-wrap: nowrap;
    gap: 6px;
    font-size: 11.5px;
  }

  .hero .trust-line span {
    gap: 4px;
  }

  .hero .trust-line b {
    width: 17px;
    height: 17px;
    font-size: 10px;
  }

  .hero-visual {
    min-height: 603px;
    margin-top: 30px;
  }

  .hero-phone {
    top: 0;
  }

  .hero-showcase-caption {
    width: min(292px, calc(100% - 24px));
    padding-right: 12px;
    padding-left: 12px;
  }

  .question-main,
  .result-view {
    padding-right: 18px;
    padding-left: 18px;
  }

  .guide-step-summary {
    padding: 4px 18px 8px;
  }

  .guide-copy {
    padding: 18px 18px 24px;
  }

  .choice-button {
    padding: 13px;
  }

  .guide-visual {
    height: 472px;
    min-height: 472px;
  }

  .guide-device {
    transform: scale(0.92);
  }

  .guide-device.is-desktop {
    transform: scale(0.5);
  }

  .guide-device.is-tablet {
    transform: scale(0.72);
  }
}

@media (max-width: 340px) {
  .branded-preview-stage {
    padding: 9px;
  }
}

/* ---------- Dedicated setup tool ---------- */

.setup-page {
  --setup-shell-chrome: 117px;

  display: flex;
  min-height: 100svh;
  flex-direction: column;
  background:
    radial-gradient(circle at 10% 12%, rgb(61 102 255 / 10%), transparent 28rem),
    radial-gradient(circle at 90% 86%, rgb(10 172 126 / 10%), transparent 30rem), #f4f7fc;
}

.setup-page.is-branded-demo {
  --blue: #007a48;
  --blue-dark: #005d37;
  --blue-soft: #e7f7ef;
  --setup-shell-chrome: 129px;

  background:
    radial-gradient(circle at 8% 10%, rgb(0 199 99 / 15%), transparent 28rem),
    radial-gradient(circle at 92% 88%, rgb(192 224 33 / 13%), transparent 30rem), #f4f8f5;
}

.setup-page.is-branded-preview {
  --blue: var(--tenant-accent, #0f6cbd);
  --blue-dark: #0b4f7a;
  --blue-soft: #eaf4fc;

  background:
    radial-gradient(circle at 8% 10%, rgb(15 108 189 / 14%), transparent 28rem),
    radial-gradient(circle at 92% 88%, rgb(61 206 160 / 12%), transparent 30rem), #f4f7fa;
}

.setup-header {
  width: min(100% - 32px, 1220px);
  min-height: 64px;
}

.setup-page.is-branded-demo .setup-header {
  width: 100%;
  min-height: 76px;
  padding: 10px max(16px, calc((100vw - 1160px) / 2));
  background: #073b2d;
  box-shadow: 0 10px 30px -24px rgb(7 59 45 / 80%);
}

.setup-page.is-branded-demo .setup-header .brand {
  min-width: 0;
}

.tenant-brand-logo {
  display: block;
  width: auto;
  max-width: min(44vw, 205px);
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.tenant-brand-name {
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-page.is-branded-preview .setup-header {
  background: #102f4c;
}

.branded-preview-notice {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 13px 16px;
  border: 1px solid #c7d5ff;
  border-radius: 15px;
  background: #eef2ff;
  color: #344a68;
  font-size: 13px;
  line-height: 1.5;
}

.branded-preview-notice p {
  margin: 0;
}

.branded-preview-notice strong {
  color: var(--ink);
}

.branded-preview-notice a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #214ddc;
  font-weight: 800;
  text-underline-offset: 4px;
}

.branded-preview-notice-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.branded-preview-notice .button-primary {
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
}

.finder-section.is-guide-mode .branded-preview-notice {
  margin-top: 8px;
}

@media (max-width: 620px) {
  .branded-preview-notice {
    display: block;
    padding: 13px 14px;
    font-size: 12px;
  }

  .branded-preview-notice a {
    width: 100%;
    max-width: 100%;
    flex: initial;
    margin-top: 8px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .branded-preview-notice-actions {
    display: grid;
    width: 100%;
    gap: 4px;
  }
}

.setup-page.is-branded-preview .tenant-brand-logo {
  max-width: min(48vw, 230px);
  height: 52px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 0 1px rgb(255 255 255 / 92%)) drop-shadow(0 1px 2px rgb(0 0 0 / 82%));
}

.setup-page.is-branded-demo.is-branded-preview .question-aside {
  background: linear-gradient(150deg, #eaf4fc, #edf8f4);
}

.setup-page.is-branded-demo.is-branded-preview
  .question-aside-icon:has(.question-context-logo--tenant) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.setup-page.is-branded-preview .question-context-logo--tenant {
  filter: drop-shadow(0 0 1px rgb(255 255 255 / 92%)) drop-shadow(0 1px 2px rgb(0 0 0 / 76%));
}

.setup-exit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 11px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.setup-exit:hover {
  background: #eef2fa;
  color: var(--ink);
}

.setup-page.is-branded-demo .setup-exit {
  color: #fff;
}

.setup-page.is-branded-demo .setup-exit:hover {
  background: rgb(255 255 255 / 12%);
  color: #fff;
}

.setup-main {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: calc(100svh - var(--setup-shell-chrome));
  flex: 0 0 auto;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
}

.setup-page .finder-section {
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  min-height: auto;
  padding: clamp(18px, 3vh, 34px) 16px;
  background: transparent;
}

.setup-page .finder-shell {
  width: min(100%, 1160px);
  min-width: 0;
}

.setup-page .finder-topline {
  align-items: end;
  margin-bottom: 16px;
  color: var(--ink);
}

.setup-page .finder-topline .eyebrow {
  color: var(--blue);
}

.setup-page.is-branded-demo .finder-card {
  border-color: #b9cec5;
  box-shadow: 0 28px 70px -42px rgb(7 59 45 / 70%);
}

.setup-page.is-branded-demo .question-aside {
  background: linear-gradient(150deg, #e8f7ef, #f3f8dc);
}

.setup-page.is-branded-demo .question-aside-icon:has(.question-context-logo--tenant) {
  background: #073b2d;
  box-shadow: 0 12px 28px -20px rgb(7 59 45 / 90%);
}

.question-aside-icon .question-context-logo--tenant {
  max-width: 132px;
  max-height: 42px;
}

.question-context-tenant-name {
  max-width: 132px;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-page.is-branded-demo .setup-footer a {
  color: #285c4b;
}

.setup-page .progress,
.setup-page .progress .is-complete,
.setup-page .progress .is-current {
  color: #596780;
}

.setup-page .progress li + li::before {
  background: #7b879b;
}

.setup-page .progress span {
  border-color: #7b879b;
}

.setup-page .finder-topline h1 {
  margin: 3px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.045em;
}

.setup-page .finder-card {
  min-width: 0;
  min-height: 0;
  border-color: #d5deed;
  border-radius: 26px;
  box-shadow: 0 28px 70px -42px rgb(30 48 94 / 55%);
}

.hosted-account-entry {
  display: flex;
  flex: 0 1 auto;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.hosted-account-check,
.hosted-account-state {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 11px;
}

.hosted-account-check {
  color: var(--blue-dark);
  text-align: center;
  text-underline-offset: 4px;
}

.hosted-account-check:hover {
  background: #fff;
}

.hosted-account-state::before {
  content: "✓";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--good-bg);
  color: var(--good);
  font-size: 12px;
  font-weight: 900;
}

.hosted-account-forget {
  min-height: 44px;
  font-size: 13px;
}

.setup-page.is-branded-demo .hosted-account-check,
.setup-page.is-branded-demo .hosted-account-state,
.setup-page.is-branded-demo .hosted-account-forget {
  color: #fff;
}

.setup-page.is-branded-demo .hosted-account-check:hover,
.setup-page.is-branded-demo .hosted-account-forget:hover {
  background: rgb(255 255 255 / 12%);
}

.hosted-identity-panel {
  min-height: 420px;
  padding: clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 92% 8%, rgb(155 232 217 / 45%), transparent 20rem),
    linear-gradient(145deg, #fff, #f1f8f5);
}

.hosted-guide-loading {
  display: grid;
  min-height: 280px;
  place-content: center;
  padding: 28px;
  background: linear-gradient(145deg, #fff, #f2f7f5);
  text-align: center;
}

.hosted-guide-loading h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hosted-guide-loading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.finder-card.is-showing-hosted-plan #finder-stage {
  display: none;
}

.setup-page .finder-section.is-hosted-policy-unavailable {
  min-height: calc(100svh - 76px);
  padding: 10px 16px;
}

.setup-page .finder-section.is-hosted-policy-unavailable .finder-card,
.setup-page .finder-section.is-hosted-policy-unavailable #finder-stage {
  min-height: 0;
}

.setup-page .hosted-policy-unavailable {
  min-height: 0;
  padding: 18px;
}

.hosted-config-unavailable-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hosted-config-unavailable-actions .button {
  min-height: 44px;
}

@media (max-width: 390px) {
  .hosted-config-unavailable-actions {
    display: grid;
  }
}

.setup-page .hosted-policy-unavailable .result-status {
  padding-bottom: 8px;
}

.hosted-policy-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 12px 14px;
}

.hosted-policy-support > div {
  min-width: 0;
}

.hosted-policy-support strong {
  display: block;
  margin-bottom: 2px;
}

.hosted-policy-support p {
  margin: 0;
  overflow-wrap: anywhere;
}

.hosted-policy-support-action {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 8px 13px;
}

.setup-page .hosted-policy-unavailable .result-note {
  margin-top: 8px;
}

.hosted-plan-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hosted-plan-heading h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hosted-plan-heading h2:focus {
  outline: 2px solid transparent;
  outline-offset: 4px;
}

.hosted-plan-badge {
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #9dccbc;
  border-radius: 999px;
  background: #e7f7ef;
  color: #07583c;
  font-size: 12px;
  font-weight: 850;
}

.hosted-plan-copy {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
}

.hosted-plan-facts {
  display: grid;
  max-width: 630px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.hosted-plan-facts > div {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #cfddd7;
  border-radius: 14px;
  background: rgb(255 255 255 / 76%);
}

.hosted-plan-facts dt {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 760;
}

.hosted-plan-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 880;
}

.hosted-plan-boundary {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hosted-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hosted-silent-auth {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.setup-page #finder-stage,
.setup-page .guide-view,
.setup-page .guide-head,
.setup-page .guide-step-layout,
.setup-page .guide-step-summary,
.setup-page .guide-copy {
  min-width: 0;
}

.setup-page .finder-section.is-guide-mode {
  min-height: calc(100svh - 64px);
  padding: 16px;
}

.setup-page .finder-section.is-guide-mode .finder-shell {
  width: min(100%, 1160px);
}

.setup-page .finder-section.is-guide-mode .finder-card {
  width: 100%;
  max-width: 1160px;
}

.setup-footer {
  display: flex;
  width: min(100% - 32px, 1160px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: auto auto 0;
  padding: 4px 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.setup-footer p {
  margin: 0;
}

.setup-footer nav {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.setup-footer a {
  color: inherit;
}

.setup-page.is-guide-screen .setup-footer {
  display: none;
}

.setup-page .question-view {
  min-height: 0;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
}

.setup-page .question-main {
  padding: clamp(22px, 2.8vw, 32px);
}

.setup-page .question-main h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
}

.setup-page .choice-grid.choice-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.setup-page .choice-grid.is-brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.setup-page .choice-grid.is-model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.setup-page .choice-grid.is-model-grid:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.setup-page .choice-button {
  min-height: 92px;
  padding: 14px 16px;
  border-color: #a6b2c6;
  border-radius: 17px;
  background: linear-gradient(180deg, #fff, #fbfcff);
}

.setup-page .choice-button:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 28px -22px rgb(28 71 255 / 65%);
}

.setup-page .choice-button.is-brand-choice {
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.setup-page .choice-button.is-brand-choice .choice-copy strong {
  font-size: 14px;
  font-weight: 780;
  line-height: 1.15;
}

.setup-page .choice-button.is-brand-choice .choice-copy small {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
}

.setup-page .question-lede {
  margin-bottom: 18px;
}

.setup-page .question-actions {
  justify-content: flex-end;
  margin-top: 16px;
}

.setup-page .question-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: -8px 0 4px;
}

.brand-badge {
  display: flex;
  width: min(100%, 132px);
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.official-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  flex: 0 1 auto;
  object-fit: contain;
  object-position: center;
}

.official-logo-fallback {
  display: none;
  min-width: 0;
  align-items: center;
  color: #111827;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
}

.official-logo-fallback.is-visible {
  display: inline-flex;
}

.brand-badge .official-logo {
  width: auto;
  max-width: min(100%, 118px);
  height: auto;
  max-height: 30px;
}

.brand-badge .official-logo--icon {
  width: 34px;
  height: 34px;
}

.brand-badge--apple .official-logo--brands-apple {
  width: 23px;
  height: 72px;
  max-height: none;
}

.brand-badge--apple,
.question-aside-icon:has(.official-logo--brands-apple),
.question-mobile-mark:has(.official-logo--brands-apple) {
  overflow: visible;
}

.question-aside-icon .question-context-logo.official-logo--brands-apple {
  width: 30px;
  height: 94px;
  max-height: none;
}

.question-mobile-mark .question-context-logo.official-logo--brands-apple {
  width: 18px;
  height: 64px;
  max-height: none;
}

.brand-badge--xiaomi {
  gap: 8px;
}

.brand-badge--xiaomi .official-logo {
  width: auto;
  max-width: calc((100% - 16px) / 3);
  height: auto;
  max-height: 22px;
  object-position: center;
}

.brand-badge--xiaomi .official-logo-fallback {
  flex: 1 1 0;
  justify-content: center;
  font-size: 10px;
}

.brand-badge .official-logo--brands-oneplus {
  width: auto;
  max-width: 100%;
  height: 42px;
  max-height: 42px;
}

.brand-badge--other,
.brand-badge--computer {
  color: #475569;
}

.neutral-mark {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 13px;
  background: #fff;
  color: #31527e;
}

.neutral-mark > span {
  position: relative;
  display: block;
}

.neutral-mark--phone > span,
.neutral-mark--tablet > span {
  width: 17px;
  height: 27px;
  border: 2px solid currentcolor;
  border-radius: 5px;
}

.neutral-mark--phone > span::after,
.neutral-mark--tablet > span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentcolor;
  transform: translateX(-50%);
}

.neutral-mark--tablet > span {
  width: 27px;
  height: 20px;
}

.neutral-mark--computer > span {
  width: 27px;
  height: 18px;
  border: 2px solid currentcolor;
  border-radius: 3px;
}

.neutral-mark--computer > span::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 10px;
  width: 4px;
  height: 6px;
  border-radius: 0 0 2px 2px;
  background: currentcolor;
}

.neutral-mark--computer > span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 5px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
}

.neutral-mark--security > span {
  width: 24px;
  height: 10px;
  border: 2px solid currentcolor;
  border-radius: 6px;
}

.neutral-mark--security > span::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -2px;
  width: 8px;
  height: 8px;
  border: 2px solid currentcolor;
  border-radius: 50%;
  background: #fff;
}

.neutral-mark--signin > span {
  width: 22px;
  height: 22px;
  border: 2px solid currentcolor;
  border-radius: 7px;
}

.neutral-mark--signin > span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 5px;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
}

.neutral-mark--shared > span {
  width: 25px;
  height: 13px;
  border-bottom: 2px solid currentcolor;
  border-radius: 0 0 14px 14px;
}

.neutral-mark--shared > span::before,
.neutral-mark--shared > span::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 7px;
  height: 7px;
  border: 2px solid currentcolor;
  border-radius: 50%;
  background: #fff;
}

.neutral-mark--shared > span::before {
  left: 3px;
}

.neutral-mark--shared > span::after {
  right: 3px;
}

.neutral-mark--alternate > span {
  width: 23px;
  height: 23px;
  border: 2px dashed currentcolor;
  border-radius: 50%;
}

.neutral-mark--alternate > span::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 1px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
  transform: rotate(-40deg);
}

.neutral-mark--unknown > span,
.neutral-mark--unknown > span::before,
.neutral-mark--unknown > span::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentcolor;
}

.neutral-mark--unknown > span::before,
.neutral-mark--unknown > span::after {
  content: "";
  position: absolute;
  top: 0;
}

.neutral-mark--unknown > span::before {
  left: -8px;
}

.neutral-mark--unknown > span::after {
  right: -8px;
}

.choice-neutral-mark {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  background: var(--blue-soft);
  border-color: #d8e1ff;
  color: var(--blue-dark);
}

.question-context-neutral {
  border: 0;
  background: transparent;
}

.setup-page .choice-button.is-model-choice {
  min-height: 112px;
}

.device-thumb {
  position: relative;
  width: 54px;
  height: 76px;
  flex: 0 0 54px;
  border: 4px solid #222936;
  border-radius: 12px;
  background: #222936;
  box-shadow: 0 12px 20px -13px rgb(16 24 40 / 80%);
}

.device-thumb-screen {
  position: absolute;
  inset: 2px;
  border-radius: 7px;
  background: linear-gradient(155deg, #dfe8ff 4%, #7f9fff 50%, #6ee7c7 110%);
}

.device-thumb-camera {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 50%;
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: #222936;
  transform: translateX(-50%);
}

.device-thumb--classic .device-thumb-camera {
  top: auto;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border: 1px solid #7d8798;
  background: transparent;
}

.device-thumb--tablet,
.device-thumb--unknown-tablet {
  width: 70px;
  height: 58px;
  flex-basis: 70px;
  border-radius: 9px;
}

.device-thumb--tablet .device-thumb-camera,
.device-thumb--unknown-tablet .device-thumb-camera {
  top: 50%;
  right: 3px;
  left: auto;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
}

.device-thumb--fold {
  width: 68px;
  flex-basis: 68px;
  transform: perspective(160px) rotateY(-14deg);
}

.device-thumb--fold::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 29px;
  bottom: -4px;
  width: 3px;
  background: #10141d;
}

.device-thumb--laptop {
  width: 82px;
  height: 54px;
  flex-basis: 82px;
  border-width: 4px 4px 7px;
  border-radius: 7px;
}

.device-thumb--laptop::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -11px;
  left: -12px;
  height: 5px;
  border-radius: 0 0 8px 8px;
  background: #788398;
}

.device-thumb--unknown,
.device-thumb--unknown-tablet {
  filter: grayscale(0.85);
  opacity: 0.75;
}

.device-thumb--samsung .device-thumb-screen {
  background: linear-gradient(155deg, #d6e4ff, #8ca4ff 48%, #cbc2ff);
}

.device-thumb--pixel .device-thumb-screen {
  background: linear-gradient(155deg, #ffe8c8, #e38c7b 48%, #7a9bd6);
}

.device-thumb--motorola .device-thumb-screen {
  background: linear-gradient(155deg, #e6fbff, #58b7d8 48%, #273c7f);
}

.device-thumb--xiaomi .device-thumb-screen {
  background: linear-gradient(155deg, #fff0d7, #ffb252 48%, #f46b45);
}

.device-thumb--oneplus .device-thumb-screen {
  background: linear-gradient(155deg, #ffe4e8, #ef6e82 48%, #871c38);
}

.device-thumb--huawei .device-thumb-screen,
.device-thumb--honor .device-thumb-screen {
  background: linear-gradient(155deg, #f4e7ff, #a68be5 48%, #4f4e98);
}

.setup-page .result-view {
  padding: clamp(22px, 3vw, 30px);
}

.setup-page .result-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -8px 0 8px;
}

.setup-page .result-toolbar .back-button,
.setup-page .result-toolbar .text-button {
  min-height: 44px;
}

.setup-page .result-status {
  max-width: 850px;
  padding-bottom: 18px;
}

.setup-page .method-grid {
  gap: 16px;
  margin-top: 16px;
}

.setup-page .method-grid:has(> .method-card:only-child) {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

.setup-page .method-card {
  display: grid;
  overflow: hidden;
  min-height: 188px;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: 0 14px;
  padding: 18px;
  border-color: #a6b2c6;
  border-radius: 20px;
}

.setup-page .method-card .method-icon {
  overflow: hidden;
  width: 52px;
  height: 52px;
  grid-row: 1;
  align-self: start;
  justify-self: center;
  margin: 0;
  border-radius: 14px;
}

.setup-page .method-card .method-icon img {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
}

.setup-page .method-card .method-icon--icloud img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}

.setup-page .method-card-copy {
  min-width: 0;
}

.setup-page .method-card:has(.method-icon.is-wordmark) {
  grid-template-columns: 112px minmax(0, 1fr);
}

.setup-page .method-card .method-icon.is-wordmark {
  width: 112px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.setup-page .method-card .method-icon.is-wordmark img {
  width: 106px;
  height: auto;
  max-height: 36px;
  border-radius: 0;
}

.setup-page .method-card .method-label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.setup-page .method-card h3 {
  font-size: 21px;
}

.setup-page .method-card p {
  margin-bottom: 12px;
}

.setup-page .method-card .button {
  grid-column: 2;
  grid-row: 2;
}

.setup-page .method-card-details {
  min-width: 0;
  grid-row: 3;
  grid-column: 1 / -1;
}

.setup-page .result-note {
  margin-top: 14px;
  padding: 11px 14px;
}

.setup-page .result-view > .question-actions {
  margin-top: 10px;
}

.setup-page .method-card.is-primary {
  border-color: #7b93f2;
  background: linear-gradient(155deg, #f7f9ff, #fff 58%);
  box-shadow: 0 18px 36px -30px rgb(28 71 255 / 70%);
}

.method-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid #d6deeb;
  border-radius: 17px;
  background: #fff;
  color: #1f2937;
  box-shadow: 0 8px 20px -16px rgb(20 31 55 / 65%);
  font-size: 32px;
  font-weight: 900;
}

.method-icon--gpm {
  overflow: hidden;
  border-color: #aeb9cb;
  background: #f8fafc;
  box-shadow:
    inset 0 0 0 1px #fff,
    0 8px 18px -15px rgb(20 31 55 / 70%);
}

.method-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: center;
}

.method-icon .official-logo-fallback {
  max-width: 52px;
  justify-content: center;
  font-size: 9px;
  text-align: center;
}

.method-icon.is-wordmark .official-logo-fallback {
  max-width: 100%;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.guide-method-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-method-brand .method-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 12px;
  font-size: 23px;
}

.guide-method-brand .method-icon img {
  width: 36px;
  height: 36px;
}

.guide-method-brand .method-icon.is-wordmark {
  width: 106px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.guide-method-brand .method-icon.is-wordmark img {
  width: 100px;
  height: auto;
  max-height: 30px;
}

.guide-method-brand:has(.method-icon.is-wordmark) strong,
.setup-page .method-card:has(.method-icon.is-wordmark) h3,
.complete-method:has(.method-icon.is-wordmark) > .complete-method-copy > strong {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.setup-page .guide-head {
  min-height: 68px;
  padding: 10px 16px;
}

.setup-page .guide-step-layout {
  min-height: 548px;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.setup-page .guide-visual {
  min-height: 548px;
}

.setup-page .guide-step-summary {
  padding: 26px 32px 0;
}

.setup-page .guide-copy {
  padding: 0 32px 10px;
}

.setup-page .guide-controls {
  padding: 0 32px 22px;
}

.setup-page .guide-step-summary h2 {
  font-size: clamp(31px, 3.7vw, 43px);
}

.setup-page .guide-copy > p {
  margin-bottom: 14px;
  font-size: 17px;
}

.complete-view {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 24px;
  text-align: center;
}

.complete-check {
  display: grid;
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  place-items: center;
  border: 9px solid #d9f7ea;
  border-radius: 50%;
  background: #0a9f69;
  box-shadow: 0 22px 44px -28px rgb(10 159 105 / 85%);
  color: #fff;
  font-size: 58px;
  font-weight: 900;
}

.complete-view h2 {
  margin: 4px 0 8px;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.complete-view > p:not(.question-kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.complete-method {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
  color: var(--ink);
  font-weight: 850;
}

.complete-method-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.complete-method-copy small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 720;
}

.complete-method .method-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 12px;
  font-size: 22px;
}

.complete-method .method-icon img {
  width: 36px;
  height: 36px;
}

.complete-method .method-icon.is-wordmark {
  width: 112px;
  height: 44px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.complete-method .method-icon.is-wordmark img {
  width: 106px;
  height: auto;
  max-height: 30px;
}

.complete-method .method-icon--gpm img {
  width: 44px;
  height: 44px;
}

.completion-continuity {
  display: flex;
  width: min(100%, 670px);
  align-items: flex-start;
  gap: 13px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid #c7d3e7;
  border-radius: 16px;
  background: #f7f9fd;
  color: var(--ink);
  text-align: left;
}

.completion-continuity-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 11px;
  background: #e7edff;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.completion-continuity h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.completion-continuity p,
.completion-continuity small {
  display: block;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.completion-continuity small {
  margin-top: 5px;
  color: var(--ink-muted);
}

.complete-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.complete-actions .button {
  min-height: 62px;
}

.complete-actions + .completion-continuity {
  margin-top: 24px;
}

.guide-sales-endcap {
  width: min(100%, 720px);
  margin: 0 0 22px;
  padding: 22px;
  border: 1px solid #bfd0ff;
  border-radius: 20px;
  background: radial-gradient(circle at 100% 0, rgb(28 71 255 / 14%), transparent 18rem), #f4f7ff;
  box-shadow: 0 18px 38px -30px rgb(28 71 255 / 45%);
  color: var(--ink);
  text-align: left;
}

.complete-view > .guide-sales-endcap {
  margin: 24px 0 0;
}

.guide-sales-endcap .question-kicker {
  margin: 0 0 6px;
}

.guide-sales-endcap h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.guide-sales-endcap > p:not(.question-kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.guide-sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.guide-sales-actions .button {
  min-height: 48px;
  flex: 1 1 220px;
  text-align: center;
}

.guide-copy .guide-sales-endcap {
  margin-top: 16px;
  margin-bottom: 0;
  padding: 16px;
  border-radius: 16px;
}

.guide-copy .guide-sales-endcap h3 {
  font-size: 21px;
}

.result-view > .guide-sales-endcap {
  width: 100%;
  margin-top: 24px;
}

.compact-start-over {
  justify-self: end;
}

@media (max-width: 900px) {
  .setup-page.is-branded-demo .setup-header {
    min-height: 64px;
    padding: 8px max(12px, calc((100vw - 1160px) / 2));
  }

  .security-info-callout {
    gap: 10px;
    padding: 10px;
  }

  .security-info-qr {
    width: 116px;
  }

  .security-info-qr img {
    width: 106px;
    height: 106px;
  }

  .setup-page .choice-grid.is-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .setup-page .choice-grid.is-brand-grid .is-brand-choice:last-child {
    grid-column: 2;
  }

  .setup-page .choice-grid.is-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .setup-page .question-view {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .setup-page .question-aside {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    border-right: 0;
    border-bottom: 1px solid #c9d4e5;
    padding: 14px 18px;
  }

  .setup-page .question-aside-icon {
    display: flex;
    width: 72px;
    height: 52px;
    margin: 0;
    padding: 7px;
    grid-row: 1 / 3;
  }

  .setup-page .question-aside-icon .question-context-logo {
    max-width: 58px;
    max-height: 34px;
  }
}

@media (min-width: 901px) and (max-width: 1150px) {
  .setup-page.is-branded-demo .setup-header {
    min-height: 68px;
    padding: 8px max(16px, calc((100vw - 1160px) / 2));
  }

  .setup-page .question-main {
    padding: 24px;
  }

  .setup-page .choice-grid.is-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .setup-page .choice-button.is-brand-choice {
    min-height: 102px;
    padding: 12px 10px;
  }

  .setup-page .choice-grid.is-brand-grid .is-brand-choice:nth-last-child(2) {
    grid-column: 2;
  }
}

@media (min-width: 901px) and (max-width: 1150px) and (max-height: 850px) {
  .setup-page .choice-grid.is-brand-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .setup-page .choice-grid.is-brand-grid .is-brand-choice:nth-last-child(2) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .setup-header {
    width: calc(100% - 24px);
    min-height: 58px;
  }

  .setup-main {
    min-height: calc(100svh - 116px);
  }

  .setup-page .finder-section,
  .setup-page .finder-section.is-guide-mode {
    min-height: calc(100svh - 58px);
    padding: 10px 8px 18px;
  }

  .setup-page .finder-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 4px 10px;
  }

  .hosted-account-entry {
    justify-content: flex-end;
    padding: 0;
  }

  .setup-page.has-hosted-identity .setup-header {
    gap: 8px;
  }

  .setup-page.has-hosted-identity .setup-header .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .setup-page.has-hosted-identity .tenant-brand-logo {
    max-width: min(34vw, 150px);
  }

  .setup-page.has-hosted-identity .setup-exit {
    display: none;
  }

  .setup-page.has-hosted-identity .hosted-account-entry {
    max-width: min(48vw, 210px);
    flex: 0 0 auto;
    gap: 4px;
  }

  .setup-page.has-hosted-identity .hosted-account-check,
  .setup-page.has-hosted-identity .hosted-account-forget {
    min-height: 44px;
    justify-content: center;
    padding: 6px 9px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
  }

  .setup-page.has-hosted-identity .hosted-account-state {
    display: none;
  }

  .hosted-identity-panel {
    min-height: 0;
    padding: 20px 16px;
  }

  .hosted-plan-heading {
    display: block;
  }

  .hosted-plan-heading h2 {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .hosted-plan-badge {
    display: none;
  }

  .hosted-plan-copy {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .hosted-plan-facts {
    gap: 7px;
    margin-bottom: 10px;
  }

  .hosted-plan-facts > div {
    min-height: 48px;
    padding: 7px 9px;
  }

  .hosted-plan-facts dt {
    font-size: 11px;
    line-height: 1.25;
  }

  .hosted-plan-facts dd {
    font-size: 20px;
  }

  .hosted-plan-boundary {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hosted-plan-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .setup-page .finder-topline > div {
    min-width: 0;
    flex: 1;
  }

  .setup-page .finder-topline h1 {
    font-size: 26px;
    line-height: 1.05;
    white-space: normal;
  }

  .setup-page .finder-topline .eyebrow {
    display: none;
  }

  .setup-page .progress {
    width: 124px;
    flex: 0 0 124px;
    gap: 4px;
    margin: 0;
  }

  .setup-page .progress li {
    gap: 4px;
    font-size: 0;
  }

  .setup-page .progress li + li::before {
    width: 12px;
    margin-right: 0;
  }

  .setup-page .progress span {
    flex: 0 0 28px;
    font-size: 12px;
  }

  .setup-page .question-main,
  .setup-page .result-view {
    padding: 18px 14px;
  }

  .setup-page .question-main h2 {
    font-size: 30px;
  }

  .setup-page .choice-grid.is-brand-grid,
  .setup-page .choice-grid.is-model-grid,
  .setup-page .choice-grid.choice-grid-wide {
    grid-template-columns: 1fr;
  }

  .setup-page .choice-grid.is-brand-grid .is-brand-choice:last-child {
    grid-column: auto;
  }

  .setup-page .question-aside {
    display: none;
  }

  .question-mobile-mark {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .question-mobile-mark .question-context-logo {
    width: auto;
    max-width: 28px;
    height: auto;
    max-height: 28px;
    object-fit: contain;
    object-position: center;
  }

  .question-mobile-mark:has(.question-context-logo.official-logo--wordmark) {
    width: 96px;
    height: 32px;
    flex-basis: 96px;
    padding: 3px 4px;
  }

  .question-mobile-mark .question-context-logo.official-logo--wordmark {
    max-width: 88px;
    max-height: 24px;
  }

  .question-mobile-mark .question-context-logo.official-logo--brands-oneplus {
    width: 88px;
    max-width: 88px;
    max-height: 32px;
  }

  .setup-page.is-branded-demo .question-mobile-mark:has(.question-context-logo--tenant) {
    width: 92px;
    height: 32px;
    flex-basis: 92px;
    padding: 5px 8px;
    border-radius: 9px;
    background: #073b2d;
  }

  .setup-page.is-branded-demo .question-mobile-mark .question-context-logo--tenant {
    max-width: 76px;
    max-height: 22px;
  }

  .setup-page.is-branded-preview .question-mobile-mark:has(.question-context-logo--tenant) {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .question-mobile-mark .neutral-mark {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    border-radius: 9px;
    transform: scale(0.78);
  }

  .setup-page .question-lede {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .setup-page .choice-button.is-brand-choice {
    min-height: 76px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
  }

  .brand-badge {
    width: 112px;
    min-height: 34px;
    flex: 0 0 112px;
  }

  .setup-page .choice-button.is-brand-choice .choice-copy {
    text-align: left;
  }

  .setup-page .choice-button.is-brand-choice .choice-copy strong {
    font-size: 15px;
  }

  .setup-page .choice-button.is-model-choice {
    min-height: 102px;
  }

  .setup-page .result-status {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 10px;
  }

  .setup-page .result-status-icon {
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 13px;
    font-size: 22px;
  }

  .setup-page .method-card {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0 14px;
  }

  .setup-page .method-card .method-icon {
    grid-row: 1;
  }

  .setup-page .method-card .button {
    width: 100%;
    min-height: 52px;
    grid-column: 1 / -1;
    margin-top: 16px;
    white-space: nowrap;
  }

  .setup-page .method-card-details {
    min-width: 0;
    grid-column: 1 / -1;
    margin-top: 14px;
  }

  .provider-choice-helper {
    margin-top: 12px;
  }

  .provider-option-grid {
    grid-template-columns: 1fr;
  }

  .provider-option {
    min-height: 78px;
    padding: 11px 13px;
  }

  .provider-decision-action {
    min-height: 44px;
  }

  .method-facts li {
    grid-template-columns: minmax(94px, 0.4fr) minmax(0, 1fr);
  }

  .setup-page .method-card:has(.method-icon.is-wordmark) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .setup-page .method-card:has(.method-icon.is-wordmark) .method-icon.is-wordmark {
    grid-row: 1;
    grid-column: 1;
    justify-self: start;
    margin-bottom: 12px;
  }

  .setup-page .method-card:has(.method-icon.is-wordmark) .method-card-copy {
    grid-row: 2;
    grid-column: 1;
  }

  .setup-page .method-card:has(.method-icon.is-wordmark) .button {
    grid-row: 3;
  }

  .setup-page .method-card .method-icon--gpm img {
    width: 44px;
    height: 44px;
  }

  .setup-page .guide-head {
    min-height: 62px;
  }

  .guide-method-brand .method-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 10px;
  }

  .guide-method-brand .method-icon img {
    width: 30px;
    height: 30px;
  }

  .guide-method-brand .method-icon.is-wordmark {
    width: 100px;
    height: 36px;
    flex-basis: 100px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .guide-method-brand .method-icon.is-wordmark img {
    width: 94px;
    height: auto;
    max-height: 26px;
  }

  .guide-method-brand .method-icon--gpm img {
    width: 38px;
    height: 38px;
  }

  .signin-guide .guide-nav .button {
    padding-right: 10px;
    padding-left: 10px;
    white-space: nowrap;
  }

  .guide-method-brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .guide-method-brand > div {
    min-width: 0;
  }

  .guide-method-brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .setup-page .guide-head-actions {
    flex: 0 0 auto;
  }

  .setup-page .guide-head-actions .icon-button {
    min-height: 42px;
    padding: 7px 9px;
    font-size: 12px;
  }

  .setup-page .guide-step-layout {
    grid-template-areas:
      "summary"
      "visual"
      "copy"
      "controls"
      "help";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 472px auto auto auto;
    overflow-anchor: none;
  }

  .setup-page .guide-visual {
    height: 472px;
    min-height: 472px;
  }

  .setup-page .guide-step-summary {
    display: flex;
    height: auto;
    min-height: var(--guide-mobile-summary-height, 0);
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px 18px 10px;
  }

  .setup-page .guide-step-summary h2 {
    margin: 0;
    font-size: 29px;
  }

  .setup-page .guide-copy {
    min-height: 0;
    padding: 14px 18px 8px;
  }

  .setup-page .guide-controls {
    padding: 0 18px 20px;
  }

  .setup-page .guide-copy > p {
    margin-bottom: 12px;
  }

  .security-info-callout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 14px;
  }

  .security-info-qr {
    display: none;
  }

  .complete-view {
    min-height: 560px;
    padding: 34px 16px;
  }

  .complete-check {
    width: 94px;
    height: 94px;
    font-size: 48px;
  }

  .complete-actions {
    width: 100%;
    flex-direction: column;
  }

  .complete-actions .button {
    width: 100%;
  }

  .completion-continuity {
    padding: 14px;
  }

  .guide-sales-endcap {
    padding: 16px;
  }

  .complete-view > .guide-sales-endcap {
    margin-top: 24px;
  }

  .guide-sales-actions {
    gap: 12px;
    margin-top: 18px;
    flex-direction: column;
  }

  .guide-sales-actions .button {
    width: 100%;
    min-height: 62px;
    flex-basis: auto;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.25;
  }

  .setup-footer {
    display: block;
    text-align: center;
  }

  .setup-footer a {
    display: inline-block;
    margin-top: 8px;
  }

  .setup-footer nav {
    justify-content: center;
    gap: 16px;
  }
}

@media (min-width: 500px) and (max-height: 430px) {
  .setup-page .finder-section {
    padding-top: 6px;
    padding-bottom: 8px;
  }

  .setup-page .finder-topline {
    margin-bottom: 6px;
  }

  .hosted-identity-panel {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1.25fr) minmax(210px, 0.75fr);
    grid-template-rows: auto 1fr auto;
    gap: 7px 20px;
    padding: 14px 18px;
  }

  .hosted-plan-heading {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .hosted-plan-heading .question-kicker {
    margin-bottom: 2px;
    font-size: 10px;
  }

  .hosted-plan-heading h2 {
    margin: 0;
    font-size: 25px;
  }

  .hosted-plan-badge {
    display: inline-flex;
    min-height: 28px;
    margin: 6px 0 0;
    padding: 3px 9px;
    font-size: 10px;
  }

  .hosted-plan-copy {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin: 0;
    font-size: 12px;
    line-height: 1.34;
  }

  .hosted-plan-facts {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: 1fr;
    align-self: start;
    gap: 5px;
    margin: 0;
  }

  .hosted-plan-facts > div {
    min-height: 40px;
    padding: 5px 9px;
  }

  .hosted-plan-boundary {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    margin: 0;
    font-size: 9px;
  }

  .hosted-plan-actions {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
  }

  .hosted-plan-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .setup-page .finder-section.is-hosted-policy-unavailable {
    min-height: calc(100svh - 76px);
    padding: 5px 12px;
  }

  .setup-page .hosted-policy-unavailable {
    padding: 8px 12px;
  }

  .setup-page .hosted-policy-unavailable .result-status {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding-bottom: 2px;
  }

  .setup-page .hosted-policy-unavailable .result-status-icon {
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 10px;
    font-size: 18px;
  }

  .setup-page .hosted-policy-unavailable .question-kicker {
    display: none;
  }

  .setup-page .hosted-policy-unavailable h2 {
    margin: 0 0 3px;
    font-size: 21px;
    line-height: 1.05;
  }

  .setup-page .hosted-policy-unavailable .result-copy {
    font-size: 12px;
    line-height: 1.25;
  }

  .hosted-policy-support {
    display: flex;
    min-height: 48px;
    margin-top: 5px;
    padding: 5px 9px;
    font-size: 11px;
    line-height: 1.2;
  }

  .hosted-policy-support strong {
    margin: 0;
    font-size: 12px;
  }

  .hosted-policy-support-action {
    min-height: 44px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .setup-page .hosted-policy-unavailable .result-note {
    min-height: 32px;
    margin-top: 5px;
    padding: 4px 9px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .hosted-identity-panel {
    padding: 14px;
  }

  .hosted-plan-heading h2 {
    margin-bottom: 6px;
    font-size: 27px;
    line-height: 1.02;
  }

  .hosted-plan-copy {
    margin-bottom: 8px;
    line-height: 1.36;
  }

  .hosted-plan-facts {
    margin-bottom: 8px;
  }

  .hosted-plan-boundary {
    margin-bottom: 7px;
    line-height: 1.35;
  }

  .setup-page .complete-view {
    padding-top: 20px;
  }

  .complete-check {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
    border-width: 7px;
    font-size: 42px;
  }

  .complete-method {
    margin: 8px 0 7px;
  }

  .result-view.has-method-choice:not(.has-provider-choice, .has-current-android-guide)
    .result-status
    .result-copy {
    display: none;
  }

  .result-rationale {
    display: block;
    margin-top: 12px;
    padding: 0 13px;
    border: 1px solid #d5deeb;
    border-radius: 13px;
    background: #f8faff;
  }

  .result-rationale summary {
    min-height: 46px;
    padding: 11px 0;
    color: #34445f;
    font-size: 13px;
    font-weight: 820;
    cursor: pointer;
  }

  .result-rationale p {
    margin: 0 0 13px;
    color: var(--ink-soft);
    font-size: 13px;
  }

  .setup-page .method-card .button {
    margin-top: 10px;
  }

  .provider-decision-action {
    gap: 6px;
    padding-inline: 8px;
    font-size: 13px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .provider-choice-actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 10px;
  }
}

@media (max-width: 340px) {
  .hero .button-large {
    gap: 8px;
    padding-inline: 14px;
    font-size: 16px;
  }

  .hero .trust-line {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .hero .trust-line span {
    justify-content: center;
  }

  .hero .trust-line span:last-child {
    grid-column: 1 / -1;
  }

  .method-facts li {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .method-facts li > span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .setup-page .method-card .button {
    gap: 8px;
    min-width: 0;
    padding-inline: 16px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .guide-sales-actions .button {
    padding-inline: 8px;
  }
}

@media (max-width: 480px) {
  .setup-page .signin-guide .guide-head {
    flex-wrap: wrap;
  }

  .setup-page .signin-guide .guide-method-brand {
    width: 100%;
    flex: 1 0 100%;
  }

  .setup-page .signin-guide .guide-method-brand strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .setup-page .signin-guide .guide-head-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .setup-page .signin-guide .guide-head-actions .icon-button {
    justify-content: center;
  }
}

@media (max-width: 390px), (max-height: 650px) and (max-width: 760px) {
  .setup-page .guide-head {
    flex-wrap: wrap;
  }

  .setup-page .guide-method-brand {
    min-width: 0;
  }

  .setup-page .guide-head-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .setup-page .guide-head-actions .icon-button {
    justify-content: center;
  }

  .setup-page .guide-step-layout {
    grid-template-rows: auto 394px auto auto;
  }

  .setup-page .guide-visual {
    height: 394px;
    min-height: 394px;
  }

  .setup-page .guide-device {
    transform: scale(0.76);
  }

  .setup-page .guide-device.is-desktop {
    transform: scale(0.43);
  }

  .setup-page .guide-device.is-tablet {
    transform: scale(0.61);
  }
}

/* Large-screen guides use the screen itself as the visual, not a reduced device thumbnail. */
.setup-page .guide-step-layout.has-screen-closeup {
  min-height: 600px;
  grid-template-columns: minmax(390px, 1.15fr) minmax(280px, 0.85fr);
}

.setup-page .guide-visual.is-screen-closeup {
  height: auto;
  min-height: 600px;
  padding: 20px 18px;
}

.guide-screen-closeup {
  display: grid;
  width: 100%;
  align-content: center;
  justify-items: center;
  gap: 12px;
}

.guide-screen-closeup-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #aab8cf;
  border-radius: 999px;
  background: rgb(255 255 255 / 88%);
  color: #33435e;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.guide-screen-closeup-surface {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgb(90 197 255 / 16%), transparent 42%),
    linear-gradient(145deg, #17223a, #0d1425);
  box-shadow:
    0 0 0 5px #1b2030,
    0 26px 54px -28px rgb(17 28 59 / 72%);
}

.guide-screen-closeup.is-tablet .guide-screen-closeup-surface {
  width: min(100%, 555px);
  height: 550px;
  border-radius: 18px;
}

.guide-screen-closeup.is-desktop .guide-screen-closeup-surface {
  width: min(100%, 660px);
  height: 430px;
  border-radius: 10px;
}

/* Mid-width landscape tablets have far less vertical room than portrait
   tablets. Keep the full guided screen, but tighten the brand lockup and the
   tablet close-up just enough that the primary control is never sliced by the
   viewport edge. */
@media (min-width: 901px) and (max-width: 1280px) and (max-height: 820px) {
  .setup-page .guide-head p {
    line-height: 1.2;
  }

  .setup-page .guide-head strong {
    line-height: 1.2;
  }

  .setup-page .guide-method-behaviour {
    line-height: 1.25;
  }

  .guide-screen-closeup.is-tablet .guide-screen-closeup-surface {
    height: 522px;
  }
}

.guide-screen-closeup-surface::after {
  position: absolute;
  z-index: 20;
  inset: 0;
  border: 2px solid rgb(16 23 42 / 72%);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.guide-screen-overview {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 12px;
  background: #dfe7f4;
  box-shadow:
    inset 0 0 0 2px rgb(5 11 24 / 72%),
    0 10px 26px rgb(0 0 0 / 26%);
}

.guide-screen-closeup-canvas {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform-origin: top left;
}

.guide-screen-closeup.is-tablet .guide-screen-closeup-canvas {
  width: 370px;
  height: 500px;
}

.guide-screen-closeup.is-desktop .guide-screen-closeup-canvas {
  width: 540px;
  height: 363px;
}

.guide-screen-closeup-canvas.is-positioned {
  opacity: 1;
}

.guide-screen-overview .mockup-highlight {
  animation: none;
  box-shadow: none;
}

.guide-focus-target-marker {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.guide-screen-locator {
  position: absolute;
  z-index: 18;
  min-width: 24px;
  min-height: 24px;
  border: 3px solid #ff4d4d;
  border-radius: 10px;
  pointer-events: none;
  box-shadow:
    0 0 0 3px rgb(255 255 255 / 92%),
    0 6px 18px rgb(103 18 18 / 34%);
  animation: guideLocatorPulse 1.8s ease-in-out infinite;
}

@keyframes guideLocatorPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgb(255 255 255 / 92%),
      0 6px 18px rgb(103 18 18 / 34%);
  }

  50% {
    box-shadow:
      0 0 0 5px rgb(255 255 255 / 96%),
      0 8px 22px rgb(103 18 18 / 42%);
  }
}

.guide-screen-action-card {
  display: grid;
  min-height: 88px;
  align-content: center;
  padding: 13px 16px 14px;
  border: 1px solid rgb(255 255 255 / 88%);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(1 8 24 / 24%);
  color: #13233d;
}

.guide-screen-action-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b4232a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.guide-screen-action-kicker i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 2px solid #ef4444;
  border-radius: 3px;
  box-shadow: 0 0 0 2px rgb(239 68 68 / 14%);
}

.guide-screen-action-card strong {
  overflow-wrap: anywhere;
  margin-top: 4px;
  color: #10213c;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.guide-screen-action-card > span:last-child {
  margin-top: 3px;
  color: #52627a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.guide-screen-closeup-canvas > .mockup {
  position: absolute;
  inset: 0;
  backface-visibility: visible;
  transform: none;
}

@media (max-width: 900px) {
  .guide-step-layout.has-screen-closeup .security-info-callout.has-qr {
    grid-template-columns: 1fr;
  }

  .guide-step-layout.has-screen-closeup .security-info-qr {
    display: none;
  }
}

@media (max-width: 760px) {
  .setup-page .guide-visual {
    background:
      linear-gradient(to bottom, #fff 0, rgb(255 255 255 / 90%) 5px, rgb(255 255 255 / 0%) 34px)
        top / 100% 34px no-repeat,
      linear-gradient(to top, #fff 0, rgb(255 255 255 / 90%) 5px, rgb(255 255 255 / 0%) 42px)
        bottom / 100% 42px no-repeat,
      radial-gradient(circle at 35% 20%, rgb(255 255 255 / 65%), transparent 14rem),
      linear-gradient(150deg, #e8efff, #e7fbf5);
  }

  .setup-page .guide-help {
    margin-top: 4px;
    padding: 0 12px;
    border: 1px solid #e0e7f2;
    border-radius: 13px;
    background: #f8faff;
  }

  .setup-page .guide-help summary {
    min-height: 46px;
    padding: 11px 0;
  }

  .setup-page .guide-help p {
    margin-bottom: 12px;
  }

  .setup-page .guide-nav .guide-back {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border: 1px solid #c7d1e3;
    border-radius: 14px;
    background: #f6f8fc;
    color: #34445f;
    text-align: center;
    text-decoration: none;
  }

  .setup-page .guide-step-layout.has-screen-closeup {
    min-height: 0;
    grid-template-areas:
      "summary"
      "visual"
      "copy"
      "controls"
      "help";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto;
  }

  .setup-page .guide-visual.is-screen-closeup {
    height: auto;
    min-height: 0;
    padding: 16px 14px 22px;
  }

  .guide-screen-closeup {
    gap: 10px;
  }

  .guide-screen-closeup.is-tablet .guide-screen-closeup-surface {
    height: 360px;
  }

  .guide-screen-closeup.is-desktop .guide-screen-closeup-surface {
    height: 310px;
  }

  .guide-screen-closeup-surface {
    gap: 10px;
    padding: 12px;
  }

  .guide-screen-action-card {
    min-height: 92px;
    padding: 12px 14px 13px;
  }
}

@media (max-width: 390px), (max-height: 650px) and (max-width: 760px) {
  .guide-screen-closeup.is-tablet .guide-screen-closeup-surface {
    height: 306px;
  }

  .guide-screen-closeup.is-desktop .guide-screen-closeup-surface {
    height: 306px;
  }
}

@media (max-width: 370px) and (max-height: 700px) {
  .guide-screen-closeup.is-desktop .guide-screen-closeup-surface {
    height: 296px;
  }
}

/* Text-only provider flows stay compact and keep their instructions ahead of navigation. */
.setup-page .guide-view.is-written-guide .guide-step-layout {
  min-height: 0;
  grid-template-areas:
    "summary summary"
    "copy visual"
    "controls visual"
    "help visual";
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  grid-template-rows: auto auto auto auto;
}

.setup-page .guide-view.is-written-guide .guide-visual {
  height: auto;
  min-height: 0;
  align-self: center;
  padding: 22px;
}

.setup-page .guide-view.is-written-guide .guide-visual .next-steps {
  width: min(100%, 340px);
  margin: 0;
}

@media (max-width: 760px) {
  .setup-page .guide-view.is-written-guide .guide-method-brand strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .setup-page .guide-view.is-written-guide .guide-step-layout {
    grid-template-areas:
      "summary"
      "copy"
      "visual"
      "controls"
      "help";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto;
  }

  .setup-page .guide-view.is-written-guide .guide-visual {
    height: auto;
    min-height: 0;
    padding: 12px 18px;
  }
}

@media (max-width: 390px) {
  .setup-page .guide-view.is-written-guide .guide-step-layout {
    grid-template-areas:
      "summary"
      "copy"
      "controls"
      "help";
    grid-template-rows: auto auto auto auto;
  }

  .setup-page .guide-view.is-written-guide .guide-visual {
    display: none;
  }
}

/* On phones, the guide is a task surface rather than a document. Keep the
   provider identity compact, replace the duplicated Security Info callout
   with the actionable handoff, and preserve the natural
   instruction-before-controls order. */
@media (max-width: 760px), (min-width: 761px) and (max-width: 932px) and (max-height: 500px) {
  .setup-page .guide-head {
    min-height: 54px;
    padding: 6px 10px;
  }

  .setup-page .guide-head p,
  .setup-page .guide-method-behaviour {
    display: none;
  }

  .setup-page .guide-view:not(.signin-guide) .guide-head {
    flex-wrap: nowrap;
  }

  .setup-page .guide-view:not(.signin-guide) .guide-head-actions {
    display: flex;
    width: auto;
  }

  .setup-page .guide-method-brand {
    gap: 8px;
  }

  .setup-page .guide-method-brand .method-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .setup-page .guide-method-brand .method-icon img {
    width: 27px;
    height: 27px;
  }

  .setup-page .guide-method-brand .method-icon.is-wordmark {
    width: 82px;
    height: 32px;
    flex-basis: 82px;
  }

  .setup-page .guide-method-brand .method-icon.is-wordmark img {
    width: 78px;
    height: auto;
    max-height: 24px;
  }

  .setup-page .guide-head-actions .icon-button {
    min-height: 44px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.15;
  }

  .setup-page .guide-view:not(.signin-guide) .guide-head-actions .icon-button {
    font-size: 0;
  }

  .setup-page .guide-view:not(.signin-guide) .guide-head-actions .icon-button::after {
    content: "Change";
    font-size: 12px;
  }

  .setup-page .guide-method-brand strong {
    overflow: visible;
    font-size: 14px;
    line-height: 1.15;
    text-overflow: clip;
    white-space: normal;
  }

  .setup-page .guide-copy {
    padding: 10px 14px 6px;
  }

  .setup-page .guide-copy > p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.42;
  }

  .setup-page .guide-step-layout > .guide-help {
    margin: 4px 18px 12px;
  }

  .setup-page .guide-copy .security-info-callout {
    display: none;
  }

  .mobile-security-link {
    display: flex;
    min-width: 0;
    min-height: 52px;
    flex-direction: column;
    justify-content: center;
    padding: 6px 9px;
    border: 1px solid #aebfe0;
    border-radius: 13px;
    background: #f5f8ff;
    color: #17478f;
    line-height: 1.15;
    text-align: left;
    text-decoration: none;
  }

  .mobile-security-link strong {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .mobile-security-link > span {
    margin-top: 2px;
    color: #52627a;
    font-size: 10px;
    font-weight: 720;
  }

  .setup-page .guide-controls.has-mobile-security-link {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(96px, 0.8fr);
    gap: 8px;
  }

  .setup-page .guide-controls.has-mobile-security-link .guide-nav {
    grid-template-columns: 1fr;
  }

  .setup-page .guide-view.has-mobile-priority-controls .guide-step-layout,
  .setup-page .guide-view.has-mobile-priority-controls .guide-step-layout.has-screen-closeup {
    grid-template-areas:
      "summary"
      "visual"
      "controls"
      "copy"
      "help";
    grid-template-rows: auto auto auto auto auto;
  }

  .setup-page .guide-view.has-mobile-priority-controls .guide-controls {
    padding: 6px 12px 8px;
    border: 0;
    background: #fff;
  }

  .setup-page
    .guide-view.has-mobile-priority-controls.has-mobile-security-handoff
    .security-info-callout {
    display: none;
  }
}

/* Compact walkthrough copy and controls for phones and short landscape tablets. */
@media (max-width: 760px), (min-width: 761px) and (max-width: 932px) and (max-height: 500px) {
  .setup-page.is-guide-screen:has(.guide-view) {
    padding-bottom: 12px;
  }

  .setup-page .finder-section.is-guide-mode {
    padding-top: 4px;
  }

  .setup-page .guide-head {
    min-height: 50px;
    padding-block: 4px;
  }

  .setup-page .guide-step-summary {
    padding: 2px 12px 4px;
  }

  .setup-page .guide-step-summary .step-count {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .setup-page .guide-step-summary h2 {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.08;
  }

  .setup-page .guide-copy {
    padding: 7px 12px 4px;
  }

  .setup-page .guide-copy > p {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.34;
  }

  .setup-page .guide-readiness {
    margin-bottom: 6px;
    padding: 0 10px;
  }

  .setup-page .guide-readiness summary {
    min-height: 44px;
  }

  .setup-page .guide-controls {
    padding: 0 12px clamp(0px, calc(18px - 5vw), 2px);
  }

  .setup-page .guide-step-layout > .guide-help {
    margin: 4px 12px 10px;
  }

  .setup-page .guide-nav .button,
  .setup-page .guide-nav .guide-back {
    min-height: 48px;
  }

  .setup-page .guide-view.is-written-guide .guide-step-layout {
    grid-template-areas:
      "summary"
      "copy"
      "controls"
      "help";
    grid-template-rows: auto auto auto auto;
  }

  .setup-page .guide-view.is-written-guide .guide-visual {
    display: none;
  }
}

/* Phone landscape has enough width for two task columns but very little
   height. Keep the highlighted control on the left and the complete action
   sequence on the right, so no step needs a manual vertical scroll. */
@media (min-width: 520px) and (max-width: 932px) and (max-height: 500px) {
  .setup-page .finder-section.is-guide-mode {
    min-height: 0;
    padding: 4px 8px 8px;
  }

  .setup-page .guide-head {
    min-height: 52px;
    padding: 5px 10px 3px;
  }

  .setup-page .signin-guide .guide-head {
    flex-wrap: nowrap;
  }

  .setup-page .signin-guide .guide-method-brand {
    width: auto;
    flex: 1 1 auto;
  }

  .setup-page .signin-guide .guide-head-actions {
    display: flex;
    width: auto;
    flex: 0 0 auto;
  }

  .setup-page .guide-step-layout,
  .setup-page .guide-step-layout.has-screen-closeup {
    min-height: calc(100svh - 64px);
    grid-template-columns: minmax(246px, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
      "visual summary"
      "visual copy"
      "visual controls"
      "visual help";
    grid-template-rows: auto minmax(0, 1fr) auto auto;
  }

  .setup-page .guide-view.has-mobile-priority-controls .guide-step-layout,
  .setup-page .guide-view.has-mobile-priority-controls .guide-step-layout.has-screen-closeup {
    grid-template-columns: minmax(246px, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
      "visual summary"
      "visual controls"
      "visual copy"
      "visual help";
    grid-template-rows: auto auto minmax(0, 1fr) auto;
  }

  .setup-page .guide-visual,
  .setup-page .guide-visual.is-screen-closeup {
    height: calc(100svh - 64px);
    min-height: calc(100svh - 64px);
    padding: 6px;
  }

  .setup-page .guide-step-summary {
    min-height: 0;
    align-self: end;
    padding: 5px 14px 4px;
  }

  .setup-page .guide-step-summary h2 {
    font-size: clamp(20px, 3.4vw, 28px);
    line-height: 1.04;
  }

  .setup-page .guide-copy {
    align-self: start;
    padding: 4px 14px 2px;
  }

  .setup-page .guide-copy > p {
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.27;
  }

  .setup-page .guide-readiness {
    margin-bottom: 4px;
  }

  .setup-page .guide-controls {
    padding: 0 14px 4px;
  }

  .setup-page .guide-step-layout > .guide-help {
    margin: 2px 14px 4px;
  }

  .setup-page .guide-help summary {
    min-height: 44px;
    padding-block: 8px;
  }

  .guide-screen-closeup {
    gap: 0;
  }

  .guide-screen-closeup-label {
    display: none;
  }

  .guide-screen-closeup.is-tablet .guide-screen-closeup-surface,
  .guide-screen-closeup.is-desktop .guide-screen-closeup-surface {
    height: calc(100svh - 76px);
  }

  .guide-screen-closeup-surface {
    padding: 7px;
  }

  .guide-screen-action-card {
    min-height: 66px;
    padding: 6px 9px;
  }

  .setup-page .guide-view.is-written-guide .guide-step-layout {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "summary"
      "copy"
      "controls"
      "help";
    grid-template-rows: auto auto auto auto;
  }

  .setup-page .guide-view.is-written-guide .guide-step-summary,
  .setup-page .guide-view.is-written-guide .guide-copy,
  .setup-page .guide-view.is-written-guide .guide-controls,
  .setup-page .guide-view.is-written-guide .guide-help {
    width: min(100%, 720px);
    justify-self: center;
  }
}

@media (max-width: 390px) and (min-height: 701px) {
  .guide-screen-closeup.is-desktop .guide-screen-closeup-surface {
    height: 296px;
  }
}

@media (max-width: 390px) {
  .setup-page .signin-guide .guide-head {
    flex-wrap: nowrap;
  }

  .setup-page .signin-guide .guide-method-brand {
    width: auto;
    flex: 1 1 auto;
  }

  .setup-page .signin-guide .guide-head-actions {
    display: flex;
    width: auto;
    flex: 0 0 auto;
  }

  .setup-page .signin-guide .guide-head-actions .icon-button {
    padding-inline: 6px;
    font-size: 11px;
    white-space: nowrap;
  }
}

@media (max-width: 340px) {
  .setup-page .signin-guide .guide-method-brand:not(:has(.method-icon.is-wordmark)) strong {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

/* Short landscape screens need the question itself, its context and the first
   answer in one view. The persistent setup header already identifies the tool,
   so the repeated finder title and decorative explainer panel can yield that
   space without removing any decision or guidance. */
@media (orientation: landscape) and (max-width: 932px) and (max-height: 500px) {
  .setup-page .finder-section:not(.is-guide-mode) {
    padding: 6px 8px 14px;
  }

  .setup-page .finder-topline {
    display: none;
  }

  .setup-page .question-aside {
    display: none;
  }

  .setup-page .question-view {
    grid-template-columns: minmax(0, 1fr);
  }

  .setup-page .question-main {
    padding: 12px 14px 16px;
  }

  .setup-page .question-main h2 {
    font-size: clamp(27px, 4.5vw, 34px);
  }

  .setup-page .question-lede {
    margin-bottom: 12px;
  }

  .setup-page .signin-choice-view .question-lede {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.3;
  }

  .setup-page .signin-choice-view .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .setup-page .signin-choice-view .choice-grid:has(> :only-child) {
    grid-template-columns: minmax(0, 1fr);
  }

  .setup-page .signin-choice-view .choice-button {
    min-height: 92px;
    gap: 10px;
    padding: 10px 12px;
  }
}

/* Keep the actual provider decision in the first view on short phones and
   split-screen windows. Supporting rationale remains immediately below it,
   but it must never push the action the visitor came for out of sight. */
@media (max-width: 400px),
  (min-width: 401px) and (max-width: 500px) and (max-height: 700px),
  (min-width: 501px) and (max-width: 932px) and (max-height: 500px) {
  .setup-page .result-view {
    padding: 8px 14px 16px;
  }

  .setup-page .result-toolbar {
    margin: 0 0 4px;
  }

  .setup-page .result-status {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    padding-bottom: 6px;
  }

  .setup-page .result-status-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 19px;
  }

  .setup-page .result-status .question-kicker {
    display: none;
  }

  .setup-page
    .result-view.has-method-choice:not(.has-current-android-guide)
    .result-status
    .result-copy {
    display: none;
  }

  .setup-page .result-rationale {
    display: block;
    margin-top: 8px;
    padding: 0 13px;
    border: 1px solid #d5deeb;
    border-radius: 13px;
    background: #f8faff;
  }

  .setup-page .result-rationale summary {
    min-height: 46px;
    padding: 11px 0;
    color: #34445f;
    font-size: 13px;
    font-weight: 820;
    cursor: pointer;
  }

  .setup-page .result-rationale p {
    margin: 0 0 13px;
    color: var(--ink-soft);
    font-size: 13px;
  }

  .setup-page .result-status h2 {
    margin: 0;
    font-size: clamp(21px, 4.6vw, 26px);
    line-height: 1.06;
  }

  .setup-page .provider-choice-helper {
    margin-top: 6px;
  }

  .setup-page .provider-option-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .setup-page .provider-option {
    min-height: 72px;
    gap: 9px;
    padding: 9px 11px;
  }

  .setup-page .provider-option .method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .setup-page .provider-option .method-icon img {
    width: 34px;
    height: 34px;
  }

  .setup-page .provider-option .method-icon.is-wordmark {
    width: 82px;
  }

  .setup-page .provider-option .method-icon.is-wordmark img {
    width: 78px;
    height: auto;
  }

  .setup-page .provider-option-copy strong {
    font-size: 14px;
  }

  .setup-page .provider-option-copy small {
    margin-top: 2px;
    font-size: 11px;
  }

  .setup-page .provider-choice-actions .button,
  .setup-page .method-card .button {
    min-height: 44px;
    padding: 7px 9px;
    font-size: 13px;
    line-height: 1.16;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .setup-page .method-grid,
  .setup-page .method-grid:has(> .method-card:only-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .setup-page .method-grid:has(> .method-card:only-child) {
    grid-template-columns: minmax(0, 680px);
  }

  .setup-page .method-card,
  .setup-page .method-card:has(.method-icon.is-wordmark) {
    min-height: 0;
    align-content: start;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0 8px;
    padding: 10px;
    border-radius: 15px;
  }

  .setup-page .method-card .method-icon,
  .setup-page .method-card:has(.method-icon.is-wordmark) .method-icon.is-wordmark {
    width: 38px;
    height: 38px;
    grid-row: 1;
    grid-column: 1;
    margin: 0;
  }

  .setup-page .method-card .method-icon img,
  .setup-page .method-card .method-icon--gpm img {
    width: 32px;
    height: 32px;
  }

  .setup-page .method-card:has(.method-icon.is-wordmark) .method-icon.is-wordmark img {
    width: 36px;
    max-height: 26px;
  }

  .setup-page .method-card:has(.method-icon.is-wordmark) .method-card-copy,
  .setup-page .method-card-copy {
    grid-row: 1;
    grid-column: 2;
  }

  .setup-page .method-card .method-label {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .setup-page .method-card h3 {
    font-size: 16px;
    line-height: 1.12;
  }

  .setup-page .method-card .button,
  .setup-page .method-card:has(.method-icon.is-wordmark) .button {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 7px;
  }

  .setup-page .method-card-details {
    grid-row: 3;
    margin-top: 9px;
  }
}

@media (max-width: 340px) and (max-height: 700px) {
  .setup-page .complete-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
  }

  .setup-page .complete-actions .button {
    min-width: 0;
    padding: 8px 9px;
    font-size: 14px;
    line-height: 1.2;
    white-space: normal;
  }
}

@media (max-width: 400px) {
  .setup-page .signin-choice-view .choice-grid {
    gap: 8px;
  }

  .setup-page .signin-choice-view .choice-button {
    min-height: 92px;
    gap: 10px;
    padding: 8px 12px;
  }

  .setup-page .method-grid,
  .setup-page .method-grid:has(> .method-card:only-child) {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Three approved providers need two compact rows on short landscape phones.
   Keep every option and its full label visible while preserving the 44px
   touch-target floor used throughout the guide. */
@media (orientation: landscape) and (min-width: 520px) and (max-width: 932px) and (max-height: 500px) {
  .setup-page
    .provider-option-grid:has(> .provider-option:nth-child(3)):not(
      :has(> .provider-option:nth-child(4))
    ) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* A finished state is still a task surface in landscape: confirmation and
   both next actions share the first view, while recovery detail and the
   organisation offer continue naturally below. */
@media (orientation: landscape) and (min-width: 520px) and (max-width: 932px) and (max-height: 500px) {
  .setup-page .complete-view {
    display: grid;
    min-height: 0;
    grid-template-areas:
      "check actions"
      "kicker actions"
      "title actions"
      "copy actions"
      "method actions"
      "continuity continuity"
      "sales sales";
    grid-template-columns: minmax(190px, 0.9fr) minmax(260px, 1.1fr);
    gap: 3px 18px;
    align-items: center;
    justify-content: stretch;
    padding: 10px 16px 20px;
    text-align: left;
  }

  .setup-page .complete-check {
    width: 50px;
    height: 50px;
    grid-area: check;
    justify-self: start;
    margin: 0 0 2px;
    border-width: 5px;
    font-size: 27px;
  }

  .setup-page .complete-view > .question-kicker {
    grid-area: kicker;
    margin: 0;
  }

  .setup-page .complete-view > h2 {
    grid-area: title;
    margin: 0;
    font-size: clamp(27px, 4.5vw, 38px);
    line-height: 1;
  }

  .setup-page .complete-view > p:not(.question-kicker) {
    grid-area: copy;
    font-size: 14px;
    line-height: 1.3;
  }

  .setup-page .complete-method {
    grid-area: method;
    justify-self: start;
    margin: 5px 0 0;
  }

  .setup-page .complete-actions {
    width: 100%;
    grid-area: actions;
    align-self: center;
  }

  .setup-page .completion-continuity {
    grid-area: continuity;
    margin-top: 16px;
    justify-self: center;
  }

  .setup-page .complete-view > .guide-sales-endcap {
    grid-area: sales;
    justify-self: center;
  }
}

/* A complete phone still fits in short landscape without reintroducing a crop.
   Scale the whole frame to the available height; never cut into its screen. */
@media (min-width: 520px) and (max-width: 932px) and (max-height: 330px) {
  .setup-page .guide-visual:not(.is-screen-closeup) > .guide-device {
    transform: scale(0.47);
  }
}

@media (min-width: 520px) and (max-width: 932px) and (min-height: 331px) and (max-height: 360px) {
  .setup-page .guide-visual:not(.is-screen-closeup) > .guide-device {
    transform: scale(0.49);
  }
}

@media (min-width: 520px) and (max-width: 932px) and (min-height: 361px) and (max-height: 390px) {
  .setup-page .guide-visual:not(.is-screen-closeup) > .guide-device {
    transform: scale(0.55);
  }
}

@media (min-width: 520px) and (max-width: 932px) and (min-height: 391px) and (max-height: 430px) {
  .setup-page .guide-visual:not(.is-screen-closeup) > .guide-device {
    transform: scale(0.61);
  }
}

@media (min-width: 520px) and (max-width: 932px) and (min-height: 431px) and (max-height: 470px) {
  .setup-page .guide-visual:not(.is-screen-closeup) > .guide-device {
    transform: scale(0.69);
  }
}

@media (min-width: 520px) and (max-width: 932px) and (min-height: 471px) and (max-height: 500px) {
  .setup-page .guide-visual:not(.is-screen-closeup) > .guide-device {
    transform: scale(0.76);
  }
}

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

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

  .guide-screen-closeup-canvas {
    transition: none !important;
  }

  .hero-showcase-frame {
    clip-path: none;
    transition: none;
  }

  .hero-screen-transition-veil,
  .hero-touch-cue {
    display: none;
  }
}

@media (forced-colors: active) {
  .official-logo {
    display: none !important;
  }

  .official-logo-fallback {
    display: inline-flex !important;
    color: CanvasText;
  }

  .brand-mark,
  .button-primary,
  .progress .is-current span,
  .progress .is-complete span,
  .hero-phone,
  .guide-dot.is-current {
    border: 2px solid ButtonText;
  }

  .choice-button,
  .finder-card,
  .method-card {
    border: 2px solid CanvasText;
  }
}
