:root {
  --bg: #232323;
  --panel-solid: #2a2a2a;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.035);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #00b67a;
  --shadow: rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --btn-radius: 14px;
  --page-gutter: clamp(28px, 4vw, 96px);
  --container-max: 2048px;
  --section-y: clamp(76px, 8vw, 128px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1100px 760px at 20% 18%, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0) 62%),
    radial-gradient(920px 680px at 72% 46%, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0) 58%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0) 1px,
      rgba(0, 0, 0, 0) 160px
    ),
    linear-gradient(180deg, #262626 0%, #1c1c1c 100%);
  color: var(--text);
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

html {
  scrollbar-gutter: stable;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container-max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.noise {
  display: none;
}

.site-menu {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2px;
  max-width: calc(100vw - 28px);
  padding: 5px;
  overflow-x: auto;
  background: rgba(9, 9, 12, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  scrollbar-width: none;
}

.site-menu::-webkit-scrollbar {
  display: none;
}

.site-menu a {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: #ffffff;
  background: rgba(124, 92, 255, 0.18);
  outline: none;
}

#inside,
#results,
#feedback,
#pricing,
#who,
#faq {
  scroll-margin-top: 74px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(43, 43, 43, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 12px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(0, 182, 122, 0.35);
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.nav a:hover {
  color: rgba(255, 255, 255, 0.94);
}

.nav-cart {
  font-size: 0.95rem;
  opacity: 0.88;
}

.nav-cart:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
}

.btn-primary {
  background: var(--accent);
  border-color: rgba(0, 182, 122, 0.75);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 182, 122, 0.22);
}

.btn-primary:hover {
  border-color: rgba(0, 182, 122, 0.95);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(0, 182, 122, 0.28);
}

.btn-outline {
  background: transparent;
  border-color: rgba(0, 182, 122, 0.55);
  color: rgba(0, 182, 122, 0.92);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: rgba(0, 182, 122, 0.78);
  color: rgba(0, 182, 122, 0.98);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.btn-sm {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.btn-xl {
  padding: 14px 22px;
  font-size: 1.02rem;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  opacity: 0.95;
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  padding: clamp(52px, 8vh, 92px) 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
}

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

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 43, 43, 0.98) 0%, rgba(43, 43, 43, 0.92) 52%, rgba(43, 43, 43, 0.45) 74%, rgba(43, 43, 43, 0.08) 100%);
}

.hero-photo-img {
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(54%, 58vw, 66%);
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  filter: grayscale(1) contrast(1.06) brightness(0.86);
  opacity: 0.95;
}

.social-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  width: 56px;
  padding: 12px 0;
  user-select: none;
}

.social-rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-rail-line {
  width: 1px;
  height: 92px;
  background: rgba(255, 255, 255, 0.18);
}

