@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap");

:root {
  --red: #ff0808;
  --ink: #515656;
  --muted: #8b9191;
  --soft: #f2f5f5;
  --tint: #e3eaea;
  --control: #d5dfdf;
  --hover: #c9d6d6;
  --dark: #242828;
  --white: #ffffff;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
}

button,
input,
textarea {
  border-radius: 0;
  font: inherit;
}

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

a {
  color: inherit;
}

:where(a, summary):focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

button:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 2px #515656;
}

:where(input, textarea, select):focus,
:where(input, textarea, select):focus-visible {
  outline: 0 !important;
  outline-offset: 0;
  box-shadow: none !important;
}

.concept-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(48px, calc((100vw - 1248px) / 2));
  background: #f8fafa;
}

.concept-logo img {
  display: block;
  width: 186px;
  height: auto;
}

.concept-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.concept-nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.concept-nav a:hover,
.concept-nav a:focus-visible {
  color: var(--ink);
}

.concept-nav .nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
}

.concept-market-switcher {
  display: inline-flex;
  border: 1px solid var(--control);
}

.concept-market-switcher a {
  min-width: 38px;
  padding: 8px 9px;
  text-align: center;
}

.concept-market-switcher a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: var(--control);
  color: var(--ink);
  font-size: 20px;
}

.site-notice {
  padding: 15px max(24px, calc((100vw - 1248px) / 2));
  background: #dce5e5;
  color: var(--ink);
  font-size: 14px;
  text-align: center;
}

.concept-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.hero-panorama {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-panorama > img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 108%;
  height: 100%;
}

.hero-panorama > img {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  animation: heroInteriorPan 20s ease-in-out infinite alternate;
}

.concept-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 24, 24, .64) 0%, rgba(19, 24, 24, .48) 43%, rgba(19, 24, 24, .30) 72%, rgba(19, 24, 24, .36) 100%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1248px, calc(100% - 96px));
  min-height: 680px;
  align-content: center;
  margin: 0 auto;
  padding: 70px 0;
}

.hero-copy {
  width: min(760px, 76%);
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: 64px;
  font-weight: 300;
  line-height: 1.02;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 34px;
}

.button-link,
.button-control {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  background: var(--control);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button-link.primary,
.button-control.primary {
  background: var(--red);
  color: var(--white);
}

.button-link:hover,
.button-control:hover {
  background: var(--hover);
}

.button-link.primary:hover,
.button-control.primary:hover {
  background: #df0707;
}

.hero-actions .button-link.secondary {
  background: rgba(255, 255, 255, .92);
}

.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
}

.hero-proof span::before {
  margin-right: 8px;
  color: var(--red);
  content: "+";
  font-weight: 600;
}

.concept-section {
  padding: 96px max(48px, calc((100vw - 1248px) / 2));
}

.concept-section.soft {
  background: var(--soft);
}

.concept-section.tint {
  background: var(--tint);
}

.first-tour-heading {
  margin-bottom: 54px;
}

.first-tour-heading h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.08;
}

.first-tour-flow {
  --flow-progress: 0%;
  display: grid;
  grid-template-columns: minmax(230px, .38fr) minmax(0, 1fr);
  min-height: 620px;
  background: #ffffff;
}

.first-tour-route {
  --route-line-offset: 18px;
  --route-arrow-height: 42px;
  --route-track: #c2cccc;
  padding: 38px 34px 40px;
  background: var(--control);
}

