:root {
  --p-bg: #07140f;
  --p-bg2: #0d1f18;
  --p-card: #f3f7f2;
  --p-ink: #102018;
  --p-muted: #5a6b62;
  --p-accent: #1dbf6a;
  --p-lime: #b8ff3c;
  --p-lime-deep: #8ae000;
  --p-amber: #ffb020;
  --p-cyan: #2ef0c0;
  --p-accent2: #0f8f55;
  --p-line: rgba(20, 32, 26, .12);
  --p-radius: 18px;
  --p-font: "Roboto", "Segoe UI", system-ui, sans-serif;
  --p-display: "Montserrat", "Roboto", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
.p-body {
  font-family: var(--p-font);
  color: var(--p-ink);
  background: #e9efe8;
  min-height: 100vh;
  overflow-x: hidden;
}
.p-wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.p-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(7, 20, 15, .78);
  border-bottom: 1px solid rgba(184, 255, 60, .12);
}
.p-header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.p-logo { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 700; }
.p-logo img { width: 36px; height: 36px; border-radius: 10px; }
.p-logo em { font-style: normal; color: var(--p-lime); font-weight: 600; margin-left: 4px; }
.p-nav { display: flex; gap: 14px; }
.p-nav a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; }
.p-nav a:hover { color: var(--p-lime); }
.p-nav-phone {
  font-weight: 700 !important;
  color: var(--p-lime) !important;
  letter-spacing: .01em;
  white-space: nowrap;
}
.p-footer-phone { color: var(--p-accent2); text-decoration: none; font-weight: 600; }
.p-footer-phone:hover { text-decoration: underline; }
.p-apply-phone { margin: 14px 0 0; font-size: 1.02rem; }
.p-apply-phone a { color: var(--p-lime); font-weight: 700; text-decoration: none; }
.p-apply-phone a:hover { text-decoration: underline; }

