@font-face {
  font-family: "OpenDyslexic";
  src: url("assets/fonts/OpenDyslexic-Regular_4051865322.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenDyslexic";
  src: url("assets/fonts/OpenDyslexic-Bold_4192668054.otf") format("opentype");
  font-weight: 700 950;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --font-display: nove, sans-serif;
  --font-copy: "OpenDyslexic", poppins, ui-sans-serif, system-ui, sans-serif;
  --font-ui: poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --red: #c60000;
  --red-dark: #960000;
  --blue: #15bceb;
  --steel: #8399a9;
  --gold: #c58a00;
  --ink: #101820;
  --soft: #edfaff;
  --paper: #fafafa;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  font-family: var(--font-copy);
  color: var(--ink);
  background: var(--paper);
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body.has-modal {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.section {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 58px clamp(18px, 4vw, 64px);
  scroll-margin-top: 92px;
}

.top-reference {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
  --hero-logo-column: clamp(92px, 10.4vw, 154px);
  --hero-menu-logo-gap: clamp(34px, 5.4vw, 86px);
  --hero-menu-item-gap: clamp(40px, 5.2vw, 84px);
  --hero-story-lift: clamp(-224px, -17.25vw, -133px);
  --hero-copy-y: clamp(8px, 1.5vw, 24px);
  --hero-text-gap: clamp(18px, 2.2vw, 30px);
  --hero-copy-width: min(58%, 760px);
  background: var(--layout-background-color, transparent);
}

.hero-space {
  position: relative;
  z-index: 1200;
  aspect-ratio: 1440 / 960;
  overflow: hidden;
  background: transparent;
}

.hero-space-art {
  position: relative;
  z-index: 1100;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  transform: translate(var(--layout-x, 0px), var(--layout-y, 0px)) scale(var(--layout-scale, 1));
  transform-origin: center;
}

.hero-menu {
  position: absolute;
  z-index: 1300;
  top: 4.3%;
  left: 3.6%;
  right: 8%;
  display: grid;
  grid-template-columns: var(--hero-logo-column) 1fr;
  align-items: center;
  gap: var(--hero-menu-logo-gap);
}

.hero-logo {
  display: block;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.hero-logo img {
  width: 100%;
  height: auto;
  transform: translate(var(--layout-x, 0px), var(--layout-y, 0px)) scale(var(--layout-scale, 1));
  transform-origin: center;
}

.top-hotspots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--hero-menu-item-gap);
  transform: translate(var(--layout-x, 0px), var(--layout-y, 0px)) scale(var(--layout-scale, 1));
  transform-origin: left center;
}

.top-hotspots a {
  font-family: var(--font-display);
  color: var(--blue);
  font-size: clamp(0.74rem, 1.64vw, 1.46rem);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 140ms ease, filter 140ms ease, transform 160ms ease;
}

.top-hotspots a:hover {
  color: #fff;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.42));
  transform: translateY(2px);
}

.top-hotspots a:active {
  transform: translateY(4px) scale(0.99);
}

.mobile-menu-toggle {
  display: none;
}

.hero-story {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(620px, 62vw, 2880px);
  align-items: start;
  column-gap: clamp(12px, 2.6vw, 42px);
  min-height: 0;
  margin-top: var(--hero-story-lift);
  overflow: visible;
  padding: clamp(16px, 2.8vw, 42px) clamp(58px, 7.4vw, 118px) clamp(42px, 5vw, 70px);
}

.hero-story-copy {
  position: relative;
  grid-column: 1;
  z-index: 10000 !important;
  width: min(100%, var(--hero-copy-width));
  margin-top: var(--hero-copy-y);
  transform: translate(var(--layout-x, 0px), var(--layout-y, 0px)) scale(var(--layout-scale, 1));
  transform-origin: left top;
}

.hero-story-copy h1 {
  position: relative;
  z-index: 10001 !important;
  max-width: none;
  margin: 0 0 var(--hero-text-gap);
  color: var(--steel);
  font-size: clamp(3.45rem, 5.8vw, 6.45rem);
  line-height: 1.04;
}

.hero-story-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-story-copy h1 span:first-child {
  color: var(--red);
}

.hero-story-copy h1 span:last-child {
  color: var(--steel);
}

.hero-story-copy p {
  position: relative;
  z-index: 10001 !important;
  margin: 0;
  font-family: var(--font-display);
  color: var(--steel);
  font-size: clamp(2.05rem, 3.45vw, 3.36rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-story-copy p::first-line {
  color: var(--red);
}

.hero-adventure-line {
  display: block;
  white-space: nowrap;
}

.hero-adventure-line-red {
  color: var(--red);
}

.hero-adventure-line-blue {
  color: var(--steel);
}

.hero-drawing-box {
  position: relative;
  grid-column: 2;
  z-index: 850;
  justify-self: end;
  align-self: start;
  overflow-x: clip;
  overflow-y: visible;
  transform: translateX(80px);
  transform-origin: top right;
}

.hero-drawing {
  display: block;
  width: min(115%, 3200px);
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hero-drawing-gif {
  mix-blend-mode: normal;
  transform-origin: top center;
}

.hero-story-copy[data-layout-drag] {
  z-index: 10000 !important;
}

.hero-offers {
  position: relative;
  z-index: 1200;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  align-items: end;
  gap: clamp(36px, 8vw, 126px);
  width: min(80%, 1040px);
  margin: 0 auto;
  padding: clamp(4px, 1vw, 16px) 0 clamp(34px, 4vw, 58px);
  background: var(--layout-background-color, transparent);
}

.hero-offer-card {
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2.2vw, 28px);
}

.hero-offer-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(290px, 31vw, 450px);
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.hero-offer-image:hover {
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, 0.12));
  transform: translateY(-4px);
}

.hero-offer-image:active {
  transform: translateY(2px) scale(0.995);
}

.tablet-preview {
  width: min(175%, 890px);
  justify-self: center;
  max-width: none;
  transform: translate(var(--layout-x, 0px), var(--layout-y, 0px)) scale(var(--layout-scale, 1));
  transform-origin: center;
}

.open-book-preview {
  width: min(132%, 680px);
  max-width: none;
  transform: translate(var(--layout-x, 0px), var(--layout-y, 0px)) scale(var(--layout-scale, 1));
  transform-origin: center;
}

.global-logo-layer {
  --offers-logo-size: clamp(184px, 38.9vw, 560px);
  position: relative;
  z-index: 2147483000;
  width: min(86%, 1210px);
  display: flex;
  justify-content: center;
  margin: clamp(28px, calc(2.4vw + 10px), 44px) auto calc((var(--offers-logo-size) * -0.25) - 10px);
  pointer-events: none;
  isolation: isolate;
}

.offers-laya-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: var(--offers-logo-size);
  height: auto;
  margin: 0;
  object-fit: contain;
  pointer-events: none;
  transform: none;
}

.layout-edit-toggle {
  position: fixed !important;
  z-index: 2147483647 !important;
  right: 16px !important;
  bottom: 16px !important;
  min-height: 42px;
  min-width: 142px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 3px solid #26323d;
  border-radius: 7px;
  box-shadow: 0 4px 0 #26323d;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  background: var(--red);
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

body:not(.edit-tools-enabled) .layout-edit-toggle,
body:not(.edit-tools-enabled) .editable-toggle,
body:not(.edit-tools-enabled) .layout-edit-panel,
body:not(.edit-tools-enabled) .editable-controls,
body:not(.edit-tools-enabled) .layout-selection-box {
  display: none !important;
}

.layout-edit-panel {
  position: fixed !important;
  z-index: 2147483647 !important;
  left: 16px;
  right: auto;
  bottom: auto;
  top: 16px;
  width: min(940px, calc(100vw - 192px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  gap: 12px;
  height: min(24vh, 190px);
  min-height: 120px;
  max-height: calc(100vh - 24px);
  overflow: auto;
  overscroll-behavior: contain;
  resize: vertical;
  padding: 12px;
  border: 3px solid #26323d;
  border-radius: 7px;
  box-shadow: 0 5px 0 #26323d;
  font-family: var(--font-ui);
  color: #26323d;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(4px);
}

.panel-resize-handle {
  position: sticky;
  z-index: 3;
  bottom: -12px;
  flex: 0 0 100%;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px -12px -12px;
  border-top: 2px solid rgba(38, 50, 61, 0.26);
  border-radius: 0 0 4px 4px;
  color: #26323d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: ns-resize;
  touch-action: none;
  user-select: none;
  background: rgba(255, 255, 255, 0.92);
}

.editable-controls .panel-resize-handle {
  position: relative;
  bottom: auto;
  flex: none;
  margin: 0;
}

.layout-panel-handle {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: #26323d;
  cursor: move;
  touch-action: none;
  user-select: none;
}

.layout-editing .layout-edit-toggle {
  right: 28px !important;
  bottom: 28px !important;
}

.layout-edit-panel strong {
  min-width: min(220px, 24vw);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1;
  text-transform: uppercase;
}

.layout-edit-hint {
  max-width: 270px;
  color: #5e6b76;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
}

.layout-edit-panel label {
  min-width: min(230px, 22vw);
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.layout-type-controls {
  display: contents;
}

.layout-color-swatches {
  display: flex;
  gap: 8px;
  align-items: end;
}

.layout-color-tools,
.layout-page-bg-actions {
  display: flex;
  gap: 8px;
  align-items: end;
  flex-wrap: wrap;
}

.layout-color-swatches button {
  width: 34px;
  height: 34px;
  border: 2px solid #26323d;
  border-radius: 6px;
  background: var(--swatch-color);
  box-shadow: 0 3px 0 #26323d;
  cursor: pointer;
}

.layout-color-tools button,
.layout-page-bg-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  background: #fff;
  cursor: pointer;
}

.layout-edit-panel input {
  width: 100%;
}

.layout-edit-panel input[type="number"] {
  min-height: 34px;
  padding: 4px 8px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
}

.layout-edit-panel input[type="color"] {
  min-height: 38px;
  padding: 3px;
  border: 2px solid #26323d;
  border-radius: 6px;
  background: #fff;
}

body:not(.layout-editing) .layout-edit-panel {
  display: none;
}

.layout-editing [data-layout-drag] {
  cursor: grab;
  outline: 4px dashed rgba(21, 188, 235, 0.85);
  outline-offset: 8px;
  touch-action: none;
  user-select: none;
}

[data-layout-drag] {
  translate: var(--layout-x, 0px) var(--layout-y, 0px);
  rotate: var(--layout-rotate, 0deg);
  scale: calc(var(--layout-scale, 1) * var(--layout-scale-x, 1)) calc(var(--layout-scale, 1) * var(--layout-scale-y, 1));
  transform-origin: center;
}

.layout-editing [data-layout-text] {
  user-select: text;
}

.layout-editing [data-layout-drag].is-dragging {
  cursor: grabbing;
  outline-color: var(--red);
}

.layout-editing [data-layout-drag].is-selected {
  outline-style: solid;
  outline-color: var(--red);
}

.layout-editing .hero-offer-card [data-layout-drag] {
  pointer-events: auto;
  position: relative;
}

.layout-editing .hero-offers {
  z-index: 1200;
}

.layout-editing .hero-offer-image[data-layout-drag] {
  z-index: 1210;
}

.layout-editing .hero-offer-card .hero-button[data-layout-drag],
.layout-editing .hero-offer-card span[data-layout-drag] {
  z-index: 1220;
}

.layout-editing .hero-offer-card span[data-layout-drag] {
  min-width: 180px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin: -10px -18px;
}

.layout-editing .visionary .author-photos[data-layout-drag] {
  position: relative;
  z-index: 42;
}

.layout-editing .visionary .green-pencil[data-layout-drag] {
  z-index: 44;
}

.layout-editing .audience-grid .color-bars-image[data-layout-drag] {
  position: relative;
  z-index: 40;
}

.layout-editing .audience-lead[data-layout-drag],
.layout-editing .audience-grid article[data-layout-drag] {
  position: relative;
  z-index: 39;
}

[data-layout-drag].is-hidden-by-editor {
  display: none !important;
}

.layout-selection-box {
  position: fixed;
  z-index: 2147483600 !important;
  display: none;
  pointer-events: none;
  border: 2px solid var(--red);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.layout-selection-box.is-visible {
  display: block;
}

.layout-selection-name {
  position: absolute;
  left: -2px;
  bottom: calc(100% + 8px);
  max-width: min(360px, 72vw);
  padding: 7px 10px 6px;
  border: 2px solid #26323d;
  border-radius: 6px;
  box-shadow: 0 3px 0 #26323d;
  overflow: hidden;
  color: #fff;
  background: var(--red);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.layout-selection-box [data-layout-resize] {
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 3px solid #26323d;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 0 #26323d;
  pointer-events: auto;
}

.layout-selection-box [data-layout-resize="nw"] {
  top: -10px;
  left: -10px;
  cursor: nwse-resize;
}

.layout-selection-box [data-layout-resize="ne"] {
  top: -10px;
  right: -10px;
  cursor: nesw-resize;
}

.layout-selection-box [data-layout-resize="sw"] {
  bottom: -10px;
  left: -10px;
  cursor: nesw-resize;
}

.layout-selection-box [data-layout-resize="se"] {
  right: -10px;
  bottom: -10px;
  cursor: nwse-resize;
}

.layout-mode-row,
.layout-scale-axis,
.layout-button-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr));
  gap: 8px;
  min-width: min(600px, 100%);
}

.layout-mode-row,
.layout-scale-axis {
  grid-template-columns: repeat(2, minmax(82px, 1fr));
}

.layout-scale-axis {
  grid-template-columns: repeat(3, minmax(78px, 1fr));
  min-width: min(320px, 100%);
}

.layout-mode-row button,
.layout-scale-axis button,
.layout-button-row button,
.layout-edit-panel .layout-import-label,
.layout-edit-panel .layout-replace-label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  transition: color 120ms ease, background 120ms ease, transform 120ms ease;
}

.layout-mode-row button:disabled,
.layout-scale-axis button:disabled,
.layout-button-row button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.layout-mode-row button.is-active,
.layout-scale-axis button.is-active {
  color: #fff;
  background: var(--red);
}

.layout-button-row .danger-action,
.editable-actions .danger-action {
  color: #fff;
  background: var(--red);
}

.layout-commit-output {
  flex: 1 1 min(520px, 100%);
  min-height: 54px;
  max-height: 130px;
  overflow: auto;
  margin: 0;
  padding: 10px;
  border: 2px solid #26323d;
  border-radius: 6px;
  color: #26323d;
  background: rgba(255, 255, 255, 0.86);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.25;
  white-space: pre-wrap;
}

.layout-mode-row button:active,
.layout-mode-row button.is-clicked,
.layout-scale-axis button:active,
.layout-scale-axis button.is-clicked,
.layout-button-row button:active,
.layout-button-row button.is-clicked,
.layout-edit-panel .layout-replace-label:active,
.layout-edit-panel .layout-replace-label.is-clicked {
  color: #fff;
  background: #26323d;
  transform: translateY(2px);
}

.layout-edit-panel .layout-replace-label {
  color: #fff;
  background: #26323d;
}

.layout-edit-panel input[type="file"] {
  display: none;
}

.layout-dirty-state {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 2px solid #26323d;
  border-radius: 6px;
  color: #fff;
  background: #26323d;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.has-unsaved-layout .layout-dirty-state {
  color: #26323d;
  background: #ffd84d;
}

.layout-export-status {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  max-width: min(520px, 100%);
  padding: 0 12px;
  border: 2px solid #26323d;
  border-radius: 6px;
  color: #26323d;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
}

.layout-raw-json {
  flex: 1 1 100%;
}

.layout-raw-json label {
  display: grid;
  gap: 6px;
  min-width: 100%;
}

.layout-raw-json textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  padding: 10px;
  border: 2px solid #26323d;
  border-radius: 6px;
  color: #26323d;
  background: rgba(255, 255, 255, 0.94);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.25;
}

.layout-editing [data-layout-drag].can-replace-image {
  outline-color: #c58a00;
}

body.layout-mobile-preview {
  background: #dce7ee;
}

body.layout-mobile-preview main {
  width: min(390px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(38, 50, 61, 0.18), 0 18px 42px rgba(38, 50, 61, 0.22);
}

body.layout-tablet-preview {
  background: #dce7ee;
}

body.layout-tablet-preview main {
  width: min(768px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(38, 50, 61, 0.18), 0 18px 42px rgba(38, 50, 61, 0.22);
}

body.layout-tablet-preview .top-reference {
  width: 100%;
  box-shadow: none;
}

body.layout-tablet-preview .hero-menu {
  top: 3%;
  right: 4%;
  grid-template-columns: var(--hero-logo-column) 1fr;
  gap: clamp(28px, 4.4vw, 52px);
}

body.layout-tablet-preview .top-hotspots {
  gap: clamp(22px, 3.4vw, 42px);
  overflow-x: auto;
  padding-bottom: 6px;
}

body.layout-tablet-preview .top-hotspots a {
  font-size: clamp(0.86rem, 2.7vw, 1.25rem);
}

body.layout-tablet-preview .hero-story {
  grid-template-columns: 1fr;
  row-gap: 22px;
  min-height: 0;
  padding-inline: 32px;
}

body.layout-tablet-preview .hero-story-copy {
  width: min(84vw, 430px);
}

body.layout-tablet-preview .hero-drawing-box {
  grid-column: 1;
  justify-self: center;
  transform: none;
}

body.layout-tablet-preview .hero-drawing {
  width: min(92vw, 1200px);
}

body.layout-tablet-preview .hero-offers {
  grid-template-columns: 1fr;
  width: min(88%, 760px);
  gap: 42px;
}

body.layout-tablet-preview .hero-offer-card-book,
body.layout-mobile-preview .hero-offer-card-book {
  order: -1;
}

body.layout-tablet-preview .hero-offer-image {
  min-height: 360px;
}

body.layout-mobile-preview .top-reference {
  width: 100%;
  box-shadow: none;
}

body.layout-mobile-preview .hero-menu {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  grid-template-columns: 76px 1fr;
  padding: 16px;
  background: #000;
}

body.layout-mobile-preview .top-hotspots {
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  overflow: visible;
}

body.layout-mobile-preview .top-hotspots a {
  font-size: 0.88rem;
}

body.layout-mobile-preview .hero-story {
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 34px 22px;
  row-gap: 18px;
}

body.layout-mobile-preview .hero-story-copy {
  width: min(86vw, 360px);
  margin-top: 8px;
}

body.layout-mobile-preview .hero-drawing-box {
  grid-column: 1;
  justify-self: center;
  transform: none;
}

body.layout-mobile-preview .hero-drawing {
  width: min(94vw, 900px);
}

body.layout-mobile-preview .hero-offers {
  grid-template-columns: 1fr;
  width: min(86%, 420px);
  gap: 34px;
  padding-bottom: 36px;
}

body.layout-mobile-preview .hero-offer-image {
  min-height: 260px;
}

body.layout-tablet-preview .bigger,
body.layout-mobile-preview .bigger {
  grid-template-columns: 1fr;
}

body.layout-tablet-preview .bigger-art,
body.layout-mobile-preview .bigger-art {
  order: -1;
}

.hero-button {
  min-height: clamp(58px, 5.8vw, 90px);
  width: min(100%, 430px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: clamp(3px, 0.32vw, 5px) solid #26323d;
  border-radius: 999px;
  box-shadow: 0 clamp(5px, 0.55vw, 8px) 0 #26323d;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.35vw, 2.3rem);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero-button-red {
  color: #fff;
  background: var(--red);
}

.hero-button-light {
  color: var(--red);
  background: #fff;
}

.hero-button:hover {
  box-shadow: 0 clamp(2px, 0.32vw, 5px) 0 #26323d;
  transform: translateY(clamp(2px, 0.24vw, 4px));
}

.hero-button:active {
  box-shadow: 0 1px 0 #26323d;
  transform: translateY(clamp(4px, 0.55vw, 8px)) scale(0.99);
}

.hero-offer-card span {
  font-family: var(--font-ui);
  color: var(--steel);
  font-size: clamp(1.05rem, 1.62vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 18px;
  padding-top: 36px;
  padding-bottom: 24px;
}

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

h1,
h2,
h3,
.button,
.mini-button {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button:active,
.mini-button:active {
  box-shadow: 0 1px 0 #26323d;
  transform: translateY(5px) rotate(0deg) scale(0.99);
}

h1 {
  max-width: 9ch;
  margin-bottom: 8px;
  color: #5d90b1;
  font-size: clamp(3.3rem, 8.4vw, 7.7rem);
  line-height: 0.92;
}

h1 span,
h2 span,
.meet-copy h3 span,
.audiences h2,
.visionary h2,
.bigger h2 span {
  color: var(--red);
}

.tagline {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-display);
  color: var(--red);
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.intro-art {
  justify-self: end;
  width: min(100%, 720px);
  margin-top: -36px;
}

.media-pair {
  padding-top: 8px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(16px, 4vw, 58px);
}

.tablet-mockup {
  width: 100%;
}

.book-stack {
  position: relative;
  min-height: clamp(260px, 35vw, 470px);
}

.book-pages {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transform: rotate(9deg);
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.15));
}

.book-cover {
  position: absolute;
  left: 1%;
  bottom: 0;
  width: 72%;
  transform: rotate(-1deg);
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.14));
}

.action-row,
.caption-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  justify-content: center;
  gap: clamp(18px, 6vw, 80px);
}

.action-row {
  margin-top: 28px;
}

.caption-row {
  margin-top: 10px;
  font-family: var(--font-copy);
  color: #8fa1ad;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.button,
.mini-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 4px solid #26323d;
  border-radius: 7px;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px 0 #26323d;
  transform: rotate(-0.6deg);
  transition: transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.mini-button:hover {
  animation: button-wiggle 520ms ease both;
  box-shadow: 0 3px 0 #26323d;
}

.button-red {
  color: #fff;
  background: var(--red);
}

.button-light,
.mini-button {
  color: var(--red);
  background: #fff;
}

@keyframes button-wiggle {
  0% { transform: translateY(0) rotate(-0.6deg) scale(1); }
  30% { transform: translateY(-7px) rotate(1.4deg) scale(1.035); }
  55% { transform: translateY(-3px) rotate(-1.2deg) scale(1.02); }
  78% { transform: translateY(-5px) rotate(0.7deg) scale(1.025); }
  100% { transform: translateY(-4px) rotate(0deg) scale(1.02); }
}

.meet {
  position: relative;
  z-index: 1;
  width: min(86%, 1210px);
  padding: 76px 0 70px;
}

.meet-panel {
  position: relative;
  z-index: 1;
  padding: clamp(78px, 9vw, 98px) clamp(22px, 4.5vw, 42px) 40px;
  border-radius: clamp(58px, 8vw, 92px);
  background: var(--red);
}

.meet-panel h2 {
  margin-bottom: clamp(34px, 4.5vw, 50px);
  color: #fff;
  font-size: clamp(3.1rem, 8.8vw, 5.85rem);
  line-height: 0.82;
  word-spacing: 0.09em;
  text-align: center;
}

.meet-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: clamp(920px, 112vw, 1160px);
  overflow-x: clip;
  overflow-y: hidden;
  padding: clamp(42px, 7vw, 74px) clamp(26px, 9vw, 104px) 0;
  border-radius: clamp(50px, 8.2vw, 88px);
  background: #fff;
}

.meet-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.meet-copy h3 {
  margin-bottom: clamp(28px, 4vw, 38px);
  color: #6f8599;
  font-size: clamp(2.2rem, 6.25vw, 4.3rem);
  line-height: 0.95;
  word-spacing: 0.07em;
}

.meet-copy h3 span {
  font-size: inherit;
  line-height: inherit;
}

.meet-copy p {
  max-width: 53ch;
  margin-bottom: clamp(17px, 2.35vw, 27px);
  color: #647b8f;
  font-size: clamp(1rem, 2.05vw, 1.36rem);
  font-weight: 700;
  line-height: 1.06;
}

.meet-card .meet-art {
  align-self: end;
  justify-self: center;
  width: min(124%, 980px);
  max-width: none;
  margin-top: -28px;
  transform: translateX(1.5%);
}

.meet-redblue-logo-standalone {
  position: relative;
  z-index: 1600;
  display: block;
  width: clamp(246px, 36vw, 360px);
  max-width: 84vw;
  height: auto;
  margin: clamp(-40px, -3.2vw, -18px) auto clamp(30px, 4vw, 52px);
}

.agents-button-layer {
  position: relative;
  z-index: 1400;
  display: flex;
  justify-content: center;
  width: min(100%, 1440px);
  margin: 76px auto 0;
  padding: 0 clamp(18px, 4vw, 64px);
  box-sizing: border-box;
}

.meet-action {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  transform: none;
}

.movie-player {
  padding: clamp(18px, 3vw, 32px);
  border-radius: 0;
  background: #12bce9;
}

.trailer-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: clamp(12px, 3vw, 42px);
}

