/* Proptimiza Institutional Hub 3.2.7 — isolated under .ptz-landing-shell */
.ptz-landing-shell {
  --ptz-bg: #0a0b0d;
  --ptz-surface: #12141a;
  --ptz-surface-alt: #0f1117;
  --ptz-surface-raised: #181b23;
  --ptz-text: #f9fafb;
  --ptz-muted: #b6bdc9;
  --ptz-line: rgba(249, 250, 251, 0.13);
  --ptz-line-strong: rgba(200, 241, 53, 0.42);
  --ptz-accent: #c8f135;
  --ptz-accent-ink: #0a0b0d;
  --ptz-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  --ptz-radius: 24px;
  color-scheme: dark;
  min-width: 0;
  min-height: 100vh;
  overflow: clip;
  background: var(--ptz-bg);
  color: var(--ptz-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.ptz-landing-shell *,
.ptz-landing-shell *::before,
.ptz-landing-shell *::after {
  box-sizing: border-box;
}

.ptz-landing-shell :where(h1, h2, h3, p, ul, ol) {
  margin-block-start: 0;
}

.ptz-landing-shell :where(h1, h2, h3) {
  color: var(--ptz-text);
  font-family: Syne, Inter, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.ptz-landing-shell a {
  color: inherit;
  text-decoration: none;
}

.ptz-landing-shell a:focus-visible,
.ptz-landing-shell button:focus-visible,
.ptz-landing-shell [tabindex="-1"]:focus-visible {
  outline: 3px solid var(--ptz-accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.ptz-landing-shell .ptz-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 49px;
  box-sizing: border-box;
}

.ptz-landing-shell .ptz-skip-link {
  position: fixed;
  z-index: 10000;
  inset: 12px auto auto 12px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ptz-accent);
  color: var(--ptz-accent-ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.ptz-landing-shell .ptz-skip-link:focus {
  transform: translateY(0);
}

.ptz-landing-shell .ptz-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--ptz-line);
  background: color-mix(in srgb, var(--ptz-bg) 86%, transparent);
  backdrop-filter: blur(18px);
}

.ptz-landing-shell .ptz-site-header__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ptz-landing-shell .ptz-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
}

.ptz-landing-shell .ptz-brand img {
  display: block;
  width: 205px;
  height: auto;
}

.ptz-landing-shell .ptz-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ptz-landing-shell .ptz-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ptz-landing-shell .ptz-nav__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  color: var(--ptz-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.ptz-landing-shell .ptz-nav__links a:hover {
  color: var(--ptz-text);
}

.ptz-landing-shell .ptz-menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ptz-line);
  border-radius: 12px;
  background: var(--ptz-surface);
  color: var(--ptz-text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.ptz-landing-shell .ptz-menu-toggle__icon {
  display: grid;
  gap: 5px;
  width: 18px;
}

.ptz-landing-shell .ptz-menu-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.ptz-landing-shell .ptz-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid var(--ptz-accent);
  border-radius: 12px;
  background: var(--ptz-accent);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--ptz-accent) 18%, transparent);
  color: var(--ptz-accent-ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ptz-landing-shell .ptz-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--ptz-accent) 25%, transparent);
}

.ptz-landing-shell .ptz-button--small {
  min-height: 44px;
  padding: 9px 15px;
  font-size: 0.86rem;
}

.ptz-landing-shell .ptz-button--secondary {
  border-color: var(--ptz-line);
  background: transparent;
  box-shadow: none;
  color: var(--ptz-text);
}

.ptz-landing-shell .ptz-button--secondary:hover {
  border-color: var(--ptz-line-strong);
  box-shadow: none;
}

.ptz-landing-shell #main-content.ptz-main {
  min-height: 70vh;
  background: var(--ptz-bg);
  color: var(--ptz-text);
}