/* ===== HERO ===== */
.p-hero {
  position: relative;
  color: #fff;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: 96px 0 72px;
  isolation: isolate;
}
.p-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #07140f;
}
.p-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 28%;
  transform: scale(1.04);
  filter: saturate(.55) contrast(1.05) brightness(.72);
  opacity: .55;
  animation: p-hero-ken 30s ease-in-out infinite alternate;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, #000 58%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, #000 58%, #000 100%);
}
.p-hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 18% 55%, rgba(7, 20, 15, .55) 0%, transparent 70%),
    linear-gradient(105deg, #07140f 0%, rgba(7, 20, 15, .92) 34%, rgba(7, 20, 15, .55) 58%, rgba(7, 20, 15, .72) 100%),
    linear-gradient(180deg, rgba(7, 20, 15, .35) 0%, transparent 40%, rgba(7, 20, 15, .85) 100%);
}
.p-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: .85;
  will-change: transform;
  pointer-events: none;
  mix-blend-mode: screen;
}
.p-hero-orb--a {
  width: min(58vw, 560px);
  height: min(58vw, 560px);
  left: -10%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(46, 240, 192, .7), rgba(138, 224, 0, .22) 45%, transparent 70%);
  animation: p-orb-a 14s ease-in-out infinite;
}
.p-hero-orb--b {
  width: min(42vw, 440px);
  height: min(42vw, 440px);
  right: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 176, 32, .65), rgba(255, 80, 40, .18) 50%, transparent 70%);
  animation: p-orb-b 18s ease-in-out infinite;
}
.p-hero-orb--c {
  width: min(38vw, 400px);
  height: min(38vw, 400px);
  left: 36%;
  top: 8%;
  opacity: .45;
  background: radial-gradient(circle, rgba(184, 255, 60, .4), transparent 68%);
  animation: p-orb-c 16s ease-in-out infinite;
}
.p-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 255, 60, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 60, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 65% 55% at 28% 50%, #000 15%, transparent 72%);
  opacity: .45;
  animation: p-grid-drift 28s linear infinite;
}
.p-hero-shine {
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .1) 48%, transparent 58%);
  transform: translateX(-30%);
  animation: p-shine 8s ease-in-out infinite;
  pointer-events: none;
}
.p-hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 38rem;
  margin-left: max(16px, calc((100% - min(1120px, calc(100% - 32px))) / 2));
  padding-top: 0;
}
.p-eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  margin: 0 0 18px;
  font-weight: 700;
  color: var(--p-lime);
  text-shadow: 0 0 24px rgba(184, 255, 60, .35);
}
.p-hero h1, .p-h2, .p-card h1, .p-hero-mini h1 {
  font-family: var(--p-display);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.p-hero h1 {
  font-size: clamp(34px, 5.8vw, 60px);
  max-width: 12ch;
  font-weight: 800;
  display: grid;
  gap: .06em;
}
.p-hero-line { display: block; }
.p-hero-line--accent {
  background: linear-gradient(100deg, var(--p-lime) 0%, #fff56a 42%, var(--p-amber) 78%, var(--p-cyan) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: p-accent-flow 5s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(184, 255, 60, .28));
}
.p-lead {
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.55;
  max-width: 38ch;
  color: rgba(232, 244, 236, .88);
  margin: 0;
}
.p-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* reveal */
.p-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}
.p-reveal.is-in {
  opacity: 1;
  transform: none;
}
.p-reveal:nth-child(1) { transition-delay: .05s; }
.p-reveal:nth-child(2) { transition-delay: .18s; }
.p-reveal:nth-child(3) { transition-delay: .32s; }
.p-reveal:nth-child(4) { transition-delay: .46s; }
.p-hero.is-ready .p-reveal { opacity: 1; transform: none; }

.p-section { padding: 36px 0 52px; }
.p-section-lead { color: var(--p-muted); max-width: 58ch; margin: -6px 0 22px; line-height: 1.55; font-size: 16px; }
.p-h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  max-width: 18ch;
  color: #06140e;
  font-weight: 800;
  text-shadow: none;
}
.p-h2-line { color: inherit; }
.p-h2-accent { color: #075c38; }
.p-h2--on-dark { color: #fff; }
.p-h2--on-dark .p-h2-accent { color: var(--p-lime); }
.p-h2--apply {
  max-width: 16ch;
  color: #fff;
  margin-bottom: 12px;
}
.p-h2--apply .p-h2-accent {
  background: linear-gradient(100deg, var(--p-lime), var(--p-amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.p-section--darkish {
  width: min(1120px, calc(100% - 32px));
  margin: 8px auto 28px;
  padding: 36px 28px 40px;
  border-radius: 24px;
  background: linear-gradient(160deg, #0f2219, #143026 55%, #0a1812);
  color: #e8f0ea;
  box-shadow: 0 24px 60px rgba(8, 30, 18, .18);
}
.p-section--darkish .p-h2 { margin-left: 0; }
.p-main { padding: 36px 0 64px; }
.p-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.p-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.p-card {
  background: var(--p-card);
  border-radius: var(--p-radius);
  padding: 22px 22px 24px;
  box-shadow: 0 12px 40px rgba(10,20,14,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(10, 40, 22, .14);
}
.p-card--narrow { max-width: 520px; margin: 0 auto; }
.p-card--wide { max-width: 820px; margin: 0 auto; }
.p-card h3 { margin: 0 0 10px; font-size: clamp(17px, 2vw, 20px); font-family: var(--p-display); font-weight: 650; letter-spacing: -.02em; line-height: 1.2; }
.p-card p { margin: 0; color: var(--p-muted); line-height: 1.55; font-size: 15px; }
.p-steps {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}
.p-steps li {
  counter-increment: step;
  display: grid; gap: 10px;
  align-content: start;
  padding: 20px 18px 20px 18px;
  padding-top: 58px;
  position: relative;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184, 255, 60, .14);
  min-height: 100%;
}
.p-steps li::before {
  content: counter(step);
  position: absolute; left: 18px; top: 16px;
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--p-lime), var(--p-cyan));
  color: #0f1814;
  font-family: var(--p-display); font-weight: 800; font-size: 15px;
}
.p-steps strong { font-family: var(--p-display); font-size: 18px; letter-spacing: -.02em; display: block; }
.p-steps span { color: rgba(232,240,234,.78); line-height: 1.5; font-size: 15px; display: block; }
.p-who { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.p-who li {
  background: var(--p-card); border-radius: 14px; padding: 16px 18px;
  line-height: 1.55; color: var(--p-muted); font-size: 15px;
  border-left: 4px solid var(--p-lime-deep);
}
.p-who strong { color: var(--p-ink); display: block; margin-bottom: 4px; font-family: var(--p-display); font-size: 16px; }

/* apply band */
.p-apply {
  padding: 28px 0 64px;
}
.p-apply-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(22px, 4vw, 40px);
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(184, 255, 60, .28), transparent 55%),
    radial-gradient(500px 260px at 95% 20%, rgba(255, 176, 32, .22), transparent 50%),
    linear-gradient(145deg, #0c1f17, #123528 50%, #0a1812);
  color: #eef6ef;
  box-shadow: 0 30px 80px rgba(8, 30, 18, .22);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
}
.p-apply-panel--cta {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  align-items: center;
}
.p-apply-cta-side {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.p-apply-lb {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.p-apply-lb[hidden] { display: none !important; }
.p-apply-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 10, .78);
  backdrop-filter: blur(6px);
}
.p-apply-lb-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border-radius: 24px;
  padding: clamp(20px, 4vw, 32px);
  background:
    radial-gradient(420px 200px at 8% 0%, rgba(184, 255, 60, .22), transparent 55%),
    linear-gradient(145deg, #0c1f17, #123528 55%, #0a1812);
  color: #eef6ef;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
  border: 1px solid rgba(184, 255, 60, .22);
}
.p-apply-lb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.p-apply-lb-title {
  margin: 0 0 8px;
  font-family: var(--p-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: #fff;
  max-width: 16ch;
}
.p-apply-lb-lead {
  margin: 0 0 18px;
  color: rgba(230, 240, 232, .72);
  font-size: 15px;
  line-height: 1.5;
}
.p-apply-lb .p-form label { color: rgba(240, 250, 242, .88); }
.p-apply-lb .p-form input,
.p-apply-lb .p-form textarea {
  background: rgba(255, 255, 255, .94);
  border-color: transparent;
  color: var(--p-ink);
}
.p-apply-lb .p-status.is-ok { color: var(--p-lime); }
.p-apply-lb .p-status.is-err { color: #ff8a7a; }
body.is-apply-open { overflow: hidden; }
.p-apply-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(184, 255, 60, .55), rgba(255, 176, 32, .25), rgba(46, 240, 192, .35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.p-apply-eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 700;
  color: var(--p-lime);
}
.p-apply-copy .p-muted { color: rgba(230, 240, 232, .72); max-width: 36ch; margin: 0; }
.p-apply .p-form label { color: rgba(240, 250, 242, .88); }
.p-apply .p-form input,
.p-apply .p-form textarea {
  background: rgba(255, 255, 255, .92);
  border-color: transparent;
}
.p-apply .p-form input:focus,
.p-apply .p-form textarea:focus {
  outline: 2px solid rgba(184, 255, 60, .65);
  outline-offset: 1px;
}

.p-form--2col { grid-template-columns: 1fr 1fr; }
.p-form--2col label:nth-child(6),
.p-form-full { grid-column: 1 / -1; }
.p-muted { color: var(--p-muted); font-size: 14px; line-height: 1.5; }
.p-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; text-decoration: none;
  background: linear-gradient(135deg, var(--p-lime-deep), #1dbf6a);
  color: #07140f;
  font: inherit; font-weight: 800; padding: 15px 24px; border-radius: 999px;
  letter-spacing: .01em;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.p-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.p-btn--glow {
  box-shadow:
    0 0 0 1px rgba(184, 255, 60, .35),
    0 10px 30px rgba(138, 224, 0, .35),
    0 0 40px rgba(184, 255, 60, .22);
  animation: p-btn-pulse 2.8s ease-in-out infinite;
}
.p-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  font-weight: 700;
  box-shadow: none;
  animation: none;
}
.p-btn--ghost:hover { border-color: var(--p-lime); color: var(--p-lime); filter: none; }
.p-card .p-btn--ghost { color: var(--p-ink); border-color: var(--p-line); }
.p-btn--sm { padding: 8px 12px; font-size: 13px; animation: none; box-shadow: none; }
.p-form { display: grid; gap: 12px; margin-top: 14px; }
.p-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--p-ink); }
.p-form input, .p-form textarea {
  font: inherit; font-weight: 500; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--p-line); background: #fff; color: var(--p-ink);
}
.p-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.p-link { color: var(--p-accent2); font-size: 14px; }
.p-status { margin: 8px 0 0; font-size: 14px; }
.p-status.is-ok { color: var(--p-accent2); }
.p-status.is-err { color: #b42318; }
.p-apply .p-status.is-ok { color: var(--p-lime); }
.p-apply .p-status.is-err { color: #ff8a7a; }
.p-codebox {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--p-line); border-radius: 12px; padding: 10px 12px; margin: 12px 0;
}
.p-codebox code { font-size: 13px; word-break: break-all; flex: 1; }
.p-hero-mini { color: #fff; margin-bottom: 22px; }
.p-hero-mini p { margin: 0; opacity: .8; }
.p-table-wrap { overflow: auto; margin-top: 12px; }
.p-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.p-table th, .p-table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--p-line); vertical-align: top; }
.p-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--p-muted); }
.p-clubs { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.p-clubs li { background: var(--p-card); padding: 12px 16px; border-radius: 12px; }
.p-footer { padding: 28px 0 40px; color: var(--p-muted); font-size: 13px; }

.p-section-lead {
  margin: -8px 0 28px; max-width: 42rem;
  font-size: 1.05rem; line-height: 1.55; color: var(--p-muted);
}
.p-subh {
  margin: 28px 0 14px; font-size: 1.05rem; font-weight: 700; color: var(--p-ink);
}
.p-more { margin: 18px 0 0; color: var(--p-muted); font-size: .95rem; line-height: 1.45; max-width: 40rem; }

.p-experts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.p-expert {
  display: flex; flex-direction: column; gap: 6px;
  color: inherit;
  background: var(--p-card); border: 1px solid var(--p-line);
  border-radius: 16px; padding: 16px;
}
.p-expert img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px;
  background: #e8ece6;
}
.p-expert strong { font-size: 1.05rem; margin-top: 6px; color: #06140e; }
.p-expert-role {
  font-style: normal;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #075c38;
}
.p-expert-about {
  font-size: .92rem;
  color: var(--p-muted);
  line-height: 1.4;
}

.p-mosaic-shell {
  position: relative;
  margin: 0 -4px;
}
.p-mosaic-shell::before,
.p-mosaic-shell::after {
  content: "";
  position: absolute; top: 0; bottom: 14px; width: 28px; z-index: 2;
  pointer-events: none;
}
.p-mosaic-shell::before {
  left: 0;
  background: linear-gradient(90deg, #e9efe8, transparent);
}
.p-mosaic-shell::after {
  right: 0;
  background: linear-gradient(270deg, #e9efe8, transparent);
}
.p-mosaic {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 148px 148px;
  grid-auto-columns: 108px;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  padding: 4px 8px 14px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 143, 85, .45) transparent;
}
.p-mosaic.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.p-mosaic::-webkit-scrollbar { height: 6px; }
.p-mosaic::-webkit-scrollbar-thumb {
  background: rgba(15, 143, 85, .4);
  border-radius: 999px;
}
.p-mosaic-item {
  appearance: none; border: 0; padding: 0; cursor: zoom-in;
  border-radius: 16px; overflow: hidden; background: #d7ddd6;
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
}
.p-mosaic-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8, 30, 18, .16);
}
.p-mosaic-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none;
}
/* разноформатная мозаика */
.p-mosaic-item--0 { grid-row: 1 / span 2; grid-column: span 2; } /* высокий */
.p-mosaic-item--1 { grid-column: span 2; } /* широкий верх */
.p-mosaic-item--2 { grid-column: span 2; } /* широкий низ */
.p-mosaic-item--3 { grid-row: 1 / span 2; grid-column: span 1; } /* узкий высокий */
.p-mosaic-item--4 { grid-column: span 3; } /* панорама верх */
.p-mosaic-item--5 { grid-column: span 2; } /* средний низ */

