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

html,
body { margin: 0; padding: 0; }

html {
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  background: #000;
  color: var(--bm-white);
  line-height: 1.4;
}

.font-display,
:is(
  h1,
  h2,
  h3,
  h4,
  .logo span,
  .button-cta,
  .button-ghost,
  .micro-label,
  .section-kicker,
  .decisions-kicker,
  .main-nav a,
  .mobile-nav-link,
  .hero-points li,
  .hero-badges h3,
  .service-copy h3,
  .value-tile h4,
  .architecture-header h2,
  .arch-col h3,
  .arch-col .num,
  .plans-header h2,
  .plan h3,
  .plan .price,
  .plan-cta,
  .addons h2,
  .addon-card h3,
  .addon-card .price,
  .platforms-copy h2,
  .platform-badge-text strong,
  .examples-layout h2,
  .tracking h2,
  .contact-panel h2,
  .contact-toggle,
  .legal-modal h2,
  .legal-modal h3,
  .site-footer nav a,
  .mock-google-result-title,
  .mock-google-ai-title,
  .chips span
) {
  font-family: var(--font-display);
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 63% 4%, rgba(245, 185, 75, 0.25) 0%, rgba(245, 185, 75, 0.02) 20%, transparent 42%),
    radial-gradient(circle at 50% 110%, rgba(245, 185, 75, 0.16) 0%, transparent 45%),
    #000;
}

.container {
  width: min(100% - 42px, 1180px);
  margin: 0 auto;
}

.section { padding: 38px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #272017;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.logo span {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-wordmark {
  white-space: nowrap;
}

.brand-wordmark-brand {
  color: #fff;
}

.brand-wordmark-mantion {
  color: var(--bm-gold-bright);
}

.main-nav {
  display: flex;
  gap: 28px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #cbc5ba;
}

.main-nav a:hover { color: var(--bm-gold-bright); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lang-switch-link {
  color: #8f8679;
  text-decoration: none;
  transition: color 0.22s ease;
}

.lang-switch-link:hover,
.lang-switch-link:focus-visible {
  color: var(--bm-gold-bright);
  outline: none;
}

.lang-switch-link.is-active {
  color: #f3ede1;
  cursor: default;
}

.lang-switch-sep {
  color: #5c554c;
  user-select: none;
}

.lang-switch--mobile {
  justify-content: center;
  margin-bottom: 10px;
}

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

.mobile-menu-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(245, 185, 75, 0.45);
  border-radius: 10px;
  background: rgba(8, 8, 8, 0.92);
  color: #f5b94b;
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  border-color: rgba(245, 185, 75, 0.85);
  box-shadow: 0 0 18px rgba(245, 185, 75, 0.18);
  outline: none;
}

.mobile-menu-bar {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 0.24s ease, opacity 0.24s ease, top 0.24s ease;
}

.mobile-menu-bar:nth-child(1) { top: 14px; }
.mobile-menu-bar:nth-child(2) { top: 21px; }
.mobile-menu-bar:nth-child(3) { top: 28px; }

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 10020;
  pointer-events: none;
}

.mobile-nav.is-open {
  pointer-events: none;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 320px);
  height: auto;
  max-height: 100vh;
  max-height: 100dvh;
  padding:
    calc(72px + env(safe-area-inset-top, 0px))
    22px
    calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 50% 6%, rgba(245, 185, 75, 0.12) 0%, rgba(245, 185, 75, 0.03) 24%, transparent 46%),
    linear-gradient(180deg, #0c0c0c 0%, #080808 38%, #030303 68%, #000 100%);
  border-left: 1px solid rgba(245, 185, 75, 0.28);
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.72);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.28s ease;
  pointer-events: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding-top: 8px;
}

.mobile-nav-brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #f5f5f2;
  opacity: 0.92;
  transition: opacity 0.22s ease;
}

.mobile-nav-brand-logo:hover,
.mobile-nav-brand-logo:focus-visible {
  opacity: 1;
  outline: none;
}

.mobile-nav-brand-logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.mobile-nav-brand-logo span {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-nav-tagline {
  margin: 0;
  max-width: 220px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #a59d90;
}

.mobile-nav-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav-legal a {
  color: #8f8679;
  transition: color 0.22s ease;
}

.mobile-nav-legal a:hover,
.mobile-nav-legal a:focus-visible {
  color: #d6a23a;
  outline: none;
}

.mobile-nav-legal-sep {
  color: #5c554c;
  user-select: none;
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translate3d(0, 0, 0);
}

.mobile-nav-link {
  display: block;
  padding: 14px 12px;
  border: 1px solid rgba(245, 185, 75, 0.42);
  border-radius: 10px;
  background: #0c0c0c;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f5f5f2;
  transition: border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  border-color: rgba(245, 185, 75, 0.75);
  color: #fff8eb;
  background: #121212;
  box-shadow: 0 0 18px rgba(245, 185, 75, 0.14);
  outline: none;
}

.mobile-nav-link--cta {
  margin-bottom: 6px;
  border-color: rgba(245, 185, 75, 0.85);
  background: linear-gradient(135deg, #f5b94b 0%, #d6a23a 45%, #8a560d 100%);
  color: #060606;
}

body.mobile-menu-open {
  overflow: auto;
}

body.mobile-menu-open .site-header {
  z-index: 10030;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
  pointer-events: none;
}

body.mobile-menu-open .site-header .logo {
  visibility: hidden;
}

body.mobile-menu-open .mobile-menu-toggle {
  pointer-events: auto;
  z-index: 10032;
  background: #0a0a0a;
  border-color: rgba(245, 185, 75, 0.9);
  box-shadow:
    0 0 0 1px rgba(245, 185, 75, 0.28),
    0 10px 28px rgba(0, 0, 0, 0.65);
  color: #ffd27a;
}

body.mobile-menu-open .telegram-fab {
  z-index: 20;
}

.button-cta,
.button-ghost {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  border-radius: 8px;
  display: inline-block;
  transition: 220ms ease;
}

.button-cta {
  padding: 12px 16px;
  background: linear-gradient(135deg, #f5b94b 0%, #d6a23a 45%, #8a560d 100%);
  color: #060606;
  border: 1px solid rgba(245, 185, 75, 0.72);
}

.button-cta:hover {
  box-shadow: 0 0 0 1px rgba(245, 185, 75, 0.3), 0 0 26px rgba(245, 185, 75, 0.35);
}

.magnetic-cta {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  will-change: transform;
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
}

.button-cta.magnetic-cta:hover {
  transform: translate(var(--mag-x, 0), var(--mag-y, 0)) translateY(-1px);
}

.button-ghost {
  padding: 12px 16px;
  border: 1px solid #3f2f18;
  color: #ddd8ce;
}

.button-ghost:hover {
  border-color: #b28534;
  color: #fff8eb;
}

.button-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245, 185, 75, 0.12);
  border: 1px solid rgba(214, 162, 58, 0.45);
}

.btn-icon img {
  width: 9px;
  height: 10px;
  margin-left: 1px;
}

.hero.section {
  padding-bottom: 44px;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 41% 59%;
  gap: 10px;
  align-items: center;
}

.micro-label,
.section-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: #d3a550;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 600;
}

