:root {
  --bg: #f4efe3;
  --card: #fffaf0;
  --ink: #17130d;
  --muted: #685f50;
  --line: #dccfb7;
  --teal: #053f42;
  --teal2: #0b6165;
  --gold: #c7982f;
  --gold2: #f1d47a;
  --red: #a64432;
  --shadow: 0 14px 34px rgba(23, 19, 13, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
main { padding-bottom: 84px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px clamp(12px, 3vw, 26px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 227, .96);
  backdrop-filter: blur(12px);
}
.topbar__logo { justify-self: center; }
.topbar__logo img { width: clamp(136px, 28vw, 188px); display: block; }
.topbar.is-scrolled .topbar__logo {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.topbar__nav { display: flex; justify-content: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.topbar__nav a, .topbar__cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.topbar__cta, .topbar__nav a:hover { color: #fff; background: var(--teal); }
.topbar__nav .nav-pill {
  border: 1px solid rgba(5,63,66,.25);
  color: var(--ink);
  background: rgba(255,250,240,.55);
}
.topbar__nav .nav-pill:hover { color: #fff; background: var(--teal); }
.nav-auto {
  width: min(720px, 100%);
  justify-self: center;
  animation: menuFloat 10s ease-in-out infinite alternate;
}
@keyframes menuFloat {
  from { transform: translateX(-14px); }
  to { transform: translateX(14px); }
}

.hero {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  padding: clamp(34px, 7vw, 74px) 0 28px;
}
.eyebrow, .section-head span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .75rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 8vw, 6.4rem);
  line-height: .9;
  font-weight: 950;
}
h1 span { color: #a87945; }
.hero p, .section-head p, .final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.16rem);
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
}
.btn--gold { color: #211600; background: linear-gradient(135deg, var(--gold2), var(--gold)); }
.btn--dark { color: #fff; background: var(--teal); }
.btn--light, .btn--outline { color: var(--ink); background: var(--card); border-color: var(--line); }

.metric-grid, .package-grid, .flow-grid, .review-grid {
  display: grid;
  gap: 12px;
}
.metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 30px; }
.metric-grid--wide { width: min(1120px, calc(100% - 24px)); margin: 0 auto 14px; }
.metric-grid div, .offer-panel, .trust-panel, .instant-strip, .package-card, .compare-grid, .flow-grid article, .review-grid article, .final-cta {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.metric-grid div { position: relative; padding: 16px 16px 16px 58px; }
.metric-grid div::before {
  content: "B";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: #eadfce;
}
.metric-grid div:nth-child(2)::before { content: "Y"; }
.metric-grid div:nth-child(3)::before { content: "R"; }
.metric-grid strong, .metric-grid span { display: block; }
.metric-grid strong { font-size: 1.65rem; }
.metric-grid span { color: var(--muted); font-size: .9rem; }

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.hero-benefits div { display: grid; gap: 6px; }
.hero-benefits b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: #eadfce;
  font-size: 1.15rem;
}
.hero-benefits strong, .hero-benefits span { display: block; }
.hero-benefits span { color: var(--muted); font-size: .92rem; line-height: 1.4; }

.hero__visual { display: grid; gap: 14px; }
.creator-visual {
  position: relative;
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  background: radial-gradient(circle at 58% 38%, #eadfce 0 34%, transparent 35%);
}
.creator-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244,239,227,0) 58%, rgba(244,239,227,.92)),
    url("./assets/ugc-creator-girl.png") center 35% / cover;
}
.float-card {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,250,240,.92);
  box-shadow: var(--shadow);
  animation: floatSoft 4.5s ease-in-out infinite;
}
.float-card--views { animation-delay: .8s; }
.float-card--stars { animation-delay: 1.4s; }
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-card span, .float-card strong { display: block; }
.float-card span { color: var(--muted); font-size: .9rem; }
.float-card strong { font-size: 1.35rem; }
.float-card--engage { top: 70px; left: 18px; }
.float-card--views { right: 18px; bottom: 120px; }
.float-card--stars { left: 22px; bottom: 36px; max-width: 230px; }
.float-card--stars strong { color: var(--gold); letter-spacing: .05em; }
.offer-panel {
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal2));
}
.offer-panel__label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #211600;
  background: var(--gold2);
  font-size: .78rem;
  font-weight: 900;
}
.offer-panel h2 { margin-bottom: 6px; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1; }
.offer-panel__price { font-size: clamp(3rem, 8vw, 5rem); font-weight: 950; line-height: 1; }
.offer-panel p { color: rgba(255,255,255,.78); line-height: 1.55; }
.trust-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 16px; }
.trust-panel strong { grid-column: 1 / -1; }
.trust-panel span { padding: 10px; border-radius: 8px; color: var(--teal); background: #e4efeb; font-weight: 800; }

.trusted-strip {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.trusted-strip span { color: var(--muted); font-size: .9rem; }
.trusted-strip strong { display: block; font-size: clamp(1.2rem, 3vw, 1.7rem); }
.leader-avatars { display: flex; justify-content: flex-end; }
.leader-avatars img {
  width: min(360px, 48vw);
  max-height: 78px;
  display: block;
  object-fit: contain;
}

.instant-strip {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border-left: 6px solid var(--gold);
}
.instant-strip span { color: var(--muted); }
.instant-strip a { color: var(--teal); font-weight: 900; }

.section { width: min(1120px, calc(100% - 24px)); margin: 0 auto; padding-top: 92px; }
.section + .section { margin-top: 36px; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head h2, .final-cta h2 { margin-bottom: 12px; font-size: clamp(2.1rem, 5.2vw, 3.7rem); line-height: 1; font-weight: 950; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.brand-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.brand-slider::-webkit-scrollbar { display: none; }
.brand-slider .brand-grid {
  width: max-content;
  min-width: 100%;
  display: flex;
  animation: brandScroll 34s linear infinite;
}
.brand-slider .brand-grid div {
  width: 220px;
}
.brand-card--other { border-top: 5px solid var(--gold); }
.brand-card--hospital { border-top: 5px solid var(--teal); }
@keyframes brandScroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-35%,0,0); }
}
.brand-grid div {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 1.12rem;
  font-weight: 950;
}
.brand-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}
.brand-grid img {
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}
.brand-card--dark {
  background: #050505 !important;
}

