:root{
  --yellow:#ffd51e;
  --yellow-soft:#fff4ad;
  --red:#e6292f;
  --red-dark:#b41218;
  --green:#22c977;
  --green-dark:#0d6b42;
  --lime:#b7f31d;
  --black:#090909;
  --ink:#171717;
  --paper:#fffdf6;
  --cream:#fff8df;
  --white:#fff;
  --muted:#625f56;
  --line:rgba(9,9,9,.14);
  --line-strong:rgba(9,9,9,.28);
  --shadow:0 24px 60px rgba(0,0,0,.12);
  --shadow-soft:0 16px 40px rgba(0,0,0,.09);
  --font:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font);
  font-size:17px;
  line-height:1.55
}

img{max-width:100%;height:auto}
a{color:inherit}
button,input{font:inherit}
.shell{width:min(1180px,calc(100% - 36px));margin:auto}
.skip-link{position:absolute;left:-9999px}
.skip-link:focus{
  left:16px;
  top:16px;
  z-index:9999;
  padding:12px 16px;
  border:2px solid #000;
  border-radius:10px;
  background:#fff;
  color:#000
}

.site-nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(9,9,9,.97);
  color:#fff;
  border-bottom:2px solid rgba(255,213,30,.72);
  backdrop-filter:blur(12px)
}

.nav-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  gap:24px
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-size:24px;
  font-weight:950;
  letter-spacing:-.04em
}

.logo-mark{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:var(--yellow);
  color:var(--black);
  border:1px solid rgba(255,255,255,.28);
  box-shadow:0 8px 22px rgba(230,41,47,.26)
}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  margin-left:auto
}

.nav-links a{
  text-decoration:none;
  font-size:14px;
  font-weight:850
}

.nav-links a:hover{color:var(--yellow)}

.nav-links .nav-cta{
  padding:11px 18px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--yellow),#ffbd00);
  color:#000;
  box-shadow:0 10px 28px rgba(255,213,30,.2)
}

.nav-toggle{
  display:none;
  margin-left:auto;
  border:1px solid var(--yellow);
  border-radius:10px;
  background:transparent;
  color:var(--yellow);
  padding:8px 11px;
  font-weight:900
}

.release-date{
  text-align:center;
  padding:11px 18px;
  background:var(--yellow);
  color:#000;
  font-size:12px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(0,0,0,.16)
}

.hero{
  position:relative;
  overflow:hidden;
  padding:74px 0 82px;
  background:
    radial-gradient(circle at 18% 15%,rgba(230,41,47,.24),transparent 26%),
    radial-gradient(circle at 86% 20%,rgba(255,213,30,.14),transparent 25%),
    linear-gradient(145deg,#080808,#111 58%,#0d0d0d);
  color:#fff
}

.hero::before{
  content:"";
  position:absolute;
  inset:auto auto -160px -140px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:rgba(255,213,30,.08);
  filter:blur(4px)
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:48px;
  align-items:center
}

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

.eyebrow{
  display:inline-flex;
  padding:8px 13px;
  border:1px solid rgba(255,213,30,.55);
  border-radius:999px;
  background:rgba(255,213,30,.08);
  color:var(--yellow);
  font-size:12px;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase
}

.hero h1{
  max-width:740px;
  margin:18px 0 22px;
  font-size:clamp(52px,6.6vw,88px);
  line-height:.92;
  letter-spacing:-.07em
}

.hero h1 em{
  display:block;
  margin-top:6px;
  font-style:normal;
  color:var(--yellow)
}

.hero-copy{
  max-width:690px;
  margin:0;
  color:#f0efe9;
  font-size:21px;
  font-weight:650
}

.benefit-checks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 18px;
  margin:28px 0 0;
  padding:0;
  list-style:none
}

.benefit-checks li{
  position:relative;
  padding-left:29px;
  color:#f7f6f1;
  font-weight:850
}

.benefit-checks li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:1px;
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  border-radius:50%;
  background:var(--green);
  color:#000;
  font-size:12px;
  font-weight:950
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:53px;
  padding:14px 22px;
  border:1px solid transparent;
  border-radius:13px;
  text-decoration:none;
  font-weight:950;
  letter-spacing:.01em;
  cursor:pointer;
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    background-color .16s ease
}

.button:hover{transform:translateY(-2px)}

.button-primary{
  min-height:58px;
  padding-inline:25px;
  font-size:18px
}