.trailer-modal:target,
.trailer-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.68);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.34));
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: -18px;
  right: 18px;
  min-height: 42px;
  padding: 0 18px;
  border: 4px solid #26323d;
  border-radius: 7px;
  color: var(--red);
  background: #fff;
  box-shadow: 0 4px 0 #26323d;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.modal-close:hover {
  color: #fff;
  background: var(--red);
}

.modal-close:active {
  box-shadow: 0 1px 0 #26323d;
  transform: translateY(3px);
}

.movie-screen {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 7.25;
  border-radius: clamp(34px, 5.2vw, 82px);
  background: #fff;
}

.movie-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-big-play {
  position: absolute;
  width: clamp(120px, 22vw, 300px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: rgba(178, 178, 178, 0.72);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.movie-big-play::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 38%;
  width: 0;
  height: 0;
  border-top: clamp(34px, 6vw, 78px) solid transparent;
  border-bottom: clamp(34px, 6vw, 78px) solid transparent;
  border-left: clamp(52px, 9vw, 120px) solid #fff;
}

.movie-big-play:hover {
  transform: scale(1.05) rotate(2deg);
  background: rgba(178, 178, 178, 0.88);
}

.movie-player.is-playing .movie-big-play {
  opacity: 0;
  pointer-events: none;
}

.movie-timeline {
  position: relative;
  height: 8px;
  margin: clamp(24px, 3vw, 42px) clamp(28px, 8vw, 100px) 26px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.movie-timeline span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: #fff;
}

.movie-controls {
  display: grid;
  grid-template-columns: repeat(4, 54px) minmax(150px, 1fr) 72px 58px;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  padding: 0 clamp(28px, 7vw, 96px) 12px;
  color: #d9fbff;
}

.control-button {
  position: relative;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 160ms ease;
}

.control-button:hover {
  transform: translateY(-4px) rotate(-3deg) scale(1.06);
}

.control-play::before,
.control-skip::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 32px solid #d9fbff;
}

