:root {
  --bg: #f6f0df;
  --text: #2b2018;
  --red: #c9162e;
  --line: #e4d7bd;
  --muted: #6c6152;
  --card: #fffaf0;
  --paper: #fffcf5;
  --green: #567b3c;
  --blue: #164081;
  --gold: #d99b23;
  --clay: #9d5731;
  --display: Georgia, "Times New Roman", serif;
  --body: "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #11100e;
  color: var(--text);
  font-family: var(--body);
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  width: 100vw;
  height: 100dvh;
  background: #000;
  overflow: hidden;
}

.stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  background: var(--bg);
  container-type: size;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%) scale(var(--stage-scale, 1));
  transform-origin: center center;
}

.background-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 18%, rgba(217, 155, 35, 0.18), transparent 28%);
  pointer-events: none;
}

.tile-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 6.85%;
  object-fit: cover;
  object-position: bottom;
  pointer-events: none;
}

.home-page {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  padding: 58px 86px 118px;
  background:
    radial-gradient(circle at 76% 20%, rgba(217, 155, 35, 0.26), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(246, 240, 223, 0.96));
}

body.is-home .home-page {
  display: block;
}

body.is-home .demo-header,
body.is-home .control-panel,
body.is-home .phone-wrap {
  display: none;
}

.home-copy {
  position: absolute;
  left: 86px;
  top: 46px;
  width: 780px;
}

.home-brand {
  width: 286px;
  aspect-ratio: 394 / 216;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: transparent;
}

.home-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-overline {
  margin-top: 18px;
  color: var(--red);
  font-size: 25px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-copy h2 {
  margin: 15px 0 0;
  color: var(--text);
  font-family: var(--display);
  font-weight: 700;
  max-width: 760px;
}

.home-title-main,
.home-title-sub {
  display: block;
}

.home-title-main {
  font-size: 94px;
  line-height: 0.82;
}

.home-title-sub {
  width: max-content;
  max-width: 720px;
  margin-top: 18px;
  border: 3px solid var(--red);
  border-radius: 16px;
  background: #fff4e8;
  padding: 11px 18px 13px;
  color: var(--red);
  font-family: var(--body);
  font-size: 40px;
  line-height: 1;
  font-weight: 950;
}

.home-copy p {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.18;
}

.home-thesis {
  margin-top: 22px;
  max-width: 720px;
  border: 3px solid var(--red);
  border-radius: 22px;
  background: #fff4e8;
  padding: 19px 24px 21px;
  box-shadow: 0 18px 48px rgba(64, 44, 24, 0.1);
}

.home-thesis span {
  display: block;
  color: var(--red);
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.home-thesis strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 950;
}

.home-actions {
  position: absolute;
  left: 330px;
  top: 45px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 0;
}

.home-primary {
  min-width: 260px;
  height: 64px;
  border: 0;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  padding: 0 34px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 20px 44px rgba(201, 22, 46, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 54px rgba(201, 22, 46, 0.3);
}

.home-note {
  max-width: 340px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.08;
  font-weight: 900;
}

.home-visual {
  position: absolute;
  right: 94px;
  top: 96px;
  width: 780px;
  height: 670px;
  pointer-events: none;
}

.home-product {
  position: absolute;
  overflow: hidden;
  border: 3px solid var(--line);
  border-radius: 28px;
  background: #fffaf0;
  box-shadow: 0 26px 70px rgba(64, 44, 24, 0.16);
}

.home-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-product-main {
  right: 88px;
  top: 82px;
  width: 440px;
  height: 390px;
}

.home-product-main img {
  object-position: 74% 67%;
}

.home-product-small {
  width: 250px;
  height: 238px;
}

.home-product-small img {
  object-fit: contain;
  padding: 16px;
}

.home-product-top {
  left: 18px;
  top: 0;
  transform: rotate(-3deg);
}

.home-product-bottom {
  right: 0;
  bottom: 0;
  transform: rotate(2deg);
}

.home-stat-card {
  position: absolute;
  left: 18px;
  bottom: 42px;
  width: 350px;
  min-height: 198px;
  border: 3px solid var(--red);
  border-radius: 26px;
  background: #fff2e8;
  padding: 28px 30px;
  box-shadow: 0 20px 50px rgba(64, 44, 24, 0.12);
}

.home-stat-card span {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 86px;
  line-height: 0.9;
  font-weight: 900;
}

.home-stat-card p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.16;
  font-weight: 900;
}

.home-proof-card {
  position: absolute;
  right: 36px;
  top: 8px;
  width: 308px;
  min-height: 154px;
  border: 3px solid var(--green);
  border-radius: 24px;
  background: #eef4e8;
  padding: 22px 24px;
  box-shadow: 0 18px 46px rgba(64, 44, 24, 0.12);
}

.home-proof-card span {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.9;
  font-weight: 900;
}

.home-proof-card p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.14;
  font-weight: 900;
}

