:root {
  --color-orange: #f27405;
  --color-orange-dark: #c45d04;
  --color-cyan: #68a1fc;
  --color-bg: #2a2830;
  --color-header: rgba(219, 219, 219, 0.2);
  --color-header-scrolled: rgba(219, 219, 219, 0.3);
  --color-header-border: rgba(255, 255, 255, 0.7);
  --color-header-border-scrolled: rgba(255, 255, 255, 0.35);
  --header-blur: 3px;
  --header-blur-scrolled: 8px;
  --color-cta: rgba(242, 116, 5, 0.6);
  --color-cta-border: rgba(242, 116, 5, 1);
  --color-notFullWhite: rgba(255, 255, 255, 0.75);
  --page-bg: #18161c;
  --light-section-bg: #ffffff;
  --light-section-overlay: linear-gradient(180deg, rgba(102, 48, 0, 0.12), rgba(24, 22, 28, 0.35));
  --font-sans: "Google Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "IBM Plex Mono", "Courier New", monospace;
  --spotlight-radius: 210px;
  --header-height: 60px;
  --header-top: 0.9rem;
  --page-gutter: clamp(0.9rem, 3.6vw, 2.25rem);
  --header-padding-x: 1rem;
  --content-inset-x: calc(var(--page-gutter) + var(--header-padding-x));
  --section-padding-y: clamp(3.6rem, 8vw, 6rem);
  --page-chrome-padding-y: clamp(3.6rem, 8vw, 6rem);
  --content-max-width: clamp(1080px, 66vw, 1420px);
  --content-width: min(var(--content-max-width), calc(100% - 2 * var(--content-inset-x)));
  --header-scrolled-inset: max(
    var(--page-gutter),
    calc((100% - var(--content-max-width)) / 2 - var(--header-padding-x))
  );
  --interactive-scale-hover: 1.02;
  --interactive-scale-active: 0.98;
  --interactive-transition: background 0.2s, border-color 0.2s, color 0.2s, fill 0.2s, transform 0.15s;

  --plan-zoom: 1.2;
  --plan-focus-x: 60%;
  --plan-focus-y: 60%;

  --skyline-profile-height: 70px;
  --skyline-tooth-width: 66;
  --skyline-building-teeth: 1;
  --skyline-gap-width: 60;
  --skyline-indent-top: 15;
  --skyline-base-bottom: 40;
  --skyline-bottom-offsets: -12, 10, -14, 10, -6, 9, -4, 13, -7, 10;
  --skyline-radius: 14;
  --skyline-gap-mid-y: calc((var(--skyline-indent-top) + var(--skyline-base-bottom)) * 0.5px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--page-bg);
  color: #fff;
  overflow-x: hidden;
}

/* ── Hero shell ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  background: var(--page-bg);
}

/* ── Plan stage (interactive background) ── */
.hero-plan-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--skyline-profile-height)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--skyline-profile-height)),
    transparent 100%
  );
}

.plan-crop-frame {
  position: absolute;
  inset: 0;
  transform: scale(var(--plan-zoom));
  transform-origin: var(--plan-focus-x) var(--plan-focus-y);
}

.plan-crop-frame > svg,
.plan-crop-frame .plan-reveal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-plan-stage svg {
  display: block;
}

.plan-base {
  z-index: 1;
  opacity: 0.35;
}

.plan-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.plan-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  overflow: hidden;
  contain: paint;
  will-change: transform;
  -webkit-mask-image: radial-gradient(circle closest-side, #000, transparent);
  mask-image: radial-gradient(circle closest-side, #000, transparent);
}

.plan-spotlight .plan-reveal-svg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  will-change: transform;
}

.hero:not(.hero--spotlight-active) .plan-reveal {
  opacity: 0;
}