.control-pause::before,
.control-pause::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 11px;
  height: 38px;
  border-radius: 4px;
  background: #d9fbff;
}

.control-pause::before { left: 13px; }
.control-pause::after { right: 13px; }

.control-stop::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: #d9fbff;
}

.control-skip::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 8px;
  width: 7px;
  height: 36px;
  border-radius: 3px;
  background: #d9fbff;
}

.movie-time {
  justify-self: end;
  font-family: var(--font-ui);
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  color: #d9fbff;
  white-space: nowrap;
}

.control-volume::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 16px;
  height: 20px;
  background: #d9fbff;
  clip-path: polygon(0 25%, 42% 25%, 100% 0, 100% 100%, 42% 75%, 0 75%);
}

.control-volume::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 14px;
  width: 20px;
  height: 28px;
  border: 5px solid #d9fbff;
  border-left: 0;
  border-radius: 0 40px 40px 0;
}

.control-fullscreen::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 5px solid #d9fbff;
  border-radius: 2px;
  clip-path: polygon(0 0, 37% 0, 37% 16%, 16% 16%, 16% 37%, 0 37%, 0 0, 63% 0, 100% 0, 100% 37%, 84% 37%, 84% 16%, 63% 16%, 63% 0, 100% 63%, 100% 100%, 63% 100%, 63% 84%, 84% 84%, 84% 63%, 100% 63%, 37% 100%, 0 100%, 0 63%, 16% 63%, 16% 84%, 37% 84%, 37% 100%);
}