.ptz-landing-shell .ptz-hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 18px 0 32px;
  border-bottom: 1px solid var(--ptz-line);
  background:
    radial-gradient(circle at 79% 34%, color-mix(in srgb, var(--ptz-accent) 13%, transparent), transparent 28%),
    linear-gradient(135deg, var(--ptz-bg), var(--ptz-surface-alt));
}

.ptz-landing-shell .ptz-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(var(--ptz-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ptz-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
}

.ptz-landing-shell .ptz-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(370px, 0.94fr);
  align-items: start;
  gap: clamp(22px, 3vw, 40px);
}

.ptz-landing-shell .ptz-eyebrow,
.ptz-landing-shell .ptz-kicker {
  margin-bottom: 20px;
  color: var(--ptz-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ptz-landing-shell .ptz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.ptz-landing-shell .ptz-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ptz-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--ptz-accent) 13%, transparent);
}

.ptz-landing-shell .ptz-hero__copy {
  min-width: 0;
}

.ptz-landing-shell .ptz-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(3rem, 4.4vw, 4.6rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1;
  overflow-wrap: normal;
  text-wrap: balance;
}

.ptz-landing-shell .ptz-hero__lead {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--ptz-muted);
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
}

.ptz-landing-shell .ptz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.ptz-landing-shell .ptz-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  color: var(--ptz-muted);
  font-size: 0.88rem;
}

.ptz-landing-shell .ptz-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ptz-landing-shell .ptz-proof-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ptz-accent);
}

.ptz-landing-shell .ptz-hero__visual {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
}

.ptz-landing-shell .ptz-assistant {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 18px;
  border: 1px solid var(--ptz-line-strong);
  border-radius: 18px;
  background: color-mix(in srgb, var(--ptz-surface) 94%, transparent);
  box-shadow: var(--ptz-shadow);
  overflow-wrap: anywhere;
}

.ptz-landing-shell .ptz-assistant [hidden] {
  display: none !important;
}

.ptz-landing-shell .ptz-assistant .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ptz-landing-shell .ptz-assistant__intro {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ptz-line);
}

.ptz-landing-shell .ptz-assistant__intro .ptz-eyebrow {
  margin-bottom: 6px;
  font-size: 0.68rem;
}