.social-rail-item {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.social-rail-item img {
  display: block;
  color: rgba(0, 182, 122, 0.92);
}

.social-rail-item:hover {
  color: rgba(0, 182, 122, 0.98);
  transform: translateY(-1px);
}

.eyebrow {
  display: block;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
}

.poster-title {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.poster-line {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.poster-line--green {
  color: var(--accent);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.poster-h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.section-heading {
  position: relative;
  margin-bottom: 22px;
  padding-top: clamp(12px, 3.2vw, 26px);
}

.section-heading::before {
  content: attr(data-bg);
  position: absolute;
  left: 0;
  top: -10px;
  font-family: Poppins, Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(2.17rem, 7.7vw, 7.14rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.subtitle {
  margin: 18px 0 26px;
  max-width: min(680px, 100%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-btn {
  border-radius: 999px;
  padding: 16px 22px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.hero-btn--outline {
  border-color: rgba(0, 182, 122, 0.46);
  color: rgba(0, 182, 122, 0.92);
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 182, 122, 0.12);
  backdrop-filter: blur(8px);
}

.hero-btn--outline:hover {
  border-color: rgba(0, 182, 122, 0.78);
  color: rgba(0, 182, 122, 0.98);
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(0, 182, 122, 0.18);
}

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

.kpis li {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 14px 12px;
}

.kpis span {
  display: inline-block;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 40vw, 680px);
}

.poster-sheen {
  position: absolute;
  inset: -80px -60px -100px -60px;
  background:
    radial-gradient(closest-side at 75% 30%, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0)),
    radial-gradient(closest-side at 22% 72%, rgba(0, 182, 122, 0.06), rgba(0, 0, 0, 0));
  pointer-events: none;
  opacity: 0.9;
}

.hero-model-image {
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.hero-model-image.is-fading {
  opacity: 0;
  transform: scale(1.01);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 14px 0 22px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  align-items: flex-start;
  padding: 10px 0;
}

.hero-meta-item {
  display: grid;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
}

.hero-meta-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-meta-sub {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-meta-sep {
  display: none;
}

.section {
  padding: var(--section-y) 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

#inside.section-dark {
  position: relative;
}

#inside.section-dark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -84px;
  height: 140px;
  background: radial-gradient(closest-side at 50% 0%, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  pointer-events: none;
  opacity: 0.9;
}

.inside-tabs {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.inside-list {
  display: grid;
  gap: 12px;
  height: 100%;
  align-content: space-between;
}

.inside-item {
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  padding: 16px 16px;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.inside-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.inside-item.is-active {
  border-color: rgba(0, 182, 122, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 182, 122, 0.18);
}

.inside-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.inside-item-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inside-preview {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  overflow: hidden;
  padding: 16px;
  height: 100%;
}

.inside-preview-media {
  width: 100%;
  min-height: clamp(360px, 52vh, 620px);
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 182, 122, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 182, 122, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.inside-preview-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: opacity 300ms ease;
}

.inside-preview-img.is-fading {
  opacity: 0.35;
}

.future-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
  padding: 16px 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.future-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 182, 122, 0.22), rgba(0, 0, 0, 0) 35%, rgba(214, 179, 106, 0.16));
  opacity: 0.65;
  pointer-events: none;
}

.future-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 182, 122, 0.55);
  opacity: 0.7;
  pointer-events: none;
}

.inside-future {
  grid-column: 2;
  margin: 0 16px;
}

.future-label {
  display: none;
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 182, 122, 0.78);
  margin-bottom: 8px;
}

.future-title {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.future-text {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  font-size: 0.92rem;
}

.inside-showcase {
  display: grid;
  gap: clamp(52px, 7vw, 108px);
  margin-top: 32px;
}

.inside-showcase-item {
  position: relative;
  padding: clamp(44px, 6vw, 72px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.inside-showcase-item::before {
  content: "";
  position: absolute;
  right: -18%;
  top: 8%;
  width: 48%;
  height: 54%;
  background: radial-gradient(closest-side, var(--inside-glow), rgba(0, 0, 0, 0));
  opacity: 0.95;
  pointer-events: none;
}

.inside-showcase-item--reverse::before {
  right: auto;
  left: -18%;
}

.inside-showcase-head {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.inside-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--inside-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inside-kicker span {
  width: 46px;
  height: 1px;
  background: var(--inside-accent);
  box-shadow: 0 0 18px var(--inside-glow);
}

.inside-showcase-head h3,
.inside-next-card h3 {
  font-size: clamp(2.35rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.94);
}

.inside-showcase-head p:not(.inside-kicker) {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(214, 224, 238, 0.72);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.62;
}

.inside-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.inside-showcase-item--reverse .inside-shot {
  order: 2;
}

.inside-shot {
  position: relative;
  height: clamp(440px, 34vw, 720px);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--inside-accent) 58%, rgba(255, 255, 255, 0.12));
  background:
    radial-gradient(closest-side at 50% 0%, var(--inside-glow), rgba(0, 0, 0, 0)),
    #0c1118;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 58px var(--inside-glow);
}

.inside-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.inside-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.inside-feature-list {
  list-style: none;
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.inside-feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.inside-feature-list span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--inside-accent) 72%, rgba(255, 255, 255, 0.1));
  background: color-mix(in srgb, var(--inside-accent) 17%, rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26), 0 0 28px var(--inside-glow);
}

.inside-feature-list strong {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.inside-feature-list p {
  margin: 8px 0 0;
  color: rgba(214, 224, 238, 0.68);
  font-size: clamp(0.96rem, 1.25vw, 1.06rem);
  line-height: 1.62;
}

.inside-next-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  border: 1px solid rgba(0, 182, 122, 0.32);
  background:
    radial-gradient(closest-side at 84% 0%, rgba(214, 179, 106, 0.22), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(0, 182, 122, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(0, 182, 122, 0.1);
}

.inside-next-card .inside-kicker {
  --inside-accent: #00b67a;
  --inside-glow: rgba(0, 182, 122, 0.24);
}

.inside-next-card p:not(.inside-kicker) {
  max-width: 920px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

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

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.timeline {
  display: grid;
  gap: 14px;
}

.step {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  padding: 18px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(22px, 3vw, 48px);
}

.feedback-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.26);
}

.feedback-link:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.feedback-btn {
  margin: 10px 0 0;
  width: 100%;
  justify-content: center;
  border-radius: var(--btn-radius);
  padding: 16px 22px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border-color: rgba(0, 182, 122, 0.46);
  color: rgba(0, 182, 122, 0.92);
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 182, 122, 0.12);
  backdrop-filter: blur(8px);
}

.feedback-btn:hover {
  border-color: rgba(0, 182, 122, 0.78);
  color: rgba(0, 182, 122, 0.98);
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(0, 182, 122, 0.18);
}

.feedback-cta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.feedback-cta--desktop {
  justify-content: flex-start;
}

.feedback-cta--mobile {
  display: none;
}

.feedback-cta--mobile .feedback-btn {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-feature {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  overflow: hidden;
  height: clamp(220px, 20vw, 360px);
  padding: 8px;
}

.feedback-feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  display: block;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.feedback-grid img {
  width: 100%;
  height: clamp(150px, 12vw, 230px);
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  display: block;
}

.boost-section {
  --boost-purple: #8b1cff;
  --boost-purple-soft: rgba(139, 28, 255, 0.24);
  --boost-green: rgba(0, 182, 122, 0.88);
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0) 1px,
      rgba(0, 0, 0, 0) 14px
    ),
    linear-gradient(180deg, #050507 0%, #111018 48%, #070708 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.boost-section::before,
.boost-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.boost-section::before {
  left: -8%;
  right: -8%;
  top: 6%;
  height: 38%;
  background:
    linear-gradient(104deg, rgba(139, 28, 255, 0) 0%, rgba(139, 28, 255, 0.56) 34%, rgba(139, 28, 255, 0.16) 54%, rgba(139, 28, 255, 0) 74%),
    linear-gradient(166deg, rgba(255, 255, 255, 0) 9%, rgba(255, 255, 255, 0.16) 30%, rgba(255, 255, 255, 0) 44%);
  transform: skewY(-9deg);
  opacity: 0.7;
}

.boost-section::after {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(139, 28, 255, 0) 0%, rgba(139, 28, 255, 0.28) 1%, rgba(139, 28, 255, 0) 7%),
    linear-gradient(150deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 1%, rgba(255, 255, 255, 0) 6%);
  background-size: 420px 170px, 520px 190px;
  mix-blend-mode: screen;
  opacity: 0.28;
}

.boost-section .container {
  position: relative;
  z-index: 1;
}

.boost-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(320px, 0.74fr);
  gap: clamp(22px, 4vw, 72px);
  align-items: end;
}

.boost-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.boost-kicker span {
  width: 48px;
  height: 2px;
  background: var(--boost-purple);
  box-shadow: 0 0 24px rgba(139, 28, 255, 0.74);
}

.boost-title {
  display: grid;
  gap: 4px;
  margin: 0;
  font-size: clamp(2.4rem, 7.4vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
  color: #f8f8f8;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
}

.boost-title span:last-child {
  color: var(--boost-purple);
  text-shadow:
    0 0 34px rgba(139, 28, 255, 0.48),
    0 16px 44px rgba(0, 0, 0, 0.45);
}

.boost-lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.boost-lead--muted {
  color: rgba(255, 255, 255, 0.66);
}

.boost-lead a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(139, 28, 255, 0.62);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.boost-callout {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(139, 28, 255, 0.62);
  background:
    linear-gradient(145deg, rgba(139, 28, 255, 0.16), rgba(0, 182, 122, 0.08)),
    rgba(12, 14, 20, 0.82);
  padding: clamp(20px, 3vw, 34px);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(139, 28, 255, 0.16),
    0 0 42px rgba(139, 28, 255, 0.22);
}

.boost-callout::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 18%;
  height: 24%;
  background: rgba(139, 28, 255, 0.28);
  transform: rotate(-7deg);
}

.boost-callout span,
.boost-callout strong {
  position: relative;
  z-index: 1;
}

.boost-callout span {
  display: block;
  margin-bottom: 16px;
  color: var(--boost-green);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.boost-callout strong {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.25rem, 2.4vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.boost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 58px);
}

.boost-card {
  position: relative;
  min-height: 210px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(139, 28, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(11, 13, 18, 0.9);
  box-shadow:
    0 28px 92px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.boost-card::before {
  content: "";
  position: absolute;
  left: -20px;
  right: 22%;
  top: 18px;
  height: 10px;
  background: linear-gradient(90deg, rgba(139, 28, 255, 0), rgba(139, 28, 255, 0.68), rgba(139, 28, 255, 0));
  transform: rotate(-4deg);
  opacity: 0.72;
}

.boost-card-num {
  position: relative;
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--boost-purple);
  font-weight: 900;
  font-size: 0.86rem;
  text-shadow: 0 0 18px rgba(139, 28, 255, 0.56);
}

.boost-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.boost-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.62;
  font-size: 0.96rem;
}

.boost-posters {
  display: grid;
  grid-template-columns: minmax(300px, 1.12fr) repeat(2, minmax(210px, 0.72fr));
  grid-auto-rows: clamp(240px, 22vw, 390px);
  gap: 16px;
  margin-top: clamp(28px, 4vw, 58px);
}

.boost-poster {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(139, 28, 255, 0.46);
  background: #07080c;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(139, 28, 255, 0.12),
    0 0 34px rgba(139, 28, 255, 0.2);
}

.boost-poster--large {
  grid-row: span 2;
}

.boost-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.muted {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
}

.pricing-sub {
  max-width: 820px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: 22px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  padding: 24px;
}

.pricing-card--featured {
  border-color: rgba(0, 182, 122, 0.38);
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 182, 122, 0.16);
}

.pricing-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid rgba(0, 182, 122, 0.46);
  background: rgba(0, 182, 122, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.pricing-head {
  padding-right: 96px;
}

.pricing-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.pricing-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 18px;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.42);
}

.pricing-bottom {
  margin-top: auto;
  padding-top: 10px;
}

.pricing-options {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.pricing-option {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 14px;
}

.pricing-option--highlight {
  border-color: rgba(0, 182, 122, 0.42);
  box-shadow: 0 0 0 1px rgba(0, 182, 122, 0.16);
  background: linear-gradient(180deg, rgba(0, 182, 122, 0.1), rgba(255, 255, 255, 0.02));
}

.pricing-option--gold {
  border-color: rgba(214, 179, 106, 0.5);
  box-shadow: 0 0 0 1px rgba(214, 179, 106, 0.18);
  background: linear-gradient(180deg, rgba(214, 179, 106, 0.1), rgba(255, 255, 255, 0.02));
}

.pricing-option-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.pricing-period {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pricing-price {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
}

.price-old {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.32);
  font-weight: 700;
}

.price-new {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.pricing-note {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.pricing-permonth {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-offer {
  color: rgba(255, 255, 255, 0.56);
}

.pricing-cta {
  margin-top: 16px;
  width: 100%;
}

.pricing-support {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.pricing-support-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.pricing-support-btn {
  padding: 12px 18px;
  border-radius: var(--btn-radius);
}

.who-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.72), rgba(25, 25, 25, 0.96)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 0px,
      rgba(255, 255, 255, 0.026) 1px,
      rgba(0, 0, 0, 0) 1px,
      rgba(0, 0, 0, 0) 180px
    );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.who-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  margin-top: clamp(20px, 3vw, 38px);
}

.who-copy {
  max-width: 760px;
}

.who-lead {
  margin: 0;
  font-size: clamp(1.18rem, 1.8vw, 1.65rem);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.who-copy p:not(.who-lead) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
}

.who-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.who-stat {
  min-height: 112px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.who-stat strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.who-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
  font-size: 0.92rem;
}

.who-inline-link {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 182, 122, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.who-inline-link:hover {
  color: #44dca9;
  text-decoration-color: rgba(68, 220, 169, 0.78);
}

.who-model-proof {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  isolation: isolate;
}

.who-model-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.who-model-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.who-model-frame--screen {
  aspect-ratio: 1.36 / 1;
  border-color: rgba(0, 182, 122, 0.32);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(0, 182, 122, 0.1);
  z-index: 2;
}

.who-model-frame--screen img {
  object-fit: cover;
  object-position: top center;
}

.who-media-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(520px, 1.26fr);
  gap: clamp(22px, 3vw, 52px);
  align-items: center;
  margin-top: clamp(36px, 5vw, 72px);
}

.who-media-copy {
  max-width: 560px;
}

.who-media-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.95);
}

.who-media-copy p:not(.inside-kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.76;
}

.who-social-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(360px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.who-social-stack {
  display: grid;
  gap: 14px;
}

.who-social-card {
  margin: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.who-social-card img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.who-social-card--compact {
  justify-items: center;
  align-content: center;
  text-align: center;
  min-height: 0;
}

.who-social-card--compact img {
  width: min(100%, 184px);
  height: auto;
}

.who-social-card--wide img {
  width: 100%;
  height: clamp(300px, 34vw, 520px);
  object-fit: contain;
  object-position: top center;
}

.who-social-card figcaption {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.48;
  font-size: 0.92rem;
}

.faq-section {
  position: relative;
}

.faq-section::before {
  content: none;
}

.faq-section .section-heading::after {
  content: none;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}

.faq-subtitle {
  margin: 0;
  max-width: 520px;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: #2f2f2f;
  transform: translateY(-1px);
}

.faq-item.is-open {
  border-color: rgba(0, 182, 122, 0.42);
  background: linear-gradient(180deg, rgba(0, 182, 122, 0.09), rgba(0, 182, 122, 0.0)), var(--panel-solid);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(0, 182, 122, 0.14);
  transform: translateY(-1px);
}

.faq-q {
  width: 100%;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-q:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 182, 122, 0.18) inset, 0 0 0 3px rgba(0, 182, 122, 0.16);
}

.faq-q-text {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.78);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: opacity 0.16s ease, background 0.18s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  border-color: rgba(0, 182, 122, 0.42);
  background: rgba(0, 182, 122, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 182, 122, 0.12);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-a-inner {
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-a-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.faq-a-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
  font-size: 0.98rem;
  max-width: 72ch;
}

.closing-line {
  margin: 0;
  text-align: center;
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
}

.checklist li::before {
  content: "▣";
  margin-right: 10px;
  color: var(--accent);
}

.cta-section {
  padding-top: 36px;
}

.cta-box {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  padding: 40px;
  text-align: center;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}

.cta-box p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  background: rgba(7, 10, 15, 0.6);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.inside-mobile {
  display: none;
}

.hero-mobile-media {
  display: none;
}

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .inside-tabs {
    grid-template-columns: 1fr;
  }

  .inside-showcase-grid {
    grid-template-columns: 1fr;
  }

  .inside-showcase-item--reverse .inside-shot {
    order: 0;
  }

  .inside-shot {
    height: clamp(380px, 70vh, 560px);
  }

  .inside-preview-media {
    min-height: clamp(320px, 50vh, 540px);
    height: auto;
  }

  .inside-future {
    grid-column: 1;
    margin: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .boost-callout {
    max-width: 720px;
  }

  .boost-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boost-posters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(300px, 44vw, 520px);
  }

  .boost-poster--large {
    grid-row: span 1;
  }

  .pricing-badge {
    position: static;
    margin: 0 0 12px;
    display: inline-flex;
  }

  .pricing-head {
    padding-right: 0;
  }

  .who-layout,
  .who-media-proof {
    grid-template-columns: 1fr;
  }

  .who-model-proof {
    max-width: 960px;
  }

  .who-media-copy {
    max-width: 720px;
  }

  .who-social-grid {
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  }

  .feedback-cta--desktop {
    display: none;
  }

  .feedback-cta--mobile {
    display: flex;
  }

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

  .hero-visual {
    min-height: 460px;
  }

  .hero-photo-img {
    width: 100%;
    opacity: 0.22;
  }

  .hero-photo::after {
    background: linear-gradient(180deg, rgba(11, 13, 15, 0.95), rgba(11, 13, 15, 0.7));
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  html,
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .social-rail {
    display: none;
  }

  .hero-photo {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-mobile-media {
    display: block;
    position: relative;
    margin: 18px 0 18px;
  }

  .hero-mobile-frame {
    position: relative;
    height: clamp(300px, 46vh, 420px);
    overflow: visible;
  }

  .hero-mobile-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 55% 22%;
    transform: none;
    filter: grayscale(1) contrast(1.06) brightness(0.9);
    opacity: 0.95;
    border-radius: 0;
  }

  .hero-mobile-frame::before {
    display: none;
  }

  .hero-mobile-media::after {
    content: "";
    position: relative;
    display: block;
    height: 1px;
    margin: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    opacity: 0.75;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-photo-img {
    object-position: 55% 25%;
    opacity: 0.18;
  }

  .inside-tabs {
    display: none;
  }

  .inside-mobile {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  .inside-showcase {
    gap: 38px;
    margin-top: 20px;
  }

  .inside-showcase-item {
    padding: 38px 0;
  }

  .inside-showcase-item::before {
    right: -34%;
    top: 18%;
    width: 80%;
    height: 34%;
  }

  .inside-showcase-item--reverse::before {
    left: -34%;
  }

  .inside-showcase-head {
    margin-bottom: 24px;
  }

  .inside-kicker {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .inside-kicker span {
    width: 32px;
  }

  .inside-showcase-head h3,
  .inside-next-card h3 {
    font-size: clamp(2.05rem, 12vw, 3rem);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .inside-showcase-head p:not(.inside-kicker),
  .inside-next-card p:not(.inside-kicker) {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .inside-showcase-grid {
    gap: 22px;
  }

  .inside-shot {
    height: clamp(340px, 98vw, 480px);
  }

  .inside-feature-list {
    gap: 18px;
  }

  .inside-feature-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .inside-feature-list span {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .inside-feature-list strong {
    font-size: 1.04rem;
  }

  .inside-feature-list p {
    margin-top: 6px;
    font-size: 0.94rem;
  }

  .inside-next-card {
    padding: 24px 18px;
  }

  .boost-title {
    font-size: clamp(2.15rem, 12vw, 3.8rem);
  }

  .boost-grid {
    grid-template-columns: 1fr;
  }

  .boost-card {
    min-height: auto;
  }

  .boost-posters {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(360px, 112vw, 560px);
  }

  .who-lead {
    font-size: clamp(1.05rem, 5.2vw, 1.25rem);
  }

  .who-stats {
    grid-template-columns: 1fr;
  }

  .who-stat {
    min-height: auto;
  }

  .who-model-proof {
    grid-template-columns: 1fr;
  }

  .who-model-frame--screen {
    aspect-ratio: 1.16 / 1;
  }

  .who-media-copy h3 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .who-social-grid {
    grid-template-columns: 1fr;
  }

  .who-social-stack {
    grid-template-columns: 1fr;
  }

  .who-social-card--wide img {
    height: clamp(320px, 96vw, 520px);
  }

  .inside-mobile-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--panel-solid);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
    overflow: hidden;
  }

  .inside-mobile-media {
    height: 240px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
      radial-gradient(closest-side at 72% 28%, rgba(0, 182, 122, 0.1), rgba(0, 0, 0, 0)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.12));
    overflow: hidden;
  }

  .inside-mobile-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 0.95;
  }

  .inside-mobile-card--future {
    border-color: rgba(0, 182, 122, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 182, 122, 0.12);
  }

  .inside-mobile-card--future .inside-mobile-body {
    padding: 18px 16px 20px;
  }

  .inside-mobile-body {
    padding: 16px 16px 18px;
  }

  .inside-mobile-title {
    margin: 0 0 10px;
    font-size: 1.16rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.94);
  }

  .inside-mobile-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.72;
  }

  .faq-q {
    padding: 16px 16px;
  }

  .faq-a-inner {
    padding: 0 16px 16px;
  }

  .faq-item.is-open .faq-a-inner {
    padding-top: 12px;
  }

  .inside-preview-media {
    height: clamp(300px, 46vh, 480px);
  }

  .feedback-feature {
    height: 200px;
  }

  .feedback-grid img {
    height: 150px;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0 18px;
  }

  .social-rail {
    width: 44px;
    gap: 10px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
  }

  .hero-meta-sep {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading::before {
    font-size: clamp(1.68rem, 9.8vw, 2.94rem);
  }

  .cta-box {
    padding: 28px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-height: 820px) {
  .hero-grid {
    gap: 24px;
    padding: clamp(40px, 7vh, 70px) 0 14px;
  }

  .eyebrow {
    font-size: 1.15rem;
  }

  .poster-line {
    font-size: clamp(2.1rem, 5.6vw, 3.8rem);
  }

  .subtitle {
    font-size: 0.95rem;
    margin: 14px 0 18px;
  }

  .hero-meta-sub {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* CARTEL PLUS poster system */
:root {
  --bg: #060608;
  --panel-solid: #0d0e13;
  --panel: rgba(255, 255, 255, 0.045);
  --panel2: rgba(255, 255, 255, 0.025);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(218, 220, 230, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #00c889;
  --purple: #8d21ff;
  --purple-bright: #a950ff;
  --purple-soft: rgba(141, 33, 255, 0.22);
  --radius: 8px;
  --btn-radius: 8px;
  --page-gutter: clamp(24px, 5vw, 96px);
  --container-max: 1760px;
}

::selection {
  color: #fff;
  background: rgba(141, 33, 255, 0.72);
}

html,
body {
  background:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, #050507 0%, #09090c 48%, #040405 100%);
}

body {
  overflow-x: clip;
}

.noise {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

.section,
.hero,
.footer {
  isolation: isolate;
}

.section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(122deg, transparent 0 72%, rgba(141, 33, 255, 0.045) 72% 78%, transparent 78%),
    #070709;
  border: 0;
}

.section:nth-of-type(even) {
  background:
    linear-gradient(62deg, transparent 0 76%, rgba(0, 200, 137, 0.035) 76% 80%, transparent 80%),
    #0a0a0d;
}

.section:not(.boost-section)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(28px, 5vw, 74px);
  right: -8%;
  width: min(52vw, 920px);
  height: clamp(110px, 15vw, 230px);
  pointer-events: none;
  opacity: 0.34;
  clip-path: polygon(2% 42%, 21% 22%, 14% 37%, 53% 4%, 43% 31%, 100% 12%, 78% 48%, 97% 41%, 57% 67%, 82% 72%, 30% 87%, 42% 65%, 0 94%, 18% 57%);
  background:
    repeating-linear-gradient(172deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 9px),
    linear-gradient(90deg, transparent, rgba(141, 33, 255, 0.88) 18% 72%, transparent);
  filter: drop-shadow(0 0 28px rgba(141, 33, 255, 0.28));
}

.section > .container,
.section > .container + .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  border: 0;
}

.hero {
  background: #050506;
}

.hero-bg {
  opacity: 1;
  background:
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 14px),
    linear-gradient(110deg, #050506 0 54%, #0b0710 54% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 12%;
  top: 30%;
  width: min(52vw, 880px);
  height: clamp(120px, 19vw, 300px);
  opacity: 0.58;
  pointer-events: none;
  clip-path: polygon(0 38%, 26% 19%, 18% 35%, 72% 2%, 58% 34%, 100% 21%, 76% 51%, 94% 55%, 42% 72%, 65% 78%, 8% 96%, 25% 63%);
  background:
    repeating-linear-gradient(174deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 11px),
    linear-gradient(90deg, transparent, rgba(141, 33, 255, 0.92) 20% 78%, transparent);
  filter: drop-shadow(0 0 34px rgba(141, 33, 255, 0.26));
}

.hero-photo::after {
  background:
    linear-gradient(90deg, #050506 0%, rgba(5, 5, 6, 0.97) 46%, rgba(5, 5, 6, 0.7) 68%, rgba(5, 5, 6, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.08), rgba(5, 5, 6, 0.42));
}

.hero-photo-img {
  filter: grayscale(1) contrast(1.18) brightness(0.72);
}

.hero-copy,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.social-rail {
  position: fixed;
  z-index: 40;
}

.eyebrow,
.boost-kicker,
.inside-kicker {
  font-family: "Russo One", Poppins, sans-serif;
  letter-spacing: 0.08em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: clamp(0.82rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--purple);
  box-shadow: 0 0 24px rgba(141, 33, 255, 0.7);
}

.poster-title {
  gap: 4px;
  margin-top: 22px;
}

.poster-line,
.poster-h2,
.boost-title,
.inside-showcase-head h3,
.inside-next-card h3,
.who-media-copy h3,
.pricing-title {
  font-family: "Russo One", Poppins, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.poster-line {
  font-size: clamp(3rem, 6.7vw, 7.6rem);
  line-height: 0.88;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.64);
}

.poster-line--green {
  color: #fff;
}

.poster-line--purple {
  color: var(--purple-bright);
  font-size: clamp(2.15rem, 4.6vw, 5.4rem);
  text-shadow: 0 0 34px rgba(141, 33, 255, 0.42), 0 18px 58px rgba(0, 0, 0, 0.64);
}

.subtitle {
  max-width: 720px;
  color: rgba(237, 237, 242, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.hero-btn,
.btn,
.feedback-btn,
.pricing-support-btn {
  border-radius: 6px;
  font-weight: 800;
}

.btn-primary {
  background: var(--accent);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34), 0 0 26px rgba(0, 200, 137, 0.18);
}

.btn-outline,
.hero-btn--outline,
.feedback-btn,
.pricing-support-btn {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(141, 33, 255, 0.62);
  background: rgba(141, 33, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(141, 33, 255, 0.08), 0 0 30px rgba(141, 33, 255, 0.1);
}

.btn-outline:hover,
.hero-btn--outline:hover,
.feedback-btn:hover,
.pricing-support-btn:hover {
  color: #fff;
  border-color: var(--purple-bright);
  background: rgba(141, 33, 255, 0.16);
}

.hero-meta {
  gap: 0;
  padding: 0;
  border: 1px solid rgba(141, 33, 255, 0.26);
  background: rgba(6, 6, 9, 0.76);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34), 0 0 34px rgba(141, 33, 255, 0.08);
}

.hero-meta-item {
  min-height: 132px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-meta-item:last-child {
  border-right: 0;
}

.hero-meta-title {
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.hero-meta-sub {
  margin-top: 8px;
  color: rgba(220, 222, 231, 0.64);
  font-size: 0.78rem;
  line-height: 1.55;
}

.section-heading {
  max-width: 1120px;
  margin-bottom: clamp(28px, 4vw, 52px);
  padding-top: 32px;
}

.section-heading::before {
  top: -4px;
  color: rgba(141, 33, 255, 0.1);
  -webkit-text-stroke: 1px rgba(169, 80, 255, 0.28);
  font-family: "Russo One", Poppins, sans-serif;
  font-size: clamp(3rem, 8vw, 9rem);
  letter-spacing: 0;
}

.poster-h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.35rem, 5.8vw, 6.5rem);
  line-height: 0.92;
  color: #f7f7f8;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.52);
}

.poster-h2 span {
  color: var(--purple-bright);
  text-shadow: 0 0 34px rgba(141, 33, 255, 0.4);
}

#inside.section-dark::before {
  display: none;
}

.inside-showcase {
  gap: clamp(36px, 5vw, 78px);
}

.inside-showcase-item {
  --inside-accent: var(--purple) !important;
  --inside-glow: rgba(141, 33, 255, 0.25) !important;
  padding: clamp(48px, 6vw, 82px) clamp(0px, 1vw, 18px);
  border-top-color: rgba(141, 33, 255, 0.3);
}

.inside-showcase-item:nth-child(even) {
  --inside-accent: var(--accent) !important;
  --inside-glow: rgba(0, 200, 137, 0.18) !important;
}

.inside-showcase-item::before {
  border-radius: 0;
  background:
    repeating-linear-gradient(174deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 10px),
    linear-gradient(90deg, transparent, var(--inside-glow), transparent);
  clip-path: polygon(0 28%, 72% 0, 46% 35%, 100% 24%, 62% 55%, 94% 65%, 24% 82%, 40% 59%, 0 100%);
  filter: drop-shadow(0 0 24px var(--inside-glow));
}

.inside-showcase-head h3,
.inside-next-card h3 {
  font-size: clamp(2.5rem, 5.8vw, 6.4rem);
  line-height: 0.9;
}

.inside-kicker {
  letter-spacing: 0.08em;
}

.inside-shot,
.feedback-feature,
.feedback-grid img,
.boost-poster,
.who-model-frame,
.who-social-card {
  border-radius: 5px;
  border-color: rgba(141, 33, 255, 0.52);
  background: #08090d;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(141, 33, 255, 0.12), 0 0 34px rgba(141, 33, 255, 0.18);
}

.inside-shot--poster img {
  object-fit: contain;
  background: #050507;
}

.inside-shot--knowledge {
  height: auto;
  min-height: 0;
  aspect-ratio: 1.55 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(0, 200, 137, 0.12), transparent 38%),
    #08090d;
}

.inside-shot--knowledge::after {
  z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%, rgba(0, 0, 0, 0.16));
}

.knowledge-live-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #f2f2f2;
}

.knowledge-live-shot figcaption {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  border-left: 3px solid var(--inside-accent);
  background: rgba(4, 6, 8, 0.88);
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.inside-shot .knowledge-live-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #f2f2f2;
}

.inside-showcase-head p:not(.inside-kicker) strong {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.inside-shot--software {
  height: auto;
  min-height: 0;
  aspect-ratio: 2.28 / 1;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
  align-items: start;
  padding: clamp(8px, 1.2vw, 16px);
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.15), transparent 42%),
    #08090d;
}

.inside-shot--software::after {
  z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%, rgba(0, 0, 0, 0.12));
}

.software-proof {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.software-proof figcaption {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border-left: 3px solid var(--inside-accent);
  background: rgba(4, 6, 8, 0.9);
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.inside-shot .software-proof img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.inside-showcase-grid--useful {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
}

.inside-shot--useful {
  height: auto;
  min-height: 0;
  aspect-ratio: 1.82 / 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(8px, 1.1vw, 14px);
  align-items: stretch;
  padding: clamp(8px, 1.1vw, 14px);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.13), transparent 40%),
    #08090d;
}

.inside-shot--useful::after {
  z-index: 5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%, rgba(0, 0, 0, 0.12));
}