.home-strategy {
  position: absolute;
  left: 86px;
  right: 86px;
  bottom: 84px;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.home-strategy-title,
.home-pill {
  border-radius: 22px;
  border: 3px solid var(--line);
  background: #fffaf0;
  padding: 20px 24px;
}

.home-strategy-title span {
  display: block;
  color: var(--red);
  font-size: 19px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-strategy-title strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 950;
}

.home-pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: #fff;
  min-height: 102px;
  font-size: 29px;
  line-height: 0.98;
  font-weight: 950;
  text-align: center;
}

.home-pill small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.02;
  font-weight: 900;
}

.home-pill-red {
  background: var(--red);
  border-color: var(--red);
}

.home-pill-gold {
  background: var(--gold);
  border-color: var(--gold);
}

.home-pill-green {
  background: var(--green);
  border-color: var(--green);
}

.home-pill-blue {
  background: var(--blue);
  border-color: var(--blue);
}

.demo-header {
  position: absolute;
  left: 4.48%;
  right: 4.48%;
  top: 4.8%;
  display: flex;
  align-items: flex-start;
  gap: 2.2%;
}

.title-block {
  width: 36%;
}

.overline {
  color: var(--red);
  font-size: clamp(13px, 1.2cqw, 23px);
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 1.2cqh 0 0;
  font-family: var(--display);
  font-size: clamp(40px, 4cqw, 76px);
  line-height: 0.98;
  font-weight: 700;
}

.stage-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 0.62cqw;
  padding-top: 1.3cqh;
  padding-right: 7.6cqw;
}

.stage-pill,
.action-button,
.back-button,
.next-button,
.fullscreen-button {
  appearance: none;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.stage-pill:hover,
.action-button:hover,
.back-button:not(:disabled):hover,
.next-button:hover,
.fullscreen-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(58, 39, 22, 0.18);
}

.stage-pill {
  height: 3.9cqh;
  min-height: 34px;
  padding: 0 0.95cqw;
  border-radius: 999px;
  display: flex;
  align-items: center;
  color: var(--muted);
  background: #fff7e8;
  font-size: clamp(12px, 1cqw, 19px);
  font-weight: 900;
}

.stage-pill.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.control-panel {
  position: absolute;
  left: 4.48%;
  top: 24.6%;
  width: 29.2%;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.48cqh 0.83cqw;
}

.persona-button {
  min-height: 10.35cqh;
  border: 3px solid var(--line);
  border-radius: 16px;
  padding: 1.65cqh 1.04cqw;
  background: #fff8eb;
  text-align: left;
  cursor: pointer;
}

.persona-button.is-active {
  background: #fff;
  box-shadow: 0 14px 30px rgba(58, 39, 22, 0.15);
}

.persona-name {
  font-size: clamp(16px, 1.52cqw, 29px);
  line-height: 1;
  font-weight: 950;
}

.persona-tag {
  margin-top: 0.82cqh;
  color: var(--muted);
  font-size: clamp(11px, 0.95cqw, 18px);
  line-height: 1.22;
  font-weight: 800;
}

.keyword-card {
  margin-top: 2.03cqh;
  padding: 2.4cqh 1.35cqw;
  border: 3px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 18px 50px rgba(64, 44, 24, 0.08);
}

.keyword-label {
  color: var(--red);
  font-size: clamp(13px, 1.15cqw, 22px);
  font-weight: 900;
  text-transform: uppercase;
}