.growth {
  position: relative;
  padding-top: 56px;
  padding-bottom: 76px;
}

.mini-button {
  width: fit-content;
  min-height: 38px;
  margin: 0 auto 28px;
  font-size: 0.9rem;
}

.growth-title {
  position: relative;
  min-height: 260px;
}

.growth-title h2 {
  position: relative;
  z-index: 4;
  max-width: 360px;
  color: #7b95a6;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.92;
}

.growth-title-blue,
.growth-title-red {
  display: block;
  white-space: nowrap;
}

.growth-title-blue {
  color: #7b95a6;
}

.growth-title-red {
  color: var(--red);
}

.growth-title img {
  max-width: none;
}

.agents-dragon-wrap {
  position: absolute;
  z-index: 3;
  top: -8px;
  left: 50%;
  /* Match the top hero PNG's responsive width so the dragon crops inside the same page frame. */
  width: min(100vw, 1440px);
  height: clamp(340px, 41vw, 500px);
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.agents-dragon {
  width: clamp(920px, 118vw, 1680px);
  max-width: none;
  height: auto;
  margin-left: clamp(-460px, -28vw, -220px);
  transform: none;
  object-fit: contain;
  object-position: center;
}

.growth-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.growth-card {
  min-height: clamp(430px, 42vw, 560px);
  padding: clamp(38px, 4.6vw, 70px) clamp(34px, 3.7vw, 60px);
  border-radius: clamp(28px, 3vw, 46px);
  color: #fff;
}

.growth-card h3 {
  margin-bottom: clamp(22px, 2.3vw, 34px);
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.growth-card h4 {
  margin: clamp(26px, 2.4vw, 38px) 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.05vw, 2.2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.growth-card p,
.growth-card li {
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.42rem);
  line-height: 1.45;
}

.growth-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.growth-card li {
  margin-bottom: 0.36em;
}

.red-card { background: var(--red); }
.blue-card { background: var(--blue); }
.gold-card { background: var(--gold); }

.editable-block {
  --edit-x: 0px;
  --edit-y: 0px;
  --edit-scale-x: 1;
  --edit-scale-y: 1;
  --edit-rotate: 0deg;
  --edit-opacity: 1;
  --edit-z: 0;
  transform: translate(var(--edit-x), var(--edit-y)) rotate(var(--edit-rotate))
    scale(var(--edit-scale-x), var(--edit-scale-y));
  transform-origin: center;
}

.creative-editing .editable-block {
  cursor: pointer;
  outline: 3px dashed rgba(21, 188, 235, 0.9);
  outline-offset: 6px;
}

.creative-editing .editable-block[contenteditable="true"] {
  cursor: text;
  position: relative;
  z-index: 1201 !important;
}

.creative-editing .hero-menu,
.creative-editing .top-hotspots {
  z-index: 1300;
}

.creative-editing .editable-block.is-selected {
  outline: 4px solid var(--red);
}

.editable-letter-size {
  display: inline;
}

.editable-type-style {
  display: inline;
}

.custom-editable-text {
  position: absolute;
  z-index: 12;
  left: clamp(18px, 8vw, 120px);
  top: clamp(36px, 8vw, 110px);
  width: min(360px, calc(100% - 36px));
  min-height: 42px;
  padding: 8px 10px;
  color: var(--ink);
  font-family: var(--font-copy);
  font-size: 1rem;
  line-height: 1.28;
  background: rgba(255, 255, 255, 0.88);
}

.layout-editing .custom-editable-text[data-layout-drag] {
  z-index: 46;
}

.custom-editable-text.is-found {
  animation: find-text-block 1.2s ease;
}

@keyframes find-text-block {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(194, 31, 23, 0);
  }

  35%,
  70% {
    box-shadow: 0 0 0 12px rgba(194, 31, 23, 0.42);
  }
}

.editable-toggle {
  position: fixed !important;
  z-index: 2147483647 !important;
  right: 16px !important;
  bottom: 72px !important;
  min-height: 40px;
  min-width: 142px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 3px solid #26323d;
  border-radius: 7px;
  box-shadow: 0 4px 0 #26323d;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.editable-controls {
  position: fixed !important;
  z-index: 2147483647 !important;
  left: 16px;
  right: 178px;
  bottom: 16px;
  height: min(24vh, 190px);
  min-height: 120px;
  max-height: calc(100vh - 24px);
  overflow: hidden;
  resize: vertical;
  display: none;
  border: 3px solid #26323d;
  border-radius: 7px;
  box-shadow: 0 5px 0 #26323d;
  font-family: var(--font-ui);
  color: #26323d;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(4px);
}

.creative-editing .editable-controls {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.editable-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 2px solid rgba(38, 50, 61, 0.24);
  cursor: move;
  touch-action: none;
}

.editable-header::after {
  content: "Drag";
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  background: #26323d;
}

.editable-controls strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.editable-body {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 10px 12px;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 12px;
}

.editable-controls.is-collapsed {
  width: min(360px, calc(100vw - 32px));
}

.editable-controls.is-collapsed .editable-body {
  display: none;
}

.editable-controls label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editable-controls label input,
.editable-controls label select {
  grid-column: 1 / -1;
}

.editable-controls [data-edit-output] {
  min-width: 46px;
  color: #5e6b76;
  font-size: 0.72rem;
  text-align: right;
  text-transform: none;
}

.editable-number {
  grid-template-columns: 1fr auto;
}

.editable-number input {
  min-height: 34px;
  padding: 4px 8px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  background: #fff;
}

.editable-nudges {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.editable-nudges button {
  min-height: 28px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  background: #f8fbfd;
  cursor: pointer;
}

.editable-nudges button:active,
.editable-nudges button.is-clicked,
.type-tools button:active,
.type-tools button.is-clicked,
.editable-header button:active,
.editable-header button.is-clicked,
.editable-actions button:active,
.editable-actions button.is-clicked {
  color: #fff;
  background: #26323d;
  transform: translateY(2px);
}

.type-tools {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(9, minmax(64px, 1fr));
  gap: 8px;
  align-items: end;
  padding: 10px;
  border: 2px solid rgba(38, 50, 61, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.64);
}

.type-tools button {
  min-height: 36px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}

.type-tools label {
  min-width: 0;
}

.type-tools input[type="number"],
.type-tools input[type="color"],
.type-tools select {
  min-height: 34px;
  padding: 2px 6px;
  border: 2px solid #26323d;
  border-radius: 6px;
  background: #fff;
}

.editable-controls input,
.editable-controls select,
.editable-controls pre {
  width: 100%;
}

.editable-check {
  grid-template-columns: 18px 1fr;
  align-items: center;
}

.editable-check input {
  width: auto;
}

.editable-controls pre {
  min-height: 112px;
  margin: 0;
  padding: 8px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.3;
  white-space: pre-wrap;
  user-select: text;
}

.editable-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.editable-header button,
.editable-actions button {
  min-height: 34px;
  border: 2px solid #26323d;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  background: #fff;
  cursor: pointer;
  transition: color 120ms ease, background 120ms ease, transform 120ms ease;
}

.editable-actions button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.editable-header button {
  min-height: 30px;
  padding: 0 10px;
  flex: 0 0 auto;
}

.growth-pencil-layer {
  position: absolute;
  z-index: 1600;
  left: 50%;
  bottom: clamp(10px, 1.2vw, 24px);
  width: min(34vw, 330px);
  transform: translateX(-50%);
  pointer-events: none;
}

.red-pencil {
  display: block;
  width: 100%;
  transform: rotate(76deg);
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.16));
}