.useful-proof-stack {
  display: grid;
  grid-template-rows: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(8px, 1.1vw, 14px);
  min-width: 0;
  min-height: 0;
}

.useful-proof-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(8px, 1.1vw, 14px);
  min-width: 0;
  min-height: 0;
}

.useful-proof {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #192736;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.useful-proof figcaption {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  border-left: 3px solid var(--inside-accent);
  background: rgba(4, 6, 8, 0.9);
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  font-size: 0.7rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.inside-shot .useful-proof img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #192736;
}

.inside-shot--calls {
  height: auto;
  min-height: 0;
  aspect-ratio: 2.62 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(220px, 0.76fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(247, 37, 88, 0.14), transparent 42%),
    #08090d;
}

.inside-shot--calls::after {
  z-index: 5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 26%, rgba(0, 0, 0, 0.18));
}

.call-live-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #050507;
}

.call-live-shot--meeting {
  inset: auto;
}

.call-live-shot--recording {
  z-index: 4;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  border-color: rgba(247, 37, 88, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.72), 0 0 34px rgba(247, 37, 88, 0.22);
}

.call-live-shot figcaption {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  border-left: 3px solid var(--inside-accent);
  background: rgba(4, 6, 8, 0.88);
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.inside-shot .call-live-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.inside-shot .call-live-shot--recording img {
  object-position: top center;
}

.inside-shot--methodology {
  height: auto;
  min-height: 0;
  aspect-ratio: 1.5 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.37fr) minmax(0, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
  align-items: start;
  padding: clamp(8px, 1.2vw, 16px);
  background:
    linear-gradient(135deg, rgba(255, 122, 61, 0.14), transparent 40%),
    #08090d;
}

.inside-shot--methodology::after {
  z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%, rgba(0, 0, 0, 0.12));
}