h1,
h2,
h3,
h4,
p { margin: 0; }

h1 {
  font-size: clamp(2rem, 5vw, 4.05rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1 span { color: #f5b94b; }

.hero-sub {
  color: #b8b1a7;
  max-width: 470px;
  font-size: 15px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  border: 1px solid #392a12;
  border-radius: 100px;
  padding: 6px 11px;
  font-size: 9px;
  text-transform: uppercase;
  color: #cbc3b5;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.hero-actions .button-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding-inline: 22px;
  text-align: center;
}

.hero-media {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
}

.hero-composite {
  position: relative;
  width: min(780px, 100%);
  margin-left: auto;
  overflow: visible;
  background: #000;
  border-radius: 10px;
  border: 1px solid #2e2418;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.68);
}

.hero-composite-stage {
  position: relative;
  animation: floatHero 18s ease-in-out infinite;
  will-change: transform;
}

.hero-composite:has(.hero-badge:hover) .hero-composite-stage {
  animation-play-state: paused;
}

.hero-composite-inner {
  position: relative;
  aspect-ratio: 1024 / 682;
  overflow: hidden;
  border-radius: inherit;
}

.hero-apex-glow {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: 46%;
  height: 38%;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 58%,
    rgba(255, 220, 140, 0.5) 0%,
    rgba(245, 185, 75, 0.24) 26%,
    rgba(245, 185, 75, 0.08) 46%,
    transparent 76%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 50% 62%,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.55) 68%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 62%,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.55) 68%,
    transparent 100%
  );
  mix-blend-mode: normal;
  opacity: 0.62;
  animation: heroApexPulse 4.2s ease-in-out infinite;
}

.hero-dust {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-dust span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(245, 185, 75, 0.75);
  box-shadow: 0 0 6px rgba(245, 185, 75, 0.65);
  animation: heroDustDrift var(--dust-duration, 14s) ease-in-out infinite;
  animation-delay: var(--dust-delay, 0s);
  opacity: var(--dust-opacity, 0.5);
}

.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.layer-hero-bg {
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
}

.layer-hero-pyramid {
  z-index: 2;
  object-fit: contain;
  object-position: center 48%;
  mix-blend-mode: normal;
}

.hero-badges {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  pointer-events: auto;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(59, 44, 21, 0.55);
  border-radius: 10px;
  background: transparent;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
  max-width: min(168px, 32vw);
}

.hero-badge--left {
  left: 7%;
  bottom: 16%;
}

.hero-badge--center {
  left: 50%;
  bottom: calc(12% - 30px);
  translate: calc(-50% - 5px) 0;
}

.hero-badge--right {
  right: 7%;
  bottom: 16%;
}

.hero-badge:hover {
  border-color: #8a6528;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 18px rgba(245, 185, 75, 0.14);
  filter: brightness(1.08);
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.hero-badges h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.decisions { padding-top: 48px; padding-bottom: 8px; }

.decisions-head {
  text-align: center;
  margin-bottom: 32px;
}

.decisions-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #ebe6dc;
}

.decisions-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f5f5f2;
}

.decision-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 28px;
}

.service-tile {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 28px;
}

.service-tile:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-copy h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d6a23a;
  line-height: 1.25;
}

.service-copy p {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #c4bbb0;
  max-width: 300px;
}

.service-copy a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #d6a23a;
}

.service-copy a:hover {
  color: #f5b94b;
}

.decision-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 22px 8px;
}

.value-tile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 18px;
}

.value-tile:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.value-tile > img {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  object-fit: contain;
}

.value-copy h4 {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d6a23a;
  line-height: 1.25;
}

.value-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #b5ac9f;
}

.architecture h2,
.plans h2 { text-transform: uppercase; letter-spacing: 0.04em; }

.architecture { padding-top: 24px; }

.architecture-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.architecture-board {
  position: relative;
  width: 100%;
  padding: 18px 18px 0;
  border-radius: 14px;
  background:
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(255, 179, 71, 0.1) 0%, transparent 72%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.35) 0%, rgba(5, 5, 5, 0.95) 100%);
  border: 1px solid #2f2416;
  overflow: hidden;
}

.architecture-header {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 14px;
}

.architecture-header .section-kicker {
  margin-bottom: 6px;
}

.architecture-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.architecture-body {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 20px));
  margin: 0 auto;
  padding: 0 clamp(6px, 1.5vw, 16px) 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 8px;
  align-items: start;
  width: 100%;
  padding-bottom: 2px;
  justify-items: center;
}

.architecture-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 200;
  line-height: 0;
}

.architecture-stage-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arch-connect-base {
  fill: none;
  stroke: transparent;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  pointer-events: none;
}

.arch-figure {
  pointer-events: bounding-box;
  cursor: inherit;
  transition: filter 0.28s ease, opacity 0.28s ease;
}