.keyword-text {
  margin-top: 1.1cqh;
  color: var(--text);
  font-size: clamp(21px, 1.68cqw, 32px);
  line-height: 1.14;
  font-weight: 950;
}

.keyword-card p {
  margin: 1.48cqh 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15cqw, 22px);
  line-height: 1.22;
}

.quick-actions {
  margin-top: 2.03cqh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.48cqh 0.83cqw;
}

.action-button {
  height: 5.92cqh;
  min-height: 46px;
  border-radius: 16px;
  background: #fff8eb;
  color: var(--text);
  font-size: clamp(13px, 1.05cqw, 20px);
  line-height: 1.08;
  font-weight: 950;
  padding: 0 0.72cqw;
}

.action-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.phone-wrap {
  position: absolute;
  right: 2.6%;
  top: 12.6%;
}

.phone-frame {
  width: 59.4cqw;
  height: 82.4cqh;
  padding: 1.66cqh;
  border-radius: 40px;
  background: #18130f;
  box-shadow: 0 38px 90px rgba(40, 26, 16, 0.26);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
}

.panel-enter {
  animation: panel-in 420ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes caret {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}

.persona-panel {
  position: absolute;
  inset: 0;
  padding: 6.52% 5.12%;
}

.persona-panel .tag {
  font-size: 28px;
  font-weight: 950;
  text-transform: uppercase;
}

.persona-panel h2 {
  margin: 24px 0 0;
  font-family: var(--display);
  color: var(--text);
  font-size: 112px;
  line-height: 0.92;
  font-weight: 700;
}

.persona-line {
  margin-top: 42px;
  border-left: 11px solid currentColor;
  padding-left: 30px;
  color: var(--text);
  font-size: 46px;
  line-height: 1.15;
  font-weight: 950;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.chip {
  border: 3px solid currentColor;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 22px;
  font-weight: 950;
}

.persona-info-grid {
  position: absolute;
  left: 5.12%;
  right: 5.12%;
  bottom: 6.96%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-box {
  min-height: 168px;
  border: 3px solid var(--line);
  border-radius: 22px;
  background: #fff6df;
  padding: 30px;
}

.info-box.colored {
  border-color: currentColor;
}

.info-label {
  font-size: 21px;
  font-weight: 950;
  text-transform: uppercase;
}

.info-text {
  margin-top: 12px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 950;
}

.google-panel {
  position: absolute;
  inset: 0;
  padding: 92px 70px 58px;
  background: #fff;
}

.google-panel.is-compact {
  padding-top: 78px;
  padding-bottom: 42px;
}

.google-logo {
  text-align: center;
  font-size: 108px;
  line-height: 1;
  font-weight: 900;
}

.google-panel.is-compact .google-logo {
  font-size: 98px;
}

.search-box {
  width: 100%;
  min-height: 112px;
  margin: 64px auto 0;
  border: 3px solid #dfe1e5;
  border-radius: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 38px;
  color: #2a2a2a;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(32, 33, 36, 0.14);
}

.google-panel.is-compact .search-box {
  min-height: 100px;
  margin-top: 48px;
  padding: 18px 34px;
  font-size: 30px;
}

.search-icon {
  flex: 0 0 auto;
  color: #777;
  font-size: 42px;
}

.google-panel.is-compact .search-icon {
  font-size: 36px;
}

.typed-keyword {
  flex: 1;
  overflow-wrap: anywhere;
  white-space: normal;
}

.caret {
  color: var(--red);
  animation: caret 720ms steps(1) infinite;
}

.intent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 62px;
}

.google-panel.is-compact .intent-grid {
  margin-top: 48px;
}

.intent-card {
  min-height: 190px;
  border: 3px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  background: #fff6df;
}

.google-panel.is-compact .intent-card {
  min-height: 176px;
  padding: 30px;
}

.intent-title {
  font-size: 23px;
  font-weight: 950;
  text-transform: uppercase;
}

.intent-copy {
  margin-top: 15px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.16;
  font-weight: 950;
}

.google-panel.is-compact .intent-copy {
  font-size: 31px;
}

.keyword-banner {
  margin-top: 42px;
  border-radius: 24px;
  background: var(--text);
  color: #ffe7b5;
  padding: 34px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 850;
}

.google-panel.is-compact .keyword-banner {
  margin-top: 28px;
  padding: 26px 30px;
  font-size: 28px;
  line-height: 1.13;
}

.keyword-banner strong {
  color: #fff;
}

.serp-panel {
  position: absolute;
  inset: 0;
  padding: 30px 48px 38px;
  background: #fff;
}

.serp-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.serp-logo {
  flex: 0 0 auto;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.serp-search {
  flex: 1;
  min-height: 58px;
  border: 1px solid #dfe1e5;
  border-radius: 31px;
  display: flex;
  align-items: center;
  padding: 10px 26px;
  color: #333;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(32, 33, 36, 0.1);
}

.serp-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 22px 0 0 152px;
  border-bottom: 1px solid #ebedef;
  color: #5f6368;
  font-size: 16px;
  font-weight: 750;
}

.serp-tabs span {
  padding-bottom: 13px;
}

.serp-tabs .is-selected {
  color: #1a73e8;
  border-bottom: 3px solid var(--persona-color);
}

.result-count {
  margin: 16px 0 0 152px;
  color: #70757a;
  font-size: 18px;
  font-weight: 650;
}

.serp-results {
  margin-left: 152px;
  width: calc(100% - 154px);
  max-width: 735px;
  padding-top: 18px;
}

.result-card {
  padding: 14px 0 18px;
  border-bottom: 1px solid #eef0f2;
  background: #fff;
}

.result-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.favicon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.favicon.organic {
  background: var(--red);
}

.ad-label {
  color: #202124;
  font-size: 18px;
  font-weight: 850;
}

.ad-label span {
  color: #202124;
  font-weight: 950;
}

.serp-url {
  margin-top: 2px;
  color: #188038;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 750;
}

.serp-title {
  margin-top: 12px;
  color: #1a0dab;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 760;
}

.serp-snippet {
  margin-top: 9px;
  color: #4d5156;
  font-size: 20px;
  line-height: 1.28;
}

.serp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 13px;
  color: #1a0dab;
  font-size: 18px;
  font-weight: 850;
}

.serp-links span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.organic-label {
  color: #202124;
  font-size: 18px;
  font-weight: 850;
}

.organic-title {
  margin-top: 12px;
  color: #1a0dab;
  font-size: 27px;
  line-height: 1.12;
  font-weight: 760;
}

.organic-card p {
  margin: 9px 0 0;
  color: #4d5156;
  font-size: 19px;
  line-height: 1.22;
}

.local-pack {
  margin-top: 2px;
  padding: 18px 0 0;
  background: #fff;
}

.local-pack-header {
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 18px;
  padding: 16px 0 14px;
}

.local-pack-title {
  color: #202124;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 850;
}

.local-pack-header p {
  margin: 7px 0 0;
  color: #70757a;
  font-size: 17px;
  line-height: 1.2;
}

.mini-map {
  position: relative;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7dce2;
  background:
    linear-gradient(135deg, rgba(66, 133, 244, 0.2), transparent 45%),
    linear-gradient(45deg, #e7f0fe 0 35%, #f6ead7 35% 48%, #dcebd6 48% 72%, #e7f0fe 72%);
}

.mini-map span {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.local-result {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #dfe1e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 5px 12px rgba(32, 33, 36, 0.07);
}

.local-pin {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--persona-color);
  color: #fff;
  font-size: 23px;
  line-height: 1;
}

.local-result-title {
  color: #1a0dab;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 850;
}

.local-result p {
  margin: 10px 0 0;
  color: #4d5156;
  font-size: 18px;
  line-height: 1.24;
}

.landing-panel {
  position: absolute;
  inset: 0;
  background: #fffaf0;
}

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 44px;
  background: var(--red);
  color: #fff;
}

.brand {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 900;
}

.site-nav {
  font-size: 21px;
  font-weight: 900;
}

.site-nav.last {
  margin-left: auto;
}

.landing-hero {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 34px;
  align-items: center;
  padding: 42px 54px 0;
}

.product-line {
  font-size: 24px;
  font-weight: 950;
  text-transform: uppercase;
}

.landing-hero h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  color: var(--text);
  font-size: 63px;
  line-height: 0.98;
  font-weight: 700;
}