.hero.hero--spotlight-active .plan-reveal {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero.hero--spotlight-active.hero--spotlight-on .plan-reveal {
  opacity: 1;
}

.hero.hero--spotlight-wander .plan-reveal {
  opacity: 1;
}

.hero.hero--spotlight-wander .plan-hotspot {
  pointer-events: none;
}

.plan-reveal-svg path {
  fill-opacity: 0.12;
}

.plan-hotspots {
  z-index: 3;
  pointer-events: none;
}

.plan-hotspot {
  pointer-events: auto;
  outline: none;
}

.hero .plan-hotspot:focus-visible {
  fill: rgba(104, 161, 252, 0.12);
}

/* ── Tooltip ── */
.plan-tooltip {
  position: fixed;
  z-index: 20;
  box-sizing: border-box;
  min-width: 160px;
  width: max-content;
  max-width: 22rem;
  overflow-wrap: break-word;
  padding: 10px 14px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  line-height: 1.35;
  color: #fff;
  pointer-events: none;
  transform: translate(12px, 12px);
  background: var(--color-header);
  border: 0.5px solid var(--color-header-border);
  border-radius: 14px;
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
}

.plan-tooltip[hidden] {
  display: none;
}

.plan-tooltip__title {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  text-decoration: underline;
  text-decoration-color: var(--tooltip-accent, currentColor);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.plan-tooltip__label,
.plan-tooltip__subtitle {
  display: block;
  opacity: 0.75;
  font-size: 0.7rem;
}

.plan-tooltip__current {
  margin-top: 6px;
}

.plan-tooltip__current[hidden] {
  display: none;
}

.plan-tooltip__facts {
  display: grid;
  gap: 0.4rem;
  margin: 0.55rem 0 0;
}

.plan-tooltip__fact {
  margin: 0;
}

.plan-tooltip__fact dt {
  opacity: 0.75;
  font-size: 0.7rem;
}

.plan-tooltip__fact dd {
  margin: 0.12rem 0 0;
  font-size: 0.7rem;
  line-height: 1.4;
  white-space: normal;
  opacity: 0.88;
}

.plan-tooltip__subtitle {
  margin-top: 8px;
}

.plan-tooltip__subtitle[hidden] {
  display: none;
}

.plan-tooltip__steps {
  margin: 4px 0 0;
  padding: 0 0 0 1.15em;
  list-style: disc;
  opacity: 0.85;
  font-size: 0.7rem;
}

.plan-tooltip__steps[hidden] {
  display: none;
}

.plan-tooltip__steps li {
  margin: 2px 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.plan-tooltip__step-date {
  white-space: nowrap;
  opacity: 0.7;
}

.plan-tooltip__step-arrow {
  display: inline-block;
  width: 0.72em;
  height: 0.55em;
  margin: 0 0.12em;
  vertical-align: middle;
  position: relative;
}

.plan-tooltip__step-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0.2em;
  top: 50%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.plan-tooltip__step-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  border-top: 0.16em solid transparent;
  border-bottom: 0.16em solid transparent;
  border-left: 0.22em solid currentColor;
  transform: translateY(-50%);
}

/* ── UI overlay (non-blocking) ── */
.hero-ui {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr;
  pointer-events: none;
  padding-top: calc(var(--header-top) + var(--header-height));
}

.hero-ui a,
.hero-ui button {
  pointer-events: auto;
}

/* ── Header / nav ── */
.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  position: fixed;
  top: var(--header-top);
  left: var(--page-gutter);
  right: var(--page-gutter);
  margin: 0;
  padding: var(--header-padding-x);
  min-height: var(--header-height);
  background: transparent;
  border: 0.5px solid var(--color-header-border);
  border-radius: 16px;
  isolation: isolate;
  overflow: visible;
  z-index: 300;
  transition:
    border-color 0.3s ease,
    left 0.35s ease,
    right 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--color-header);
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
  pointer-events: none;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--color-header-border-scrolled);
}

.site-header.is-scrolled::before {
  background: var(--color-header-scrolled);
  backdrop-filter: blur(var(--header-blur-scrolled));
  -webkit-backdrop-filter: blur(var(--header-blur-scrolled));
}

.site-header.is-on-light {
  border-color: color-mix(in srgb, var(--page-bg) 70%, transparent);
}

.site-header.is-on-light::before {
  background: color-mix(in srgb, var(--page-bg) 20%, transparent);
}

.site-header.is-on-light.is-scrolled {
  border-color: color-mix(in srgb, var(--page-bg) 35%, transparent);
}

.site-header.is-on-light.is-scrolled::before {
  background: color-mix(in srgb, var(--page-bg) 30%, transparent);
}

.site-header.is-compact,
.page .site-header {
  left: var(--header-scrolled-inset);
  right: var(--header-scrolled-inset);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
  text-decoration: none;
}

.site-logo__img {
  margin-top: 0;
  display: block;
  height: clamp(25px, 2.88vw, 32px);
  width: auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.675rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0.25rem;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.315rem 0.75rem;
  border: 0.5px solid transparent;
  border-radius: 9px;
  color: var(--color-notFullWhite);
  font-family: var(--font-sans);
  font-size: 0.81rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--interactive-transition);
}

.site-nav__link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  transform: scale(var(--interactive-scale-hover));
}

.site-nav__link:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(var(--interactive-scale-active));
}

.site-nav__link--active {
  background: var(--color-cta);
  border-color: var(--color-cta-border);
  color: #fff;
}

.site-nav__link--active:hover {
  background: rgba(242, 116, 5, 0.85);
  border-color: rgba(255, 255, 255, 0.85);
  transform: scale(var(--interactive-scale-hover));
}

.site-nav__link--active:active {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: scale(var(--interactive-scale-active));
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.315rem;
}

.lang-switch__btn {
  border: 0.5px solid transparent;
  background: transparent;
  color: var(--color-notFullWhite);
  font-family: var(--font-sans);
  font-size: 0.81rem;
  font-weight: 500;
  padding: 0.315rem 0.585rem;
  border-radius: 9px;
  cursor: pointer;
  transition: var(--interactive-transition);
}

.lang-switch__btn--active {
  background: var(--color-cta);
  border-color: var(--color-cta-border);
  color: #fff;
}

.lang-switch__btn:hover:not(.lang-switch__btn--active) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  transform: scale(var(--interactive-scale-hover));
}

.lang-switch__btn:active:not(.lang-switch__btn--active) {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(var(--interactive-scale-active));
}