.arch-ripple,
.arch-person-head,
.arch-person-body,
.arch-bubble,
.arch-bubble-tail {
  fill: none;
  stroke: rgba(255, 201, 64, 0.55);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arch-ripple {
  stroke-width: 1.2;
  transition: stroke 0.28s ease, stroke-width 0.28s ease, opacity 0.28s ease;
}

.arch-ripple-1 { opacity: 0.55; }
.arch-ripple-2 { opacity: 0.38; }
.arch-ripple-3 { opacity: 0.24; }

.arch-person-head,
.arch-person-body {
  fill: none;
  stroke: #ffc940;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#arch-glow-soft);
}

.arch-person-body {
  fill: none;
}

.arch-bubble {
  fill: rgba(8, 8, 8, 0.55);
}

.arch-bubble,
.arch-bubble-tail {
  stroke: rgba(255, 201, 64, 0.82);
  stroke-width: 1.8;
}

.arch-icon line,
.arch-icon path,
.arch-icon circle,
.arch-icon polyline,
.arch-icon rect {
  fill: none;
  stroke: #ffc940;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arch-connect-shimmer {
  fill: none;
  stroke: transparent;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  pointer-events: none;
}

.architecture-body.is-active .arch-connect-shimmer {
  opacity: 0;
  animation: none;
}

.architecture-body.is-active[data-active-col] .arch-connect-shimmer {
  opacity: 0;
  animation: none;
}

.arch-connect-spark {
  opacity: 0;
  pointer-events: none;
}

.architecture-body.is-active .arch-connect-spark {
  opacity: 1;
  transition: opacity 0.6s ease 0.46s;
}

.arch-spark-tail-soft {
  opacity: 0.14;
  filter: blur(3px);
}

.arch-spark-tail-core {
  opacity: 0.78;
}

.arch-spark-halo {
  filter: blur(1.2px);
  opacity: 0.8;
}

.arch-spark-core {
  filter: url(#arch-glow-soft);
  animation: archSparkTwinkle 0.85s ease-in-out infinite;
}

.arch-spark-glint line {
  stroke: #fffef7;
  stroke-width: 1.1;
  stroke-linecap: round;
  animation: archSparkTwinkle 0.85s ease-in-out infinite reverse;
}

@keyframes archSparkTwinkle {
  0%, 100% { opacity: 0.65; }

  50% { opacity: 1; }
}

@keyframes archPathShimmer {
  0%, 100% {
    stroke: rgba(255, 201, 64, 0.16);
    opacity: 0.3;
  }

  50% {
    stroke: rgba(255, 210, 122, 0.48);
    opacity: 0.75;
  }
}

.architecture-body.is-active[data-active-col] .arch-col {
  opacity: 0.52;
}

.architecture-body.is-active[data-active-col="1"] .arch-col:nth-child(1),
.architecture-body.is-active[data-active-col="2"] .arch-col:nth-child(2),
.architecture-body.is-active[data-active-col="3"] .arch-col:nth-child(3),
.architecture-body.is-active[data-active-col="4"] .arch-col:nth-child(4) {
  opacity: 1;
}

.arch-figure.is-lit {
  filter: url(#arch-glow-strong);
}

.arch-figure.is-lit .arch-ripple {
  stroke: #ffd56a;
  opacity: 0.85;
  stroke-width: 1.8;
}

.arch-person-img,
.arch-callout-img {
  pointer-events: none;
}

.arch-figure.is-lit .arch-person-img,
.arch-figure.is-lit .arch-callout-img {
  filter: url(#arch-glow-soft) brightness(1.08);
}

.arch-col:hover,
.architecture-body.is-active[data-active-col="1"] .arch-col:nth-child(1),
.architecture-body.is-active[data-active-col="2"] .arch-col:nth-child(2),
.architecture-body.is-active[data-active-col="3"] .arch-col:nth-child(3),
.architecture-body.is-active[data-active-col="4"] .arch-col:nth-child(4) {
  transform: translateY(-2px);
}

.arch-col:hover .arch-copy,
.architecture-body.is-active[data-active-col="1"] .arch-col:nth-child(1) .arch-copy,
.architecture-body.is-active[data-active-col="2"] .arch-col:nth-child(2) .arch-copy,
.architecture-body.is-active[data-active-col="3"] .arch-col:nth-child(3) .arch-copy,
.architecture-body.is-active[data-active-col="4"] .arch-col:nth-child(4) .arch-copy {
  filter: drop-shadow(0 0 18px rgba(245, 185, 75, 0.38));
}

.arch-col:hover .num,
.architecture-body.is-active[data-active-col="1"] .arch-col:nth-child(1) .num,
.architecture-body.is-active[data-active-col="2"] .arch-col:nth-child(2) .num,
.architecture-body.is-active[data-active-col="3"] .arch-col:nth-child(3) .num,
.architecture-body.is-active[data-active-col="4"] .arch-col:nth-child(4) .num {
  color: #f5c85a;
  transform: scale(1.06);
}

.arch-col:hover h3,
.architecture-body.is-active[data-active-col="1"] .arch-col:nth-child(1) h3,
.architecture-body.is-active[data-active-col="2"] .arch-col:nth-child(2) h3,
.architecture-body.is-active[data-active-col="3"] .arch-col:nth-child(3) h3,
.architecture-body.is-active[data-active-col="4"] .arch-col:nth-child(4) h3 {
  color: #fffdf8;
  text-shadow: 0 0 14px rgba(245, 185, 75, 0.28);
}

.arch-col:hover h3::after,
.architecture-body.is-active[data-active-col="1"] .arch-col:nth-child(1) h3::after,
.architecture-body.is-active[data-active-col="2"] .arch-col:nth-child(2) h3::after,
.architecture-body.is-active[data-active-col="3"] .arch-col:nth-child(3) h3::after,
.architecture-body.is-active[data-active-col="4"] .arch-col:nth-child(4) h3::after {
  transform: translateX(-50%) scaleX(1);
}

.architecture-body:not(.is-active) .arch-col {
  opacity: 0;
  transform: translateY(16px);
  transition: none;
}

.architecture-body:not(.is-active) .architecture-stage-svg {
  opacity: 0;
  transform: translateY(10px);
  clip-path: inset(0 100% 0 0);
  transition: none;
}

.architecture-body.is-active .architecture-stage-svg {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 460ms;
}

.architecture-body.is-active .architecture-stage::after {
  opacity: 0.55;
}

.architecture-stage::after {
  content: "";
  position: absolute;
  inset: 18% 8% 8%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    ellipse 90% 70% at 50% 80%,
    rgba(245, 185, 75, 0.16) 0%,
    transparent 72%
  );
  transition: opacity 1s ease 0.9s;
}

.arch-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 0;
  width: 100%;
  max-width: 240px;
  padding: 0 4px;
  transform: none;
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    opacity 0.22s ease;
}

.architecture-body.is-active .arch-col {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.architecture-body.is-active .arch-col:nth-child(1) { transition-delay: 0ms; }
.architecture-body.is-active .arch-col:nth-child(2) { transition-delay: 110ms; }
.architecture-body.is-active .arch-col:nth-child(3) { transition-delay: 220ms; }
.architecture-body.is-active .arch-col:nth-child(4) { transition-delay: 330ms; }

.arch-col:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 4px;
  right: -2px;
  transform: translateX(50%);
  color: #d6a23a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  z-index: 4;
  pointer-events: none;
  opacity: 0.85;
}

.arch-copy {
  flex: 0 0 auto;
  width: 100%;
  max-width: 220px;
}

.arch-col .num {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #d6a23a;
  transform-origin: center top;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.arch-col h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 6px;
  padding-bottom: 6px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f5f5f2;
  line-height: 1.25;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.arch-col h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 52px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(245, 185, 75, 0.95), transparent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.arch-col .arch-desc {
  margin: 0 auto;
  max-width: 100%;
  color: #c4bbb0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.plans { padding-top: 28px; }

.plans-header {
  text-align: center;
  margin-bottom: 22px;
}

.plans-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.7vw, 2.3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plans-sub {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #9a9185;
  letter-spacing: 0.02em;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #3a2b13;
  border-radius: 12px;
  background: #101010;
  padding: 24px 22px 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
  border-color: #6b5228;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 22px rgba(214, 162, 58, 0.1);
}

.plan.featured:hover {
  box-shadow:
    0 0 0 1px rgba(214, 162, 58, 0.55),
    0 0 48px rgba(214, 162, 58, 0.26),
    0 16px 42px rgba(0, 0, 0, 0.55);
}

.plan.featured {
  border-color: #d8a54a;
  box-shadow: 0 0 0 1px rgba(214, 162, 58, 0.44), 0 0 42px rgba(214, 162, 58, 0.18);
  padding-top: 28px;
}

.popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 100px;
  background: #f5b94b;
  color: #15110b;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 700;
  white-space: nowrap;
}

.plan h3 {
  width: 100%;
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #f5f5f2;
}

.price {
  width: 100%;
  margin: 0 0 18px;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: #f5f5f2;
}

.price span {
  font-size: 0.42em;
  font-weight: 600;
  color: #d6a23a;
  letter-spacing: 0.02em;
  margin-left: 0.12em;
}

.price-custom {
  font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  letter-spacing: 0.04em;
}

.plan ul {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  text-align: left;
}

.plan li {
  padding-left: 18px;
  position: relative;
  color: #c4bbb0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d6a23a;
  font-weight: 700;
}

.plan-cta {
  display: block;
  width: 100%;
  margin-top: auto;
  text-align: center;
  border-radius: 8px;
  padding: 11px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 700;
}

.plan-cta-light {
  border: 1px solid #5b431f;
  color: #ebe6dc;
  background: transparent;
}

.plan-cta-gold {
  border: 1px solid #6b4f1f;
  color: #f5b94b;
  background: transparent;
}

.plan-cta-primary {
  border: 1px solid rgba(245, 185, 75, 0.75);
  background: linear-gradient(135deg, #f5b94b 0%, #d6a23a 45%, #8a560d 100%);
  color: #151109;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 16px;
  align-items: center;
}

.platforms-copy h2 {
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}

.platforms-copy p {
  color: #b7aea1;
  margin-bottom: 18px;
}

.platform-stack { position: relative; }

.platform-composite {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 561;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #2e2234;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.6);
}

.platform-composite--figma {
  --figma-w: 1440;
  --figma-h: 900;
  aspect-ratio: 1440 / 900;
  container-type: size;
}

.platform-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.platform-composite::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(245, 185, 75, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.35) 100%);
}

.platform-composite--figma::after {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 30%, rgba(245, 185, 75, 0.14) 0%, rgba(245, 185, 75, 0.04) 24%, transparent 54%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.22) 100%);
}