.ptz-landing-shell .ptz-assistant__intro h2 {
  margin-bottom: 6px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.ptz-landing-shell .ptz-assistant__intro > p:last-child {
  margin-bottom: 0;
  color: var(--ptz-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.ptz-landing-shell .ptz-assistant__step {
  min-width: 0;
  padding-top: 12px;
}

.ptz-landing-shell .ptz-assistant__step-count,
.ptz-landing-shell .ptz-assistant__result-label {
  margin-bottom: 6px;
  color: var(--ptz-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ptz-landing-shell .ptz-assistant__step > h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.18;
}

.ptz-landing-shell .ptz-assistant__answers {
  display: grid;
  gap: 6px;
}

.ptz-landing-shell .ptz-assistant__answer {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid var(--ptz-line);
  border-radius: 12px;
  background: var(--ptz-surface-alt);
  color: var(--ptz-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.ptz-landing-shell .ptz-assistant__answer:hover {
  border-color: var(--ptz-line-strong);
  background: color-mix(in srgb, var(--ptz-surface-raised) 88%, var(--ptz-accent));
  transform: translateX(2px);
}

.ptz-landing-shell .ptz-assistant__answer > b {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ptz-line-strong);
  border-radius: 50%;
  color: var(--ptz-accent);
  font-family: Syne, Inter, Arial, sans-serif;
  font-size: 0.7rem;
  line-height: 1;
}

.ptz-landing-shell .ptz-assistant__answer > span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ptz-landing-shell .ptz-assistant__answer strong {
  color: var(--ptz-text);
  font-size: 0.9rem;
  line-height: 1.25;
}

.ptz-landing-shell .ptz-assistant__answer small {
  color: var(--ptz-muted);
  font-size: 0.73rem;
  line-height: 1.35;
}

.ptz-landing-shell .ptz-assistant__back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  margin: -8px 0 5px;
  border: 0;
  background: transparent;
  color: var(--ptz-muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 160ms ease;
}

.ptz-landing-shell .ptz-assistant__back::before {
  content: "\2190";
  color: var(--ptz-accent);
  font-size: 1rem;
}

.ptz-landing-shell .ptz-assistant__back:hover {
  color: var(--ptz-text);
}

.ptz-landing-shell .ptz-assistant__results {
  min-width: 0;
}

.ptz-landing-shell .ptz-assistant__results > section {
  min-width: 0;
}

.ptz-landing-shell .ptz-assistant__results h3 {
  margin-bottom: 9px;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.ptz-landing-shell .ptz-assistant__results section > p:not(.ptz-assistant__result-label) {
  margin-bottom: 16px;
  color: var(--ptz-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ptz-landing-shell .ptz-assistant__result-cta {
  width: 100%;
  min-height: 48px;
}

.ptz-landing-shell .ptz-assistant__market {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 0;
  margin: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--ptz-line);
}

.ptz-landing-shell .ptz-assistant__market legend {
  width: 100%;
  padding: 0;
  margin-bottom: 8px;
  color: var(--ptz-text);
  font-size: 0.76rem;
  font-weight: 800;
}

.ptz-landing-shell [data-ptz-assistant-market] {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--ptz-line);
  border-radius: 999px;
  background: transparent;
  color: var(--ptz-muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.ptz-landing-shell [data-ptz-assistant-market]:hover {
  border-color: var(--ptz-line-strong);
  color: var(--ptz-text);
}

.ptz-landing-shell [data-ptz-assistant-market][aria-pressed="true"] {
  border-color: var(--ptz-accent);
  background: color-mix(in srgb, var(--ptz-accent) 12%, transparent);
  color: var(--ptz-accent);
}

.ptz-landing-shell .ptz-assistant__market-note {
  margin: 10px 0 0;
  color: var(--ptz-muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.ptz-landing-shell .ptz-assistant__fallback {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--ptz-line);
}

.ptz-landing-shell .ptz-assistant[data-assistant-ready="true"] .ptz-assistant__fallback {
  display: none;
}

.ptz-landing-shell .ptz-assistant__fallback h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.ptz-landing-shell .ptz-assistant__fallback > p {
  margin-bottom: 12px;
  color: var(--ptz-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.ptz-landing-shell .ptz-assistant__fallback-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ptz-landing-shell .ptz-assistant__fallback-link {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--ptz-line);
  border-radius: 10px;
  background: var(--ptz-surface-alt);
  color: var(--ptz-text);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.25;
}

.ptz-landing-shell .ptz-assistant__fallback-link::after {
  content: "\2197";
  flex: 0 0 auto;
  color: var(--ptz-accent);
}

.ptz-landing-shell .ptz-assistant__fallback-link:hover {
  border-color: var(--ptz-line-strong);
}

.ptz-landing-shell .ptz-assistant__answer:focus-visible,
.ptz-landing-shell [data-ptz-assistant-market]:focus-visible,
.ptz-landing-shell [data-ptz-assistant-back]:focus-visible {
  outline: 3px solid var(--ptz-accent);
  outline-offset: 3px;
}

.ptz-landing-shell .ptz-section {
  padding: clamp(28px, 2.5vw, 36px) 0;
  scroll-margin-top: 84px;
}

.ptz-landing-shell .ptz-section--surface {
  border-block: 1px solid var(--ptz-line);
  background: var(--ptz-surface-alt);
}

.ptz-landing-shell .ptz-intro-grid,
.ptz-landing-shell .ptz-section-heading,
.ptz-landing-shell .ptz-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 3vw, 40px);
}

.ptz-landing-shell .ptz-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.ptz-landing-shell .ptz-rich-copy,
.ptz-landing-shell .ptz-section-heading > p,
.ptz-landing-shell .ptz-method-copy > p:last-child {
  color: var(--ptz-muted);
  font-size: 1.05rem;
}

.ptz-landing-shell .ptz-rich-copy p:last-child,
.ptz-landing-shell .ptz-section-heading > p:last-child,
.ptz-landing-shell .ptz-method-copy > p:last-child {
  margin-bottom: 0;
}

.ptz-landing-shell .ptz-section-heading {
  align-items: end;
  margin-bottom: 20px;
}

.ptz-landing-shell .ptz-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ptz-landing-shell .ptz-route-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(20px, 2vw, 24px);
  border: 1px solid var(--ptz-line);
  border-radius: var(--ptz-radius);
  background: var(--ptz-surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.ptz-landing-shell .ptz-route-card:hover {
  border-color: var(--ptz-line-strong);
  transform: translateY(-3px);
}

.ptz-landing-shell .ptz-route-card__number {
  margin-bottom: 10px;
  color: var(--ptz-accent);
  font-family: Syne, Inter, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.ptz-landing-shell .ptz-route-card h3,
.ptz-landing-shell .ptz-capability-grid h3,
.ptz-landing-shell .ptz-ecosystem-grid h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.ptz-landing-shell .ptz-route-card p,
.ptz-landing-shell .ptz-capability-grid p,
.ptz-landing-shell .ptz-ecosystem-grid p {
  color: var(--ptz-muted);
}

.ptz-landing-shell .ptz-text-link,
.ptz-landing-shell .ptz-footer__link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ptz-text);
  font-size: 0.9rem;
  font-weight: 800;
}

.ptz-landing-shell .ptz-text-link::after,
.ptz-landing-shell .ptz-footer__link::after {
  content: "↗";
  margin-left: 8px;
  color: var(--ptz-accent);
  font-size: 1.05rem;
}

.ptz-landing-shell .ptz-text-link:hover,
.ptz-landing-shell .ptz-footer__link:hover {
  color: var(--ptz-accent);
}

.ptz-landing-shell .ptz-link-stack {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.ptz-landing-shell .ptz-route-card > .ptz-text-link {
  margin-top: auto;
}

.ptz-landing-shell .ptz-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ptz-line);
  border-radius: var(--ptz-radius);
  background: var(--ptz-line);
}

.ptz-landing-shell .ptz-capability-grid article {
  min-height: 0;
  padding: 22px;
  background: var(--ptz-bg);
}

.ptz-landing-shell .ptz-capability-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ptz-line-strong);
  border-radius: 50%;
  color: var(--ptz-accent);
  font-family: Syne, Inter, Arial, sans-serif;
  font-weight: 700;
}

.ptz-landing-shell .ptz-capability-grid h3 {
  margin-top: 24px;
  font-size: 1.4rem;
}

.ptz-landing-shell .ptz-section--method {
  background:
    radial-gradient(circle at 15% 48%, color-mix(in srgb, var(--ptz-accent) 8%, transparent), transparent 28%),
    var(--ptz-bg);
}

.ptz-landing-shell .ptz-method-grid {
  align-items: start;
}

.ptz-landing-shell .ptz-method-copy {
  position: sticky;
  top: 120px;
}

.ptz-landing-shell .ptz-method-copy h2 {
  margin-bottom: 18px;
}

.ptz-landing-shell .ptz-method-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ptz-landing-shell .ptz-method-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ptz-line);
}

.ptz-landing-shell .ptz-method-list li:first-child { padding-top: 0; }
.ptz-landing-shell .ptz-method-list li:last-child { border-bottom: 0; }

.ptz-landing-shell .ptz-method-list > li > span {
  color: var(--ptz-accent);
  font-family: Syne, Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.ptz-landing-shell .ptz-method-list h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.ptz-landing-shell .ptz-method-list p {
  margin-bottom: 0;
  color: var(--ptz-muted);
}

.ptz-landing-shell .ptz-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ptz-landing-shell .ptz-ecosystem-grid article {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--ptz-line);
  border-radius: var(--ptz-radius);
  background: var(--ptz-surface);
}

.ptz-landing-shell .ptz-ecosystem-card__tag {
  color: var(--ptz-accent) !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ptz-landing-shell .ptz-ecosystem-grid h3 {
  margin-top: 16px;
}

.ptz-landing-shell .ptz-ecosystem-grid .ptz-text-link {
  margin-top: auto;
}

.ptz-landing-shell .ptz-section--final {
  padding-top: 28px;
}

.ptz-landing-shell .ptz-final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--ptz-line-strong);
  border-radius: calc(var(--ptz-radius) + 6px);
  background:
    radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--ptz-accent) 16%, transparent), transparent 33%),
    var(--ptz-surface);
  box-shadow: var(--ptz-shadow);
}