.audiences {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(320px, 0.82fr);
  grid-template-areas:
    "audience-one audience-kids"
    "audience-two audience-parent"
    "audience-three audience-three";
  gap: clamp(24px, 2.6vw, 40px);
  align-items: stretch;
  padding: clamp(44px, 5vw, 72px) clamp(36px, 5vw, 72px) 0;
}

.audience-lead {
  grid-area: audience-one;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 2.6vw, 40px);
  align-items: stretch;
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
}

.audience-copy-card {
  height: 100%;
  padding: clamp(34px, 4vw, 64px) clamp(46px, 5.4vw, 86px);
  border-radius: clamp(34px, 3.6vw, 58px);
  border: 0;
  outline: 0;
  background: var(--blue);
}

.audience-mockup-row {
  grid-column: 1 / -1;
  display: contents;
}

.audience-mockup-frame {
  min-width: 0;
  aspect-ratio: 689 / 1008;
  overflow: hidden;
}

.audience-mockup-frame:first-child {
  grid-area: audience-kids;
}

.audience-mockup-frame:last-child {
  grid-area: audience-parent;
}

.audiences h2 {
  margin-bottom: clamp(18px, 2vw, 32px);
  color: #fff;
  font-size: clamp(2.65rem, 5vw, 5.05rem);
  line-height: 0.88;
  text-transform: uppercase;
  white-space: nowrap;
}

.audiences h2 span {
  color: var(--red);
  display: inline-block;
  font-size: 1.08em;
  line-height: inherit;
  transform: translateY(0.01em);
}

.audience-subtitle {
  margin-bottom: clamp(26px, 2.9vw, 44px);
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.55rem, 2.65vw, 2.72rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.audience-subtitle {
  word-spacing: 0.08em;
}

.audience-subtitle::selection,
.audiences h2::selection {
  background: rgba(255, 255, 255, 0.25);
}

.audience-intro,
.audience-buy-title,
.audience-lead li {
  color: #fff;
  font-size: clamp(0.9rem, 1.28vw, 1.34rem);
  line-height: 1.24;
  letter-spacing: 0.02em;
}

.audience-intro {
  max-width: 780px;
  margin-bottom: clamp(22px, 2.5vw, 36px);
}

.audience-buy-title {
  margin-top: clamp(24px, 2.8vw, 44px);
  margin-bottom: clamp(12px, 1.35vw, 20px);
}

.audience-lead ul {
  margin: 0;
  padding-left: 1.05em;
}

.audience-lead li {
  margin-bottom: 0.08em;
}

.audience-subtitle {
  text-wrap: balance;
}

.audience-subtitle span {
  color: #fff;
}

.audience-subtitle strong {
  color: var(--red);
  font: inherit;
}

.audience-subtitle .audience-number,
.audience-secondary-card h2 .audience-number {
  color: #fff;
}

.audience-image-frame,
.audience-mockup-frame {
  width: 100%;
  aspect-ratio: 689 / 1008;
  align-self: stretch;
}

.audience-family-image,
.audience-mockup-frame .audience-secondary-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.audience-secondary {
  width: min(100%, 1440px);
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 2.6vw, 40px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 44px) clamp(36px, 5vw, 72px) clamp(44px, 5vw, 72px);
  box-sizing: border-box;
}

.audiences > .audience-secondary-cards {
  grid-area: audience-secondary;
  display: contents;
}

.audiences > .audience-secondary-cards .audience-secondary-card:first-child {
  grid-area: audience-two;
}

.audiences > .audience-secondary-cards .audience-secondary-card:last-child {
  grid-area: audience-three;
}

.audience-secondary-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.audience-secondary-cards {
  display: grid;
  gap: clamp(28px, 3.2vw, 52px);
}

.audience-secondary-card {
  height: 100%;
  padding: clamp(30px, 3.8vw, 58px) clamp(42px, 5vw, 78px);
  border-radius: clamp(30px, 3.3vw, 52px);
  color: #fff;
  background: var(--blue);
}

.audience-secondary-card h2 {
  margin-bottom: clamp(18px, 2vw, 30px);
  font-size: clamp(1.5rem, 3vw, 3.05rem);
  line-height: 0.95;
  text-transform: uppercase;
  white-space: normal;
}