.methodology-proof {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #192736;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.methodology-proof figcaption {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border-left: 3px solid var(--inside-accent);
  background: rgba(4, 6, 8, 0.9);
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.inside-shot .methodology-proof img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.inside-shot--content {
  height: auto;
  min-height: 0;
  aspect-ratio: 1.77 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.33fr) minmax(0, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
  align-items: start;
  padding: clamp(8px, 1.2vw, 16px);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.14), transparent 40%),
    #08090d;
}

.inside-shot--content::after {
  z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%, rgba(0, 0, 0, 0.12));
}

.content-proof {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101b27;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.content-proof figcaption {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border-left: 3px solid var(--inside-accent);
  background: rgba(4, 6, 8, 0.9);
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.inside-shot .content-proof img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.inside-showcase-item--profit .inside-showcase-head {
  max-width: none;
}

.inside-showcase-item--profit .inside-showcase-head p:not(.inside-kicker) {
  max-width: 1120px;
}

.inside-shot--profit-wall {
  height: auto;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  align-items: start;
  padding: clamp(10px, 1.2vw, 18px);
  background:
    linear-gradient(135deg, rgba(0, 200, 137, 0.11), transparent 42%),
    #08090d;
}

.inside-shot--profit-wall::after {
  display: none;
}

.profit-column {
  display: grid;
  gap: clamp(10px, 1.2vw, 18px);
  align-content: start;
  min-width: 0;
}

.profit-proof {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #192736;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.inside-shot .profit-proof img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

@media (min-width: 1101px) {
  .inside-showcase-item--profit .inside-showcase-head h3 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.45rem, 4.25vw, 4.8rem);
  }
}

.inside-showcase-grid--pair,
.inside-showcase-grid--audit {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
}

@media (min-width: 1101px) {
  .inside-showcase-item--wide-media .inside-showcase-head h3,
  .inside-showcase-item--media-pair .inside-showcase-head h3 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.5rem, 5vw, 5.7rem);
  }

  .inside-showcase-item--wide-media .inside-showcase-head p:not(.inside-kicker),
  .inside-showcase-item--media-pair .inside-showcase-head p:not(.inside-kicker) {
    max-width: none;
    white-space: nowrap;
  }
}