.landing-subtitle {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 29px;
  line-height: 1.22;
}

.product-frame {
  justify-self: end;
  width: 326px;
  height: 274px;
  overflow: hidden;
  border: 3px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(58, 39, 22, 0.1);
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: var(--fit, contain);
  object-position: var(--position, 50% 50%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 54px 0;
}

.proof-card {
  min-height: 84px;
  border: 3px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 20px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.12;
  font-weight: 950;
}

.landing-actions {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin: 28px 54px 0;
}

.primary-cta {
  min-height: 118px;
  border: 0;
  border-radius: 18px;
  padding: 0 28px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
  text-align: left;
}

.landing-note {
  border: 3px solid var(--line);
  border-radius: 20px;
  background: #fff6df;
  padding: 22px;
}

.landing-note.colored {
  border-color: currentColor;
}

.landing-note-label {
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.landing-note-text {
  margin-top: 9px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 900;
}

.locator-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fffaf0;
}

.locator-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.retailer-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(246, 240, 223, 0.98)),
    #fffaf0;
}

.retailer-topbar {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 42px;
  background: var(--red);
  color: #fff;
}

.retailer-logo {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.retailer-nav {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 950;
}

.retailer-nav.last {
  margin-left: auto;
}

.retailer-hero {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 34px;
  align-items: stretch;
  padding: 34px 44px 0;
}

.retailer-kicker {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.retailer-copy h3 {
  margin: 18px 0 0;
  color: var(--text);
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.95;
  font-weight: 700;
}

.retailer-copy p {
  margin: 20px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 27px;
  line-height: 1.2;
}

.retailer-photo {
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(64, 44, 24, 0.14);
}

.retailer-photo img {
  width: 100%;
  height: 100%;
  min-height: 246px;
  object-fit: cover;
  display: block;
}

.retailer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  margin: 26px 44px 0;
}

.retailer-card {
  min-height: 178px;
  border: 3px solid var(--line);
  border-radius: 20px;
  background: #fffaf0;
  padding: 22px 24px;
}

.retailer-card.highlighted {
  border-color: var(--blue);
  background: #edf4ff;
}

.retailer-card span {
  display: block;
  color: var(--red);
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.retailer-card.highlighted span {
  color: var(--blue);
}

.retailer-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 27px;
  line-height: 1.08;
  font-weight: 950;
}

.retailer-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 800;
}