.lang-switch__btn--active:hover {
  background: rgba(242, 116, 5, 0.85);
  border-color: rgba(255, 255, 255, 0.85);
  transform: scale(var(--interactive-scale-hover));
}

.lang-switch__btn--active:active {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: scale(var(--interactive-scale-active));
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: var(--interactive-transition);
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(var(--interactive-scale-hover));
}

.menu-btn:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(var(--interactive-scale-active));
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1px;
}

/* ── Headline + CTA ── */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.35rem;
  padding: 0 var(--content-inset-x) var(--skyline-profile-height);
  max-width: 100%;
  min-width: 0;
}

.hero-headline {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  font-family: var(--font-accent);
  font-size: clamp(1.575rem, 4.05vw, 2.7rem);
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

@property --cta-spot {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.hero-copy__lede {
  font-size: 0.85rem;
  max-width: 100%;
  min-width: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-copy__highlight {
  color: var(--color-notFullWhite);
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.765rem 1.125rem;
  background: var(--color-cta);
  border: 0.5px solid var(--color-cta-border);
  border-radius: 16px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--interactive-transition);
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.35px;
  pointer-events: none;
  opacity: 0;
  background: conic-gradient(
    from var(--cta-spot),
    transparent 0deg,
    transparent 300deg,
    rgba(242, 116, 5, 0.15) 318deg,
    rgba(255, 196, 92, 0.7) 338deg,
    #fff 350deg,
    rgba(255, 220, 150, 0.85) 356deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: cta-spot 10s linear 5s infinite;
}

@keyframes cta-spot {
  0% {
    --cta-spot: 0deg;
    opacity: 1;
  }
  25% {
    --cta-spot: 360deg;
    opacity: 1;
  }
  26%,
  100% {
    --cta-spot: 360deg;
    opacity: 0;
  }
}

.hero-cta:hover {
  background: rgba(242, 116, 5, 0.75);
  border-color: rgba(255, 255, 255, 0.85);
  transform: scale(var(--interactive-scale-hover));
}

.hero-cta:active {
  background: rgba(242, 116, 5, 0.9);
  border-color: var(--color-orange-dark);
  transform: scale(var(--interactive-scale-active));
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta::before {
    animation: none;
  }

  .site-header {
    transition: none;
  }

  .site-nav {
    transition: none;
  }
}

/* ── Skyline transition section ── */
.skyline-section {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: calc(-1 * var(--skyline-profile-height));
  z-index: 3;
  pointer-events: none;
}

.skyline-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--skyline-profile-height);
  bottom: 0;
  background: var(--page-bg);
}

.skyline-section__frost {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--skyline-profile-height);
  pointer-events: none;
  clip-path: inset(100%);
  -webkit-clip-path: inset(100%);
}

@supports ((backdrop-filter: blur(3px)) or (-webkit-backdrop-filter: blur(3px))) {
  .skyline-section__frost {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
}

.skyline-section__skyline {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#skyline-path {
  fill: var(--color-cta);
  pointer-events: fill;
}

#skyline-stroke {
  fill: none;
  stroke: var(--color-cta-border);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.skyline-section__inner {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--skyline-base-bottom) * 1px) 0 0;
  pointer-events: none;
}

.skyline-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  width: var(--content-width);
  margin: 0 auto;
  pointer-events: auto;
}

.story-point {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.story-point__kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bg);
}

.story-point__title {
  margin: 0 0 0.7rem;
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.story-point__copy {
  margin: 0 0 1.15rem;
  max-width: 28rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-notFullWhite);
}

.story-point__media {
  margin: auto 0 0;
  width: 100%;
}

.story-point__frame {
  width: 100%;
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--page-bg);
  border: 0.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  overflow: hidden;
}

.story-point__frame:empty::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 420 / 260;
}

.story-point__frame svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 420 / 260;
}

.product-story .story-point__frame {
  padding: 0;
}

.product-story .story-point__frame:not(:empty) {
  position: relative;
  aspect-ratio: 420 / 260;
}

.product-story .story-point__frame svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 120%;
  height: auto;
  aspect-ratio: 374 / 212;
}