.first-tour-route-label {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.first-tour-progress {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
}

.first-tour-progress::before,
.first-tour-progress::after {
  position: absolute;
  top: 0;
  bottom: calc(-1 * var(--route-arrow-height));
  left: var(--route-line-offset);
  width: 1px;
  background: var(--route-track);
  content: "";
}

.first-tour-progress::after {
  bottom: auto;
  width: 2px;
  height: var(--flow-progress);
  background: var(--red);
  transition: height 240ms ease;
}

.first-tour-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  min-height: 72px;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.first-tour-step span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #aebaba;
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.first-tour-step strong {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
}

.first-tour-step:hover {
  color: var(--ink);
}

.first-tour-step.active,
.first-tour-step.complete {
  color: var(--red);
}

.first-tour-step.active span,
.first-tour-step.complete span {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.first-tour-stage {
  min-width: 0;
  min-height: 620px;
}

.first-tour-flow .first-tour-panel {
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
  min-height: 620px;
  align-items: center;
  gap: 38px;
  padding: 44px;
}

.first-tour-panel h3,
.first-tour-panel p {
  margin: 0;
}

.first-tour-panel h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 300;
}

.first-tour-panel p:not(.step-count) {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.first-tour-panel .step-count {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.first-tour-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--soft);
}

.first-tour-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.first-tour-visual span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 14px;
  background: rgba(36, 40, 40, .88);
  color: var(--white);
  font-size: 11px;
}

/* Lightweight motion overlays make static product screenshots feel demonstrative. */
.motion-demo .demo-cursor,
.motion-demo .demo-click {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.motion-demo .demo-cursor {
  top: 70%;
  left: 18%;
  width: 22px;
  height: 30px;
  background: #ffffff;
  clip-path: polygon(0 0, 0 100%, 27% 72%, 45% 100%, 62% 91%, 43% 65%, 75% 65%);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .38));
  animation: demo-cursor-move 4.8s cubic-bezier(.35, 0, .2, 1) infinite;
}

.motion-demo .demo-click {
  top: 42%;
  left: 62%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.4);
  animation: demo-click-account 4.8s ease-out infinite;
}

.demo-project .demo-cursor {
  --demo-target-x: 52%;
  --demo-target-y: 57%;
}

.demo-project .demo-click {
  top: 57%;
  left: 52%;
  animation-name: demo-click-project;
}

.demo-upload .demo-cursor {
  --demo-target-x: 32%;
  --demo-target-y: 50%;
}

.demo-upload .demo-click {
  top: 50%;
  left: 32%;
  animation-name: demo-click-upload;
}

.demo-hotspot .demo-cursor {
  --demo-target-x: 71%;
  --demo-target-y: 46%;
}

.demo-hotspot .demo-click {
  top: 46%;
  left: 71%;
  width: 32px;
  height: 32px;
  border-width: 3px;
  animation-name: demo-click-hotspot;
}

.demo-publish .demo-cursor {
  --demo-target-x: 52%;
  --demo-target-y: 77%;
}

.demo-publish .demo-click {
  top: 77%;
  left: 52%;
  animation-name: demo-click-publish;
}

.demo-account .demo-cursor {
  --demo-target-x: 62%;
  --demo-target-y: 42%;
}

@keyframes demo-cursor-move {
  0%, 16%, 100% { top: 70%; left: 18%; transform: translate(0, 0); }
  46%, 70% { left: var(--demo-target-x); top: var(--demo-target-y); transform: translate(0, 0); }
}

@keyframes demo-click-account {
  0%, 45% { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
  52% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.6); }
}

@keyframes demo-click-project {
  0%, 45% { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
  52% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.6); }
}

@keyframes demo-click-upload {
  0%, 45% { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
  52% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.6); }
}

@keyframes demo-click-hotspot {
  0%, 45% { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
  52% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.1); }
}

@keyframes demo-click-publish {
  0%, 45% { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
  52% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.6); }
}

.first-tour-arrow {
  position: relative;
  width: 1px;
  height: var(--route-arrow-height);
  margin: 0 0 22px var(--route-line-offset);
  background: var(--route-track);
}

.first-tour-arrow::after {
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--route-track);
  border-bottom: 2px solid var(--route-track);
  content: "";
  transform: rotate(45deg);
}

.first-tour-flow.final-step-active .first-tour-arrow {
  background: var(--red);
}

.first-tour-flow.final-step-active .first-tour-arrow::after {
  border-color: var(--red);
}

.first-tour-route-cta {
  width: 100%;
  min-height: 62px;
  padding: 12px 18px;
  line-height: 1.35;
  text-align: center;
}

.first-tour-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.first-tour-deliverables span {
  padding: 10px 12px;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
}