.planet-fx {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.planet-horizon-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  width: 46%;
  height: 38%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle at 50% 58%,
    rgba(255, 220, 140, 0.5) 0%,
    rgba(245, 185, 75, 0.24) 26%,
    rgba(245, 185, 75, 0.08) 46%,
    transparent 76%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 50% 62%,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.55) 68%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 62%,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.55) 68%,
    transparent 100%
  );
  mix-blend-mode: normal;
  opacity: 0.62;
  animation: planetHorizonPulse 4.6s ease-in-out infinite;
}

.planet-rim-sweep {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 86%;
  height: 44%;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 200deg at 50% 100%,
    transparent 0deg,
    transparent 286deg,
    rgba(245, 185, 75, 0.08) 300deg,
    rgba(255, 228, 160, 0.62) 328deg,
    rgba(245, 185, 75, 0.95) 338deg,
    rgba(255, 228, 160, 0.62) 348deg,
    rgba(245, 185, 75, 0.08) 362deg,
    transparent 376deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(
    ellipse 100% 100% at 50% 100%,
    transparent 63%,
    #000 67%,
    #000 77%,
    transparent 81%
  );
  mask: radial-gradient(
    ellipse 100% 100% at 50% 100%,
    transparent 63%,
    #000 67%,
    #000 77%,
    transparent 81%
  );
  mix-blend-mode: normal;
  opacity: 0.85;
  animation: planetRimSweep 18s linear infinite;
}

.platform-composite--figma:has(.platform-badge:hover) .planet-horizon-pulse,
.platform-composite--figma:has(.platform-badge:hover) .planet-rim-sweep {
  animation-play-state: paused;
}

.platform-composite--figma.planet-fx-active .planet-horizon-pulse,
.platform-composite--figma.planet-fx-active .planet-rim-sweep {
  animation-play-state: running;
}

.platform-planet {
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: normal;
}

.platform-badges {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.platform-badge {
  position: absolute;
  left: calc(var(--bx) / var(--figma-w) * 100%);
  top: calc(var(--by) / var(--figma-h) * 100%);
  translate: -50% -50%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  max-width: 220px;
  padding: 8px 12px 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(59, 44, 21, 0.55);
  background: transparent;
  pointer-events: auto;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.platform-composite--figma:has(.platform-badge:hover) .planet-horizon-pulse,
.platform-composite--figma:has(.platform-badge:hover) .planet-rim-sweep {
  animation-play-state: paused;
}

.platform-badge:hover {
  border-color: rgba(214, 162, 58, 0.65);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55), 0 0 20px rgba(245, 185, 75, 0.16);
  filter: brightness(1.08);
  z-index: 5;
}

.platform-badge-logo {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.platform-badge-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.platform-badge-text strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f5f5f2;
  line-height: 1.2;
}

.platform-badge-text span {
  font-size: 10px;
  color: #a9a198;
  line-height: 1.25;
}

.chips {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.chips span {
  border: 1px solid #4a3618;
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.74);
  padding: 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.chips small {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  color: #b8aea1;
  font-size: 10px;
  margin-top: 3px;
}

.addons h2,
.tracking h2 {
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin-bottom: 8px;
  text-align: center;
}

.addons .section-kicker,
.tracking .section-kicker {
  text-align: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.addon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #3a2b13;
  border-radius: 10px;
  background: #101010;
  padding: 20px 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-5px);
  border-color: #6b5228;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 22px rgba(214, 162, 58, 0.1);
}

.addon-card h3 {
  width: 100%;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #f0ebe3;
}

.addon-price {
  width: 100%;
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  color: #f5b94b;
  line-height: 1.1;
}

.addon-price span {
  font-size: 14px;
  color: #b6ad9f;
  font-weight: 600;
}

.addon-card > p:not(.addon-price):not(.addon-label) {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 8px;
  padding-left: 18px;
  color: #b7aea1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  position: relative;
}

.addon-card > p.addon-label {
  position: static;
}

.addon-card > p:not(.addon-price):not(.addon-label)::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #d6a23a;
  font-weight: 700;
}

.addon-label {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 8px;
  padding-left: 0;
  color: #b7aea1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.addon-card > p:last-child {
  margin-bottom: 0;
}

.addon-list {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: #b7aea1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
}

.addon-list li {
  position: relative;
  padding-left: 18px;
}

.addon-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #d6a23a;
  font-weight: 700;
}

.addon-list li + li {
  margin-top: 4px;
}

.addon-list--packages li::before {
  content: none;
}

.addon-list--packages li {
  padding-left: 0;
  text-align: center;
}

.addon-list--packages li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.addon-list--packages li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.addon-list--packages li + li {
  margin-top: 0;
}

.addon-list--packages span {
  display: block;
  margin-top: 4px;
  padding-left: 18px;
  font-size: 11px;
  color: #9a9185;
  line-height: 1.45;
  text-align: left;
  position: relative;
}

.addon-list--packages span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d6a23a;
  font-weight: 700;
}

.tracking-lead {
  max-width: 640px;
  margin: 0 auto 18px;
  text-align: center;
  color: #b7aea1;
  font-size: 14px;
}

