/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 15 2026 | 10:02:59 */
.adp-page {
  --adp-bg: #07101a;
  --adp-bg-2: #0d1624;
  --adp-surface: rgba(16, 24, 37, 0.88);
  --adp-surface-2: rgba(20, 30, 45, 0.95);
  --adp-line: rgba(255, 255, 255, 0.08);
  --adp-line-2: rgba(255, 255, 255, 0.14);
  --adp-text: #f4f7fb;
  --adp-text-soft: rgba(244, 247, 251, 0.78);
  --adp-muted: #9fb0c7;
  --adp-accent: #ff9c2f;
  --adp-accent-2: #ff6b2c;
  --adp-cool: #49c2ff;
  --adp-radius: 28px;
  --adp-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  max-width: 1420px;
  margin: 0 auto;
  padding: 24px 20px 90px;
  color: var(--adp-text);
}

.adp-page,
.adp-page * {
  box-sizing: border-box;
}

.adp-page a {
  text-decoration: none;
}

.adp-page p,
.adp-page li {
  font-size: 1.7rem;
  line-height: 1.78;
  color: var(--adp-text-soft);
}

.adp-page h1,
.adp-page h2,
.adp-page h3 {
  margin: 0;
  color: #fff;
  line-height: 1.02;
}

.adp-page section + section {
  margin-top: 28px;
}

.adp-kicker {
  margin: 0 0 14px;
  color: #ffbb69;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.adp-hero,
.adp-strip,
.adp-section,
.adp-final-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--adp-line);
  background:
    radial-gradient(circle at top right, rgba(73, 194, 255, 0.10), transparent 18%),
    radial-gradient(circle at top left, rgba(255, 107, 44, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(14, 21, 32, 0.96), rgba(9, 14, 22, 0.98));
  box-shadow: var(--adp-shadow);
}

.adp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 26px;
  align-items: stretch;
  padding: 34px;
}

.adp-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.adp-hero-copy h1 {
  font-size: clamp(4rem, 3vw + 1.8rem, 7.4rem);
  max-width: 12ch;
}

.adp-lead {
  margin: 20px 0 0;
  max-width: 62ch;
  font-size: 1.85rem;
}

.adp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.adp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 1.48rem;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.adp-btn:hover {
  transform: translateY(-2px);
}

.adp-btn-primary {
  background: linear-gradient(135deg, var(--adp-accent), var(--adp-accent-2));
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 107, 44, 0.26);
}

.adp-btn-secondary {
  border: 1px solid var(--adp-line-2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.adp-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.adp-trust-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.adp-trust-item strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
}

.adp-trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--adp-text-soft);
  font-size: 1.42rem;
  line-height: 1.55;
}

.adp-hero-stage {
  position: relative;
  display: flex;
}

.adp-stage-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
}

.adp-stage-glow-a {
  right: 10%;
  top: 10%;
  width: 160px;
  height: 160px;
  background: rgba(73, 194, 255, 0.18);
}

.adp-stage-glow-b {
  left: 0;
  bottom: 4%;
  width: 190px;
  height: 190px;
  background: rgba(255, 107, 44, 0.16);
}

.adp-preview-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.adp-preview-top {
  display: grid;
  gap: 12px;
  align-items: start;
}

.adp-preview-label {
  margin: 0;
  color: #cdd8e7;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
}

.adp-preview-switches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.adp-switch {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.36rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.adp-switch:hover,
.adp-switch.is-active {
  background: rgba(255, 156, 47, 0.12);
  border-color: rgba(255, 156, 47, 0.22);
}

.adp-scene-wrap {
  position: relative;
  margin-top: 18px;
}

.adp-scene {
  display: none;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.adp-scene.is-active {
  display: grid;
  animation: adpSceneReveal 360ms ease;
}

.adp-scene-media,
.adp-scene-copy {
  border-radius: 24px;
}

.adp-scene-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(20, 32, 46, 0.98), rgba(11, 17, 27, 0.98));
}

.adp-scene-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 156, 47, 0.12);
  border: 1px solid rgba(255, 156, 47, 0.18);
  color: #ffbf70;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.adp-scene-window {
  position: absolute;
  inset: 22% 8% 12%;
  padding: 18px;
  border-radius: 24px;
  background: rgba(7, 11, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.adp-scene-window-bar {
  width: 96px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--adp-accent), var(--adp-accent-2));
}

.adp-scene-window-content {
  margin-top: 18px;
}

.adp-scene-window-content strong {
  display: block;
  color: #fff;
  font-size: 2.2rem;
}

.adp-scene-window-content p {
  margin: 10px 0 0;
  max-width: 30ch;
}