/* Studio split: the selected option combines the vertical step rail with one focused media/copy stage. */
.first-tour-flow.studio-split,
.studio-split .first-tour-stage {
  height: 520px;
  min-height: 520px;
}

.studio-split .first-tour-route {
  --route-arrow-height: 32px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  padding: 26px 26px 24px;
}

.studio-split .first-tour-route-label {
  margin-bottom: 12px;
  font-size: 10px;
}

.studio-split .first-tour-progress {
  align-content: stretch;
}

.studio-split .first-tour-step {
  min-height: 52px;
  gap: 13px;
  padding: 3px 0;
}

.studio-split .first-tour-step strong {
  font-size: 12px;
}

.studio-split .first-tour-arrow {
  height: var(--route-arrow-height);
  margin-bottom: 14px;
}

.studio-split .first-tour-route-cta {
  min-height: 52px;
}

.studio-split .first-tour-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  height: 520px;
  max-height: 520px;
  min-height: 520px;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: var(--dark);
  overflow: hidden;
}

.studio-split .first-tour-visual {
  display: grid;
  grid-template-rows: 38px minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 18px;
  background: var(--tint);
}

.studio-split .first-tour-visual img {
  position: static;
  grid-row: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.studio-split .first-tour-visual span {
  position: static;
  grid-row: 1;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.studio-split .motion-demo .demo-cursor,
.studio-split .motion-demo .demo-click {
  display: none;
}

.studio-split .first-tour-copy {
  --studio-copy-gutter: clamp(30px, 4vw, 54px);
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: var(--studio-copy-gutter);
}

.studio-split .first-tour-copy h3 {
  color: #ffffff;
}

.studio-split .first-tour-copy p:not(.step-count) {
  color: #aeb5b5;
}

.studio-split .first-tour-copy .step-count {
  margin: 0;
}

.studio-split .first-tour-copy .first-tour-deliverables {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  min-height: 128px;
  gap: 0;
  width: auto;
  max-width: none;
  margin-top: 28px;
  background: transparent;
}

.studio-split .first-tour-copy .first-tour-deliverables span {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: #aeb5b5;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.28;
}

.studio-split .first-tour-copy .first-tour-deliverables span + span {
  padding-top: 16px;
  border-top: 1px solid #3c4141;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(420px, 1.28fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.section-number,
.section-eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-intro h2,
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.08;
}

.section-intro > p,
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.click-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  background: var(--dark);
  color: var(--white);
}

.click-route article {
  position: relative;
  min-height: 150px;
  padding: 27px 28px;
  border-right: 1px solid #3c4141;
}

.click-route article:last-child {
  border-right: 0;
}

.click-route strong,
.click-route span,
.click-route small {
  display: block;
}

.click-route strong {
  margin-bottom: 24px;
  color: var(--red);
  font-size: 13px;
}

.click-route span {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.click-route small {
  margin-top: 8px;
  color: #929999;
  line-height: 1.5;
}

.journey-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 480px;
  background: var(--tint);
}

.journey-nav {
  display: grid;
  align-content: start;
  background: var(--control);
}

.journey-tab {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 88px;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid #c5d0d0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.journey-tab span {
  color: inherit;
  font-size: 12px;
  font-weight: 600;
}

.journey-tab strong {
  color: inherit;
  font-weight: 500;
}

.journey-tab:hover {
  background: var(--hover);
  color: var(--ink);
}

.journey-tab.active {
  background: var(--red);
  color: var(--white);
}

.first-tour-progress .first-tour-step.active,
.first-tour-progress .first-tour-step.complete {
  background: transparent;
  color: var(--red);
}

.journey-stage {
  min-width: 0;
  padding: 42px;
}

.journey-panel {
  display: none;
  grid-template-columns: minmax(0, .86fr) minmax(330px, 1.14fr);
  gap: 44px;
  align-items: center;
  min-height: 390px;
}

.journey-panel.active {
  display: grid;
}

.journey-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.12;
}

.journey-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.creative-list {
  display: grid;
  gap: 0;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.creative-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid #c7d2d2;
  color: var(--ink);
}

.creative-list li::before {
  color: var(--red);
  content: attr(data-index);
  font-size: 11px;
  font-weight: 600;
}