.tracking-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tracking-grid li {
  position: relative;
  border: 1px solid #3a2b13;
  border-radius: 10px;
  background: #101010;
  padding: 12px 12px 12px 28px;
  font-size: 12px;
  font-weight: 600;
  color: #ebe6dc;
}

.tracking-grid li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5b94b;
  box-shadow: 0 0 10px rgba(245, 185, 75, 0.5);
}

.legal-modal {
  border: 1px solid #3a2b13;
  border-radius: 12px;
  padding: 0;
  max-width: 640px;
  width: calc(100% - 32px);
  max-height: min(88vh, 720px);
  background: #101010;
  color: #f5f5f2;
}

.legal-modal::backdrop {
  background: rgba(3, 3, 3, 0.78);
}

.legal-modal-inner {
  padding: 24px 22px 20px;
  position: relative;
  max-height: min(88vh, 720px);
  overflow-y: auto;
}

.legal-modal h2 {
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 32px 6px 0;
}

.legal-updated {
  color: #8f8679;
  font-size: 11px;
  margin-bottom: 16px;
}

.legal-modal h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d6a23a;
  margin: 18px 0 8px;
}

.legal-modal p,
.legal-modal li {
  color: #b7aea1;
  font-size: 13px;
  line-height: 1.55;
}

.legal-modal p {
  margin: 0 0 10px;
}

.legal-modal ul {
  margin: 0 0 10px;
  padding-left: 18px;
}

.legal-modal li {
  margin-bottom: 6px;
}

.legal-modal a {
  color: #d6a23a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #d6a23a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.examples { padding-top: 18px; }

.examples-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: end;
}

.examples-intro h2 {
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.examples-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.examples-metrics .metric-card {
  border: 1px solid #3a2b13;
  border-radius: 10px;
  background: #101010;
  padding: 16px 16px 14px;
}

.examples-metrics .metric-num {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #f5b94b 0%, #d6a23a 45%, #8a560d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.examples-metrics .metric-suffix,
.examples-metrics .metric-prefix {
  font-size: 0.85em;
}

.examples-metrics .metric-label {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #b7aea1;
}

.examples-metrics .metric-source {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7f776c;
}

.examples-mocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-reddit,
.mock-google {
  border: 1px solid #3a2b13;
  border-radius: 10px;
  background: #101010;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.mock-reddit {
  display: flex;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.mock-reddit-votes {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 14px 4px;
  background: #0a0a0a;
  font-size: 11px;
  color: #9a9185;
}

.mock-reddit-votes .vote-up {
  font-size: 13px;
  color: #ff4500;
}

.mock-reddit-votes .vote-count {
  color: #ebe6dc;
  font-weight: 600;
  font-size: 11px;
}

.mock-reddit-votes .vote-down {
  font-size: 13px;
  color: #6f685e;
}

.mock-reddit-content {
  flex: 1;
  padding: 16px 18px;
}

.mock-reddit-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mock-reddit-snoo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff4500;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mock-reddit-meta {
  font-size: 11px;
  color: #9a9185;
  line-height: 1.35;
}

.mock-reddit-meta .sub-name {
  color: #ebe6dc;
  font-weight: 600;
}

.mock-reddit-meta .user {
  display: block;
  margin-top: 2px;
  font-size: 10px;
}

.mock-reddit-body {
  font-size: 13px;
  line-height: 1.5;
  color: #ddd8ce;
  margin-bottom: 12px;
}

.mock-reddit-reply {
  border-left: 2px solid #d6a23a;
  background: rgba(214, 162, 58, 0.06);
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 10px;
}

.mock-reddit-reply-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.mock-reddit-reply-logo {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.mock-reddit-reply-name {
  font-size: 11px;
  font-weight: 600;
  color: #f5b94b;
}

.mock-reddit-reply-time {
  font-size: 10px;
  color: #7f776c;
}

.mock-reddit-reply-body {
  font-size: 12px;
  line-height: 1.5;
  color: #b7aea1;
}

.mock-reddit-reply-body strong {
  color: #f5b94b;
  font-weight: 600;
}

.mock-reddit-actions {
  display: flex;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #9a9185;
}

.mock-google {
  padding: 16px 18px;
}

.mock-google-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mock-google-logo {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-flex;
  flex-shrink: 0;
}

.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }

.mock-google-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #0a0a0a;
  border: 1px solid #3a2b13;
  border-radius: 20px;
  font-size: 11px;
  color: #9a9185;
  min-width: 0;
}

.mock-google-bar svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.mock-google-result {
  padding: 10px 0;
  border-bottom: 1px solid #2f2314;
  margin-bottom: 12px;
}

.mock-google-result-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.mock-google-result-logo {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.mock-google-result-title {
  font-size: 14px;
  font-weight: 600;
  color: #f5b94b;
}

.mock-google-result-url {
  font-size: 10px;
  color: #7f776c;
  margin-bottom: 6px;
  margin-left: 26px;
}

.mock-google-result-desc {
  font-size: 12px;
  color: #b7aea1;
  line-height: 1.45;
  margin-left: 26px;
}

.mock-google-ai-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mock-google-ai-title {
  font-size: 11px;
  font-weight: 600;
  color: #ebe6dc;
  letter-spacing: 0.02em;
}

.mock-google-ai-body {
  font-size: 12px;
  color: #b7aea1;
  line-height: 1.5;
  margin: 0 0 10px;
}

.mock-google-ai-sources {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #7f776c;
}

.mock-google-ai-sources-icons {
  display: flex;
  gap: 4px;
}

.mock-source-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #0a0a0a;
  border: 1px solid #3a2b13;
  display: grid;
  place-items: center;
}

.contact-section {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(47, 35, 20, 0.72);
  border-bottom: 1px solid rgba(47, 35, 20, 0.72);
  padding: 42px 0 48px;
}

.bottom-spline-zone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bottom-spline-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 185, 75, 0.08), transparent 42%),
    linear-gradient(180deg, #050505 0%, #080808 52%, #050505 100%);
}

.bottom-spline-bg::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 168px;
  height: 58px;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, #050505 32%, #050505 100%);
}

.bottom-spline-bg spline-viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 1px;
  min-height: 1px;
  opacity: 0.92;
  visibility: hidden;
  pointer-events: auto;
  transition: visibility 0.7s ease, opacity 0.7s ease;
}

.bottom-spline-zone.bottom-spline-ready .bottom-spline-bg spline-viewer {
  visibility: visible;
  opacity: 0.92;
}