.p-proof-grad {
  position: relative;
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  min-height: min(52vw, 420px);
  background: #0b1611;
  isolation: isolate;
}
.p-proof-grad > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}
.p-proof-grad-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 16, 12, .88) 0%, rgba(6, 16, 12, .55) 42%, rgba(6, 16, 12, .18) 68%, rgba(6, 16, 12, .35) 100%),
    linear-gradient(180deg, rgba(6, 16, 12, .15) 0%, rgba(6, 16, 12, .72) 100%);
}
.p-proof-grad-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  min-height: min(52vw, 420px);
  padding: clamp(22px, 4vw, 40px);
  max-width: 34rem;
  color: #f4f7f2;
}
.p-proof-grad-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--p-lime);
}
.p-proof-grad-copy strong {
  font-family: var(--p-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.p-proof-grad-copy > span {
  color: rgba(244, 247, 242, .88);
  line-height: 1.55;
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
}
.p-proof-grad-points {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-proof-grad-points li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(184, 255, 60, .14);
  border: 1px solid rgba(184, 255, 60, .28);
  color: #eef8e0;
  font-size: 13px;
  font-weight: 600;
}

.p-reviews-wrap {
  position: relative;
  margin: 0 -4px;
}
.p-reviews-carousel.swiper {
  position: relative;
  overflow: hidden;
  padding: 4px 44px 44px;
}
.p-reviews-carousel .swiper-slide {
  height: auto;
  display: flex;
}
.p-reviews-carousel .p-review-shot {
  appearance: none; border: 0; padding: 0; cursor: zoom-in;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--p-line);
  aspect-ratio: 9/16;
  transition: transform .22s ease, box-shadow .22s ease;
}
.p-reviews-carousel .p-review-shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8, 30, 18, .14);
}
.p-reviews-carousel .p-review-shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none;
}
.p-reviews-carousel .swiper-button-prev,
.p-reviews-carousel .swiper-button-next {
  color: #0a1610;
  width: 40px;
  height: 40px;
  margin-top: -36px;
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(8, 30, 18, .1);
}
.p-reviews-carousel .swiper-button-prev::after,
.p-reviews-carousel .swiper-button-next::after {
  font-size: 14px;
  font-weight: 800;
}
.p-reviews-carousel .swiper-pagination-bullet {
  background: #0f8f55;
  opacity: .35;
}
.p-reviews-carousel .swiper-pagination-bullet-active {
  opacity: 1;
  background: #8ae000;
}