.journey-media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--dark);
}

.journey-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-media .media-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 20px;
  background: rgba(36, 40, 40, .9);
  color: var(--white);
  font-size: 12px;
}

.journey-actions {
  display: flex;
  gap: 0;
}

.journey-actions .button-control[hidden] {
  display: none;
}

.onboarding-result {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
  padding: 27px 30px;
  background: var(--dark);
  color: var(--white);
}

.onboarding-result h3,
.onboarding-result p {
  margin: 0;
}

.onboarding-result h3 {
  font-size: 21px;
  font-weight: 500;
}

.onboarding-result p {
  margin-top: 6px;
  color: #aeb5b5;
  font-size: 13px;
}

.product-proof {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--dark);
  color: var(--white);
}

.product-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  display: grid;
  align-content: center;
  padding: 60px;
}

.product-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.08;
}

.product-copy > p {
  margin: 22px 0 30px;
  color: #aeb5b5;
  line-height: 1.7;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #3c4141;
}

.product-metrics div {
  padding: 22px 0;
  border-right: 1px solid #3c4141;
}

.product-metrics div:last-child {
  padding-left: 22px;
  border-right: 0;
}

.product-metrics strong,
.product-metrics span {
  display: block;
}

.product-metrics strong {
  color: var(--white);
  font-size: 23px;
  font-weight: 400;
}

.product-metrics span {
  margin-top: 5px;
  color: #929999;
  font-size: 12px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 44px;
}

.section-heading > p {
  max-width: 500px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--control);
}

.journal-item {
  display: grid;
  grid-template-rows: 200px auto;
  padding: 26px;
  border-right: 1px solid var(--control);
  text-decoration: none;
}

.journal-item:first-child {
  padding-left: 0;
}

.journal-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.journal-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.journal-item small {
  display: block;
  margin-top: 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.journal-item h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.journal-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.journal-item:hover h3 {
  color: var(--red);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(480px, 1.3fr);
  gap: 80px;
}

.faq-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.08;
}

.faq-intro p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid #c7d2d2;
}

.faq-list details {
  border-bottom: 1px solid #c7d2d2;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--red);
  content: "+";
  font-size: 22px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.pricing-head h2,
.pricing-head p {
  margin: 0;
}

.pricing-head h2 {
  color: var(--ink);
  font-size: 44px;
  font-weight: 300;
}

.pricing-head p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.6;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--control);
}

/* Once the free tour has been used, retain three quarter-width paid cards on
   the left. Flex sizing prevents the last card using the vacant free-tour space. */