.product-story .story-point__coord-stage {
  position: absolute;
  width: 108%;
  aspect-ratio: 375 / 217;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-story .story-point__frame--coord svg {
  inset: 0;
  top: 0;
  right: auto;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.story-point__plan--coord .story-point__coord-tooltip-fo {
  overflow: visible;
}

.story-point__coord-tooltip.plan-tooltip {
  position: relative;
  left: auto;
  top: auto;
  z-index: auto;
  transform: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 10px 12px;
  border-radius: 8px;
  overflow: hidden;
  font-size: 7px;
  line-height: 1.35;
}

.story-point__coord-tooltip .plan-tooltip__title {
  margin-bottom: 2px;
  font-size: 7px;
  text-decoration-thickness: 1px;
}

.story-point__coord-tooltip .plan-tooltip__label,
.story-point__coord-tooltip .plan-tooltip__subtitle,
.story-point__coord-tooltip .plan-tooltip__fact dt,
.story-point__coord-tooltip .plan-tooltip__fact dd,
.story-point__coord-tooltip .plan-tooltip__steps {
  font-size: 6.5px;
}

.story-point__coord-tooltip .plan-tooltip__current {
  margin-top: 4px;
}

.story-point__coord-tooltip .plan-tooltip__subtitle {
  margin-top: 5px;
}

.story-point__coord-tooltip .plan-tooltip__steps {
  margin-top: 2px;
  padding-left: 1em;
}

.story-point__coord-tooltip .plan-tooltip__steps li {
  margin: 1px 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.story-point__coord-tooltip .plan-tooltip__facts {
  gap: 0.28em;
  margin-top: 0.28em;
}

.story-point__coord-tooltip .plan-tooltip__fact dd {
  margin-top: 0.08em;
}

.story-point__coord-tooltip .plan-tooltip__current + .plan-tooltip__facts {
  margin-top: 0.32em;
}

.story-split {
  width: 1px;
  margin: 0.15rem 0;
  background: rgba(255, 255, 255, 0.35);
}

.pitch-split {
  display: none;
}

/* ── Pitch / sales section ── */
.pitch-section {
  position: relative;
  z-index: 4;
  padding: var(--section-padding-y) 0;
  background: var(--light-section-bg);
  color: var(--page-bg);
}

.pitch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--light-section-overlay);
}

.pitch-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
  width: var(--content-width);
  margin: 0 auto;
}

.pitch-section__kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.pitch-section__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--page-bg);
}

.pitch-section__lead {
  margin: 0 0 1.4rem;
  max-width: 32rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--page-bg);
  opacity: 0.72;
}

.pitch-section .hero-cta {
  background: color-mix(in srgb, var(--color-orange) 65%, var(--page-bg));
}

.pitch-section .hero-cta:hover {
  background: color-mix(in srgb, var(--color-orange) 80%, var(--page-bg));
}

.pitch-section .hero-cta:active {
  background: color-mix(in srgb, var(--color-orange) 90%, var(--page-bg));
}

.pitch-section__points {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0;
  padding: 0.2rem 0 0.2rem 1.6rem;
  list-style: none;
  border-left: 1px solid rgba(24, 22, 28, 0.16);
}

.pitch-section__point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.pitch-section__mark {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.55;
  color: var(--color-orange);
}

.pitch-section__point-title {
  margin: 0 0 0.28rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--page-bg);
}

.pitch-section__point-copy {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.25;
  color: var(--page-bg);
  opacity: 0.72;
}

/* ── Site footer ── */
.site-footer {
  position: relative;
  z-index: 4;
  padding: 2.2rem 0 1.8rem;
  background: var(--page-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page > .skyline-section + .site-footer {
  z-index: 6;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
  gap: 1.8rem 1.4rem;
  width: var(--content-width);
  margin: 0 auto;
}

.site-footer__tagline {
  margin: 0.85rem 0 0;
  width: min(20rem, 34ch);
  max-width: 100%;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  text-wrap: balance;
}

html[lang="fr"] .site-footer__tagline {
  width: min(24rem, 44ch);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42rem;
}

.site-footer__col--explore,
.site-footer__col--contact {
  align-items: flex-end;
  text-align: right;
}

.site-footer__col--explore {
  grid-column: 3;
}

.site-footer__col--contact {
  grid-column: 4;
}

.site-footer__heading {
  margin: 0 0 0.45rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.site-footer__link {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-notFullWhite);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: var(--interactive-transition);
}

.site-footer__link:hover {
  color: #fff;
}

.site-footer__link:active {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.site-footer__social-link {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--color-notFullWhite);
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: var(--interactive-transition);
}

.site-footer__social-link svg {
  display: block;
  width: 15px;
  height: 15px;
}

.site-footer__social-link[data-contact-open] svg {
  width: 19px;
  height: 19px;
}

.site-footer__social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(var(--interactive-scale-hover));
}

.site-footer__social-link:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(var(--interactive-scale-active));
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.55rem 1.4rem;
  width: var(--content-width);
  margin: 1.55rem auto 0;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1.4rem;
}

.site-footer__legal-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: var(--interactive-transition);
}

.site-footer__legal-link:hover {
  color: #fff;
}

.site-footer__legal-link:active {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Contact dialog ── */
.contact-dialog {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem var(--page-gutter);
}

.contact-dialog[hidden] {
  display: none;
}

.contact-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 28, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(34rem, 100%);
  max-height: min(40rem, calc(100dvh - 2.4rem));
  overflow: auto;
  padding: 1.55rem 1.45rem 1.4rem;
  background: rgba(42, 40, 48, 0.92);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  animation: contact-dialog-in 0.22s ease-out;
}

.contact-dialog__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--color-notFullWhite);
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--interactive-transition);
}

.contact-dialog__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(var(--interactive-scale-hover));
}

.contact-dialog__close:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(var(--interactive-scale-active));
}

.contact-dialog__close svg {
  display: block;
  width: 14px;
  height: 14px;
}