.audience-secondary-card h2 span {
  color: #fff;
}

.audience-secondary-card h2 strong {
  color: var(--red);
  font: inherit;
}

.audience-classrooms-title span {
  display: block;
  margin-bottom: 0.18em;
}

.audience-gift-title span {
  display: block;
  margin-bottom: 0.18em;
}

.audience-secondary-card p,
.audience-secondary-card li {
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.5rem);
  line-height: 1.28;
  letter-spacing: 0.02em;
}

.audience-secondary-card p {
  margin-bottom: clamp(12px, 1.4vw, 20px);
}

.audience-secondary-card ul {
  margin: 0 0 clamp(20px, 2vw, 32px);
  padding-left: 1.05em;
}

.audience-secondary-card li {
  margin-bottom: 0.08em;
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1fr);
  gap: 18px;
}

.audience-grid img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.audience-grid article {
  min-height: 270px;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 8px;
  background: var(--blue);
}

.visionary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 2.6vw, 40px);
  width: min(100%, 1440px);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(44px, 5vw, 72px) clamp(36px, 5vw, 72px);
  color: #fff;
  background: var(--layout-background-color, transparent);
}

.vision-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: clamp(34px, 4vw, 64px) clamp(46px, 5.4vw, 86px);
  border-radius: clamp(34px, 3.6vw, 58px);
  background: var(--blue);
}

.visionary h2 {
  margin-bottom: clamp(16px, 1.9vw, 28px);
  color: var(--red);
  font-size: clamp(2.65rem, 5vw, 5.05rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.vision-subtitle {
  margin-bottom: clamp(34px, 4vw, 58px);
  font-family: var(--font-copy);
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.75rem, 2.72vw, 2.86rem);
  line-height: 1.1;
}

.vision-kicker {
  margin-bottom: clamp(26px, 3vw, 44px);
  font-family: var(--font-copy);
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.25rem, 1.85vw, 1.92rem);
  line-height: 1.2;
}

.visionary p {
  max-width: 58ch;
  color: #fff;
  font-size: clamp(0.9rem, 1.28vw, 1.34rem);
  line-height: 1.24;
  letter-spacing: 0.02em;
}

.green-pencil {
  position: absolute;
  left: 33%;
  margin-top: 420px;
  width: min(26vw, 280px);
  transform: rotate(74deg);
  filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.2));
}

.visionary .green-pencil {
  display: none;
}

.author-photos {
  align-self: stretch;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bigger {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, var(--bigger-copy-column, 0.68fr)) 1.32fr;
  grid-template-areas:
    "copy art"
    "signature art"
    "contact art"
    "pencil art";
  align-items: center;
  gap: 0;
  padding-top: 72px;
  padding-bottom: 42px;
}

.bigger-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
}

.bigger-copy[data-layout-drag],
.bigger-copy.editable-block {
  min-width: min(100%, 320px);
}

.bigger h2 {
  max-width: 12ch;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 1.12;
}

.bigger-title-first {
  display: block;
  white-space: nowrap;
  color: #7b95a6 !important;
}

.bigger h2 span:last-child {
  color: var(--red) !important;
  white-space: nowrap;
}

.bigger p {
  max-width: 36ch;
  color: #536879;
  font-size: clamp(0.86rem, 1.15vw, 1rem);
  line-height: 1.5;
}

.bigger .signature {
  grid-area: signature;
  position: relative;
  z-index: 20;
  margin: 104px 0 0;
  font-family: var(--font-display);
  color: #7895aa;
  font-size: clamp(3.2rem, 5.35vw, 4.65rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.signature span {
  display: block;
  font-family: var(--font-copy);
  color: #8fa1ad;
  font-size: 0.55em;
  text-transform: lowercase;
}

.bigger-art {
  grid-area: art;
  position: relative;
  z-index: 0;
  min-height: 720px;
  overflow-x: clip;
  overflow-y: visible;
}

@supports not (overflow: clip) {
  .hero-drawing-box,
  .meet-card,
  .bigger-art {
    overflow-x: hidden;
  }
}

.page-mock {
  position: absolute;
  top: 0;
  right: 7%;
  width: min(70vw, 520px);
  transform: rotate(13deg);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
}

.dragon-hug-art {
  top: -340px;
  left: clamp(-60px, calc(-8vw + 100px), 30px);
  right: auto;
  z-index: 0;
  width: min(562.5vw, 6696px);
  transform: none;
}

.signature-pencil {
  grid-area: pencil;
  position: relative;
  z-index: 1200;
  justify-self: start;
  width: clamp(112px, 10vw, 150px);
  max-width: calc(100vw - 32px);
  margin-top: 10px;
  transform: rotate(74deg);
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.14));
}

.contact {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  padding-bottom: 90px;
}

.contact .button {
  min-width: 270px;
}

.contact-button {
  grid-area: contact;
  min-width: 270px;
}

.bigger > .contact-button {
  position: relative;
  z-index: 100;
  justify-self: start;
  margin-top: 18px;
  width: fit-content;
}

@media (max-width: 1180px) {
  .top-reference {
    --hero-logo-column: clamp(86px, 10vw, 124px);
    --hero-menu-logo-gap: clamp(24px, 4vw, 56px);
    --hero-menu-item-gap: clamp(26px, 4vw, 58px);
    --hero-story-lift: clamp(-150px, -12.6vw, -84px);
    --hero-copy-width: min(58%, 640px);
  }

  .hero-story {
    grid-template-columns: minmax(0, 1fr) clamp(500px, 58vw, 1440px);
  }

  .hero-offers {
    width: min(86%, 980px);
    gap: clamp(30px, 5vw, 72px);
  }

  .bigger-art {
    min-height: clamp(520px, 56vw, 680px);
  }

  .page-mock {
    right: 0;
    width: min(58vw, 500px);
  }

  .dragon-hug-art {
    top: -150px;
    left: clamp(-20px, calc(-6vw + 100px), 50px);
    right: auto;
    width: min(calc(86vw + 150px), 970px);
  }

}

@media (min-width: 1181px) and (max-width: 1500px) {
  .hero-story {
    grid-template-columns: minmax(0, 0.9fr) clamp(620px, 58vw, 2880px);
    column-gap: clamp(28px, 3.6vw, 58px);
  }

  .dragon-hug-art {
    left: clamp(-30px, calc(-8vw + 130px), 60px);
  }

  .hero-story-copy {
    --hero-laptop-copy-scale: clamp(0.84, calc(0.36 + 0.032vw), 0.96);
    width: max-content;
    max-width: none;
    transform: translate(var(--layout-x, 0px), var(--layout-y, 0px)) scale(var(--hero-laptop-copy-scale));
  }

  .meet-panel h2 {
    font-size: 5.85rem;
  }

  .meet-copy h3 {
    font-size: 4.3rem;
  }

  .meet-copy p {
    font-size: 1.36rem;
  }

  .audiences h2 {
    font-size: 5.05rem;
  }

  .audience-subtitle {
    font-size: 2.72rem;
  }

  .audience-intro,
  .audience-buy-title,
  .audience-lead li {
    font-size: 1.34rem;
  }

  .audience-secondary-card h2 {
    font-size: 3.05rem;
  }

  .audience-secondary-card p,
  .audience-secondary-card li {
    font-size: 1.5rem;
  }
}