.ptz-landing-shell .ptz-final-card h2 {
  max-width: 820px;
  margin-bottom: 20px;
}

.ptz-landing-shell .ptz-final-card p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ptz-muted);
}

.ptz-landing-shell .ptz-footer {
  padding: 36px 0 20px;
  border-top: 1px solid var(--ptz-line);
  background: var(--ptz-surface-alt);
}

.ptz-landing-shell .ptz-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.65fr 1fr 0.75fr;
  gap: clamp(16px, 2vw, 28px);
}

.ptz-landing-shell .ptz-footer__grid > div:first-child p {
  max-width: 390px;
  margin: 12px 0 0;
  color: var(--ptz-muted);
}

.ptz-landing-shell .ptz-footer nav,
.ptz-landing-shell .ptz-footer__routes,
.ptz-landing-shell .ptz-footer__contact,
.ptz-landing-shell .ptz-footer__policies {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.ptz-landing-shell .ptz-footer__contact p {
  margin: 0 0 8px;
  color: var(--ptz-text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ptz-landing-shell .ptz-footer__contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ptz-muted);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.ptz-landing-shell .ptz-footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ptz-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.ptz-landing-shell .ptz-footer nav a:hover { color: var(--ptz-text); }

.ptz-landing-shell .ptz-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--ptz-line);
  color: var(--ptz-muted);
  font-size: 0.78rem;
}