.contact-dialog__kicker {
  margin: 0 0 0.4rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.contact-dialog__title {
  margin: 0 2.2rem 0.45rem 0;
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.contact-dialog__lead {
  margin: 0 0 1.2rem;
  max-width: 42ch;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.contact-dialog__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-dialog__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-dialog__form label {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-width: 0;
}

.contact-dialog__form label span {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-notFullWhite);
}

.contact-dialog__form input,
.contact-dialog__form textarea {
  width: 100%;
  margin: 0;
  padding: 0.72rem 0.8rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.contact-dialog__form textarea {
  min-height: 7.2rem;
  resize: vertical;
}

.contact-dialog__form input::placeholder,
.contact-dialog__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-dialog__form input:hover,
.contact-dialog__form textarea:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-dialog__form input:focus,
.contact-dialog__form textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-cta-border);
  box-shadow: 0 0 0 3px rgba(242, 116, 5, 0.18);
}

.contact-dialog__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-dialog__status {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.contact-dialog__status--error {
  color: #ffb4a8;
}

.contact-dialog__submit {
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.68rem 1.1rem;
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.contact-dialog__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.contact-dialog__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.35rem 0 0.15rem;
}

.contact-dialog__success[hidden] {
  display: none;
}

.contact-dialog__success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--color-cta);
  border: 0.5px solid var(--color-cta-border);
  border-radius: 9px;
}

.contact-dialog__success-mark svg {
  display: block;
  width: 16px;
  height: 16px;
}

.contact-dialog__success p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-notFullWhite);
}

body.contact-dialog-open {
  overflow: hidden;
}

@keyframes contact-dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-dialog__panel {
    animation: none;
  }
}

@media (max-width: 560px) {
  .contact-dialog {
    align-items: flex-end;
    padding: 0;
  }

  .contact-dialog__panel {
    width: 100%;
    max-height: min(92dvh, 100%);
    border-radius: 16px 16px 0 0;
    padding: 1.35rem 1.1rem 1.25rem;
  }

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

  .contact-dialog__submit {
    width: 100%;
  }
}

/* ── Inner pages (Product / About) ── */
.page {
  --section-padding-y: clamp(2.6rem, 5.5vw, 4.25rem);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--header-top) + var(--header-height));
}

.page > .pitch-section {
  flex: 0 0 auto;
  padding-bottom: calc(var(--section-padding-y) / 2);
}

.page > .site-header + .pitch-section {
  margin-top: calc(-1 * (var(--header-top) + var(--header-height)));
  padding-top: calc(var(--header-top) + var(--header-height) + var(--page-chrome-padding-y));
}

.page > .page-intro {
  width: var(--content-width);
  max-width: none;
  margin: 0 auto;
  padding: var(--section-padding-y) 0 calc(var(--section-padding-y) / 2);
}

.page > .page-intro .page-lead {
  max-width: none;
}

.page > .page-intro + .section-rule + .pitch-section {
  padding-top: calc(var(--section-padding-y) / 2);
}

.page > .pitch-section:has(+ .skyline-section) {
  padding-bottom: calc(
    var(--section-padding-y)
    + var(--skyline-profile-height)
    - var(--skyline-gap-mid-y)
  );
}

.problem-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: stretch;
  width: var(--content-width);
  margin: 0 auto;
}

.problem-section .problem-section__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.problem-section {
  background: var(--page-bg);
  color: #fff;
}

.problem-section::before {
  background: none;
}

.problem-section .pitch-section__title,
.problem-section .pitch-section__lead,
.problem-section .pitch-section__point-title,
.problem-section .pitch-section__point-copy,
.problem-section__source {
  color: #fff;
}

.problem-section__split {
  width: 1px;
  margin: 0.15rem 0;
  background: rgba(255, 255, 255, 0.18);
}

.problem-section .pitch-section__copy,
.problem-section__points {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-section__points {
  padding: 0.2rem 0;
  border-left: none;
}

.problem-section__source {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.3;
  color: #fff;
  opacity: 0.62;
}

.section-rule {
  position: relative;
  z-index: 5;
  flex: none;
  width: var(--content-width);
  height: 1px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
}

.page-main {
  display: flex;
  flex-direction: column;
  gap: calc(var(--section-padding-y) / 2);
  flex: 1 0 auto;
  width: var(--content-width);
  margin: 0 auto;
  padding: calc(var(--section-padding-y) / 2) 0
    calc(var(--section-padding-y) + var(--skyline-profile-height) - var(--skyline-gap-mid-y));
}

.page > .pitch-section ~ .page-main {
  position: relative;
  z-index: 4;
  width: 100%;
  margin: 0;
  padding: calc(var(--section-padding-y) / 2)
    max(var(--content-inset-x), calc((100% - var(--content-max-width)) / 2))
    calc(var(--section-padding-y) + var(--skyline-profile-height) - var(--skyline-gap-mid-y));
  background: var(--page-bg);
  color: #fff;
}

.page > .pitch-section ~ .page-main .product-method {
  margin-bottom: 0;
}

.page-main .pitch-section__title {
  color: #fff;
}

.page .skyline-section {
  z-index: 5;
}

.page .skyline-section__inner {
  justify-content: flex-start;
  padding: calc(var(--skyline-gap-mid-y) + var(--section-padding-y)) 0
    var(--section-padding-y);
}

.page .skyline-section--about {
  min-height: 0;
}

.page .skyline-section--about .skyline-section__inner {
  flex: none;
}

.product-story-intro {
  display: flex;
  flex-direction: column;
  gap: var(--section-padding-y);
  width: var(--content-width);
  margin: 0 auto;
  pointer-events: auto;
}

.product-story-intro .page-intro {
  margin-bottom: 0;
}

.product-story-intro .product-story {
  width: 100%;
}

.skyline-section .pitch-section__kicker {
  color: var(--color-bg);
}

.product-story .content-copy .pitch-section__kicker {
  margin: 0 0 0.55rem;
  max-width: none;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-bg);
}