.p-videos-wrap {
  position: relative;
  margin: 0 -4px;
}
.p-videos-carousel.swiper {
  position: relative;
  overflow: hidden;
  padding: 4px 44px 44px;
}
.p-videos-carousel .swiper-slide {
  height: auto;
  display: flex;
}
.p-vrev {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0b0d0a;
  aspect-ratio: 9/16;
  cursor: pointer;
  border: 1px solid var(--p-line);
}
.p-vrev-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0b0d0a;
}
.p-vrev.is-playing .p-vrev-video {
  object-fit: contain;
  background: #000;
}
.p-vrev-hint {
  position: absolute;
  left: 10px; right: 10px; bottom: 12px;
  z-index: 2;
  pointer-events: none;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
}
.p-vrev.is-playing .p-vrev-hint { display: none; }
.p-videos-carousel .swiper-button-prev,
.p-videos-carousel .swiper-button-next {
  color: #0a1610;
  width: 40px;
  height: 40px;
  margin-top: -36px;
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(8, 30, 18, .1);
}
.p-videos-carousel .swiper-button-prev::after,
.p-videos-carousel .swiper-button-next::after {
  font-size: 14px;
  font-weight: 800;
}
.p-videos-carousel .swiper-pagination-bullet {
  background: #0f8f55;
  opacity: .35;
}
.p-videos-carousel .swiper-pagination-bullet-active {
  opacity: 1;
  background: #8ae000;
}