.ptz-landing-shell .ptz-breadcrumbs ol {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ptz-landing-shell .ptz-breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--ptz-muted);
}

.ptz-landing-shell .ptz-builder-content {
  min-height: 60vh;
}

@media (prefers-color-scheme: light) {
  .ptz-landing-shell {
    --ptz-bg: #f9fafb;
    --ptz-surface: #ffffff;
    --ptz-surface-alt: #f1f5f9;
    --ptz-surface-raised: #ffffff;
    --ptz-text: #0a0b0d;
    --ptz-muted: #526071;
    --ptz-line: rgba(15, 23, 42, 0.13);
    --ptz-line-strong: rgba(77, 124, 15, 0.45);
    --ptz-accent: #4d7c0f;
    --ptz-accent-ink: #ffffff;
    --ptz-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
    color-scheme: light;
  }

}

.ptz-landing-shell .ptz-footer__legal button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ptz-muted);
  font: inherit;
  cursor: pointer;
}

.ptz-landing-shell .ptz-footer__legal button:hover,
.ptz-landing-shell .ptz-footer__legal button:focus-visible,
.ptz-landing-shell .ptz-footer__contact a:hover {
  color: var(--ptz-text);
}

.ptz-landing-shell .ptz-section--trust {
  border-block: 1px solid var(--ptz-line);
  background:
    radial-gradient(circle at 84% 12%, color-mix(in srgb, var(--ptz-accent) 10%, transparent), transparent 28%),
    var(--ptz-surface-alt);
}

.ptz-landing-shell .ptz-official-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--ptz-line);
  border-radius: var(--ptz-radius);
  background: var(--ptz-line);
}

.ptz-landing-shell .ptz-official-channels > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2vw, 22px);
  background: var(--ptz-surface);
}