.adp-scene-media-seo::before,
.adp-scene-media-hero::before,
.adp-scene-media-partner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 156, 47, 0.16), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(73, 194, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.adp-hero-mock {
  position: absolute;
  inset: 56px 22px 22px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 12px;
}

.adp-hero-mock-main,
.adp-hero-mock-side div {
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 156, 47, 0.12), rgba(73, 194, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.adp-hero-mock-side {
  display: grid;
  gap: 12px;
}

.adp-partner-orbit {
  position: absolute;
  inset: 64px 28px 26px;
}

.adp-partner-orbit span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 1.42rem;
  font-weight: 800;
  animation: adpFloat 6.5s ease-in-out infinite;
}

.adp-partner-orbit span:nth-child(1) {
  top: 0;
  left: 14%;
}

.adp-partner-orbit span:nth-child(2) {
  top: 24%;
  right: 0;
  animation-delay: -1.2s;
}

.adp-partner-orbit span:nth-child(3) {
  bottom: 18%;
  left: 0;
  animation-delay: -2.4s;
}

.adp-partner-orbit span:nth-child(4) {
  right: 12%;
  bottom: 0;
  animation-delay: -3.2s;
}

.adp-scene-copy {
  padding: 6px 4px 2px;
}

.adp-scene-copy h2 {
  font-size: clamp(2.8rem, 1vw + 2rem, 4.2rem);
}

.adp-scene-copy p {
  margin: 12px 0 0;
}

.adp-scoreboard {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.adp-score span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.34rem;
  font-weight: 700;
}

.adp-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.adp-bar i {
  display: block;
  width: var(--adp-fill, 50%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--adp-accent), var(--adp-cool));
  transform-origin: left center;
}

.adp-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.adp-mini-metric {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.adp-mini-metric strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
}

.adp-mini-metric span {
  display: block;
  margin-top: 4px;
  color: var(--adp-text-soft);
  font-size: 1.34rem;
  line-height: 1.5;
}

.adp-strip {
  padding: 14px 22px;
}

.adp-strip-track {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.adp-strip-track span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.38rem;
  font-weight: 700;
}

.adp-section {
  padding: 28px;
}

.adp-section-head {
  margin-bottom: 20px;
}

.adp-section-head h2 {
  font-size: clamp(3rem, 1vw + 2.2rem, 4.8rem);
}

.adp-section-head p:last-child {
  margin-top: 12px;
  max-width: 70ch;
}

.adp-grid {
  display: grid;
  gap: 18px;
}

.adp-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.adp-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adp-card,
.adp-offer-card,
.adp-placement-card,
.adp-step {
  min-width: 0;
  height: 100%;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.adp-card:hover,
.adp-offer-card:hover,
.adp-placement-card:hover,
.adp-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 156, 47, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.adp-card h3,
.adp-offer-card h3,
.adp-placement-copy h3,
.adp-step h3 {
  font-size: 2.2rem;
}

.adp-card p,
.adp-placement-copy p,
.adp-step p {
  margin-top: 12px;
}

.adp-offer-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.adp-offer-card li {
  position: relative;
  padding-left: 22px;
}

.adp-offer-card li + li {
  margin-top: 10px;
}

.adp-offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--adp-accent), var(--adp-accent-2));
}

.adp-offer-top {
  display: grid;
  gap: 12px;
}

.adp-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 156, 47, 0.12);
  border: 1px solid rgba(255, 156, 47, 0.18);
  color: #ffbf70;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.adp-offer-card.is-featured {
  background:
    radial-gradient(circle at top right, rgba(255, 156, 47, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(18, 27, 41, 0.98), rgba(10, 16, 25, 0.98));
}

.adp-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 18px;
  color: #fff;
  font-size: 1.42rem;
  font-weight: 800;
}

.adp-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.24s ease;
}

.adp-link:hover::after {
  transform: translateX(4px);
}

.adp-placement-media {
  min-height: 220px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.adp-placement-home {
  background:
    linear-gradient(135deg, rgba(255, 156, 47, 0.16), rgba(73, 194, 255, 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.adp-placement-article {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 156, 47, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(29, 44, 64, 0.98), rgba(11, 18, 29, 0.98));
}

.adp-placement-brand {
  background:
    radial-gradient(circle at 82% 18%, rgba(73, 194, 255, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(25, 37, 53, 0.98), rgba(10, 16, 25, 0.98));
}

.adp-placement-copy {
  margin-top: 16px;
}

.adp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.adp-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--adp-accent), var(--adp-accent-2));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}

.adp-step h3 {
  margin-top: 18px;
}

.adp-faq details {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
}

.adp-faq details + details {
  margin-top: 12px;
}

.adp-faq summary {
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  list-style: none;
}

.adp-faq summary::-webkit-details-marker {
  display: none;
}

.adp-faq p {
  margin: 12px 0 0;
}

.adp-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px;
}

.adp-final-card h2 {
  font-size: clamp(3rem, 1vw + 2.2rem, 4.8rem);
}

.adp-final-card p:last-of-type {
  margin-top: 14px;
  max-width: 62ch;
}

.adp-final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@keyframes adpFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes adpSceneReveal {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .adp-hero {
    grid-template-columns: 1fr;
  }

  .adp-trust-row,
  .adp-grid-4,
  .adp-grid-3,
  .adp-steps,
  .adp-final-card {
    grid-template-columns: 1fr 1fr;
  }

  .adp-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .adp-page {
    padding: 16px 12px 70px;
  }

  .adp-hero,
  .adp-section,
  .adp-final-card {
    padding: 20px;
    border-radius: 24px;
  }

  .adp-hero-copy h1 {
    max-width: none;
    font-size: clamp(3.4rem, 7vw, 5.2rem);
  }

  .adp-preview-top,
  .adp-trust-row,
  .adp-mini-metrics,
  .adp-grid-4,
  .adp-grid-3,
  .adp-steps,
  .adp-final-card {
    grid-template-columns: 1fr;
  }

  .adp-preview-switches,
  .adp-hero-actions,
  .adp-final-actions {
    width: 100%;
  }

  .adp-btn {
    width: 100%;
  }

  .adp-hero-mock {
    grid-template-columns: 1fr;
  }
}