.button-yellow{
  background:linear-gradient(135deg,var(--yellow),#ffbd00);
  color:#000;
  box-shadow:0 14px 34px rgba(255,213,30,.22)
}

.button-red{
  background:linear-gradient(135deg,var(--red),#ff3a41);
  color:#fff;
  box-shadow:0 14px 32px rgba(230,41,47,.22)
}

.button-black{
  background:#111;
  color:var(--yellow);
  border-color:rgba(255,213,30,.42)
}

.button-green{
  background:linear-gradient(135deg,var(--green),#63df9e);
  color:#000;
  box-shadow:0 14px 30px rgba(34,201,119,.2)
}

.button-outline{
  border-color:rgba(255,255,255,.36);
  background:rgba(255,255,255,.04);
  color:#fff
}

.button-outline:hover{
  border-color:var(--yellow);
  color:var(--yellow)
}

.button-wide{width:100%;font-size:18px}

.hero-note{
  margin:17px 0 0;
  color:#bdbab1;
  font-size:13px;
  font-weight:750
}

.hero-art{
  position:relative;
  min-height:610px;
  isolation:isolate
}

.art-splash{
  position:absolute;
  z-index:-1;
  inset:3% -7% auto -6%;
  width:112%;
  height:86%;
  object-fit:contain;
  opacity:.96;
  filter:saturate(1.08)
}

.hero-pin{
  position:absolute;
  display:block;
  width:36%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.4);
  box-shadow:0 28px 55px rgba(0,0,0,.44)
}

.hero-pin-one{
  left:1%;
  top:12%;
  transform:rotate(-7deg)
}

.hero-pin-two{
  left:23%;
  bottom:4%;
  transform:rotate(6deg)
}

.hero-phone{
  position:absolute;
  right:-3%;
  bottom:-8%;
  width:67%;
  filter:drop-shadow(0 28px 42px rgba(0,0,0,.42))
}

.hero-route{
  position:absolute;
  left:39%;
  top:12%;
  z-index:3;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  color:#000;
  font-size:12px;
  font-weight:950;
  transform:rotate(-4deg);
  box-shadow:0 12px 28px rgba(0,0,0,.2)
}

.benefits-band{
  position:relative;
  z-index:4;
  padding:28px 0;
  background:var(--yellow);
  border-block:1px solid rgba(0,0,0,.16)
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px
}

.benefit-card{
  min-height:190px;
  padding:23px;
  border:1px solid rgba(0,0,0,.2);
  border-radius:18px;
  background:rgba(255,255,255,.76);
  box-shadow:var(--shadow-soft)
}

.benefit-card:nth-child(2){background:#fff}
.benefit-card:nth-child(3){background:#0f0f0f;color:#fff}
.benefit-card:nth-child(4){background:var(--green);color:#000}

.benefit-card span{
  display:inline-flex;
  color:var(--red);
  font-size:13px;
  font-weight:950;
  letter-spacing:.12em
}

.benefit-card:nth-child(3) span{color:var(--yellow)}
.benefit-card:nth-child(4) span{color:#000}

.benefit-card h2{
  margin:16px 0 8px;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.04em
}

.benefit-card p{
  margin:0;
  font-size:14px;
  color:inherit;
  opacity:.82
}

.section{padding:84px 0}
.section-head{
  max-width:820px;
  margin:0 auto 42px;
  text-align:center
}

.kicker{
  display:inline-block;
  color:var(--red);
  font-size:12px;
  font-weight:950;
  letter-spacing:.13em;
  text-transform:uppercase
}

.kicker-yellow{color:var(--yellow)}

.section h2{
  margin:10px 0 14px;
  font-size:clamp(39px,5vw,64px);
  line-height:.96;
  letter-spacing:-.058em
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:18px
}

.examples-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 12%,rgba(255,213,30,.2),transparent 21%),
    radial-gradient(circle at 88% 78%,rgba(230,41,47,.12),transparent 23%),
    var(--paper)
}

.examples-section::after{
  content:"";
  position:absolute;
  inset:auto -160px -220px auto;
  width:520px;
  height:520px;
  border-radius:50%;
  border:50px solid rgba(183,243,29,.13)
}

.pin-gallery{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:18px;
  align-items:end;
  padding:42px 2% 24px;
  isolation:isolate
}

.pin-gallery::before,
.pin-gallery::after{
  content:"";
  position:absolute;
  z-index:-1;
  pointer-events:none;
  filter:saturate(1.08)
}

.pin-gallery::before{
  left:-4%;
  top:4%;
  width:46%;
  height:80%;
  background:
    radial-gradient(ellipse at center,rgba(255,213,30,.9),rgba(255,213,30,0) 68%);
  transform:rotate(-8deg)
}

.pin-gallery::after{
  right:-5%;
  bottom:-4%;
  width:38%;
  height:76%;
  background:
    radial-gradient(ellipse at center,rgba(230,41,47,.62),rgba(230,41,47,0) 69%);
  transform:rotate(9deg)
}

.pin-sample{
  position:relative;
  margin:0;
  padding:6px;
  border:1px solid rgba(0,0,0,.11);
  border-radius:17px;
  background:rgba(255,255,255,.93);
  box-shadow:
    0 18px 36px rgba(0,0,0,.14),
    0 3px 8px rgba(0,0,0,.08);
  transition:transform .2s ease,box-shadow .2s ease
}

.pin-sample:nth-child(even){transform:translateY(13px)}
.pin-sample:nth-child(3n){transform:translateY(-7px)}

.pin-sample:hover{
  z-index:3;
  transform:translateY(-9px) scale(1.025);
  box-shadow:
    0 25px 48px rgba(0,0,0,.2),
    0 5px 12px rgba(0,0,0,.1)
}

.pin-sample img{
  display:block;
  width:100%;
  aspect-ratio:3/5;
  object-fit:cover;
  border-radius:12px
}

.pin-sample figcaption{
  padding:9px 4px 4px;
  text-align:center;
  font-size:11px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase
}

.sample-disclosure{
  max-width:760px;
  margin:24px auto 0;
  color:var(--muted);
  text-align:center;
  font-size:13px
}

.comparison-section{
  position:relative;
  overflow:hidden;
  background:#0b0b0b;
  color:#fff
}

.comparison-section::before{
  content:"";
  position:absolute;
  right:-130px;
  top:-210px;
  width:500px;
  height:500px;
  border-radius:50%;
  border:60px solid rgba(230,41,47,.15)
}

.comparison-grid{
  position:relative;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:46px;
  align-items:center
}

.comparison-section h2{color:#fff}
.comparison-section p{color:#d8d6d0}

.route-panel{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  gap:12px;
  align-items:center;
  padding:28px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  background:rgba(255,255,255,.05);
  box-shadow:0 25px 60px rgba(0,0,0,.24)
}

.route-step{
  min-height:145px;
  padding:20px 15px;
  border-radius:18px;
  display:grid;
  place-items:center;
  align-content:center;
  text-align:center;
  font-weight:950
}

.route-step:nth-child(1){background:var(--yellow);color:#000}
.route-step:nth-child(3){background:var(--red);color:#fff}
.route-step:nth-child(5){background:var(--green);color:#000}

.route-step b{
  display:block;
  margin-bottom:7px;
  font-size:40px;
  line-height:1
}

.route-arrow{
  color:var(--yellow);
  font-size:30px;
  font-weight:950
}

.proof-section{
  background:
    linear-gradient(180deg,#fff,var(--cream))
}

.proof-grid{
  display:grid;
  gap:26px
}

.proof-card{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:30px;
  align-items:center;
  min-height:530px;
  padding:clamp(24px,4vw,42px);
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--shadow-soft)
}

.posting-proof{
  grid-template-columns:.92fr 1.08fr;
  background:#101010;
  color:#fff
}

.proof-copy{max-width:540px}
.proof-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:var(--yellow);
  color:#000;
  font-size:13px;
  font-weight:950
}

.proof-card h3{
  margin:17px 0 12px;
  font-size:clamp(34px,4vw,53px);
  line-height:.98;
  letter-spacing:-.055em
}

.proof-card p{
  margin:0;
  color:var(--muted);
  font-size:17px
}

.posting-proof p{color:#c8c5bd}

.proof-card ul{
  display:grid;
  gap:9px;
  margin:24px 0 0;
  padding:0;
  list-style:none
}

.proof-card li{
  position:relative;
  padding-left:25px;
  font-weight:800
}

.proof-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:950
}

.phone-proof{
  position:relative;
  min-height:500px;
  display:grid;
  place-items:center;
  overflow:hidden
}

.phone-proof::before{
  content:"";
  position:absolute;
  width:76%;
  height:76%;
  border-radius:50%;
  background:
    radial-gradient(circle,var(--yellow),rgba(255,213,30,0) 67%);
  opacity:.55
}

.phone-proof img{
  position:relative;
  width:min(100%,490px);
  filter:drop-shadow(0 28px 44px rgba(0,0,0,.2))
}

.posting-kit-demo{
  position:relative;
  padding:24px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:#fff;
  color:#111;
  box-shadow:0 28px 65px rgba(0,0,0,.35)
}

.posting-kit-demo::before{
  content:"";
  position:absolute;
  inset:-45px -30px auto auto;
  z-index:-1;
  width:220px;
  height:220px;
  border-radius:50%;
  background:var(--red);
  filter:blur(2px)
}

.kit-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px
}

.kit-head span{
  font-size:22px;
  font-weight:950
}

.kit-head b{
  padding:7px 10px;
  border-radius:999px;
  background:#dff9eb;
  color:var(--green-dark);
  font-size:11px;
  text-transform:uppercase
}

.posting-kit-demo label{
  position:relative;
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px 12px;
  margin-top:12px;
  font-size:12px;
  font-weight:900
}

.posting-kit-demo label span{
  grid-column:1;
  min-height:48px;
  padding:13px 14px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#fafafa;
  color:#252525;
  font-size:14px;
  font-weight:650
}

.posting-kit-demo label button{
  grid-column:2;
  grid-row:2;
  min-width:70px;
  border:0;
  border-radius:11px;
  background:#111;
  color:#fff;
  font-size:12px;
  font-weight:900
}

.kit-description span{min-height:82px!important}

.kit-actions{
  display:grid;
  gap:2px;
  margin-top:18px;
  padding:15px;
  border-radius:13px;
  background:var(--yellow);
  text-align:center
}

.kit-actions strong{
  font-size:14px;
  text-transform:uppercase
}

.kit-actions small{
  font-size:11px;
  font-weight:700
}

.capability-strip{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
  margin-top:24px
}

.capability-strip span{
  min-height:76px;
  display:grid;
  place-items:center;
  padding:13px;
  border:1px solid var(--line);
  border-radius:15px;
  background:#fff;
  text-align:center;
  font-size:13px;
  font-weight:900
}

.capability-strip span:nth-child(2n){background:var(--yellow-soft)}
.capability-strip span:nth-child(3n){background:#e6fbf1}

.workflow-section{
  background:var(--yellow);
  border-block:1px solid rgba(0,0,0,.15)
}

.workflow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px
}

.workflow-card{
  position:relative;
  min-height:225px;
  padding:25px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:20px;
  background:rgba(255,255,255,.86);
  box-shadow:var(--shadow-soft)
}

.workflow-card b{
  font-size:47px;
  color:var(--red);
  line-height:1
}

.workflow-card h3{
  margin:14px 0 8px;
  font-size:22px
}

.workflow-card p{
  margin:0;
  color:var(--muted);
  font-size:14px
}

.made-for-section{
  background:#fff
}

.made-for-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:40px;
  align-items:center
}

.made-for-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none
}

.made-for-list li{
  position:relative;
  padding:17px 18px 17px 46px;
  border:1px solid var(--line);
  border-radius:15px;
  background:var(--cream);
  font-weight:850
}

.made-for-list li::before{
  content:"✓";
  position:absolute;
  left:17px;
  top:17px;
  display:grid;
  place-items:center;
  width:21px;
  height:21px;
  border-radius:50%;
  background:var(--green);
  color:#000;
  font-size:12px;
  font-weight:950
}

.pricing-section{
  background:
    radial-gradient(circle at 88% 12%,rgba(230,41,47,.18),transparent 23%),
    var(--yellow);
  border-block:1px solid rgba(0,0,0,.18)
}

.pricing-grid{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:22px;
  align-items:stretch
}

.price-card{
  padding:36px;
  border:1px solid var(--line-strong);
  border-radius:25px;
  background:#fff;
  box-shadow:0 28px 60px rgba(0,0,0,.13)
}

.price-label{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  background:#111;
  color:var(--yellow);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase
}

.price{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin:22px 0 20px
}

.price strong{
  font-size:84px;
  line-height:.83;
  letter-spacing:-.08em
}

.price>span{
  align-self:flex-start;
  margin-top:7px;
  font-size:25px;
  font-weight:950
}

.price small{
  margin-bottom:5px;
  color:var(--muted);
  font-size:14px;
  font-weight:850
}

.price-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 18px;
  margin:0 0 25px;
  padding:0;
  list-style:none
}

.price-list li{
  position:relative;
  padding-left:25px;
  font-size:14px;
  font-weight:760
}

.price-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green-dark);
  font-weight:950
}

.refill-card{
  align-self:center;
  padding:28px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:23px;
  background:#111;
  color:#fff;
  box-shadow:0 24px 54px rgba(0,0,0,.2)
}

.refill-card h3{
  margin:10px 0 16px;
  font-size:28px;
  line-height:1.05
}

.refill-price{
  font-size:64px;
  font-weight:950;
  color:var(--yellow);
  line-height:1
}

.refill-card p{
  color:#d3d0c8;
  font-size:14px
}

.compliance-note{
  margin-top:22px;
  padding:16px 18px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:14px;
  background:rgba(255,255,255,.78);
  color:#000;
  font-size:13px;
  font-weight:750
}

.faq-section{background:var(--paper)}

.faq{
  max-width:900px;
  margin:auto;
  display:grid;
  gap:10px
}

.faq details{
  border:1px solid var(--line);
  border-radius:15px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.04)
}

.faq summary{
  padding:18px 20px;
  font-weight:950;
  cursor:pointer
}

.faq p{
  padding:0 20px 19px;
  margin:0;
  color:var(--muted)
}

.final-cta{
  position:relative;
  overflow:hidden;
  padding:78px 0;
  background:var(--red);
  color:#fff;
  text-align:center
}

.final-cta::before,
.final-cta::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:var(--yellow);
  opacity:.16
}