.ptz-landing-shell .ptz-official-channels span {
  margin-bottom: 8px;
  color: var(--ptz-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ptz-landing-shell .ptz-official-channels a,
.ptz-landing-shell .ptz-official-channels address {
  margin-bottom: 8px;
  color: var(--ptz-text);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.ptz-landing-shell .ptz-official-channels small {
  margin-top: auto;
  color: var(--ptz-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.ptz-landing-shell .ptz-trust-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.ptz-landing-shell .ptz-trust-links a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--ptz-line);
  border-radius: 12px;
  color: var(--ptz-text);
  font-size: 0.82rem;
  font-weight: 750;
}

.ptz-landing-shell .ptz-trust-links a:hover {
  border-color: var(--ptz-line-strong);
  color: var(--ptz-accent);
}

.ptz-landing-shell .ptz-legal-page {
  min-height: 70vh;
  padding: clamp(24px, 3.2vw, 44px) 0 clamp(56px, 7vw, 88px);
  background: var(--ptz-bg);
  color: var(--ptz-text);
}

.ptz-landing-shell .ptz-legal-page__header {
  max-width: 900px;
  padding: 18px 0 34px;
}

.ptz-landing-shell .ptz-legal-page__header h1 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 4.7vw, 4.65rem);
}

.ptz-landing-shell .ptz-legal-page__header > p:last-child {
  color: var(--ptz-muted);
}

.ptz-landing-shell .ptz-legal-page__layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
}

.ptz-landing-shell .ptz-legal-page__nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 2px;
}

.ptz-landing-shell .ptz-legal-page__nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-left: 2px solid var(--ptz-line);
  color: var(--ptz-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.ptz-landing-shell .ptz-legal-page__nav a[aria-current="page"] {
  border-left-color: var(--ptz-accent);
  color: var(--ptz-text);
}

.ptz-landing-shell .ptz-legal-copy {
  max-width: 830px;
}

.ptz-landing-shell .ptz-legal-copy section {
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--ptz-line);
}

.ptz-landing-shell .ptz-legal-copy section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.ptz-landing-shell .ptz-legal-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
}

.ptz-landing-shell .ptz-legal-copy p {
  color: var(--ptz-muted);
  font-size: 21px;
  line-height: 1.62;
}

.ptz-landing-shell .ptz-legal-copy a {
  color: var(--ptz-text);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--ptz-accent);
  text-underline-offset: 4px;
}

.ptz-landing-shell .ptz-consent-banner {
  position: fixed;
  z-index: 99998;
  right: 20px;
  bottom: 20px;
  left: auto;
  width: min(calc(100% - 40px), 780px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px;
  margin-inline: 0;
  border: 1px solid var(--ptz-line-strong);
  border-radius: 18px;
  background: var(--ptz-surface-raised);
  box-shadow: var(--ptz-shadow);
}

.ptz-landing-shell .ptz-consent-banner[hidden],
.ptz-landing-shell .ptz-consent-dialog[hidden] {
  display: none !important;
}

.ptz-landing-shell .ptz-consent-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ptz-text);
}