.bottom-spline-zone .section.tracking,
.bottom-spline-zone .section.faq,
.bottom-spline-zone .section.contact-section {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.bottom-spline-zone .container {
  pointer-events: none;
}

.bottom-spline-zone .container a,
.bottom-spline-zone .container button,
.bottom-spline-zone .container input,
.bottom-spline-zone .container select,
.bottom-spline-zone .container textarea,
.bottom-spline-zone .container label,
.bottom-spline-zone .container summary {
  pointer-events: auto;
}

.bottom-spline-zone .tracking {
  padding-bottom: 28px;
}

@media (prefers-reduced-motion: reduce) {
  .bottom-spline-bg spline-viewer {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .bottom-spline-zone.bottom-spline-ready .bottom-spline-bg spline-viewer {
    opacity: 0.78;
  }
}

.contact-panel {
  max-width: 720px;
  margin: 0 auto;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-intro h2 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
}

.contact-intro p {
  color: #b9b0a3;
  max-width: 520px;
  font-size: 15px;
  margin: 0 0 18px;
}

.contact-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  margin-top: 2px;
}

.contact-toggle-icon {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-panel.is-expanded .contact-toggle-icon {
  transform: rotate(180deg);
}

.contact-form-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-panel.is-expanded .contact-form-collapse {
  grid-template-rows: 1fr;
  margin-top: 24px;
}

.contact-form-collapse-inner {
  overflow: hidden;
  min-height: 0;
}

.contact-panel.is-expanded .contact-form-collapse-inner {
  overflow: visible;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  padding: 22px;
  border: 1px solid #3b2c15;
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d3a550;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #3f2f18;
  border-radius: 8px;
  background: #000;
  color: #f5f5f2;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.45;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #6f6860;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #b28534;
  box-shadow: 0 0 0 1px rgba(245, 185, 75, 0.25);
}

.contact-field.is-invalid input,
.contact-field.is-invalid textarea {
  border-color: #c45c28;
  box-shadow: 0 0 0 1px rgba(196, 92, 40, 0.2);
}

.contact-field.is-valid input,
.contact-field.is-valid textarea {
  border-color: #5a4520;
}

.contact-field-error {
  min-height: 1.1em;
  font-size: 11px;
  color: #e08a5a;
  letter-spacing: 0.02em;
}

.contact-field-error:empty {
  display: none;
}

.contact-field-hint {
  font-size: 10px;
  color: #6f6860;
  letter-spacing: 0.04em;
}

.contact-field.is-invalid .contact-field-hint {
  display: none;
}

.contact-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

.contact-form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  color: #b9b0a3;
  min-height: 1.2em;
}

.contact-form-status.is-success { color: #d3a550; }
.contact-form-status.is-error { color: #e08a5a; }

.telegram-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10001;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid rgba(245, 185, 75, 0.62);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.48),
    0 0 18px rgba(245, 185, 75, 0.14);
  color: #f5b94b;
  cursor: pointer;
  animation: telegramFabAttention 10s ease-in-out infinite;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.telegram-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(245, 185, 75, 0.72);
  opacity: 0;
  pointer-events: none;
  animation: telegramFabRing 10s ease-out infinite;
}

.telegram-fab svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.telegram-fab:hover,
.telegram-fab:focus-visible {
  animation-play-state: paused;
}

.telegram-fab:hover::before,
.telegram-fab:focus-visible::before {
  animation-play-state: paused;
  opacity: 0;
}

.telegram-fab:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 185, 75, 0.95);
  background: rgba(14, 12, 8, 0.96);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(245, 185, 75, 0.28);
  color: #ffd27a;
}

.telegram-fab:focus-visible {
  outline: 2px solid rgba(245, 185, 75, 0.85);
  outline-offset: 3px;
}

.site-footer {
  padding: 18px 0 26px;
  background: rgba(0, 0, 0, 0.88);
  border-top: 1px solid #272017;
  backdrop-filter: blur(12px);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #bdb3a6;
}

.site-footer p {
  color: #8f8679;
  font-size: 12px;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(-3px) rotate(-0.4deg); }
  50% { transform: translateY(9px) rotate(0.4deg); }
}

@keyframes heroApexPulse {
  0%, 100% { opacity: 0.48; }
  50% { opacity: 0.95; }
}

@keyframes planetHorizonPulse {
  0%, 100% { opacity: 0.48; }
  50% { opacity: 0.95; }
}

@keyframes planetRimSweep {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes heroDustDrift {
  0%, 100% { transform: translate(0, 0); opacity: var(--dust-opacity, 0.5); }
  50% { transform: translate(var(--dust-x, 8px), var(--dust-y, -16px)); opacity: calc(var(--dust-opacity, 0.5) * 1.4); }
}

@keyframes telegramFabAttention {
  0%, 74%, 100% {
    border-color: rgba(245, 185, 75, 0.62);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.48),
      0 0 18px rgba(245, 185, 75, 0.14);
    color: #f5b94b;
  }

  4% {
    border-color: rgba(255, 210, 122, 0.98);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.48),
      0 0 34px rgba(245, 185, 75, 0.46),
      0 0 52px rgba(245, 185, 75, 0.18);
    color: #ffd27a;
  }

  8%, 12% {
    border-color: rgba(245, 185, 75, 0.62);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.48),
      0 0 18px rgba(245, 185, 75, 0.14);
    color: #f5b94b;
  }

  16% {
    border-color: rgba(255, 210, 122, 0.98);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.48),
      0 0 34px rgba(245, 185, 75, 0.46),
      0 0 52px rgba(245, 185, 75, 0.18);
    color: #ffd27a;
  }
}

@keyframes telegramFabRing {
  0%, 74%, 100% {
    transform: scale(1);
    opacity: 0;
  }

  4% {
    opacity: 0.75;
  }

  20% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.motion-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (pointer: fine) {
  html {
    cursor: url("./assets/icons/cursor-gold.svg") 3 2, auto;
  }

  a,
  button,
  summary,
  label,
  .hero-badge,
  .platform-badge,
  .contact-toggle,
  .plan,
  .addon-card,
  .service-tile,
  .value-tile,
  .arch-col,
  .arch-figure,
  .chip,
  .telegram-fab,
  .legal-close {
    cursor: url("./assets/icons/cursor-gold.svg") 3 2, pointer;
  }

  input,
  textarea,
  select {
    cursor: text;
  }
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 150px;
  height: 150px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(245, 185, 75, 0.28) 0%,
    rgba(245, 185, 75, 0.1) 38%,
    transparent 68%
  );
  mix-blend-mode: normal;
  transition: opacity 0.4s ease;
  will-change: transform;
}