.final-cta::before{
  width:350px;
  height:350px;
  left:-120px;
  top:-170px
}

.final-cta::after{
  width:260px;
  height:260px;
  right:-80px;
  bottom:-140px
}

.final-cta .shell{position:relative}

.final-cta h2{
  max-width:920px;
  margin:0 auto 14px;
  font-size:clamp(43px,6vw,74px);
  line-height:.94;
  letter-spacing:-.06em
}

.final-cta p{
  max-width:700px;
  margin:0 auto 25px;
  font-size:18px
}

.site-footer{
  padding:46px 0;
  background:#090909;
  color:#fff;
  border-top:2px solid var(--yellow)
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:30px
}

.footer-grid p{color:#c5c1b8}

.footer-links{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  justify-content:flex-end
}

.footer-links a{
  text-decoration:none;
  color:#eee;
  font-size:13px
}

.footer-links a:hover{color:var(--yellow)}

.copyright{
  margin:18px 0 0;
  color:#aaa;
  font-size:13px
}

.disclaimer,
.wp-fallback{
  margin:20px 0 0;
  color:#aaa;
  font-size:12px;
  line-height:1.55
}

.warriorplus-slot{margin-top:18px}

.audio-launcher{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:500;
  border:1px solid #000;
  border-radius:999px;
  padding:13px 17px;
  background:var(--yellow);
  color:#000;
  font-weight:950;
  box-shadow:0 14px 35px rgba(0,0,0,.22);
  cursor:pointer
}

.audio-player{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:510;
  width:min(420px,calc(100% - 30px));
  padding:19px;
  border:1px solid rgba(255,213,30,.7);
  border-radius:22px;
  background:#111;
  color:#fff;
  box-shadow:0 26px 60px rgba(0,0,0,.36);
  transform:translateY(130%);
  opacity:0;
  pointer-events:none;
  transition:.28s
}

.audio-player.open{
  transform:none;
  opacity:1;
  pointer-events:auto
}

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

.audio-head>div{
  display:grid;
  gap:2px
}

.audio-head span{
  color:#aaa;
  font-size:12px
}

.audio-close{
  width:34px;
  height:34px;
  border:1px solid rgba(255,213,30,.7);
  border-radius:50%;
  background:#000;
  color:var(--yellow);
  cursor:pointer
}

.audio-controls{
  display:grid;
  grid-template-columns:50px 1fr;
  gap:12px;
  align-items:center;
  margin-top:14px
}

.audio-play{
  width:50px;
  height:50px;
  border:0;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  font-size:19px
}

.wave{
  display:flex;
  align-items:center;
  gap:3px;
  height:34px
}

.wave i{
  display:block;
  width:4px;
  height:8px;
  border-radius:99px;
  background:var(--yellow)
}

.audio-player.playing .wave i{
  animation:wave .75s ease-in-out infinite alternate
}

.wave i:nth-child(2n){animation-delay:.12s}
.wave i:nth-child(3n){animation-delay:.25s}
.audio-progress{width:100%;accent-color:var(--red)}
.audio-time{
  display:flex;
  justify-content:space-between;
  color:#aaa;
  font-size:11px
}

.audio-status{
  margin:10px 0 0;
  color:#bbb;
  font-size:12px
}

@keyframes wave{to{height:31px}}

.legal-hero{
  padding:58px 0 34px;
  background:
    radial-gradient(circle at 85% 25%,rgba(230,41,47,.16),transparent 22%),
    var(--yellow);
  border-bottom:1px solid rgba(0,0,0,.18);
  text-align:center
}

.legal-hero h1{
  margin:8px 0 5px;
  font-size:clamp(42px,6vw,70px);
  line-height:.95;
  letter-spacing:-.055em
}

.legal-updated{
  font-size:13px;
  font-weight:850
}

.legal-page{
  max-width:900px;
  margin:42px auto 70px;
  padding:clamp(24px,5vw,48px);
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow-soft)
}