.ptz-landing-shell .ptz-consent-banner p {
  margin: 0;
  color: var(--ptz-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.ptz-landing-shell .ptz-consent-banner p a {
  color: var(--ptz-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ptz-landing-shell .ptz-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.ptz-landing-shell .ptz-consent-actions .ptz-button {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 0.78rem;
}

.ptz-landing-shell .ptz-consent-dialog {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.ptz-landing-shell .ptz-consent-dialog__panel {
  position: relative;
  width: min(100%, 660px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--ptz-line-strong);
  border-radius: 22px;
  background: var(--ptz-surface-raised);
  box-shadow: var(--ptz-shadow);
}

.ptz-landing-shell .ptz-consent-dialog__panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.ptz-landing-shell .ptz-consent-dialog__panel > p:not(.ptz-kicker) {
  color: var(--ptz-muted);
}

.ptz-landing-shell .ptz-consent-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ptz-line);
  border-radius: 50%;
  background: transparent;
  color: var(--ptz-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.ptz-landing-shell .ptz-consent-options {
  display: grid;
  margin: 26px 0;
  border-block: 1px solid var(--ptz-line);
}

.ptz-landing-shell .ptz-consent-options label {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ptz-line);
}

.ptz-landing-shell .ptz-consent-options label:last-child { border-bottom: 0; }
.ptz-landing-shell .ptz-consent-options label > span { display: grid; gap: 3px; }
.ptz-landing-shell .ptz-consent-options small { color: var(--ptz-muted); line-height: 1.4; }
.ptz-landing-shell .ptz-consent-options input { width: 22px; height: 22px; accent-color: var(--ptz-accent); }

@media (min-width: 621px) and (max-width: 1024px) {
  .ptz-landing-shell .ptz-legal-page > .ptz-container { padding-inline: 49px; }
}

@media (max-width: 1024px) {
  .ptz-landing-shell .ptz-container { width: 100%; padding-inline: 32px; }
  .ptz-landing-shell .ptz-brand img { width: 180px; }
  .ptz-landing-shell .ptz-nav { gap: 12px; }
  .ptz-landing-shell .ptz-nav__links a { padding-inline: 7px; font-size: 0.82rem; }
  .ptz-landing-shell .ptz-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr); gap: 36px; }
  .ptz-landing-shell .ptz-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ptz-landing-shell .ptz-capability-grid article { min-height: 0; }
  .ptz-landing-shell .ptz-capability-grid h3 { margin-top: 24px; }
  .ptz-landing-shell .ptz-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ptz-landing-shell .ptz-footer__grid > div:first-child { grid-column: 1 / -1; }
  .ptz-landing-shell .ptz-trust-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .ptz-landing-shell .ptz-site-header__inner { min-height: 72px; }
  .ptz-landing-shell .ptz-menu-toggle { display: inline-flex; }
  .ptz-landing-shell .ptz-site-header[data-menu-ready="true"] .ptz-nav { display: none; }
  .ptz-landing-shell .ptz-site-header[data-menu-open="true"] .ptz-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 22px max(24px, calc((100vw - 720px) / 2));
    border-bottom: 1px solid var(--ptz-line);
    background: var(--ptz-bg);
    box-shadow: var(--ptz-shadow);
  }
  .ptz-landing-shell .ptz-site-header[data-menu-open="true"] .ptz-nav__links { align-items: stretch; flex-direction: column; }
  .ptz-landing-shell .ptz-site-header[data-menu-open="true"] .ptz-nav__links a { padding: 8px 4px; font-size: 1rem; }
  .ptz-landing-shell .ptz-site-header[data-menu-open="true"] .ptz-button--small { width: 100%; }
  .ptz-landing-shell .ptz-site-header[data-menu-open="true"] .ptz-menu-toggle__icon span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .ptz-landing-shell .ptz-site-header[data-menu-open="true"] .ptz-menu-toggle__icon span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .ptz-landing-shell .ptz-hero { padding: 18px 0 28px; }
  .ptz-landing-shell .ptz-hero__grid { grid-template-columns: 1fr; gap: 22px; }
  .ptz-landing-shell .ptz-assistant { max-width: 620px; }
  .ptz-landing-shell .ptz-hero__visual { min-height: 0; }
  .ptz-landing-shell .ptz-intro-grid,
  .ptz-landing-shell .ptz-section-heading,
  .ptz-landing-shell .ptz-method-grid { grid-template-columns: 1fr; gap: 20px; }
  .ptz-landing-shell .ptz-section-heading { align-items: start; }
  .ptz-landing-shell .ptz-method-copy { position: static; }
  .ptz-landing-shell .ptz-ecosystem-grid { grid-template-columns: 1fr; }
  .ptz-landing-shell .ptz-ecosystem-grid article { min-height: 0; }
  .ptz-landing-shell .ptz-final-card { grid-template-columns: 1fr; align-items: start; }
  .ptz-landing-shell .ptz-footer__grid { grid-template-columns: 1fr 1fr; }
  .ptz-landing-shell .ptz-footer__grid > div:first-child { grid-column: 1 / -1; }
  .ptz-landing-shell .ptz-official-channels { grid-template-columns: 1fr; }
  .ptz-landing-shell .ptz-legal-page__layout { grid-template-columns: 1fr; gap: 28px; }
  .ptz-landing-shell .ptz-legal-page__nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ptz-landing-shell .ptz-consent-banner { left: 20px; width: auto; gap: 12px; }
}

@media (max-width: 620px) {
  .ptz-landing-shell .ptz-container { width: 100%; padding-inline: 20px; }
  .ptz-landing-shell .ptz-brand img { width: 142px; }
  .ptz-landing-shell .ptz-menu-toggle { padding-inline: 10px; }
  .ptz-landing-shell .ptz-hero { padding: 14px 0 24px; }
  .ptz-landing-shell .ptz-hero h1 { font-size: clamp(2.25rem, 10.8vw, 3rem); }
  .ptz-landing-shell .ptz-assistant { padding: 16px; }
  .ptz-landing-shell .ptz-assistant__market { align-items: stretch; flex-direction: column; }
  .ptz-landing-shell .ptz-assistant__market legend { margin-bottom: 4px; }
  .ptz-landing-shell [data-ptz-assistant-market] { width: 100%; }
  .ptz-landing-shell .ptz-assistant__fallback-links { grid-template-columns: 1fr; }
  .ptz-landing-shell .ptz-hero__visual { min-height: 0; }
  .ptz-landing-shell .ptz-actions { align-items: stretch; flex-direction: column; }
  .ptz-landing-shell .ptz-actions .ptz-button { width: 100%; }
  .ptz-landing-shell .ptz-proof-list { align-items: flex-start; flex-direction: column; }
  .ptz-landing-shell .ptz-section { padding-block: 28px; }
  .ptz-landing-shell .ptz-route-grid,
  .ptz-landing-shell .ptz-capability-grid { grid-template-columns: 1fr; }
  .ptz-landing-shell .ptz-route-card { min-height: 0; }
  .ptz-landing-shell .ptz-capability-grid article { min-height: auto; }
  .ptz-landing-shell .ptz-method-list li { grid-template-columns: 42px 1fr; gap: 14px; }
  .ptz-landing-shell .ptz-final-card { gap: 18px; padding: 24px 20px; }
  .ptz-landing-shell .ptz-final-card .ptz-button { width: 100%; }
  .ptz-landing-shell .ptz-footer__grid { grid-template-columns: 1fr; gap: 18px; }
  .ptz-landing-shell .ptz-footer__grid > div:first-child { grid-column: auto; }
  .ptz-landing-shell .ptz-footer__legal { align-items: flex-start; flex-direction: column; }
  .ptz-landing-shell .ptz-legal-page { padding: 20px 0 56px; }
  .ptz-landing-shell .ptz-legal-page__header { padding: 16px 0 26px; }
  .ptz-landing-shell .ptz-legal-page__header h1 { font-size: clamp(2.15rem, 10.8vw, 3rem); }
  .ptz-landing-shell .ptz-legal-copy section { padding-bottom: 20px; margin-bottom: 20px; }
  .ptz-landing-shell .ptz-legal-copy p { font-size: 18px; line-height: 1.65; }
  .ptz-landing-shell .ptz-trust-links,
  .ptz-landing-shell .ptz-legal-page__nav { grid-template-columns: 1fr; }
  .ptz-landing-shell .ptz-consent-banner { right: 12px; bottom: 12px; left: 12px; width: calc(100% - 24px); align-items: stretch; flex-direction: column; gap: 12px; padding: 14px 16px; }
  .ptz-landing-shell .ptz-consent-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
  .ptz-landing-shell .ptz-consent-actions .ptz-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .ptz-landing-shell .ptz-assistant * {
    transition: none !important;
  }

  .ptz-landing-shell *,
  .ptz-landing-shell *::before,
  .ptz-landing-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