@media (min-width: 821px) {
  .price-grid.intro-offer-hidden {
    display: flex;
    align-items: stretch;
  }

  .price-grid.intro-offer-hidden > .price-plan:not([hidden]) {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
}

.price-plan {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 430px;
  align-content: stretch;
  padding: 34px;
  border-right: 1px solid #bfcbcb;
}

.price-plan[hidden],
.intro-bonus[hidden] {
  display: none;
}

.price-plan.intro-plan {
  background: #fff0ef;
}

.price-plan .bonus-total {
  padding-top: 12px;
  border-top: 1px solid #c3cece;
  color: var(--ink);
  font-weight: 600;
}

.price-plan.recommended .bonus-total {
  border-top-color: #4c5252;
  color: var(--white);
}

.price-plan:last-child {
  border-right: 0;
}

.price-plan.recommended {
  background: var(--dark);
  color: var(--white);
}

.price-label {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.price-plan h3 {
  margin: 20px 0 0;
  color: inherit;
  font-size: 22px;
  font-weight: 500;
}

.price {
  margin: 25px 0 0;
  color: inherit;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}

.price small {
  font-size: 13px;
  font-weight: 400;
}

.price-plan ul {
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.price-plan.recommended ul {
  color: #aeb5b5;
}

.price-plan li::before {
  margin-right: 10px;
  color: var(--red);
  content: "+";
  font-weight: 600;
}

.price-plan .button-link {
  align-self: end;
  margin-top: auto;
}

.concept-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 150px;
  gap: 30px;
  padding: 35px max(48px, calc((100vw - 1248px) / 2));
  background: #f8fafa;
}

.concept-footer img {
  width: 172px;
}

.concept-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.concept-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.concept-footer nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-contact-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.concept-footer nav a:hover,
.concept-footer nav a:focus-visible,
.footer-contact-button:hover,
.footer-contact-button:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-reveal {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background: var(--soft);
  opacity: 0;
  transition: grid-template-rows .32s ease, opacity .24s ease;
}

.contact-reveal.open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.contact-reveal-inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(390px, 1.18fr);
  gap: 72px;
  min-height: 0;
  overflow: hidden;
  padding: 0 max(48px, calc((100vw - 1248px) / 2));
  transition: padding .32s ease;
}

.contact-reveal.open .contact-reveal-inner {
  padding-top: 54px;
  padding-bottom: 58px;
}

.contact-copy .section-number,
.contact-copy h2,
.contact-copy p {
  margin: 0;
}

.contact-copy h2 {
  margin-top: 13px;
  color: var(--ink);
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 1.02;
}

.contact-copy > p:last-child {
  max-width: 340px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.contact-form input {
  min-height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 126px;
  padding: 15px;
  resize: vertical;
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  gap: 18px;
}

.contact-form-actions .button-link {
  border: 0;
  cursor: pointer;
}

.contact-form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Editorial concept */
.editorial-home .concept-hero {
  min-height: 620px;
}

.editorial-home .hero-inner {
  min-height: 620px;
  align-content: end;
}

.editorial-home .hero-copy {
  width: min(850px, 82%);
}

.editorial-home .hero-copy h1 {
  max-width: 850px;
}

.editorial-route {
  display: grid;
  background: var(--soft);
}

.route-row {
  display: grid;
  grid-template-columns: 150px minmax(300px, .8fr) minmax(420px, 1.2fr);
  min-height: 390px;
  border-bottom: 1px solid var(--control);
}

.route-number {
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 48px;
  font-weight: 300;
}

.route-copy {
  display: grid;
  align-content: center;
  padding: 45px;
}

.route-copy h3,
.route-copy p {
  margin: 0;
}

.route-copy h3 {
  color: var(--ink);
  font-size: 32px;
  font-weight: 300;
}

.route-copy p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.route-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--dark);
}

.route-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-row:nth-child(even) .route-visual {
  order: -1;
  grid-column: 1;
}

.route-row:nth-child(even) {
  grid-template-columns: minmax(420px, 1.2fr) 150px minmax(300px, .8fr);
}

.route-row:nth-child(even) .route-number {
  grid-column: 2;
}

.route-row:nth-child(even) .route-copy {
  grid-column: 3;
}

.decision-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 38px 44px;
  background: var(--red);
  color: var(--white);
}

.decision-band h3,
.decision-band p {
  margin: 0;
}

.decision-band h3 {
  color: var(--white);
  font-size: 26px;
  font-weight: 400;
}

.decision-band p {
  margin-top: 7px;
  color: rgba(255, 255, 255, .78);
}

.decision-band .button-link {
  background: var(--white);
}

@keyframes conceptPan {
  from { transform: translateX(0); }
  to { transform: translateX(-13%); }
}

@keyframes heroInteriorPan {
  from { transform: translateX(0); }
  to { transform: translateX(-7.4%); }
}

@media (max-width: 1050px) {
  .hero-copy h1 {
    font-size: 54px;
  }

  .section-intro,
  .faq-layout {
    gap: 45px;
  }

  .journey-shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .journey-panel,
  .product-proof {
    grid-template-columns: 1fr;
  }

  .journey-media {
    min-height: 290px;
  }

  .product-image {
    min-height: 420px;
  }

  .route-row,
  .route-row:nth-child(even) {
    grid-template-columns: 100px 1fr 1fr;
  }

  .route-row:nth-child(even) .route-visual {
    grid-column: 1;
  }

  .route-row:nth-child(even) .route-number {
    grid-column: 2;
  }

  .route-row:nth-child(even) .route-copy {
    grid-column: 3;
  }
}