.legal-page h2{
  margin:31px 0 8px;
  font-size:25px
}

.legal-page p,
.legal-page li{color:#403d35}

.legal-page a{font-weight:850}

.legal-callout{
  padding:16px 18px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:14px;
  background:var(--yellow-soft);
  color:#000!important
}

.support-card{
  display:grid;
  gap:14px;
  text-align:center
}

.support-card .button{justify-self:center}

@media(max-width:1050px){
  .hero-grid,
  .comparison-grid,
  .pricing-grid,
  .made-for-grid{
    grid-template-columns:1fr
  }

  .hero-art{min-height:650px}
  .benefit-grid{grid-template-columns:1fr 1fr}
  .proof-card{grid-template-columns:1fr}
  .posting-proof{grid-template-columns:1fr}
  .phone-proof{min-height:460px}
  .capability-strip{grid-template-columns:repeat(3,1fr)}
  .workflow-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-links{justify-content:flex-start}
}

@media(max-width:760px){
  .nav-toggle{display:block}

  .nav-links{
    position:absolute;
    left:17px;
    right:17px;
    top:70px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:15px;
    border:1px solid rgba(255,213,30,.5);
    border-radius:16px;
    background:#000
  }

  .nav-links.open{display:flex}
  .nav-links .nav-cta{text-align:center}
  .hero{padding:58px 0 70px}
  .hero-grid{gap:34px}
  .benefit-checks{grid-template-columns:1fr}
  .hero-art{min-height:560px}
  .hero-pin{width:38%}
  .hero-pin-two{left:20%}
  .hero-phone{width:72%;right:-5%}
  .hero-route{left:32%;top:7%}
  .benefit-grid{grid-template-columns:1fr}
  .pin-gallery{grid-template-columns:1fr;max-width:430px;margin:auto}
  .sample-one,.sample-two,.sample-three{transform:none}
  .route-panel{grid-template-columns:1fr}
  .route-arrow{transform:rotate(90deg);text-align:center}
  .proof-card{padding:24px}
  .capability-strip{grid-template-columns:1fr 1fr}
  .workflow-grid{grid-template-columns:1fr}
  .made-for-list{grid-template-columns:1fr}
  .price-list{grid-template-columns:1fr}
  .section{padding:68px 0}
  .audio-launcher{right:12px;bottom:12px}
  .audio-player{right:15px;bottom:15px}
}

@media(max-width:500px){
  body{font-size:16px}
  .hero h1{font-size:50px}
  .hero-copy{font-size:18px}
  .hero-art{min-height:470px}
  .hero-pin{width:39%}
  .hero-pin-one{left:0}
  .hero-pin-two{left:16%;bottom:2%}
  .hero-phone{width:73%;right:-8%;bottom:-8%}
  .hero-route{display:none}
  .button{width:100%}
  .capability-strip{grid-template-columns:1fr}
  .posting-kit-demo{padding:17px}
  .posting-kit-demo label{grid-template-columns:1fr}
  .posting-kit-demo label button{
    grid-column:1;
    grid-row:auto;
    min-height:38px
  }
  .release-date{font-size:10px}
}


/* ClipInto v1.0.30 — six-Pin proof gallery */
@media(max-width:1120px){
  .pin-gallery{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
    padding-inline:5%
  }

  .pin-sample:nth-child(even),
  .pin-sample:nth-child(3n){
    transform:none
  }
}

@media(max-width:650px){
  .pin-gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    padding:30px 0 18px
  }

  .pin-sample{
    padding:5px;
    border-radius:14px
  }

  .pin-sample img{border-radius:10px}
}