.sample-grid-wrap { padding: 0; background: transparent; box-shadow: none; border-radius: 0; overflow: visible; }
.reel-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(132px, 1fr));
  gap: 12px;
  width: 100%;
}
.featured-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.video-embed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.video-embed-grid iframe {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.video-preview {
  position: relative;
  min-height: 640px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #0b6165, #053f42);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}
.video-preview--real {
  padding: 0;
  background: #050505;
}
.video-preview--real video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.video-preview--real:hover .tap-to-watch,
.reel-card--video:hover .tap-to-watch {
  transform: translateY(-3px) scale(1.03);
}
.tap-to-watch {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,63,66,.72);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: transform .2s ease;
}
.tap-to-watch i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}
.tap-to-watch i::before {
  content: "";
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--ink);
}
.tap-to-watch span {
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.video-preview--real::before,
.video-preview--real::after {
  content: none !important;
  display: none !important;
}
.video-label {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.76));
  pointer-events: none;
}
.video-preview:nth-child(2) { background: linear-gradient(145deg, #5b4220, #17130d); }
.video-preview > * { position: relative; z-index: 2; }
.video-preview::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}
.video-preview::after {
  content: "";
  position: absolute;
  top: 44px;
  left: 48px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--ink);
}
.video-preview::marker { display: none; }
.video-preview:before { animation: pulsePlay 1.8s ease-in-out infinite; }
.video-preview small::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: min(220px, 80%);
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  overflow: hidden;
}
.video-preview span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -128px;
  width: 72%;
  height: 4px;
  border-radius: 999px;
  background: var(--gold2);
  animation: videoProgress 4.4s linear infinite;
}
.video-preview span { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 900; text-transform: uppercase; }
.video-preview strong { font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1; }
.video-preview small { color: rgba(255,255,255,.72); }
@keyframes pulsePlay {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes videoProgress {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}
.video-feature {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  background: linear-gradient(145deg, #0b6165, #053f42);
  box-shadow: var(--shadow);
}
.video-feature:nth-child(2) { background: linear-gradient(145deg, #5b4220, #17130d); }
.video-feature::before, .video-feature::after {
  content: "";
  position: absolute;
}
.video-feature::before {
  width: 64px;
  height: 64px;
  top: 20px;
  left: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}
.video-feature::after {
  top: 41px;
  left: 46px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--ink);
}
.video-feature span, .video-feature strong { position: relative; z-index: 1; }
.video-feature span { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 900; text-transform: uppercase; }
.video-feature strong { font-size: clamp(1.6rem, 4vw, 2.4rem); }

.reel-track--scroll {
  display: flex;
  width: max-content;
  animation: sampleScroll 42s linear infinite;
}
.sample-grid-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.sample-grid-wrap::-webkit-scrollbar { display: none; }
.sample-grid-wrap:active .reel-track--scroll,
.sample-grid-wrap:hover .reel-track--scroll {
  animation-play-state: paused;
}
@keyframes sampleScroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
.reel-card {
  position: relative;
  min-height: 176px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
  overflow: hidden;
  background: linear-gradient(145deg, #0b6165, #053f42);
}
.reel-card--video {
  min-width: 260px;
  min-height: 440px;
  background: #050505;
  isolation: isolate;
}
.reel-card--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.reel-card--video::after {
  content: none !important;
  display: none !important;
}
.reel-card--video span,
.reel-card--video strong {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
  pointer-events: none;
}
.reel-card--video::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.76));
  pointer-events: none;
}
.reel-card--video::marker { display: none; }
.reel-card--video:after {
  content: none !important;
  display: none !important;
}
.reel-card:nth-child(4n) { background: linear-gradient(145deg, #5b4220, #17130d); }
.reel-card:nth-child(5n) { background: linear-gradient(145deg, #6a3d32, #21110d); }
.reel-card:nth-child(6n) { background: linear-gradient(145deg, #324d65, #111820); }
.reel-card::before {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}
.reel-card::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 30px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--ink);
}
.reel-card--video::before {
  width: auto;
  height: 44%;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.76));
}
.reel-card--video::after {
  content: none !important;
  display: none !important;
}
.reel-card--hot { outline: 2px solid var(--gold2); }
.reel-card span { color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.reel-card strong { font-size: 1.18rem; line-height: 1.05; }

.package-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.package-card {
  min-height: 214px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border-top: 5px solid var(--teal);
}
.package-card--featured { color: #fff; background: var(--teal); border-color: var(--gold); }
.badge { width: fit-content; padding: 7px 10px; border-radius: 999px; background: var(--gold2); color: #211600; font-size: .75rem; font-weight: 900; }
.price { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 950; line-height: 1; }
.package-card p { color: var(--muted); line-height: 1.45; }
.package-card--featured p { color: rgba(255,255,255,.78); }
.package-details {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.package-details li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.25;
}
.package-card--featured .package-details li { color: rgba(255,255,255,.82); }
.package-details li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
.package-card .btn--gold {
  position: relative;
  overflow: hidden;
}
.btn--gold {
  position: relative;
  overflow: hidden;
}
.btn--gold::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 30%;
  transform: rotate(18deg);
  background: rgba(255,255,255,.45);
  animation: shine 2.7s ease-in-out infinite;
}
@keyframes shine {
  0% { left: -35%; }
  45%, 100% { left: 120%; }
}
.managed-note {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.managed-note span { color: var(--muted); line-height: 1.55; }

.compare-grid { display: grid; grid-template-columns: 1.15fr repeat(5, 1fr); overflow: hidden; }
.compare-grid div { min-height: 48px; display: grid; place-items: center; padding: 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-weight: 800; }
.compare-title { background: #eadcbd; }
.compare-grid small { color: var(--teal); font-weight: 950; }

.flow-grid, .review-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.flow-grid article, .review-grid article, .roadmap article { padding: 18px; }
.flow-grid b, .flow-grid strong, .flow-grid span { display: block; }
.flow-grid b { color: var(--gold); font-size: 1.4rem; margin-bottom: 30px; }
.flow-grid span, .review-grid p { color: var(--muted); line-height: 1.55; }
.review-grid div { color: var(--gold); letter-spacing: .08em; margin-bottom: 12px; }
.stars { color: transparent; letter-spacing: .08em; font-size: 1.1rem; }
.stars::before { content: "\2605\2605\2605\2605\2605"; color: var(--gold); }
.review-grid strong { display: block; margin-top: 12px; }
.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.roadmap::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 31px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.roadmap article {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.roadmap b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #211600;
  background: var(--gold2);
}
.roadmap strong, .roadmap span { display: block; }
.roadmap span { margin-top: 8px; color: var(--muted); line-height: 1.55; }
.review-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  padding: 10px 8px 30px;
  margin-inline: -8px;
}
.review-marquee::-webkit-scrollbar { display: none; }
.brand-slider { cursor: grab; }
.review-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: reviewScroll 36s linear infinite;
  align-items: stretch;
}
.review-track article {
  width: min(300px, 78vw);
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow);
}
@keyframes reviewScroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.results-grid img, .about-card img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.about-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.about-card h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}
.about-card p { color: var(--muted); line-height: 1.65; }

.final-cta { padding: clamp(28px, 6vw, 52px); text-align: center; color: #fff; background: linear-gradient(135deg, var(--teal), #17130d); }
.final-cta p { color: rgba(255,255,255,.76); }
.terms-link { display: inline-flex; margin-top: 14px; color: rgba(255,255,255,.82); font-weight: 800; }
.terms-link--small { font-size: .86rem; opacity: .82; }

.sticky-cta {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 10px;
  width: min(560px, calc(100% - 22px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  color: #fff;
  background: rgba(6,63,66,.96);
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
  transform: translateX(-50%);
}
.sticky-cta span, .sticky-cta strong { display: block; }
.sticky-cta span { color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 800; }
.sticky-cta b { color: var(--gold2); font-size: 1.12rem; }
.sticky-cta strong { font-size: 1.15rem; }
.sticky-cta .btn { min-height: 44px; }
.sticky-view-packages {
  position: fixed;
  z-index: 61;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #211600;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  box-shadow: 0 12px 34px rgba(199,152,47,.34);
  font-weight: 950;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
body.has-scrolled .sticky-view-packages {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.audio-widget {
  position: fixed;
  z-index: 70;
  right: 14px;
  top: 50%;
  display: grid;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,250,240,.38);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.audio-widget button {
  border: 0;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  cursor: pointer;
}
.audio-widget button.is-on {
  color: #211600;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}
.audio-widget svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#audioReplay svg {
  fill: currentColor;
  stroke: none;
}
#audioMute.is-on .audio-muted-line { display: none; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
}
.video-modal.is-open { display: grid; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
}
.video-modal__dialog video {
  width: 100%;
  max-height: 86vh;
  border-radius: 16px;
  background: #000;
}
.video-modal__close {
  position: absolute;
  right: 0;
  top: -46px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.thanks-page, .terms-page { min-height: 100vh; padding: clamp(16px, 4vw, 32px) 16px 88px; }
.thanks-page { display: grid; place-items: center; }
.thanks-card, .terms-hero, .terms-content { width: min(900px, 100%); margin: 0 auto; }
.thanks-card, .terms-hero { padding: clamp(24px, 6vw, 54px); text-align: center; }
.thanks-card, .terms-content article, .terms-contact { border: 1px solid var(--line); border-radius: 14px; background: var(--card); box-shadow: var(--shadow); }
.thanks-card .brand-logo, .terms-hero .brand-logo { width: min(210px, 62vw); margin-bottom: 34px; }
.thanks-card h1, .terms-hero h1 { font-size: clamp(2.6rem, 9vw, 5.8rem); }
.thanks-card p, .terms-hero p, .terms-content p { color: var(--muted); line-height: 1.7; }
.terms-content { display: grid; gap: clamp(12px, 3vw, 18px); }
.terms-content article, .terms-contact { padding: clamp(16px, 4vw, 24px); }
.terms-content h2 { margin: 0 0 10px; font-size: 1.12rem; }
.terms-content p { margin: 0; }
.terms-content p + p { margin-top: 10px; }
.terms-contact { text-align: center; }

@media (max-width: 980px) {
  .topbar__nav { grid-column: 1 / -1; justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; }
  .creator-visual { min-height: 520px; }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-grid, .review-grid, .roadmap, .results-grid, .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reel-track { grid-template-columns: repeat(3, minmax(132px, 1fr)); }
  .about-card { grid-template-columns: 1fr; }
  .roadmap::before { display: none; }
}

@media (max-width: 640px) {
  main { padding-bottom: 82px; }
  .topbar { padding: 9px 10px; }
  .nav-auto { animation-duration: 12s; }
  .topbar__logo img { width: 136px; }
  .topbar__cta { min-height: 34px; padding-inline: 12px; }
  .hero, .section, .instant-strip { width: min(100% - 20px, 1120px); }
  .hero { padding-top: 24px; }
  h1 { font-size: clamp(2.85rem, 13.4vw, 4.45rem); }
  .hero__actions .btn, .instant-strip a { width: 100%; }
  .metric-grid, .instant-strip, .package-grid, .flow-grid, .review-grid, .roadmap, .results-grid, .brand-grid, .trust-panel, .trusted-strip, .featured-videos, .video-embed-grid { grid-template-columns: 1fr; }
  .hero-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .hero-benefits div { min-width: 0; }
  .hero-benefits b { width: 36px; height: 36px; font-size: .92rem; }
  .hero-benefits strong { font-size: .88rem; line-height: 1.15; }
  .hero-benefits span { font-size: .78rem; }
  .section { padding-top: 76px; }
  .section + .section { margin-top: 26px; }
  .section-head h2, .final-cta h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .creator-visual { min-height: 430px; border-radius: 24px; }
  .float-card { padding: 10px 12px; }
  .float-card--engage { top: 18px; left: 10px; }
  .float-card--views { right: 10px; bottom: 94px; }
  .float-card--stars { left: 10px; bottom: 16px; max-width: 190px; }
  .video-embed-grid iframe { min-height: 520px; }
  .video-preview { min-height: 560px; }
  .reel-card--video { min-width: 236px; min-height: 410px; }
  .audio-widget { top: 50%; bottom: auto; right: 10px; }
  .sticky-view-packages { bottom: 78px; transform: translateX(-50%) scale(.96); }
  body.has-scrolled .sticky-view-packages { transform: translateX(-50%) scale(1); }
  .leader-avatars { justify-content: center; }
  .leader-avatars img { width: min(100%, 430px); max-height: none; }
  .trusted-strip { text-align: center; }
  .terms-page { padding: 12px 10px 76px; }
  .terms-hero { padding: 22px 14px; }
  .terms-hero h1 { font-size: clamp(2.2rem, 12vw, 3.7rem); overflow-wrap: anywhere; }
  .terms-content article, .terms-contact { padding: 16px; }
  .reel-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reel-track--scroll { animation-duration: 60s; }
  .reel-card { min-height: 150px; }
  .compare-grid { grid-template-columns: 1fr repeat(5, minmax(76px, 1fr)); overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-grid div { font-size: .86rem; }
}