@media (max-width: 820px) {
  .concept-header {
    min-height: 82px;
    padding: 0 22px;
  }

  .concept-logo img {
    width: 168px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .concept-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    background: #f8fafa;
  }

  .concept-nav.open {
    display: grid;
  }

  .concept-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    border-top: 1px solid var(--control);
  }

  .concept-nav .nav-cta {
    justify-content: flex-start;
  }

  .concept-market-switcher {
    align-self: flex-start;
    justify-self: start;
    margin: 4px 24px;
  }

  .concept-market-switcher a {
    min-width: 44px;
    min-height: 40px;
    justify-content: center;
    padding: 0 10px;
    border-top: 0;
  }

  .concept-hero,
  .hero-inner,
  .editorial-home .concept-hero,
  .editorial-home .hero-inner {
    min-height: 610px;
  }

  .hero-inner {
    width: calc(100% - 44px);
    padding: 58px 0;
  }

  .hero-copy,
  .editorial-home .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .concept-section {
    padding: 70px 22px;
  }

  .first-tour-flow {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .first-tour-stage {
    min-width: 0;
    min-height: 0;
  }

  .first-tour-flow .first-tour-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    align-items: start;
  }

  .first-tour-route {
    padding: 34px 24px;
  }

  .first-tour-visual {
    min-height: 320px;
  }

  .section-intro,
  .section-heading,
  .pricing-head,
  .faq-layout {
    grid-template-columns: 1fr;
    display: grid;
    gap: 22px;
    align-items: start;
  }

  .section-intro h2,
  .section-heading h2,
  .faq-intro h2,
  .pricing-head h2,
  .product-copy h2 {
    font-size: 36px;
  }

  .click-route,
  .price-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .first-tour-heading h2 {
    font-size: 34px;
  }

  .first-tour-flow .first-tour-panel {
    padding: 34px 24px;
  }

  .studio-split .first-tour-panel.active {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    min-height: 0;
    padding: 0;
  }

  .first-tour-flow.studio-split,
  .studio-split .first-tour-stage {
    height: auto;
    min-height: 0;
  }

  .studio-split .first-tour-visual {
    min-height: 360px;
  }

  .studio-split .first-tour-copy {
    --studio-copy-gutter: 24px;
    min-height: 250px;
    padding: 36px var(--studio-copy-gutter);
  }

  .click-route article,
  .price-plan,
  .journal-item {
    border-right: 0;
    border-bottom: 1px solid var(--control);
  }

  .journey-shell {
    grid-template-columns: 1fr;
  }

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

  .journey-tab {
    grid-template-columns: 1fr;
    min-height: 76px;
    justify-items: center;
    gap: 3px;
    padding: 10px 6px;
    text-align: center;
  }

  .first-tour-progress .first-tour-step {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 64px;
    justify-items: stretch;
    gap: 15px;
    padding: 8px 0;
    text-align: left;
  }

  .journey-stage {
    padding: 28px 20px;
  }

  .journey-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .onboarding-result,
  .decision-band {
    grid-template-columns: 1fr;
  }

  .product-copy {
    padding: 42px 24px;
  }

  .journal-item,
  .journal-item:first-child,
  .journal-item:last-child {
    padding: 24px 0;
  }

  .route-row,
  .route-row:nth-child(even) {
    grid-template-columns: 68px 1fr;
  }

  .route-number,
  .route-row:nth-child(even) .route-number {
    grid-column: 1;
    grid-row: 1;
  }

  .route-copy,
  .route-row:nth-child(even) .route-copy {
    grid-column: 2;
    grid-row: 1;
    padding: 32px 24px;
  }

  .route-visual,
  .route-row:nth-child(even) .route-visual {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 280px;
    order: initial;
  }

  .concept-footer {
    grid-template-columns: 1fr;
    padding: 35px 22px;
  }

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

  .contact-reveal-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-message,
  .contact-form-actions {
    grid-column: auto;
  }
}

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

  .hero-panorama > img {
    animation: none;
  }

  .motion-demo .demo-cursor,
  .motion-demo .demo-click {
    animation: none;
  }

  .contact-reveal,
  .contact-reveal-inner {
    transition: none;
  }

}