@media (max-width: 920px) {
  .hero-menu {
    top: 3%;
    right: 4%;
    grid-template-columns: var(--hero-logo-column) 1fr;
    gap: clamp(28px, 4.4vw, 52px);
  }

  .top-hotspots {
    gap: clamp(22px, 3.4vw, 42px);
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .top-hotspots a {
    font-size: clamp(0.86rem, 2.7vw, 1.25rem);
  }

  .hero-story {
    grid-template-columns: 1fr;
    row-gap: 22px;
    min-height: 0;
    padding-inline: 32px;
  }

  .hero-story-copy {
    width: min(88vw, 560px);
  }

  .hero-story-copy h1 {
    font-size: clamp(3rem, 7.2vw, 5.55rem);
    line-height: 1.02;
  }

  .hero-story-copy p {
    font-size: clamp(1.78rem, 4.45vw, 2.85rem);
    line-height: 1.06;
  }

  .hero-drawing-box {
    grid-column: 1;
    justify-self: center;
    transform: none;
  }

  .hero-drawing {
    width: min(92vw, 1200px);
  }

  .hero-offers {
    grid-template-columns: 1fr;
    width: min(88%, 760px);
    gap: 42px;
  }

  .hero-offer-card-book {
    order: -1;
  }

  .hero-offer-image {
    min-height: 360px;
  }

  .audience-lead,
  .audience-secondary,
  .visionary,
  .bigger {
    grid-template-columns: 1fr;
  }

  .bigger {
    grid-template-areas:
      "copy"
      "signature"
      "pencil"
      "contact"
      "art"
    ;
  }

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

  .movie-controls {
    grid-template-columns: repeat(4, 46px) 1fr 54px 46px;
    gap: 10px;
    padding-inline: 28px;
  }

  .control-button {
    width: 46px;
    height: 46px;
  }

  .movie-time {
    font-size: 1rem;
  }

  .growth-title {
    min-height: 360px;
  }

  .agents-dragon-wrap {
    top: 80px;
    height: clamp(300px, 50vw, 430px);
  }

  .agents-dragon {
    width: min(162vw, 1140px);
    margin-left: clamp(-380px, -36vw, -190px);
    transform: none;
  }

  .growth-cards,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .growth-card {
    min-height: 0;
    border-radius: 10px;
  }

  .red-pencil,
  .green-pencil {
    display: none;
  }

  .author-photos {
    max-height: 680px;
  }

  .bigger-art {
    order: 0;
    min-height: 580px;
  }

  .bigger .signature {
    margin-top: 4px;
  }

  .page-mock {
    position: relative;
    right: auto;
    margin: 0 auto;
    width: min(76vw, 520px);
  }

  .dragon-hug-art {
    top: 0;
    left: auto;
    width: min(76vw, 520px);
  }

  .bigger > .contact-button {
    margin-top: -300px;
  }
}

@media (max-width: 780px) {
  .top-reference {
    --hero-logo-column: 68px;
    --hero-story-lift: clamp(-58px, -11vw, -32px);
    --hero-copy-y: 0px;
    --hero-text-gap: 10px;
    --hero-copy-width: min(92vw, 420px);
  }

  .hero-space {
    aspect-ratio: 390 / 292;
  }

  .hero-space-art {
    object-position: center bottom;
  }

  .hero-menu {
    position: absolute;
    z-index: 1200;
    top: 8px;
    left: 14px;
    right: 6px;
    grid-template-columns: 68px 1fr 44px;
    gap: 12px;
    padding: 0;
    background: transparent;
  }

  .hero-logo img {
    filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.24));
  }

  .mobile-menu-toggle {
    justify-self: end;
    align-self: start;
    width: 42px;
    height: 38px;
    display: grid;
    gap: 5px;
    align-content: center;
    padding: 7px;
    border: 0;
    border-radius: 6px;
    color: var(--blue);
    background: rgba(0, 0, 0, 0.16);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  }

  .top-hotspots {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(245px, calc(100vw - 28px));
    display: grid;
    gap: 0;
    padding: 10px;
    border: 3px solid #26323d;
    border-radius: 8px;
    box-shadow: 0 5px 0 #26323d;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 150ms ease, transform 150ms ease;
    overflow: hidden;
  }

  body.mobile-menu-open .top-hotspots {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .top-hotspots a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 5px;
    color: var(--blue);
    font-size: 0.92rem;
  }

  .top-hotspots a:hover {
    color: #fff;
    background: rgba(21, 188, 235, 0.12);
  }

  .hero-story {
    grid-template-columns: 1fr;
    row-gap: 22px;
    min-height: 0;
    padding: 18px 20px 24px;
  }

  .hero-story-copy {
    width: min(92vw, 420px);
    margin-top: 0;
  }

  .hero-story-copy h1 {
    max-width: none;
    font-size: clamp(2.09rem, 9.62vw, 3.51rem);
    line-height: 1.02;
  }

  .hero-story-copy h1 span {
    white-space: nowrap;
  }

  .hero-story-copy p {
    font-size: clamp(1rem, 5.15vw, 1.78rem);
    line-height: 1.05;
  }

  .hero-offers {
    grid-template-columns: 1fr;
    width: min(88%, 390px);
    gap: 28px;
    padding-top: 4px;
    padding-bottom: 34px;
  }

  .hero-offer-image {
    min-height: 210px;
  }

  .section {
    padding-inline: 16px;
    padding-block: 34px;
  }

  .meet {
    width: min(100% - 20px, 420px);
    padding: 44px 0 42px;
  }

  .meet-panel {
    padding: 54px 14px 24px;
    border-radius: 34px;
  }

  .meet-panel h2 {
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 12vw, 3.25rem);
    line-height: 0.9;
  }

  .meet-card {
    min-height: 0;
    padding: 26px 18px 0;
    border-radius: 26px;
  }

  .meet-card .meet-art {
    width: min(118%, 430px);
    max-width: none;
    margin-top: 4px;
    transform: translateX(7%);
  }

  .meet-redblue-logo-standalone {
    width: 210px;
    max-width: 68vw;
    margin-top: -22px;
    margin-bottom: 28px;
  }

  .meet-copy h3 {
    margin-bottom: 20px;
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    line-height: 1;
  }

  .meet-copy p {
    margin-bottom: 13px;
    font-size: 0.9rem;
    line-height: 1.16;
  }

  .agents-button-layer {
    margin-top: 34px;
  }

  .meet-action {
    width: min(100%, 430px);
    min-height: 52px;
    font-size: 1.05rem;
  }

  .movie-player {
    padding: 12px;
  }

  .movie-screen {
    aspect-ratio: 16 / 9;
    border-radius: 28px;
  }

  .movie-timeline {
    height: 5px;
    margin: 18px 18px 16px;
  }

  .movie-controls {
    grid-template-columns: repeat(4, 34px);
    justify-content: center;
    padding: 0 10px 4px;
  }

  .control-button {
    width: 34px;
    height: 34px;
  }

  .control-play::before,
  .control-skip::before {
    top: 5px;
    left: 6px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 20px;
  }

  .control-pause::before,
  .control-pause::after {
    top: 5px;
    width: 7px;
    height: 24px;
  }

  .control-pause::before { left: 8px; }
  .control-pause::after { right: 8px; }

  .control-stop::before {
    inset: 7px;
  }

  .control-skip::after {
    top: 6px;
    right: 5px;
    width: 5px;
    height: 22px;
  }

  .movie-time,
  .control-volume,
  .control-fullscreen {
    display: none;
  }

  .growth-title {
    min-height: 300px;
  }

  .agents-dragon-wrap {
    top: 118px;
    z-index: 2;
    height: clamp(250px, 56vw, 390px);
  }

  .agents-dragon {
    width: min(118vw, 760px);
    margin-left: -52vw;
    transform: none;
  }

  .audience-lead,
  .audience-grid article {
    padding: 20px;
  }

  .audience-secondary {
    padding: 18px 16px 34px;
  }

  .audience-secondary-card {
    padding: 24px 20px;
  }

  .audience-secondary-card h2 {
    white-space: normal;
  }

  .audience-lead img,
  .audience-grid img {
    min-height: 230px;
  }

  .vision-copy {
    padding: 34px 18px;
  }

  .bigger-art {
    min-height: clamp(360px, 78vw, 560px);
  }

  .page-mock {
    right: -2%;
    width: min(88vw, 430px);
  }

  .dragon-hug-art {
    top: 0;
    left: auto;
    width: min(96vw, 560px);
  }

  .contact .button {
    min-width: min(270px, calc(100vw - 40px));
  }

  .contact-button {
    min-width: min(270px, calc(100vw - 40px));
    margin-top: -300px;
  }
}

@media (max-width: 520px) {
  .hero-story {
    grid-template-columns: 1fr;
    row-gap: 18px;
    min-height: 0;
  }

  .hero-story-copy {
    width: min(92vw, 420px);
  }

  .hero-drawing-box {
    grid-column: 1;
    justify-self: center;
    transform: none;
  }

  .hero-drawing {
    width: min(94vw, 900px);
  }
}