/* ClipInto v1.0.31 — stronger artistic accents and truthful showcase proof */
.examples-section{
  isolation:isolate;
}

.examples-section::before{
  content:"";
  position:absolute;
  z-index:0;
  left:50%;
  top:115px;
  width:min(1500px,112vw);
  height:650px;
  transform:translateX(-50%) rotate(-2deg);
  background:
    url('/assets/images/clipinto-paint-splash.png')
    center / contain no-repeat;
  opacity:.28;
  pointer-events:none;
  mix-blend-mode:multiply;
  filter:saturate(1.14) contrast(1.02);
}

.examples-section>.shell{
  position:relative;
  z-index:1;
}

.pin-gallery::before{
  left:-8%;
  top:-10%;
  width:58%;
  height:92%;
  background:
    url('/assets/images/clipinto-paint-splash.png')
    10% 45% / 160% auto no-repeat;
  opacity:.24;
  transform:rotate(-9deg);
}

.pin-gallery::after{
  right:-10%;
  bottom:-12%;
  width:54%;
  height:90%;
  background:
    url('/assets/images/clipinto-paint-splash.png')
    88% 48% / 170% auto no-repeat;
  opacity:.2;
  transform:rotate(11deg);
}

.proof-section{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.proof-section::before{
  content:"";
  position:absolute;
  z-index:-1;
  right:-260px;
  top:120px;
  width:860px;
  height:560px;
  background:
    url('/assets/images/clipinto-paint-splash.png')
    center / contain no-repeat;
  opacity:.12;
  transform:rotate(18deg);
  pointer-events:none;
}

.proof-card{
  border-color:rgba(18,18,18,.1);
  box-shadow:
    0 22px 52px rgba(18,18,18,.09),
    0 2px 8px rgba(18,18,18,.04);
}

@media(max-width:700px){
  .examples-section::before{
    top:180px;
    width:160vw;
    opacity:.2;
  }

  .pin-gallery::before,
  .pin-gallery::after{
    opacity:.14;
  }
}

/* ClipInto v1.0.32 — paid build packs and WarriorPlus checkout */
.warriorplus-buy{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  margin-top:6px;
  text-align:center
}

.warriorplus-buy a{
  display:inline-flex;
  max-width:100%;
  border-radius:12px;
  outline-offset:4px
}

.warriorplus-buy img{
  display:block;
  max-width:100%;
  height:auto;
  border:0
}

.pack-stack{
  display:grid;
  gap:18px;
  align-content:center
}

.pack-card{
  align-self:stretch
}

.pack-card.byok-pack{
  background:#143d2a;
  border-color:rgba(255,255,255,.22)
}

.pack-card .button-yellow{
  color:#000
}

.warriorplus-slot{
  text-align:center
}

.warriorplus-slot .wplus_spdisclaimer{
  display:block;
  max-width:900px;
  margin:0 auto;
  text-align:center
}

@media (max-width:900px){
  .pack-stack{
    grid-template-columns:1fr 1fr
  }
}

@media (max-width:640px){
  .pack-stack{
    grid-template-columns:1fr
  }

  .warriorplus-buy img{
    width:100%
  }
}

/* ClipInto v1.0.42 — Pinterest-policy-safe sales-page showcase */
.pin-showcase-safe{position:relative;z-index:2;margin:34px auto 0;padding:10px;border:1px solid rgba(0,0,0,.12);border-radius:22px;background:rgba(255,255,255,.96);box-shadow:0 22px 52px rgba(0,0,0,.13)}
.pin-showcase-safe img{display:block;width:100%;height:auto;border-radius:14px}
@media(max-width:700px){.pin-showcase-safe{margin-top:26px;padding:6px;border-radius:15px;overflow-x:auto}.pin-showcase-safe img{min-width:980px;border-radius:10px}}

/* ClipInto v1.2.0 — explain the post-click advantage without adding dashboard clutter */
.hero-path{display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin:20px 0 2px}.hero-path span{display:inline-flex;align-items:center;justify-content:center;min-width:74px;padding:9px 11px;border:1px solid rgba(255,255,255,.24);border-radius:999px;background:rgba(255,255,255,.09);color:#fff;font-size:12px;font-weight:950;letter-spacing:.08em}.hero-path span:last-child{background:var(--green);border-color:var(--green);color:#06170f}.hero-path b{color:var(--yellow);font-size:19px}
.difference-section{background:#fff}.compact-head{max-width:930px}.difference-grid{display:grid;grid-template-columns:.88fr 1.12fr;gap:20px}.difference-card{display:flex;align-items:center;gap:12px;flex-wrap:wrap;min-height:220px;padding:28px;border:1px solid var(--line);border-radius:24px;box-shadow:var(--shadow-soft)}.difference-card .difference-label{flex-basis:100%;font-size:11px;font-weight:950;letter-spacing:.11em;text-transform:uppercase}.difference-card strong{padding:11px 13px;border-radius:11px;font-size:15px}.difference-card>b{font-size:22px}.difference-card p{flex-basis:100%;margin:12px 0 0;line-height:1.65}.difference-muted{background:#f5f6f8;color:#475569}.difference-muted strong{background:#fff;border:1px solid #d9dee7}.difference-muted .difference-label{color:#64748b}.difference-clipinto{background:#0d0d0d;color:#fff;border-color:#222}.difference-clipinto strong{background:var(--yellow);color:#000}.difference-clipinto strong:nth-of-type(2){background:#fff}.difference-clipinto strong:nth-of-type(3){background:var(--red);color:#fff}.difference-clipinto strong:nth-of-type(4){background:var(--green);color:#07150d}.difference-clipinto .difference-label{color:var(--yellow)}.difference-clipinto p{color:#d1cec6}
.live-showcase-section{background:linear-gradient(180deg,#fbfaf5,#fff)}.live-showcase-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.live-showcase-card{display:grid;grid-template-columns:130px minmax(0,1fr);gap:18px;align-items:center;padding:16px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:var(--shadow-soft)}.live-showcase-pin{display:grid;place-items:center;width:130px;aspect-ratio:2/3;border-radius:14px;overflow:hidden;background:#121212;color:var(--yellow);font-size:11px;font-weight:950;text-align:center}.live-showcase-pin img{width:100%;height:100%;object-fit:cover}.live-badge{display:inline-flex;padding:5px 7px;border-radius:999px;background:#dcfce7;color:#166534;font-size:9px;font-weight:950;letter-spacing:.08em}.live-showcase-card h3{margin:8px 0 5px;font-size:19px;line-height:1.05}.live-showcase-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.45}.text-cta{display:inline-block;margin-top:10px;color:#3546a7;font-size:13px;font-weight:950}
.strength-section{background:#f6f8fb}.strength-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.strength-grid article{min-height:245px;padding:22px;border:1px solid #dce3ec;border-radius:20px;background:#fff;box-shadow:0 12px 28px rgba(14,24,40,.05)}.strength-grid b{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:10px;background:#111;color:var(--yellow);font-size:11px}.strength-grid h3{margin:17px 0 8px;font-size:20px;line-height:1.05}.strength-grid p{margin:0;color:var(--muted);font-size:13px;line-height:1.58}
/* Four-step post-click route after the v1.2.0 attribution addition. */
.route-panel{grid-template-columns:1fr auto 1fr auto 1fr auto 1fr}.route-step:nth-child(7){background:#fff;color:#000}
@media(max-width:1180px){.strength-grid{grid-template-columns:repeat(3,1fr)}.live-showcase-grid{grid-template-columns:1fr 1fr}}
@media(max-width:900px){.difference-grid{grid-template-columns:1fr}.live-showcase-grid{grid-template-columns:1fr}.strength-grid{grid-template-columns:1fr 1fr}}
@media(max-width:760px){.route-panel{grid-template-columns:1fr}.strength-grid{grid-template-columns:1fr}.live-showcase-card{grid-template-columns:92px minmax(0,1fr)}.live-showcase-pin{width:92px}.difference-card{align-items:flex-start}.difference-card>b{transform:rotate(90deg)}}
@media(max-width:500px){.hero-path{gap:6px}.hero-path span{min-width:0;flex:1;padding-inline:7px;font-size:10px}.hero-path b{font-size:14px}.live-showcase-card{grid-template-columns:78px minmax(0,1fr);padding:12px;gap:12px}.live-showcase-pin{width:78px}}