.skyline-section .pitch-section__title {
  color: #fff;
}

.product-story {
  display: flex;
  flex-direction: column;
  gap: var(--section-padding-y);
  width: var(--content-width);
  margin: 0 auto;
  pointer-events: auto;
}

.product-story .content-block {
  margin: 0;
}

.product-story .content-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #fff;
}

.product-story .content-copy p,
.product-story .story-point__copy {
  margin: 0;
  max-width: 28rem;
  line-height: 1.55;
  color: var(--color-notFullWhite);
}

.product-story .content-copy__link {
  color: inherit;
  text-decoration: underline;
}

.product-story .content-copy__link:hover {
  color: #fff;
}

.product-story .content-copy p + p,
.product-story .story-point__copy + .story-point__copy {
  margin-top: 0.9rem;
}

.product-story .content-media__frame {
  background: var(--page-bg);
}

.partnership-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2.4vw, 1.6rem);
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.partnership-lockup__logo {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  object-fit: contain;
}

.partnership-lockup__logo--optml {
  width: auto;
  height: 22%;
  max-width: 42%;
  mix-blend-mode: screen;
}

.content-media__frame .partnership-lockup .partnership-lockup__logo--centech {
  width: auto;
  height: 30%;
  max-width: 40%;
  aspect-ratio: 65 / 40;
}

.content-media__frame .partnership-lockup .partnership-lockup__logo--centech path {
  fill: #fff;
}

.content-media__frame .partnership-lockup .partnership-lockup__mark {
  flex: none;
  width: 0.92rem;
  height: 0.92rem;
  color: rgba(255, 255, 255, 0.42);
}

.skyline-section .hero-cta {
  background: var(--page-bg);
  border-color: rgba(255, 255, 255, 0.45);
}

.skyline-section .hero-cta:hover {
  background: color-mix(in srgb, var(--page-bg) 72%, #000);
}

.skyline-section .hero-cta:active {
  background: #000;
}

.product-cta-section {
  position: relative;
  z-index: 5;
  padding: var(--section-padding-y) 0;
  background: var(--light-section-bg);
  color: var(--page-bg);
}

.product-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--light-section-overlay);
}

.product-cta-section .problem-section__inner {
  position: relative;
  z-index: 1;
}

.product-cta-section .pitch-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.product-cta-section .pitch-section__title {
  margin-bottom: 1.15rem;
}

.product-cta-section .pitch-section__lead {
  display: flex;
  align-items: center;
  margin: 0;
  max-width: none;
}

.product-cta-section .problem-section__split {
  background: rgba(24, 22, 28, 0.16);
}

.product-cta-section .hero-cta {
  background: color-mix(in srgb, var(--color-orange) 65%, var(--page-bg));
}

.product-cta-section .hero-cta:hover {
  background: color-mix(in srgb, var(--color-orange) 80%, var(--page-bg));
}

.product-cta-section .hero-cta:active {
  background: color-mix(in srgb, var(--color-orange) 90%, var(--page-bg));
}

.page-intro {
  max-width: 38rem;
  margin-bottom: var(--section-padding-y);
}