.cursor-glow.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow {
    display: none;
  }

  .contact-form-collapse,
  .contact-toggle-icon {
    transition: none !important;
  }

  .hero-composite-stage,
  .hero-badges,
  .hero-apex-glow,
  .hero-dust span,
  .planet-horizon-pulse,
  .planet-rim-sweep {
    animation: none !important;
  }

  .hero-composite-stage,
  .hero-badges {
    transform: none;
    translate: none;
  }

  .hero-apex-glow {
    opacity: 0.72;
  }

  .planet-horizon-pulse {
    opacity: 0.72;
  }

  .planet-rim-sweep {
    opacity: 0.35;
    transform: translateX(-50%);
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .plan:hover,
  .addon-card:hover,
  .platform-badge:hover,
  .hero-badge:hover {
    filter: none !important;
  }

  .magnetic-cta {
    transform: none !important;
  }

  .architecture-body:not(.is-active) .arch-col,
  .architecture-body.is-active .arch-col {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .architecture-body.is-active[data-active-col] .arch-col {
    opacity: 1;
  }

  .architecture-body.is-active .arch-connect-shimmer,
  .architecture-body.is-active .arch-connect-spark {
    animation: none !important;
    opacity: 0;
  }

  .arch-col:hover .num,
  .architecture-body.is-active[data-active-col] .arch-col .num {
    transform: none;
  }

  .arch-col:hover h3,
  .architecture-body.is-active[data-active-col] .arch-col h3 {
    text-shadow: none;
  }

  .arch-col h3::after {
    display: none;
  }

  .architecture-body:not(.is-active) .architecture-stage-svg,
  .architecture-body.is-active .architecture-stage-svg {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .architecture-stage::after {
    display: none;
  }

  .telegram-fab,
  .telegram-fab::before {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .platforms-grid { grid-template-columns: 1fr; }

  .architecture-body:not(.is-active) .arch-col,
  .architecture-body.is-active .arch-col {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .architecture-body:not(.is-active) .architecture-stage-svg,
  .architecture-body.is-active .architecture-stage-svg {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .architecture-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
    margin: 0;
    gap: 10px 4px;
  }

  .arch-col {
    max-width: none;
    padding: 0 2px;
  }

  .arch-col h3 {
    font-size: 8px;
    letter-spacing: 0.06em;
    padding-bottom: 4px;
    margin-bottom: 4px;
  }

  .arch-col .num {
    font-size: clamp(0.95rem, 2.6vw, 1.2rem);
    margin-bottom: 4px;
  }

  .arch-col .arch-desc {
    font-size: 10px;
    line-height: 1.35;
  }

  .hero.section {
    padding-bottom: 28px;
  }

  .hero-media {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-composite {
    position: relative;
    display: block;
    overflow: visible;
  }

  .hero-composite-stage,
  .hero-apex-glow,
  .hero-badges {
    animation: none;
  }

  .hero-composite-inner {
    aspect-ratio: 1024 / 682;
    width: 100%;
  }

  .hero-badges {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
    pointer-events: none;
  }

  .hero-badge {
    position: absolute;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    gap: 0;
    max-width: none;
  }

  .hero-badge h3 {
    display: none;
  }

  .hero-badge-icon {
    width: 22px;
    height: 22px;
  }

  .hero-badge--left {
    left: 7%;
    bottom: calc(14% + 12px);
    transform: none;
  }

  .hero-badge--center {
    left: 50%;
    bottom: calc(10% - 17px);
    translate: calc(-50% - 5px) 0;
  }

  .hero-badge--right {
    right: 7%;
    bottom: calc(14% + 12px);
  }

  .platforms,
  .platforms .platform-stack,
  .platforms .platform-composite,
  .platform-composite--figma {
    overflow: visible;
  }

  .platform-composite--figma {
    aspect-ratio: 1440 / 900;
  }

  .platform-badge {
    overflow: visible;
  }

  .platform-composite--figma::after {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }

  .platform-composite--figma .platform-planet {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .platform-composite--figma .planet-fx {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }

  .platform-badges {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    pointer-events: none;
    margin: 0;
    padding: 0;
  }

  .platform-badge {
    position: absolute;
    left: calc(var(--bx) / var(--figma-w) * 100%);
    top: calc(var(--by) / var(--figma-h) * 100%);
    translate: -50% -50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 0;
    max-width: none;
    padding: 0;
    gap: 0;
    pointer-events: auto;
  }

  .platform-badge-text {
    display: none;
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    width: max-content;
    max-width: min(148px, 42vw);
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(245, 185, 75, 0.42);
    background: rgba(8, 8, 8, 0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    text-align: center;
    z-index: 12;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .platform-badge--tip-below .platform-badge-text {
    bottom: auto;
    top: calc(100% + 8px);
    transform: translate(-50%, -6px);
  }

  .platform-badge.is-expanded {
    z-index: 14;
    border-color: rgba(214, 162, 58, 0.65);
    box-shadow: 0 0 16px rgba(245, 185, 75, 0.18);
  }

  .platform-badge.is-expanded .platform-badge-text {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .platform-badge--tip-below.is-expanded .platform-badge-text {
    transform: translate(-50%, 0);
  }

  .platform-badge--tip-left .platform-badge-text {
    left: 0;
    right: auto;
    transform: translateY(6px);
  }

  .platform-badge--tip-left.platform-badge--tip-below .platform-badge-text {
    transform: translateY(-6px);
  }

  .platform-badge--tip-left.is-expanded .platform-badge-text {
    transform: translateY(0);
  }

  .platform-badge--tip-right .platform-badge-text {
    left: auto;
    right: 0;
    transform: translateY(6px);
  }

  .platform-badge--tip-right.platform-badge--tip-below .platform-badge-text {
    transform: translateY(-6px);
  }

  .platform-badge--tip-right.is-expanded .platform-badge-text {
    transform: translateY(0);
  }

  .platform-badge-logo {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .architecture-stage {
    aspect-ratio: 1024 / 200;
  }

  .architecture-body:not(.is-active) .architecture-stage-svg,
  .architecture-body.is-active .architecture-stage-svg {
    transform: none;
  }

  .examples-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
}

@media (max-width: 1280px) {
  .arch-col:not(:last-child)::after {
    right: -12px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: calc(74px + env(safe-area-inset-top, 0px));
  }

  body {
    padding-top: calc(74px + env(safe-area-inset-top, 0px));
  }

  /* Samsung Internet / Android: sticky + backdrop-filter часто ломаются — фиксируем шапку */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: env(safe-area-inset-top, 0px);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  body.mobile-menu-open .site-header {
    z-index: 10031;
  }

  .mobile-menu-toggle {
    touch-action: manipulation;
  }

  .section {
    padding: 32px 0;
  }

  .decisions-head {
    margin-bottom: 24px;
  }

  .decisions-head h2,
  .architecture-header h2,
  .plans-header h2,
  .addons h2,
  .platforms-copy h2,
  .examples-intro h2,
  .tracking h2,
  .contact-intro h2 {
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
    line-height: 1.08;
    margin-bottom: 8px;
  }

  .plans-header,
  .architecture-header {
    margin-bottom: 18px;
  }

  .plans-sub,
  .platforms-copy p,
  .contact-intro p {
    font-size: 14px;
    line-height: 1.5;
  }

  .section-kicker,
  .decisions-kicker,
  .micro-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
  }

  .main-nav { display: none; }

  .lang-switch--desktop { display: none; }

  .site-header .header-cta {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-nav {
    display: block;
  }

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

  .site-header .logo img,
  .site-footer .logo img {
    height: 54px;
  }

  .site-header .logo span,
  .site-footer .logo span {
    font-size: 22px;
  }

  .page-shell {
    background:
      linear-gradient(
        90deg,
        #000 0%,
        #030302 38%,
        rgba(18, 14, 8, 0.98) 68%,
        rgba(245, 185, 75, 0.07) 88%,
        rgba(245, 185, 75, 0.11) 100%
      ),
      radial-gradient(circle at 72% 2%, rgba(245, 185, 75, 0.14) 0%, rgba(245, 185, 75, 0.02) 16%, transparent 36%),
      radial-gradient(circle at 50% 110%, rgba(245, 185, 75, 0.08) 0%, transparent 42%),
      #000;
  }

  .hero.section {
    background: transparent;
  }

  .hero-points {
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 14px;
    margin-bottom: 16px;
  }

  .hero-points li {
    flex: 1 1 0;
    min-width: 0;
    padding: 7px 4px;
    font-size: clamp(7.2px, 2.07vw, 9px);
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    border: 1px solid rgba(245, 185, 75, 0.48);
    color: #ddd8ce;
    background: rgba(5, 5, 5, 0.55);
    box-shadow: 0 0 12px rgba(245, 185, 75, 0.06);
  }

  .telegram-fab {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .telegram-fab svg {
    width: 25px;
    height: 25px;
  }

  .service-tile:not(:last-child),
  .value-tile:not(:last-child) {
    border-right: none;
  }

  .service-tile {
    padding: 16px 12px;
  }

  .service-tile:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .value-tile {
    padding: 14px 12px;
  }

  .value-tile:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .decision-services,
  .decision-values,
  .plans-grid,
  .chips,
  .addons-grid,
  .tracking-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .plans-grid,
  .addons-grid {
    justify-items: stretch;
    max-width: min(100%, 520px);
    margin-inline: auto;
    gap: 12px;
  }

  .plan,
  .addon-card {
    width: 100%;
    max-width: none;
    border-radius: 12px;
    padding: 20px 16px 16px;
  }

  .plan.featured {
    padding-top: 24px;
  }

  .plan h3,
  .addon-card h3 {
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .plan ul,
  .addon-list {
    width: 100%;
    max-width: 210px;
    margin-inline: auto;
  }

  .addon-price {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .architecture-grid {
    gap: 8px 2px;
  }

  .architecture-body {
    width: calc(100% - 16px);
  }

  .architecture-body:not(.is-active) .arch-col,
  .architecture-body.is-active .arch-col {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .architecture-body:not(.is-active) .architecture-stage-svg,
  .architecture-body.is-active .architecture-stage-svg {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .architecture-stage::after {
    display: none;
  }

  .arch-col:nth-child(2)::after,
  .arch-col:nth-child(4)::after {
    display: none;
  }

  .platforms-grid {
    gap: 20px;
  }

  .footer-wrap { flex-direction: column; justify-content: center; }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 72px;
  }

  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 28px 0; }

  h1 { font-size: clamp(2rem, 9vw, 2.6rem); margin-bottom: 14px; }
  .hero-sub { font-size: 14px; line-height: 1.55; }

  .decisions-head h2,
  .architecture-header h2,
  .plans-header h2,
  .addons h2,
  .platforms-copy h2,
  .examples-intro h2,
  .tracking h2,
  .contact-intro h2 {
    font-size: clamp(1.35rem, 6.8vw, 1.7rem);
  }

  .service-copy h3,
  .plan h3,
  .addon-card h3 {
    font-size: 14px;
    line-height: 1.25;
  }

  .service-copy p,
  .plan li,
  .addon-card > p:not(.addon-price) {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-points { margin-top: 12px; }
  .hero-actions { flex-direction: column; }
  .button-cta,
  .button-ghost { text-align: center; }

  .decision-services,
  .decision-values,
  .plans-grid,
  .chips,
  .examples-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .plans-grid,
  .addons-grid {
    max-width: 100%;
    gap: 12px;
  }

  .contact-field:nth-child(n) { grid-column: span 1; }

  .telegram-fab {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .telegram-fab svg {
    width: 23px;
    height: 23px;
  }

  .decision-services {
    margin-bottom: 20px;
  }

  .decision-values {
    padding: 16px 10px;
  }

  .architecture-grid {
    gap: 6px 2px;
  }

  .architecture-stage {
    aspect-ratio: 1024 / 200;
  }

  .arch-col h3 {
    font-size: 7px;
  }

  .arch-col .arch-desc {
    display: none;
  }

  .architecture-body {
    width: 100%;
    padding: 0 4px 6px;
  }

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

  .architecture-body:not(.is-active) .arch-col,
  .architecture-body.is-active .arch-col {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .architecture-body:not(.is-active) .architecture-stage-svg,
  .architecture-body.is-active .architecture-stage-svg {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .architecture-stage::after {
    display: none;
  }

  .arch-col::after {
    display: none !important;
  }

  .contact-section {
    padding-bottom: 96px;
  }

  .decisions {
    padding-top: 32px;
  }

  .hero-composite {
    width: 100%;
  }

  .hero-badge {
    width: 36px;
    height: 36px;
  }

  .hero-badge-icon {
    width: 20px;
    height: 20px;
  }

  .hero-badge--left {
    left: 8%;
    bottom: calc(12% + 12px);
  }

  .hero-badge--center {
    bottom: calc(8% - 13px);
    translate: calc(-50% - 5px) 0;
  }

  .hero-badge--right {
    right: 8%;
    bottom: calc(12% + 12px);
  }

  .platform-badge {
    width: 36px;
    height: 36px;
  }

  .platform-badge-logo {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
  }

  .platform-badge.badge-ai {
    left: 14%;
  }

  .platform-badge.badge-google {
    left: 86%;
  }

  .price { font-size: 34px; }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Заголовок "Почему BrandMantion" над блоком ценностей ---------- */

.values-heading {
  margin: 36px 0 18px;
  text-align: center;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f5f5f2;
}

/* ---------- Расширенные карточки тарифов (описание + два списка) ---------- */

.plan-desc {
  width: 100%;
  margin: -6px 0 16px;
  font-size: 12px;
  line-height: 1.45;
  color: #9a9185;
}

.plan-list-label {
  width: 100%;
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d6a23a;
  text-align: center;
}

/* ---------- FAQ ---------- */

.faq .section-kicker,
.faq h2 {
  text-align: center;
}

.faq h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.faq-list {
  max-width: 760px;
  margin: 26px auto 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #3a2b13;
  border-radius: 12px;
  background: #101010;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open],
.faq-item:hover {
  border-color: #6b4d1d;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 16px 48px 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #f5f5f2;
  transition: color 0.22s ease;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #d6a23a;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

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

.faq-item summary:hover { color: #f5b94b; }

.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 13px;
  line-height: 1.55;
  color: #b8b1a7;
}

/* ---------- Правки только для русской версии ---------- */

html[lang="ru"] .hero-copy h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  line-height: 1.02;
}

html[lang="ru"] .contact-intro p:first-of-type {
  margin-bottom: 8px;
}

@media (min-width: 861px) {
  html[lang="ru"] .decision-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }

  html[lang="ru"] .service-tile:not(:last-child) {
    border-right: none;
  }

  html[lang="ru"] .service-tile:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