/* Targeted mobile audience fixes: keep the mockup images beside their blue cards
   instead of stacking, while scaling type/padding so the cards stay balanced. */
@media (max-width: 920px) {
  .audience-lead {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2.4vw, 22px);
    align-items: stretch;
    padding: 0;
  }

  .audience-secondary {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2.4vw, 22px);
    align-items: stretch;
    padding: clamp(14px, 2.8vw, 28px) clamp(16px, 4vw, 34px) clamp(32px, 5vw, 52px);
  }

  .audience-mockup-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2.2vw, 20px);
    margin-top: clamp(14px, 2.8vw, 28px);
  }

  .audience-copy-card,
  .audience-secondary-card {
    width: 100%;
    border-radius: clamp(22px, 5vw, 34px);
    box-sizing: border-box;
  }

  .audience-copy-card {
    padding: clamp(22px, 4vw, 34px) clamp(20px, 4.8vw, 38px);
  }

  .audience-secondary-card {
    padding: clamp(18px, 3.6vw, 30px) clamp(18px, 4.4vw, 34px);
  }

  .audience-secondary-cards {
    gap: clamp(12px, 2.4vw, 22px);
  }

  .audiences h2 {
    font-size: clamp(1.55rem, 5.4vw, 3.4rem);
    white-space: normal;
  }

  .audience-subtitle {
    font-size: clamp(1rem, 3.7vw, 2rem);
    white-space: normal;
  }

  .audience-intro,
  .audience-buy-title,
  .audience-lead li {
    font-size: clamp(0.72rem, 2.45vw, 1.02rem);
    line-height: 1.25;
  }

  .audience-secondary-card h2 {
    font-size: clamp(1.05rem, 4.2vw, 2.35rem);
  }

  .audience-secondary-card p,
  .audience-secondary-card li {
    font-size: clamp(0.7rem, 2.3vw, 1.05rem);
    line-height: 1.25;
  }

  .audience-image-frame,
  .audience-mockup-frame,
  .audience-secondary-image {
    min-height: 0;
  }

  .audience-family-image,
  .audience-mockup-frame .audience-secondary-image,
  .audience-secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 560px) {
  .global-logo-layer {
    --offers-logo-size: clamp(260px, 66vw, 320px);
  }

  .bigger {
    grid-template-areas:
      "copy"
      "signature"
      "contact"
      "pencil"
      "art";
  }

  .bigger-copy {
    margin-bottom: 64px;
  }

  .bigger > .contact-button {
    margin-top: 18px;
  }

  .dragon-hug-art {
    width: min(192vw, 1120px);
  }

  .growth {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .growth-title {
    min-height: 220px;
  }

  .agents-dragon-wrap {
    top: 78px;
    height: clamp(285px, 66vw, 470px);
  }

  .agents-dragon {
    width: min(206.5vw, 1300px);
    margin-left: calc(-52vw - 350px);
  }

  .audiences {
    grid-template-columns: 1fr;
    grid-template-areas:
      "audience-one"
      "audience-images"
      "audience-secondary";
    gap: 10px;
  }

  .audiences > .audience-secondary-cards {
    grid-area: audience-secondary;
    display: grid;
  }

  .audiences > .audience-secondary-cards .audience-secondary-card:first-child,
  .audiences > .audience-secondary-cards .audience-secondary-card:last-child {
    grid-area: auto;
  }

  .audiences,
  .audience-secondary {
    padding-inline: 10px;
  }

  .audiences {
    padding-bottom: 0;
  }

  .audience-secondary {
    padding-top: 10px;
  }

  .audience-lead {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .audience-secondary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .audience-mockup-row {
    grid-area: audience-images;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .audience-mockup-frame:first-child,
  .audience-mockup-frame:last-child {
    grid-area: auto;
  }

  .audience-copy-card,
  .audience-secondary-card {
    border-radius: 20px;
  }

  .audience-copy-card {
    padding: 18px 14px;
  }

  .audience-secondary-card {
    padding: 16px 14px;
  }

  .audience-secondary-cards {
    gap: 10px;
  }

  .audiences h2 {
    font-size: clamp(1.25rem, 7.8vw, 2rem);
    margin-bottom: 12px;
  }

  .audience-subtitle {
    font-size: clamp(0.86rem, 4.5vw, 1.25rem);
    margin-bottom: 14px;
  }

  .audience-intro,
  .audience-buy-title,
  .audience-lead li {
    font-size: clamp(0.62rem, 3.4vw, 0.82rem);
  }

  .audience-buy-title {
    margin-top: 14px;
  }

  .audience-secondary-card h2 {
    font-size: clamp(0.95rem, 5.2vw, 1.45rem);
    margin-bottom: 10px;
  }

  .audience-secondary-card p,
  .audience-secondary-card li {
    font-size: clamp(0.62rem, 3.2vw, 0.82rem);
  }
}

@media (min-width: 561px) and (max-width: 920px) {
  .visionary {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 0.46fr);
    gap: clamp(12px, 2.4vw, 22px);
    align-items: stretch;
    padding: clamp(14px, 2.8vw, 28px) clamp(16px, 4vw, 34px) clamp(32px, 5vw, 52px);
  }

  .vision-copy {
    width: 100%;
    box-sizing: border-box;
    padding: clamp(22px, 4vw, 34px) clamp(20px, 4.8vw, 38px);
    border-radius: clamp(22px, 5vw, 34px);
  }

  .author-photos {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .visionary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-inline: 10px;
  }

  .vision-copy {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 14px;
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  .bigger {
    grid-template-areas:
      "copy"
      "signature"
      "contact"
      "pencil"
      "art";
  }

  .bigger-copy {
    margin-bottom: 64px;
  }

  .bigger > .contact-button {
    margin-top: 18px;
  }

  .bigger-art {
    min-height: 520px;
    margin-top: -42px;
  }

  .dragon-hug-art {
    top: -70px;
    left: 50%;
    right: auto;
    width: min(192vw, 1120px);
    transform: translateX(-50%);
  }
}

.layout-editing .visionary .green-pencil[data-layout-drag] {
  display: block;
}

/* Final bottom-section stack locks: keep the Contact button above the green
   pencil across responsive modes, and prevent the pencil from scaling wildly. */
@media (max-width: 920px) {
  .bigger {
    grid-template-areas:
      "copy"
      "signature"
      "contact"
      "pencil"
      "art";
  }

  .bigger-copy {
    margin-bottom: 64px;
  }

  .bigger > .contact-button {
    justify-self: start;
    margin-top: 18px;
  }

  .signature-pencil {
    grid-column: auto;
    justify-self: start;
    width: clamp(112px, 10vw, 150px);
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  .signature-pencil {
    justify-self: start;
    width: clamp(112px, 28vw, 132px);
    margin-top: 10px;
  }
}

/* Keep the "Why I Created Laya Bug" art beside the copy on tablet/iPad widths.
   The section should only stack into a phone layout at iPhone 15 Pro Max width
   and smaller, so these overrides undo the broader tablet stack rules above. */
@media (min-width: 431px) and (max-width: 920px) {
  .bigger {
    grid-template-columns: minmax(300px, var(--bigger-copy-column, 0.68fr)) 1.32fr;
    grid-template-areas:
      "copy art"
      "signature art"
      "contact art"
      "pencil art";
    align-items: center;
  }

  .bigger-copy {
    margin-bottom: 0;
  }

  .bigger-art {
    order: initial;
    min-height: 580px;
    margin-top: 0;
  }

  .page-mock.dragon-hug-art {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: min(76vw, 520px);
    margin: 0;
    transform: none;
  }

  .bigger > .contact-button {
    justify-self: start;
    margin-top: 18px;
  }

  .signature-pencil {
    justify-self: center;
    width: clamp(112px, 10vw, 150px);
    margin-top: -4px;
    margin-left: 0;
  }
}

@media (max-width: 430px) {
  .bigger {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "signature"
      "contact"
      "pencil"
      "art";
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