.inside-shot--audit {
  height: auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
  align-items: start;
  padding: clamp(8px, 1.2vw, 16px);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.13), transparent 38%),
    #08090d;
}

.inside-shot--audit::after {
  z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%, rgba(0, 0, 0, 0.12));
}

.audit-proof {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.audit-proof figcaption {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border-left: 3px solid var(--inside-accent);
  background: rgba(4, 6, 8, 0.9);
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.inside-shot .audit-proof img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.inside-feature-list--pair,
.inside-feature-list--audit {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}

.inside-feature-list--pair li,
.inside-feature-list--audit li {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  height: 100%;
}

.inside-feature-list--pair span,
.inside-feature-list--audit span {
  width: 40px;
  height: 40px;
}

.inside-feature-list--pair strong,
.inside-feature-list--audit strong {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.inside-feature-list--pair p,
.inside-feature-list--audit p {
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.inside-feature-list li {
  position: relative;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inside-feature-list li:last-child {
  border-bottom: 0;
}

.inside-feature-list span {
  border-radius: 4px;
}

.inside-feature-list strong {
  font-family: "Russo One", Poppins, sans-serif;
  letter-spacing: 0;
}

.inside-next-card {
  border-color: rgba(141, 33, 255, 0.54);
  background:
    linear-gradient(106deg, rgba(141, 33, 255, 0.26), transparent 54%),
    repeating-linear-gradient(172deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 10px),
    #0b0b10;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.46), 0 0 46px rgba(141, 33, 255, 0.18);
}

.feedback-section {
  background:
    linear-gradient(180deg, rgba(141, 33, 255, 0.035), transparent 34%),
    #08080b;
}

.feedback-section .muted {
  max-width: 760px;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.feedback-feature {
  height: clamp(270px, 25vw, 440px);
  padding: 10px;
}

.feedback-grid img {
  height: clamp(190px, 15vw, 280px);
  padding: 8px;
}

.boost-section {
  --boost-purple: var(--purple);
  --boost-purple-soft: var(--purple-soft);
  --boost-green: var(--accent);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #050507 0%, #100a18 48%, #060608 100%);
}

.boost-title {
  font-size: clamp(3rem, 7.6vw, 8.5rem);
  line-height: 0.88;
}

.boost-card {
  border-radius: 5px;
  border-color: rgba(141, 33, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(141, 33, 255, 0.12), transparent 54%),
    rgba(8, 9, 13, 0.94);
}

.boost-card:nth-child(even) {
  border-color: rgba(0, 200, 137, 0.28);
  background:
    linear-gradient(145deg, rgba(0, 200, 137, 0.08), transparent 54%),
    rgba(8, 9, 13, 0.94);
}

.boost-card h3 {
  font-family: "Russo One", Poppins, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.12rem, 1.65vw, 1.5rem);
}

.pricing-section {
  background:
    linear-gradient(136deg, transparent 0 62%, rgba(141, 33, 255, 0.075) 62% 70%, transparent 70%),
    #08080b;
}

.pricing-sub {
  max-width: 900px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.pricing-grid {
  gap: clamp(18px, 2.4vw, 34px);
  margin-top: 34px;
}

.pricing-card {
  border-radius: 6px;
  border-color: rgba(141, 33, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(141, 33, 255, 0.14), transparent 38%),
    #0c0d12;
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.5), 0 0 44px rgba(141, 33, 255, 0.12);
  padding: clamp(24px, 3vw, 38px);
}

.pricing-card--featured {
  border-color: rgba(0, 200, 137, 0.48);
  background:
    linear-gradient(145deg, rgba(0, 200, 137, 0.12), transparent 38%),
    #0c0d12;
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.52), 0 0 44px rgba(0, 200, 137, 0.13);
}

.pricing-title {
  font-size: clamp(1.6rem, 2.4vw, 2.7rem);
  line-height: 1;
}

.pricing-feature,
.pricing-option,
.who-stat,
.faq-item {
  border-radius: 5px;
}

.pricing-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  top: 0.55em;
  background: var(--purple-bright);
  box-shadow: 0 0 12px rgba(141, 33, 255, 0.66);
}

.pricing-card--featured .pricing-features li::before {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 200, 137, 0.56);
}

.pricing-option {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(3, 3, 5, 0.44);
}

.pricing-option--highlight,
.pricing-option--gold {
  border-color: rgba(141, 33, 255, 0.5);
  background: linear-gradient(180deg, rgba(141, 33, 255, 0.15), rgba(255, 255, 255, 0.015));
  box-shadow: 0 0 0 1px rgba(141, 33, 255, 0.12), 0 0 26px rgba(141, 33, 255, 0.1);
}

.pricing-card--featured .pricing-option--highlight {
  border-color: rgba(0, 200, 137, 0.46);
  background: linear-gradient(180deg, rgba(0, 200, 137, 0.12), rgba(255, 255, 255, 0.015));
  box-shadow: 0 0 0 1px rgba(0, 200, 137, 0.1), 0 0 26px rgba(0, 200, 137, 0.08);
}

.pricing-badge {
  border-radius: 4px;
  font-family: "Russo One", Poppins, sans-serif;
  text-transform: uppercase;
}

.who-section {
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #060608, #0c0910 55%, #060608);
}

.who-stat {
  border-color: rgba(141, 33, 255, 0.34);
  background: rgba(141, 33, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 0 26px rgba(141, 33, 255, 0.08);
}

.who-stat strong {
  font-family: "Russo One", Poppins, sans-serif;
  letter-spacing: 0;
  color: var(--purple-bright);
}

.who-model-frame--screen {
  border-color: rgba(141, 33, 255, 0.5);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.48), 0 0 40px rgba(141, 33, 255, 0.2);
}

.who-social-card--compact:nth-child(2) {
  border-color: rgba(0, 200, 137, 0.38);
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.42), 0 0 28px rgba(0, 200, 137, 0.1);
}

@media (min-width: 981px) {
  .who-layout,
  .who-media-proof {
    grid-template-columns: minmax(280px, 0.74fr) minmax(520px, 1.26fr);
    gap: clamp(22px, 3vw, 52px);
  }
}

.who-model-caption {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: left;
}

.who-social-panel {
  min-width: 0;
}

.who-social-grid {
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
}

.who-social-stack {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.who-social-card--wide {
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
}

.who-social-card--wide img {
  height: clamp(380px, 42vw, 720px);
}

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

.who-social-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(141, 33, 255, 0.46);
  border-radius: 4px;
  background: rgba(141, 33, 255, 0.1);
  color: #fff;
  font-family: "Russo One", Poppins, sans-serif;
  font-size: 0.84rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.who-social-action:hover,
.who-social-action:focus-visible {
  border-color: var(--accent);
  background: rgba(0, 200, 137, 0.12);
  outline: none;
}

.who-social-action img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-section {
  background:
    linear-gradient(110deg, rgba(141, 33, 255, 0.055), transparent 40%),
    #070709;
}

.faq-item {
  border-color: rgba(141, 33, 255, 0.28);
  background: rgba(11, 12, 17, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
  border-color: rgba(141, 33, 255, 0.56);
  background: #101019;
}

.faq-item.is-open {
  border-color: rgba(0, 200, 137, 0.46);
  background: linear-gradient(180deg, rgba(0, 200, 137, 0.09), transparent), #0c0d12;
}

.faq-icon {
  border-radius: 4px;
  border-color: rgba(141, 33, 255, 0.42);
  background: rgba(141, 33, 255, 0.08);
}

.footer {
  position: relative;
  border-top: 1px solid rgba(141, 33, 255, 0.34);
  background:
    linear-gradient(90deg, transparent, rgba(141, 33, 255, 0.12), transparent),
    #050507;
}

.closing-line {
  font-family: "Russo One", Poppins, sans-serif;
  text-transform: uppercase;
  color: #fff;
}

body.is-lightbox-open {
  overflow: hidden;
}

.inside-shot img,
.feedback-feature img,
.feedback-grid img,
.who-model-frame img,
.who-social-card img {
  cursor: zoom-in;
}

.is-zoomable-image:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.image-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(2, 2, 4, 0.94);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: zoom-out;
}

.image-lightbox-stage {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  max-width: 96vw;
  max-height: 92vh;
  pointer-events: none;
}

.image-lightbox-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid rgba(141, 33, 255, 0.54);
  background: #050507;
  box-shadow: 0 36px 140px rgba(0, 0, 0, 0.8), 0 0 44px rgba(141, 33, 255, 0.2);
}

.image-lightbox-stage p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.image-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(10, 10, 14, 0.88);
  color: #fff;
  font: 400 2rem/1 Arial, sans-serif;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: var(--accent);
  outline: none;
  background: rgba(0, 200, 137, 0.14);
}