.page-kicker {
  margin: 0 0 0.7rem;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.page-title {
  margin: 0 0 1rem;
  font-family: var(--font-accent);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
}

.page-lead,
.content-copy p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.content-copy p + p {
  margin-top: 0.9rem;
}

.legal-body {
  flex: 1 0 auto;
  width: var(--content-width);
  margin: 0 auto;
  padding: calc(var(--section-padding-y) / 2) 0 var(--page-chrome-padding-y);
}

.legal-body > * {
  max-width: 42rem;
}

.legal-body h2 {
  margin: 2.1rem 0 0.7rem;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}

.legal-body p,
.legal-body li {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.legal-body > p:first-child {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.legal-body p + p,
.legal-body ul {
  margin-top: 0.85rem;
}

.legal-body ul {
  padding-left: 1.2rem;
}

.legal-body li + li {
  margin-top: 0.35rem;
}

.legal-body a {
  color: var(--color-cyan);
  text-decoration: none;
  transition: var(--interactive-transition);
}

.legal-body a:hover {
  color: #fff;
}

/* ── Product method slideshow ── */
.product-intro {
  max-width: none;
  margin-bottom: 0;
}

.product-intro .pitch-section__title {
  margin-bottom: 0.85rem;
}

.product-method {
  margin-bottom: 0;
}

.product-intro > .page-lead {
  max-width: none;
  margin-bottom: 0;
}

.plan-slideshow {
  width: 100%;
}

.plan-slideshow__frame {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(11rem, 1fr);
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-height: clamp(32rem, 68vh, 46rem);
  padding: 0;
  background: var(--page-bg);
  border: 0.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  overflow: hidden;
}

.plan-slideshow__stage {
  position: relative;
  min-width: 0;
  min-height: clamp(22rem, 52vh, 36rem);
  height: 100%;
  overflow: hidden;
}

.plan-slideshow__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.plan-slideshow__viewport.is-panning {
  cursor: grabbing;
}

.plan-slideshow__canvas,
.plan-slideshow__slide {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
}

.plan-slideshow__slide[hidden] {
  display: none;
}

.product-plan {
  display: block;
  width: 100%;
  height: 100%;
}

.plan-slideshow__canvas .product-plan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-plan__chrome {
  pointer-events: none;
}

.product-plan__as-of {
  fill: #fff;
  font-family: var(--font-accent);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.product-plan__zone-label {
  font-family: var(--font-accent);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-anchor: middle;
  paint-order: stroke fill;
  stroke: #fff;
  stroke-width: 0.25px;
  stroke-linejoin: round;
  stroke-linecap: round;
  pointer-events: none;
  user-select: none;
}

.plan-slideshow .plan-hotspot {
  fill-opacity: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: fill-opacity 0.15s ease;
}

.plan-slideshow .plan-hotspot:hover,
.plan-slideshow .plan-hotspot:focus-visible {
  fill-opacity: 0.12;
}

.plan-slideshow .plan-hotspot.is-selected,
.plan-slideshow .plan-hotspot.is-selected:hover,
.plan-slideshow .plan-hotspot.is-selected:focus-visible {
  fill-opacity: 0.32;
}

.plan-slideshow .plan-hotspot:focus-visible {
  outline: 1px solid rgba(104, 161, 252, 0.75);
  outline-offset: -1px;
}

.plan-slideshow__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 5.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: var(--interactive-transition);
}

.plan-slideshow__arrow--prev {
  left: 0;
}

.plan-slideshow__arrow--next {
  right: 0;
}

.plan-slideshow__arrow svg {
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.72;
  transition: opacity 0.2s, transform 0.15s;
}

.plan-slideshow__arrow:hover svg,
.plan-slideshow__arrow:focus-visible svg {
  opacity: 1;
  transform: scale(1.14);
}

.plan-slideshow__arrow:active svg {
  opacity: 1;
  transform: scale(var(--interactive-scale-active));
}

.plan-slideshow__arrow:focus-visible {
  outline: none;
}

.plan-slideshow__zoom-hint {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  z-index: 2;
  margin: 0;
  font-family: var(--font-accent);
  font-size: 0.62rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.plan-slideshow__info {
  --plan-info-pad: clamp(0.5rem, 2vw, 1rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-accent);
  color: #fff;
}

.plan-slideshow__plan-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: var(--plan-info-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.plan-slideshow__meta-label {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.plan-slideshow__work-date {
  margin: 0.18rem 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-orange);
  display: grid;
  justify-items: start;
  align-items: center;
  overflow: hidden;
  line-height: 1.45;
  height: 1.45em;
  flex-shrink: 0;
}

.plan-slideshow__work-date-value {
  grid-area: 1 / 1;
  display: block;
  white-space: nowrap;
}

.plan-slideshow__work-date.is-flash {
  animation: work-date-flash 0.55s ease;
}

.plan-slideshow__work-date-value.is-out-up {
  animation: work-date-out-up 0.38s ease forwards;
}

.plan-slideshow__work-date-value.is-in-up {
  animation: work-date-in-up 0.38s ease;
}

.plan-slideshow__work-date-value.is-out-down {
  animation: work-date-out-down 0.38s ease forwards;
}

.plan-slideshow__work-date-value.is-in-down {
  animation: work-date-in-down 0.38s ease;
}

@keyframes work-date-flash {
  0%,
  100% {
    color: var(--color-orange);
    text-shadow: none;
  }
  40% {
    color: #ffc078;
    text-shadow: 0 0 10px rgba(242, 116, 5, 0.7), 0 0 22px rgba(242, 116, 5, 0.35);
  }
}

@keyframes work-date-out-up {
  to {
    opacity: 0;
    transform: translateY(-110%);
  }
}

@keyframes work-date-in-up {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes work-date-out-down {
  to {
    opacity: 0;
    transform: translateY(110%);
  }
}

@keyframes work-date-in-down {
  from {
    opacity: 0;
    transform: translateY(-110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-slideshow__work-date.is-flash,
  .plan-slideshow__work-date-value.is-out-up,
  .plan-slideshow__work-date-value.is-in-up,
  .plan-slideshow__work-date-value.is-out-down,
  .plan-slideshow__work-date-value.is-in-down {
    animation: none;
  }
}

.plan-slideshow__plan-name {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.plan-slideshow__plan-rev {
  margin: 0.18rem 0 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.plan-slideshow__zone {
  flex: 0 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--plan-info-pad);
}

.plan-slideshow__info-idle {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.plan-slideshow__info-content[hidden],
.plan-slideshow__info-idle[hidden] {
  display: none;
}

.plan-slideshow__info .plan-tooltip__title {
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
}

.plan-slideshow__info .plan-tooltip__label,
.plan-slideshow__info .plan-tooltip__subtitle {
  font-size: 0.6rem;
}

.plan-slideshow__info .plan-tooltip__steps {
  font-size: 0.64rem;
}

.plan-slideshow__info .plan-tooltip__steps li {
  white-space: normal;
}

.plan-slideshow__info .plan-tooltip__fact dt {
  font-size: 0.6rem;
}

.plan-slideshow__info .plan-tooltip__fact dd {
  font-size: 0.64rem;
}

@media (max-width: 860px) {
  .plan-slideshow__frame {
    grid-template-columns: minmax(0, 1fr);
  }

  .plan-slideshow__info {
    --plan-info-pad: 1.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 640px) {
  .plan-slideshow__arrow {
    width: 3rem;
    height: 4.5rem;
  }

  .plan-slideshow__arrow svg {
    width: 18px;
    height: 18px;
  }
}

.content-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
  margin: 0 0 var(--section-padding-y);
}

.content-block--reverse .content-copy {
  order: 2;
}

.content-block--reverse .content-media {
  order: 1;
}

.content-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
}

.content-media {
  margin: 0;
  min-width: 0;
  max-width: 100%;
}

.content-media__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(242, 116, 5, 0.08)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(255, 255, 255, 0.06) 28px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 27px,
      rgba(255, 255, 255, 0.06) 28px
    );
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  overflow: hidden;
}

.content-media__frame svg {
  display: block;
  width: min(100%, 420px);
  height: auto;
}

.menu-btn {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    transition:
      border-color 0.3s ease,
      left 0.35s ease,
      right 0.35s ease,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-hidden {
    transform: translateY(calc(-100% - var(--header-top) - 0.5rem));
    pointer-events: none;
  }

  .site-header .site-logo__img,
  .site-footer .site-logo__img {
    height: 36px;
  }

  .site-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
    z-index: 2;
    width: max-content;
    min-width: 10.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.5rem;
    background: var(--color-header-scrolled);
    border: 0.5px solid var(--color-header-border-scrolled);
    border-radius: 16px;
    backdrop-filter: blur(var(--header-blur-scrolled));
    -webkit-backdrop-filter: blur(var(--header-blur-scrolled));
    visibility: hidden;
    pointer-events: none;
    transform: translateX(calc(100% + var(--page-gutter) + 0.5rem));
    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.4s;
  }

  .site-header.is-on-light .site-nav {
    background: color-mix(in srgb, var(--page-bg) 30%, transparent);
    border-color: color-mix(in srgb, var(--page-bg) 35%, transparent);
  }

  .site-nav.site-nav--open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }

  .site-nav__link {
    justify-content: flex-start;
    padding: 0.7rem 0.85rem;
  }

  .menu-btn {
    display: flex;
  }
}

@media (max-width: 920px) and (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

@media (min-width: 1600px) {
  :root {
    --spotlight-radius: 310px;
  }
}

@media (min-width: 1920px) {
  :root {
    --spotlight-radius: 350px;
  }
}

@media (min-width: 2560px) {
  :root {
    --spotlight-radius: 420px;
  }
}

@media (max-width: 768px) {
  :root {
    --spotlight-radius: 160px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(1.215rem, 5.4vw, 1.575rem);
  }

  .content-block,
  .content-block--reverse .content-copy {
    grid-template-columns: minmax(0, 1fr);
    order: initial;
  }

  .problem-section .problem-section__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-block--reverse .content-copy {
    order: 0;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .site-footer__brand {
    grid-column: 1;
  }

  .site-footer__col--explore {
    display: none;
  }

  .site-footer__col--contact {
    grid-column: 2;
  }
}

@media (orientation: portrait) {
  .skyline-section {
    min-height: 0;
  }

  .skyline-section__inner {
    flex: none;
    justify-content: flex-start;
    padding: calc(var(--skyline-profile-height) + 1.75rem) 0
      var(--section-padding-y);
  }

  .page .skyline-section__inner {
    padding: calc(var(--skyline-gap-mid-y) + var(--section-padding-y)) 0
      var(--section-padding-y);
  }

  .skyline-section__content {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.2rem, 2.4vw, 2rem);
  }

  .story-split {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .story-point__copy {
    max-width: none;
  }

  .product-story .content-copy p,
  .product-story .story-point__copy {
    max-width: none;
  }

  .pitch-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.2rem, 2.4vw, 2rem);
  }

  .pitch-split {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0;
    background: rgba(24, 22, 28, 0.16);
  }

  .pitch-section__points {
    padding-left: 0;
    border-left: none;
  }

  .problem-section__inner,
  .problem-section .problem-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.2rem, 2.4vw, 2rem);
  }

  .problem-section__split {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}

@media (max-width: 520px) {
  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
  #plan-tooltip {
    display: none !important;
  }
}