.retailer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 18px;
  margin: 24px 44px 0;
}

.retailer-actions button,
.retailer-measure {
  min-height: 90px;
  border-radius: 18px;
  font-weight: 950;
}

.retailer-actions button {
  border: 0;
  background: var(--blue);
  color: #fff;
  padding: 0 24px;
  font-size: 24px;
  line-height: 1.08;
  text-align: left;
}

.retailer-actions button + button {
  background: var(--red);
}

.retailer-measure {
  border: 3px solid var(--line);
  background: #fff6df;
  padding: 18px 22px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.12;
}

.retailer-measure span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 17px;
  text-transform: uppercase;
}

.bottom-actions {
  margin-top: 1.48cqh;
  display: flex;
  gap: 0.83cqw;
}

.back-button,
.next-button {
  height: 6.66cqh;
  min-height: 54px;
  border-radius: 16px;
  font-size: clamp(15px, 1.3cqw, 25px);
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(58, 39, 22, 0.12);
}

.back-button {
  min-width: 10.95cqw;
  background: #fff8eb;
  color: var(--text);
}

.back-button:disabled {
  cursor: default;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.next-button {
  min-width: 13.55cqw;
  border: 0;
  background: var(--green);
  color: #fff;
}

.fullscreen-button {
  position: absolute;
  right: 4.06%;
  top: 1.66%;
  height: 3.7cqh;
  min-height: 32px;
  border-radius: 999px;
  background: #fff8eb;
  color: var(--muted);
  padding: 0 0.82cqw;
  font-size: clamp(11px, 0.85cqw, 16px);
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