@media (max-width: 1100px) {
  .inside-shot--profit-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profit-column:nth-child(3) {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inside-feature-list--pair,
  .inside-feature-list--audit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-meta-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-meta-item:nth-child(even) {
    border-right: 0;
  }

  .hero-meta-item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 32px;
  }

  .noise {
    opacity: 0.12;
  }

  .section:not(.boost-section)::after {
    right: -34%;
    width: 100vw;
    height: 130px;
    opacity: 0.26;
  }

  .hero::before {
    left: -18%;
    top: 17%;
    width: 118vw;
    height: 170px;
    opacity: 0.48;
  }

  .hero-mobile-frame {
    overflow: hidden;
    border: 1px solid rgba(141, 33, 255, 0.44);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44), 0 0 30px rgba(141, 33, 255, 0.14);
  }

  .poster-line {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .poster-line--purple {
    font-size: clamp(1.82rem, 9.5vw, 2.9rem);
  }

  .poster-h2 {
    font-size: clamp(2.2rem, 12vw, 3.55rem);
  }

  .section-heading::before {
    font-size: clamp(2.25rem, 16vw, 4.4rem);
  }

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

  .hero-meta-item,
  .hero-meta-item:nth-child(even),
  .hero-meta-item:last-child {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-meta-item:last-child {
    border-bottom: 0;
  }

  .inside-showcase-item::before {
    width: 110%;
    right: -55%;
  }

  .inside-showcase-head h3,
  .inside-next-card h3 {
    font-size: clamp(2rem, 11vw, 3.15rem);
  }

  .who-social-actions {
    grid-template-columns: 1fr;
  }

  .who-social-grid {
    grid-template-columns: 1fr;
  }

  .inside-shot--profit-wall {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .profit-column,
  .profit-column:nth-child(3) {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inside-shot--poster {
    height: clamp(390px, 120vw, 560px);
  }

  .inside-shot--knowledge {
    height: auto;
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 7px;
    padding: 7px;
  }

  .knowledge-live-shot figcaption {
    top: 7px;
    left: 7px;
    padding: 6px 8px;
    font-size: 0.64rem;
  }

  .inside-shot--calls {
    height: auto;
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 7px;
    padding: 7px;
  }

  .inside-shot--software {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 8px;
    padding: 8px;
  }

  .software-proof figcaption {
    top: 8px;
    left: 8px;
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .inside-shot--useful {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 8px;
    padding: 8px;
  }

  .useful-proof-stack {
    grid-template-rows: auto;
    gap: 8px;
  }

  .useful-proof-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inside-shot .useful-proof img {
    height: auto;
  }

  .useful-proof figcaption {
    top: 8px;
    left: 8px;
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .call-live-shot--meeting {
    inset: auto;
  }

  .call-live-shot--recording {
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
  }

  .call-live-shot figcaption {
    top: 7px;
    left: 7px;
    padding: 6px 8px;
    font-size: 0.64rem;
  }

  .inside-shot--audit {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .inside-shot--methodology {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 8px;
    padding: 8px;
  }

  .inside-shot--content {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 8px;
    padding: 8px;
  }

  .content-proof figcaption {
    top: 8px;
    left: 8px;
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .methodology-proof figcaption {
    top: 8px;
    left: 8px;
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .audit-proof figcaption {
    top: 8px;
    left: 8px;
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .inside-feature-list--pair,
  .inside-feature-list--audit {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .boost-title {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .pricing-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .site-menu {
    top: 8px;
    width: calc(100vw - 16px);
    max-width: none;
  }

  .site-menu a {
    padding: 7px 8px;
    font-size: 0.64rem;
  }

  .inside-shot--knowledge {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }

  .knowledge-live-shot--classroom {
    aspect-ratio: 829 / 918;
  }

  .knowledge-live-shot--useful {
    aspect-ratio: 611 / 947;
  }

  .inside-shot--calls {
    aspect-ratio: auto;
  }

  .call-live-shot--recording {
    width: auto;
  }
}

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