.p-lb {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(8,10,8,.88);
}
.p-lb[hidden] { display: none !important; }
.p-lb img {
  max-width: min(920px, 100%); max-height: 88vh;
  border-radius: 12px; object-fit: contain;
}
.p-lb-close {
  position: absolute; top: 16px; right: 16px;
  appearance: none; border: 0; border-radius: 999px;
  width: 44px; height: 44px; font-size: 22px; line-height: 1;
  background: rgba(255,255,255,.14); color: #fff; cursor: pointer;
}

@keyframes p-orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 12%) scale(1.12); }
}
@keyframes p-orb-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10%, 8%) scale(1.18); }
}
@keyframes p-orb-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, -10%) scale(1.1); }
}
@keyframes p-shine {
  0%, 35% { transform: translateX(-40%) skewX(-12deg); opacity: 0; }
  45% { opacity: .7; }
  55%, 100% { transform: translateX(40%) skewX(-12deg); opacity: 0; }
}
@keyframes p-accent-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes p-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(184, 255, 60, .35), 0 10px 30px rgba(138, 224, 0, .32), 0 0 36px rgba(184, 255, 60, .18); }
  50% { box-shadow: 0 0 0 1px rgba(184, 255, 60, .55), 0 14px 40px rgba(138, 224, 0, .48), 0 0 56px rgba(184, 255, 60, .32); }
}
@keyframes p-hero-ken {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.06) translate3d(-1%, -.5%, 0); }
}
@keyframes p-grid-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 56px 56px, 56px 56px; }
}

@media (max-width: 900px) {
  .p-apply-panel { grid-template-columns: 1fr; }
  .p-apply-cta-side { justify-content: flex-start; }
  .p-hero { min-height: min(88vh, 720px); padding: 88px 0 56px; align-items: flex-end; }
  .p-hero-photo {
    object-position: 68% 22%;
    opacity: .42;
    mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 70%, transparent 100%);
  }
  .p-hero h1 { max-width: 12ch; }
  .p-hero-inner { max-width: none; margin-left: auto; margin-right: auto; }
  .p-experts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .p-mosaic {
    grid-template-rows: 128px 128px;
    grid-auto-columns: 92px;
    gap: 8px;
  }
  .p-mosaic-shell::before,
  .p-mosaic-shell::after { width: 18px; }
  .p-reviews-carousel.swiper { padding: 4px 36px 40px; }
  .p-videos-carousel.swiper { padding: 4px 36px 40px; }
  .p-steps { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .p-grid, .p-grid--3, .p-form--2col { grid-template-columns: 1fr; }
  .p-section--darkish { padding: 28px 18px; }
  .p-form--2col label:nth-child(6), .p-form-full { grid-column: auto; }
  .p-hero-inner { padding-top: 64px; }
}
@media (max-width: 520px) {
  .p-experts { grid-template-columns: 1fr 1fr; gap: 10px; }
  .p-reviews-carousel.swiper { padding: 4px 8px 36px; }
  .p-videos-carousel.swiper { padding: 4px 8px 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero-photo,
  .p-hero-orb,
  .p-hero-shine,
  .p-hero-grid,
  .p-hero-line--accent,
  .p-btn--glow { animation: none !important; }
  .p-reveal { opacity: 1; transform: none; transition: none; }
}
