/* ============================================================
   Shopiotic redesign — scoped entirely under body.redesign so
   it only affects pages using the new design (homepage first).
   ============================================================ */

@font-face{
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}
@font-face{
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
}
@font-face{
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
}
@font-face{
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
}
@font-face{
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/inter-800.woff2") format("woff2");
}
@font-face{
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/inter-900.woff2") format("woff2");
}

/* ---- Tokens: redefining the site's existing custom properties
   means every shared component (buttons, header chrome, etc.)
   that reads var(--purple) / var(--text) / etc. automatically
   falls in line with the new palette, with zero purple left. ---- */
body.redesign{
  --bg0: #ffffff;
  --bg1: #ffffff;
  --text: #0a0a0a;
  --muted: rgba(10,10,10,.72);
  --muted2: rgba(10,10,10,.56);
  --line: rgba(10,10,10,.12);
  --purple: #0a0a0a;
  --purple2: #0a0a0a;
  --green: #0a0a0a;

  --rd-black: #0a0a0a;
  --rd-white: #ffffff;
  --rd-gray-100: #f4f4f4;
  --rd-gray-300: #d9d9d9;
  --rd-gray-500: #8f8f8f;
  --rd-gray-700: #3d3d3d;

  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Arial, sans-serif;
  background: var(--rd-white);
}

/* Kill the fixed purple radial-gradient page background */
body.redesign::before,
body.redesign::after{
  content: none;
  display: none;
}

body.redesign h1, body.redesign h2, body.redesign h3{
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Arial, sans-serif;
  letter-spacing: -0.02em;
}

/* ---- Header: flush full-width bar instead of the floating pill —
   the pill's gap assumed a dark page background behind it, which the
   redesign's white sections no longer provide. ---- */
body.redesign .siteHeader{
  position: sticky;
  top: 0;
  padding: 0;
}
body.redesign .siteHeader__inner{
  max-width: none;
  height: 76px;
  padding: 12px 32px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: var(--rd-black);
  box-shadow: none;
}
body.redesign .siteHeader.is-scrolled .siteHeader__inner{
  height: 76px;
  background: var(--rd-black);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
body.redesign .nav__link{
  color: rgba(255,255,255,.94);
  transition: color .16s ease, text-shadow .16s ease;
}
body.redesign .nav__link:hover{
  background: transparent;
  color: #fff;
  transform: none;
  text-shadow: 0 0 6px rgba(255,255,255,.4);
}
body.redesign .brand__logo{
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}
body.redesign .brand__logo--mobile{
  display: none;
}
@media (max-width: 640px){
  body.redesign .brand__logo--desktop{
    display: none;
  }
  body.redesign .brand__logo--mobile{
    display: block;
    /* The mobile SVG's viewBox is cropped tight to the glyph (no
       internal padding), so the same 42px height as the desktop
       mark — whose viewBox still includes ~21% vertical padding —
       would render visibly larger. Scale down to match. */
    height: 33px;
  }
}
body.redesign .siteHeader .btn--ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
body.redesign .siteHeader .btn--primary{
  background: var(--rd-white);
  color: var(--rd-black);
  box-shadow: none;
}
body.redesign .siteHeader .btn--primary::before{
  display: none;
}
body.redesign .siteHeader .btn{
  padding: 10px 18px;
  font-size: 13.5px;
}
body.redesign .siteHeader .btn__arrow{
  font-size: 13px;
}
body.redesign .burger span{
  background: #fff;
}

/* ---- Mobile nav sheet ---- */
body.redesign .mobileNav__panel{
  background: var(--rd-black);
  color: var(--rd-white);
}
body.redesign .mobileNav__link{
  color: rgba(255,255,255,.82);
}
body.redesign .mobileNav__close{
  color: #fff;
}

/* ---- Buttons: two treatments — default (for dark sections) and
   --onLight (for the couple of CTAs that sit on white sections). ---- */
body.redesign .btn{
  border-radius: 999px;
  font-weight: 700;
}
body.redesign .btn--primary{
  background: var(--rd-white);
  color: var(--rd-black);
  box-shadow: none;
  min-width: 0;
}
body.redesign .btn--primary::before{
  display: none;
}
body.redesign .btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  filter: none;
}
body.redesign .btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--rd-white);
  box-shadow: none;
}
body.redesign .btn--ghost:hover{
  background: rgba(255,255,255,.08);
  box-shadow: none;
}
body.redesign .btn--onLight.btn--primary{
  background: var(--rd-black);
  color: var(--rd-white);
}
body.redesign .btn--onLight.btn--primary:hover{
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
body.redesign .btn--onLight.btn--ghost{
  border-color: rgba(10,10,10,.35);
  color: var(--rd-black);
}
body.redesign .btn--onLight.btn--ghost:hover{
  background: rgba(10,10,10,.06);
}

/* ============================================================
   New homepage sections
   ============================================================ */

body.redesign .rd{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

body.redesign .rd-section{
  padding: clamp(64px, 10vw, 128px) 0;
}
body.redesign .rd-section--dark{
  background: var(--rd-black);
  color: var(--rd-white);
}
body.redesign .rd-section--light{
  background: var(--rd-white);
  color: var(--rd-black);
}

body.redesign .rd-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
}
body.redesign .rd-kicker::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
@media (max-width: 640px){
  body.redesign .rd-hero .rd-kicker::before{
    display: none;
  }
}

/* ---- Hero: two-column, sized to fit above the fold ---- */
body.redesign .rd-hero{
  background: var(--rd-black);
  color: var(--rd-white);
  padding: clamp(96px, 10vw, 128px) 0 clamp(48px, 6vw, 72px);
}
body.redesign .rd-hero:not(.rd-hero--compact){
  background:
    radial-gradient(60% 55% at 82% 40%, rgba(255,255,255,.07), transparent 70%),
    var(--rd-black);
}
body.redesign .rd-hero--compact{
  padding: clamp(140px, 16vw, 180px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
}
body.redesign .rd-hero--compact + .rd-section{
  padding-top: clamp(24px, 3vw, 40px);
}
body.redesign .rd-hero--compact .rd-kicker{
  justify-content: center;
}
body.redesign .rd-hero--compact .rd-hero__h1{
  max-width: none;
  margin: 0 auto 16px;
}
body.redesign .rd-hero--compact .rd-hero__sub{
  max-width: 56ch;
  margin: 0 auto;
}
body.redesign .rd-hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
body.redesign .rd-hero__h1{
  font-size: clamp(2.1rem, 3vw + 1rem, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 20px;
}
body.redesign .rd-hero__sub{
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.15rem);
  color: rgba(255,255,255,.68);
  max-width: 44ch;
  margin: 0 0 28px;
}
body.redesign .rd-hero__left .btn{
  padding: 16px 26px;
  font-size: 15px;
}
body.redesign .rd-hero__trust{
  font-size: 13px;
  color: rgba(255,255,255,.5);
  max-width: 42ch;
  margin: 16px 0 0;
}
body.redesign .rd-hero__trust strong{
  color: rgba(255,255,255,.85);
}
body.redesign .rd-hero__partner{
  margin-top: 20px;
}
body.redesign .rd-hero__partner img{
  height: 20px;
  width: auto;
  max-width: 100%;
  display: block;
  opacity: .8;
}
body.redesign .rd-hero__partner--divided{
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}

body.redesign .rd-hero__statcard{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px);
}
body.redesign .rd-hero__guarantee{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 10px;
}
body.redesign .rd-hero__guarantee-check{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 12px;
  flex: 0 0 auto;
}
body.redesign .rd-hero__micro{
  color: rgba(255,255,255,.55);
  font-size: 13px;
  margin: 0 0 24px;
}
body.redesign .rd-hero__statcard .rd-proof__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
}
body.redesign .rd-proof__stat{
  text-align: center;
}
body.redesign .rd-proof__num{
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}
body.redesign .rd-proof__label{
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
body.redesign .rd-proof__footnote{
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
  margin: 16px 0 0;
}

body.redesign .rd-hero__review{
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
body.redesign .rd-hero__reviewStars{
  color: #fff;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}
body.redesign .rd-hero__reviewQuote{
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin: 0 0 8px;
}
body.redesign .rd-hero__reviewByline{
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

body.redesign .rd-about__partnerBadge{
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  gap: 10px;
}
body.redesign .rd-about__partnerBadge img{
  height: 20px;
  width: auto;
}
body.redesign .rd-about__partnerBadge span{
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 900px){
  body.redesign .rd-hero__grid{
    grid-template-columns: 1fr;
  }
}

/* ---- Client trust bar ---- */
body.redesign .rd-trustbar{
  background: var(--rd-black);
  padding: 0 0 clamp(48px, 6vw, 72px);
}
body.redesign .rd-trustbar__label{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 24px;
}
body.redesign .rd-trustbar__labelLine{
  flex: 1 1 0;
  min-width: 20px;
  max-width: 120px;
  height: 1px;
  background: rgba(255,255,255,.16);
}
body.redesign .rd-trustbar__labelText{
  flex: 0 1 auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}
@media (max-width: 640px){
  body.redesign .rd-trustbar__label{
    gap: 12px;
  }
  body.redesign .rd-trustbar__labelLine{
    max-width: 24px;
  }
  body.redesign .rd-trustbar__labelText{
    white-space: normal;
    text-align: center;
    font-size: 11px;
  }
}
body.redesign .rd-trustbar__viewport{
  overflow: hidden;
  position: relative;
}
body.redesign .rd-trustbar__viewport::before,
body.redesign .rd-trustbar__viewport::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}
body.redesign .rd-trustbar__viewport::before{
  left: 0;
  background: linear-gradient(90deg, var(--rd-black), transparent);
}
body.redesign .rd-trustbar__viewport::after{
  right: 0;
  background: linear-gradient(270deg, var(--rd-black), transparent);
}
body.redesign .rd-trustbar__track{
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: rdTrustbarMarquee 32s linear infinite;
}
body.redesign .rd-trustbar__viewport:hover .rd-trustbar__track{
  animation-play-state: paused;
}
body.redesign .rd-trustbar__track img{
  height: 52px;
  width: auto;
  opacity: 0.6;
  transition: opacity .18s ease;
}
body.redesign .rd-trustbar__track img:hover{
  opacity: 1;
}
@media (max-width: 640px){
  body.redesign .rd-trustbar__track{
    gap: 40px;
    animation-duration: 24s;
  }
  body.redesign .rd-trustbar__track img{
    height: 40px;
  }
  body.redesign .rd-trustbar__viewport::before,
  body.redesign .rd-trustbar__viewport::after{
    width: 36px;
  }
}
/* ---- 404 page ---- */
body.redesign .rd-notfound__hero{
  position: relative;
  overflow: hidden;
  min-height: min(680px, 72vh);
  display: flex;
  align-items: center;
  padding: clamp(132px, 14vw, 190px) 0 clamp(76px, 8vw, 112px);
  color: var(--rd-white);
  background:
    radial-gradient(circle at 79% 48%, rgba(255,255,255,.1), transparent 30%),
    var(--rd-black);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
body.redesign .rd-notfound__inner{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}
body.redesign .rd-notfound__copy{
  position: relative;
  z-index: 2;
  max-width: 720px;
}
body.redesign .rd-notfound__copy h1{
  margin: 14px 0 24px;
  max-width: 680px;
  color: var(--rd-white);
  font-size: clamp(3.15rem, 6.3vw, 6.7rem);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.06em;
}
body.redesign .rd-notfound__copy p{
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}
body.redesign .rd-notfound__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
body.redesign .rd-notfound__code{
  justify-self: end;
  color: transparent;
  font-size: clamp(10rem, 23vw, 24rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.09em;
  -webkit-text-stroke: 1px rgba(255,255,255,.21);
  text-shadow: 0 0 80px rgba(255,255,255,.07);
  user-select: none;
}
body.redesign .rd-notfound__routesHead{
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
body.redesign .rd-notfound__routesHead h2{
  margin: 12px 0 0;
  color: var(--rd-black);
  font-size: clamp(2.15rem, 4.2vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.05em;
}
body.redesign .rd-notfound__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rd-gray-300);
}
body.redesign .rd-notfound__card{
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  color: var(--rd-black);
  text-decoration: none;
  border-right: 1px solid var(--rd-gray-300);
  border-bottom: 1px solid var(--rd-gray-300);
  transition: background-color .22s ease, box-shadow .22s ease;
}
body.redesign .rd-notfound__card:first-child{
  border-left: 1px solid var(--rd-gray-300);
}
body.redesign .rd-notfound__card:hover{
  background: var(--rd-gray-100);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
body.redesign .rd-notfound__cardLabel{
  margin-bottom: auto;
  color: var(--rd-gray-500);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
body.redesign .rd-notfound__card strong{
  display: block;
  margin: 52px 0 14px;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
body.redesign .rd-notfound__card > span:not(.rd-notfound__cardLabel):not(.rd-notfound__cardArrow){
  color: var(--rd-gray-700);
  line-height: 1.55;
}
body.redesign .rd-notfound__cardArrow{
  margin-top: 28px;
  font-size: 1.35rem;
}
body.redesign .rd-notfound__card--dark,
body.redesign .rd-notfound__card--dark:hover{
  color: var(--rd-white);
  background: var(--rd-black);
}
body.redesign .rd-notfound__card--dark .rd-notfound__cardLabel,
body.redesign .rd-notfound__card--dark > span:not(.rd-notfound__cardLabel):not(.rd-notfound__cardArrow){
  color: rgba(255,255,255,.58);
}
body.redesign .rd-notfound__card--dark:hover{
  box-shadow: inset 0 0 34px rgba(255,255,255,.08);
}

@media (max-width: 900px){
  body.redesign .rd-notfound__hero{
    min-height: auto;
    padding-top: 128px;
  }
  body.redesign .rd-notfound__inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  body.redesign .rd-notfound__code{
    position: absolute;
    z-index: 0;
    right: -18px;
    bottom: -34px;
    opacity: .55;
  }
  body.redesign .rd-notfound__grid{
    grid-template-columns: 1fr;
  }
  body.redesign .rd-notfound__card,
  body.redesign .rd-notfound__card:first-child{
    min-height: 250px;
    border-left: 1px solid var(--rd-gray-300);
  }
}

@media (max-width: 560px){
  body.redesign .rd-notfound__copy h1{
    max-width: 9ch;
  }
  body.redesign .rd-notfound__actions{
    align-items: stretch;
    flex-direction: column;
  }
  body.redesign .rd-notfound__actions .btn{
    width: 100%;
  }
  body.redesign .rd-notfound__code{
    right: -10px;
    bottom: -8px;
    font-size: 11rem;
  }
}

@media (prefers-reduced-motion: reduce){
  body.redesign .rd-trustbar__track{ animation: none; }
}
@keyframes rdTrustbarMarquee{
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-distance, -50%)); }
}

/* ---- Why Shopiotic ---- */
body.redesign .rd-why__head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
body.redesign .rd-why__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
body.redesign .rd-why__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rd-gray-300);
  border: 1px solid var(--rd-gray-300);
}
body.redesign .rd-why__item{
  background: var(--rd-white);
  padding: 32px;
}
body.redesign .rd-why__item h3{
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}
body.redesign .rd-why__item p{
  font-size: 0.95rem;
  color: var(--rd-gray-700);
  line-height: 1.55;
  margin: 0;
}

/* ---- How We Work (process) ---- */
body.redesign .rd-process__head{
  max-width: 680px;
  margin: 0 0 56px;
}
body.redesign .rd-process__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 0;
}
body.redesign .rd-process__list{
  display: flex;
  flex-direction: column;
}
body.redesign .rd-process__item{
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
body.redesign .rd-process__item:last-child{
  border-bottom: 1px solid rgba(255,255,255,.14);
}
body.redesign .rd-process__num{
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.25);
  font-variant-numeric: tabular-nums;
}
body.redesign .rd-process__item h3{
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
}
body.redesign .rd-process__item p{
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}

/* ---- Case study proof ---- */
body.redesign .rd-proofcase__head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
body.redesign .rd-proofcase__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
body.redesign .rd-proofcase__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
body.redesign .rd-proofcase__card{
  border: 1px solid var(--rd-gray-300);
  border-radius: 16px;
  padding: 32px;
}
body.redesign .rd-proofcase__tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rd-gray-500);
  margin-bottom: 12px;
}
body.redesign .rd-proofcase__figure{
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
body.redesign .rd-proofcase__desc{
  color: var(--rd-gray-700);
  font-size: 0.95rem;
  margin: 0;
}
body.redesign .rd-proofcase__cta{
  text-align: center;
}

/* ---- Reviews ---- */
body.redesign .rd-reviews__head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
body.redesign .rd-reviews__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
body.redesign .rd-reviews__embed{
  min-height: 200px;
}

/* ---- Free strategy call ---- */
body.redesign .rd-strategy__head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
body.redesign .rd-strategy__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
body.redesign .rd-strategy__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
body.redesign .rd-strategy__left{
  position: sticky;
  top: 100px;
}
body.redesign .rd-strategy__left h3,
body.redesign .rd-strategy__right h3{
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 20px;
}
body.redesign .rd-strategy__bullets{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.redesign .rd-strategy__bullets li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
}
body.redesign .rd-strategy__bulletIcon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rd-black);
  color: var(--rd-white);
  font-size: 12px;
  flex: 0 0 auto;
  margin-top: 2px;
}
body.redesign .rd-strategy__guarantee{
  border: 1px solid var(--rd-gray-300);
  border-radius: 14px;
  padding: 20px 24px;
}
body.redesign .rd-strategy__guaranteeTitle{
  font-weight: 700;
  margin-bottom: 6px;
}
body.redesign .rd-strategy__guarantee p{
  color: var(--rd-gray-700);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
body.redesign .rd-strategy__sub{
  color: var(--rd-gray-700);
  margin: 0 0 24px;
}
body.redesign .rd-strategy__micro{
  font-size: 13px;
  color: var(--rd-gray-500);
  margin: 12px 0 32px;
}
body.redesign .rd-strategy__proof{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.redesign .rd-strategy__proofCard{
  border: 1px solid var(--rd-gray-300);
  border-radius: 14px;
  padding: 20px;
}
body.redesign .rd-strategy__proofTop{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rd-gray-500);
  margin-bottom: 10px;
}
body.redesign .rd-strategy__stars{
  color: var(--rd-black);
  letter-spacing: 1px;
}
body.redesign .rd-strategy__proofCard p{
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}
body.redesign .rd-strategy__byline{
  font-size: 13px;
  color: var(--rd-gray-500);
}

/* ---- Guarantee ---- */
body.redesign .rd-guarantee{
  text-align: center;
}
body.redesign .rd-guarantee__head{
  max-width: 60ch;
  margin: 0 auto;
}
body.redesign .rd-guarantee h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}
body.redesign .rd-guarantee p{
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0;
}

/* ---- Case studies page ---- */
body.redesign .rd-case-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
body.redesign .rd-case{
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid var(--rd-gray-300);
  background: var(--rd-white);
  overflow: hidden;
}
body.redesign .rd-case__visual{
  background: var(--rd-gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  border-bottom: 1px solid var(--rd-gray-300);
}
body.redesign .rd-case__visualNum{
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--rd-black);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
body.redesign .rd-case__visualLabel{
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--rd-gray-500);
  max-width: 20ch;
}
body.redesign .rd-case__content{
  padding: clamp(28px, 4vw, 44px);
}
body.redesign .rd-case__meta{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rd-black);
}
body.redesign .rd-case__metaDim{
  color: var(--rd-gray-500);
  font-weight: 600;
}
body.redesign .rd-case__headline{
  margin: 12px 0 16px;
  font-size: clamp(1.5rem, 2.2vw + 0.4rem, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--rd-black);
}
body.redesign .rd-case__body{
  color: var(--rd-gray-700);
  line-height: 1.6;
}
body.redesign .rd-case__body p{
  margin: 0 0 12px;
}
body.redesign .rd-case__body strong{
  color: var(--rd-black);
  font-weight: 700;
}
body.redesign .rd-case__stats{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
body.redesign .rd-case__stat{
  border: 1px solid var(--rd-gray-300);
  border-radius: 12px;
  padding: 12px;
}
body.redesign .rd-case__statNum{
  font-size: 17px;
  font-weight: 800;
  color: var(--rd-black);
}
body.redesign .rd-case__statLab{
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--rd-gray-500);
}

/* ---- FAQ page (full accordion — .faqItem/.faqItem__btn/.is-open are
   used by js/main.js's toggle handler, so restyled in place) ---- */
body.redesign .rd-faqpage__head{
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}
body.redesign .rd-faqpage__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
body.redesign .faq__list{
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.14);
}
body.redesign .faqItem{
  border-top: 1px solid rgba(255,255,255,.14);
}
body.redesign .faqItem:first-child{
  border-top: 0;
}
body.redesign .faqItem__q{
  color: var(--rd-white);
  font-weight: 700;
}
body.redesign .faqItem__icon{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  box-shadow: none;
}
body.redesign .faqPlus::before,
body.redesign .faqPlus::after{
  background: var(--rd-white);
}
body.redesign .faqItem.is-open .faqItem__icon{
  border-color: rgba(255,255,255,.4);
}
body.redesign .faqItem__btn:hover .faqItem__icon{
  border-color: rgba(255,255,255,.4);
}
body.redesign .faqItem__btn:focus-visible{
  outline: 2px solid var(--rd-white);
}
body.redesign .faqItem__a{
  color: rgba(255,255,255,.65);
  font-weight: 400;
}
body.redesign .faqItem__a strong{
  color: var(--rd-white);
  font-weight: 700;
}

/* ---- Free strategy page: contrast comparison ---- */
body.redesign .rd-contrast__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
body.redesign .rd-contrast__col{
  border: 1px solid var(--rd-gray-300);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--rd-gray-100);
}
body.redesign .rd-contrast__col .rd-kicker{
  opacity: 0.5;
}
body.redesign .rd-contrast__col h2{
  font-size: clamp(1.4rem, 1.8vw + 0.5rem, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--rd-gray-700);
}
body.redesign .rd-contrast__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--rd-gray-500);
}
body.redesign .rd-contrast__list li{
  display: flex;
  gap: 10px;
}
body.redesign .rd-contrast__list li::before{
  content: "✕";
  flex: 0 0 auto;
  font-weight: 700;
}
body.redesign .rd-contrast__col--strong{
  background: var(--rd-black);
  border-color: var(--rd-black);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
body.redesign .rd-contrast__col--strong .rd-kicker{
  opacity: 0.7;
  color: var(--rd-white);
}
body.redesign .rd-contrast__col--strong h2{
  color: var(--rd-white);
}
body.redesign .rd-contrast__list--strong{
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
body.redesign .rd-contrast__list--strong li::before{
  content: "✓";
  color: var(--rd-white);
}

/* ---- Free strategy page: what's included ---- */
body.redesign .rd-included__head{
  max-width: 680px;
  margin: 0 0 40px;
}
body.redesign .rd-included__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 12px;
}
body.redesign .rd-included__head p{
  color: rgba(255,255,255,.65);
  margin: 0;
}
body.redesign .rd-included__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}
body.redesign .rd-included__item{
  background: var(--rd-black);
  padding: 28px;
}
body.redesign .rd-included__item h3{
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}
body.redesign .rd-included__item p{
  color: rgba(255,255,255,.65);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ---- Free strategy page: claim section ---- */
body.redesign .rd-claim__wrap{
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
body.redesign .rd-claim__wrap .rd-kicker{
  justify-content: center;
}
body.redesign .rd-claim__wrap h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}
body.redesign .rd-claim__p{
  color: var(--rd-gray-700);
  line-height: 1.6;
  margin: 0 0 32px;
}
body.redesign .rd-claim__action{
  border: 1px solid var(--rd-gray-300);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
}
body.redesign .rd-claim__actionKicker{
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rd-gray-500);
  margin-bottom: 12px;
}
body.redesign .rd-claim__emailRow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
body.redesign .rd-claim__email{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rd-black);
  text-decoration: underline;
}
body.redesign .rd-claim__copy{
  border: 1px solid var(--rd-gray-300);
  border-radius: 999px;
  background: var(--rd-white);
  color: var(--rd-black);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  cursor: pointer;
}
body.redesign .rd-claim__copy:hover{
  background: var(--rd-gray-100);
}
body.redesign .rd-claim__notice{
  font-size: 0.9rem;
  color: var(--rd-gray-500);
  margin-bottom: 32px;
}
body.redesign .rd-claim__notice strong{
  color: var(--rd-black);
}
body.redesign .rd-claim__catch{
  border-top: 1px solid var(--rd-gray-300);
  padding-top: 28px;
}
body.redesign .rd-claim__catchTitle{
  font-weight: 700;
  margin-bottom: 8px;
}
body.redesign .rd-claim__catch p{
  color: var(--rd-gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- Blog: index page ---- */
body.redesign .rd-bloghero{
  background: var(--rd-black);
  color: var(--rd-white);
  padding: clamp(112px, 10vw, 140px) 0 clamp(44px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
body.redesign .rd-bloghero__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}
body.redesign .rd-bloghero h1{
  font-size: clamp(2.35rem, 4vw + .5rem, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0;
}
body.redesign .rd-bloghero__main{
  min-width: 0;
}
body.redesign .rd-blogsearch{
  position: relative;
  width: min(100%, 560px);
  margin-top: 28px;
  z-index: 3;
}
body.redesign .rd-blogsearch__field{
  display: flex;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  transition: border-color .16s ease, background .16s ease;
}
body.redesign .rd-blogsearch__field:focus-within{
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
}
body.redesign .rd-blogsearch input{
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--rd-white);
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
}
body.redesign .rd-blogsearch input::placeholder{
  color: rgba(255,255,255,.48);
}
body.redesign .rd-blogsearch input::-webkit-search-cancel-button,
body.redesign .rd-blogsearch input::-webkit-search-decoration{
  -webkit-appearance: none;
  appearance: none;
}
body.redesign .rd-blogsearch button{
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: var(--rd-white);
  color: var(--rd-black);
  padding: 10px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
body.redesign .rd-blogsearch button:focus-visible{
  outline: 2px solid var(--rd-white);
  outline-offset: 3px;
}
body.redesign .rd-blogsearch__results{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  max-height: min(420px, 60vh);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--rd-gray-300);
  border-radius: 14px;
  background: var(--rd-white);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
body.redesign .rd-blogsearch__result{
  display: block;
  padding: 13px 14px;
  border-radius: 9px;
  color: var(--rd-black);
  text-decoration: none;
}
body.redesign .rd-blogsearch__result:hover,
body.redesign .rd-blogsearch__result:focus-visible{
  background: var(--rd-gray-100);
  outline: 0;
}
body.redesign .rd-blogsearch__resultTitle{
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
body.redesign .rd-blogsearch__resultMeta{
  display: block;
  color: var(--rd-gray-500);
  font-size: 11px;
  margin-top: 4px;
}
body.redesign .rd-blogsearch__empty{
  color: var(--rd-gray-500);
  font-size: 13px;
  padding: 16px 14px;
}
body.redesign .rd-bloghero p{
  max-width: 42ch;
  color: rgba(255,255,255,.62);
  font-size: clamp(1rem, .35vw + .95rem, 1.15rem);
  line-height: 1.6;
  margin: 0 0 4px;
}
body.redesign .rd-bloghero__partner{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}
body.redesign .rd-bloghero__partner img{
  height: 20px;
  width: auto;
  max-width: 100%;
  opacity: .82;
}
body.redesign .rd-bloghero__partner span{
  color: rgba(255,255,255,.56);
  font-size: 13px;
}
body.redesign .rd-blogindex__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
body.redesign .rd-blogindex__head h2{
  font-size: clamp(1.65rem, 2vw + .5rem, 2.25rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 0;
}
body.redesign .rd-blogindex__list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 0;
}
body.redesign .rd-blogindex__card{
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px 0 30px;
  border-top: 1px solid var(--rd-gray-300);
  border-bottom: 1px solid var(--rd-gray-300);
  text-decoration: none;
  color: inherit;
}
body.redesign .rd-blogindex__cardImage{
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  margin: 0 0 24px;
  border-radius: 12px;
  background: var(--rd-black);
}
body.redesign .rd-blogindex__cardImage img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.75,.25,1), opacity .3s ease;
}
body.redesign .rd-blogindex__card:hover .rd-blogindex__cardImage img{
  transform: scale(1.025);
  opacity: .9;
}
body.redesign .rd-blogindex__cardTag{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rd-gray-500);
  margin-bottom: 10px;
}
body.redesign .rd-blogindex__cardTitle{
  font-size: clamp(1.15rem, 1.2vw + 0.6rem, 1.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px;
  transition: opacity .15s ease;
}
body.redesign .rd-blogindex__card:hover .rd-blogindex__cardTitle{
  opacity: 0.6;
}
body.redesign .rd-blogindex__cardExcerpt{
  color: var(--rd-gray-700);
  line-height: 1.6;
  margin: 0 0 24px;
}
body.redesign .rd-blogindex__cardMeta{
  font-size: 13px;
  color: var(--rd-gray-500);
  margin-top: auto;
}
body.redesign .rd-blogindex__pager{
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
body.redesign .rd-blogindex__pager[hidden]{
  display: none;
}
body.redesign .rd-blogindex__pager a,
body.redesign .rd-blogindex__pager span{
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--rd-gray-300);
  border-radius: 50%;
  color: var(--rd-black);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
body.redesign .rd-blogindex__pager a:hover{
  border-color: var(--rd-black);
}
body.redesign .rd-blogindex__pager a:focus-visible{
  outline: 2px solid var(--rd-black);
  outline-offset: 3px;
}
body.redesign .rd-blogindex__pager span[aria-current="page"]{
  border-color: var(--rd-black);
  background: var(--rd-black);
  color: var(--rd-white);
}
body.redesign .rd-blogindex__empty{
  text-align: center;
  color: var(--rd-gray-500);
  padding: 40px 0;
}
body.redesign .rd-blogindex__list > .rd-blogindex__empty{
  grid-column: 1 / -1;
}

/* ---- Blog: article page ---- */
body.redesign .rd-readingProgress{
  position: fixed;
  top: 73px;
  right: 0;
  left: 0;
  z-index: 1100;
  height: 3px;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
body.redesign .rd-readingProgress span{
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rd-white);
  box-shadow: 0 0 8px rgba(255,255,255,.34);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
body.redesign .rd-posthero{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 42%, rgba(255,255,255,.09), transparent 34%),
    var(--rd-black);
  color: var(--rd-white);
  padding: clamp(118px, 11vw, 150px) 0 clamp(52px, 6vw, 76px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
body.redesign .rd-posthero > .rd{
  position: relative;
  z-index: 2;
}
body.redesign .rd-posthero--hasCover{
  display: flex;
  align-items: center;
  background: var(--rd-black);
}
body.redesign .rd-posthero--hasCover > .rd{
  width: 100%;
}
body.redesign .rd-posthero__crumbs{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  margin-bottom: 28px;
}
body.redesign .rd-posthero__crumbs a{
  color: inherit;
  text-decoration: none;
}
body.redesign .rd-posthero__crumbs a:hover{
  color: var(--rd-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.redesign .rd-posthero__current{
  color: rgba(255,255,255,.88);
  overflow-wrap: anywhere;
}
body.redesign .rd-posthero h1{
  max-width: 1040px;
  font-size: clamp(2.35rem, 4.2vw + .4rem, 4.75rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: 0 0 28px;
}
body.redesign .rd-posthero__cover{
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(64vw, 1120px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .72;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.18) 18%, #000 58%), linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.18) 18%, #000 58%), linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
}
body.redesign .rd-posthero--hasCover::after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--rd-black) 0%, var(--rd-black) 28%, rgba(5,5,5,.94) 42%, rgba(5,5,5,.46) 70%, rgba(5,5,5,.18) 100%);
  pointer-events: none;
}
body.redesign .rd-posthero__meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
}
body.redesign .rd-posthero__meta span{
  display: inline-flex;
  align-items: center;
}
body.redesign .rd-posthero__avatar{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  flex: 0 0 auto;
}
body.redesign .rd-posthero__meta span + span::before{
  content: "";
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.22);
  margin: 0 14px;
}
body.redesign .rd-posthero__meta a{
  color: var(--rd-white);
  font-weight: 700;
  text-underline-offset: 3px;
}
body.redesign .rd-postlayout{
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 320px);
  justify-content: space-between;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
body.redesign .rd-post__body{
  min-width: 0;
  color: var(--rd-gray-700);
  font-size: 1.05rem;
  line-height: 1.75;
}
body.redesign .rd-post{
  padding-bottom: clamp(36px, 4vw, 52px);
}
body.redesign .rd-author{
  position: sticky;
  top: 112px;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-top: 1px solid var(--rd-gray-300);
  border-bottom: 1px solid var(--rd-gray-300);
  padding: 24px 0 26px;
}
body.redesign .rd-author::-webkit-scrollbar{
  display: none;
}
body.redesign .rd-author__identity{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
body.redesign .rd-author__identity img{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
}
body.redesign .rd-author__name{
  color: var(--rd-black);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}
body.redesign .rd-author__title{
  color: var(--rd-gray-500);
  font-size: 13px;
  margin-top: 4px;
}
body.redesign .rd-author p{
  color: var(--rd-gray-700);
  font-size: .94rem;
  line-height: 1.65;
  margin: 0 0 18px;
}
body.redesign .rd-author > a{
  color: var(--rd-black);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
body.redesign .rd-author > a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.redesign .rd-author__share{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--rd-gray-300);
}
body.redesign .rd-author__share > span{
  color: var(--rd-gray-700);
  font-size: 14px;
}
body.redesign .rd-shareLinks{
  display: flex;
  gap: 7px;
}
body.redesign .rd-shareLinks a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--rd-gray-100);
  color: var(--rd-black);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
body.redesign .rd-shareLinks a:hover{
  background: var(--rd-black);
  color: var(--rd-white);
}
body.redesign .rd-shareLinks svg{
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.redesign .rd-author__toc{
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--rd-gray-300);
}
body.redesign .rd-author__toc h2{
  color: var(--rd-black);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
body.redesign .rd-author__toc ol{
  list-style: none;
  margin: 0;
  padding: 0;
}
body.redesign .rd-author__toc li + li{
  margin-top: 10px;
}
body.redesign .rd-author__toc a{
  display: block;
  color: var(--rd-gray-700);
  font-size: .9rem;
  line-height: 1.4;
  text-decoration: none;
}
body.redesign .rd-author__toc a:hover{
  color: var(--rd-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.redesign .rd-author__offer{
  position: relative;
  margin-top: 52px;
  padding: 24px;
  border-radius: 14px;
  background: var(--rd-black);
  color: var(--rd-white);
}
body.redesign .rd-author__offer::before{
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rd-gray-300);
}
body.redesign .rd-author__offerKicker{
  color: rgba(255,255,255,.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
body.redesign .rd-author__offer h2{
  color: var(--rd-white);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
}
body.redesign .rd-author__offer p{
  color: rgba(255,255,255,.66);
  font-size: .87rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
body.redesign .rd-author__offer a{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--rd-black);
  background: var(--rd-white);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
body.redesign .rd-author__offer a:hover{
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
}
body.redesign .rd-author__similar{
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--rd-gray-300);
}
body.redesign .rd-author__similar h2{
  color: var(--rd-black);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
body.redesign .rd-author__similar ol{
  list-style: none;
  margin: 0;
  padding: 0;
}
body.redesign .rd-author__similar li + li{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rd-gray-300);
}
body.redesign .rd-author__similar a{
  display: block;
  color: var(--rd-black);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}
body.redesign .rd-author__similar a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.redesign .rd-author__similar span{
  display: block;
  color: var(--rd-gray-500);
  font-size: 12px;
  margin-top: 5px;
}
body.redesign .rd-post__body h2{
  scroll-margin-top: 112px;
}
body.redesign .rd-postend{
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--rd-gray-300);
}
body.redesign .rd-postend__share{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
body.redesign .rd-postend__share > span{
  color: var(--rd-gray-700);
  font-size: 14px;
}
body.redesign .rd-postend__author{
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--rd-gray-300);
  border-bottom: 1px solid var(--rd-gray-300);
}
body.redesign .rd-postend__authorIdentity{
  display: contents;
}
body.redesign .rd-postend__authorIdentity img{
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 14px;
}
body.redesign .rd-postend__authorIdentity > div{
  grid-column: 2;
  grid-row: 1;
}
body.redesign .rd-postend__authorName{
  color: var(--rd-black);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
}
body.redesign .rd-postend__authorTitle{
  color: var(--rd-gray-500);
  font-size: 13px;
  margin-top: 4px;
}
body.redesign .rd-postend__authorCopy{
  grid-column: 2;
  grid-row: 2;
  margin-top: 16px;
}
body.redesign .rd-postend__authorCopy p{
  font-size: .98rem;
  line-height: 1.65;
  margin: 0 0 16px;
}
body.redesign .rd-postend__authorCopy > a{
  color: var(--rd-black);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
body.redesign .rd-postend__authorCopy > a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1080px){
  body.redesign .rd-postlayout{
    grid-template-columns: 1fr;
  }
  body.redesign .rd-author{
    display: none;
  }
  body.redesign .rd-postend__author{
    display: block;
  }
  body.redesign .rd-postend__authorIdentity{
    display: flex;
    align-items: center;
    gap: 16px;
  }
  body.redesign .rd-post__body .rd-postend__authorIdentity img{
    width: 72px;
    height: 72px;
    max-width: 72px;
    flex: 0 0 72px;
    aspect-ratio: 1;
    margin: 0;
    border: 0;
    border-radius: 50%;
  }
  body.redesign .rd-postend__authorCopy{
    margin-top: 20px;
  }
}
@media (max-width: 560px){
  body.redesign .rd-posthero__meta{
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  body.redesign .rd-posthero__meta span + span::before{
    display: none;
  }
}
body.redesign .rd-post__body > *:first-child{
  margin-top: 0;
}
body.redesign .rd-post__body h2{
  color: var(--rd-black);
  font-size: clamp(1.4rem, 1.8vw + 0.6rem, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 72px 0 16px;
}
body.redesign .rd-post__body h3{
  color: var(--rd-black);
  font-size: clamp(1.15rem, 1.2vw + 0.6rem, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 36px 0 14px;
}
body.redesign .rd-post__body h4{
  color: var(--rd-black);
  font-size: clamp(1.02rem, 0.6vw + 0.75rem, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 26px 0 10px;
}
body.redesign .rd-post__body p{
  margin: 0 0 22px;
}
body.redesign .rd-post__body ul,
body.redesign .rd-post__body ol{
  margin: 0 0 22px;
  padding-left: 1.3em;
}
body.redesign .rd-post__body li{
  margin: 0 0 10px;
}
body.redesign .rd-post__body li:last-child{
  margin-bottom: 0;
}
body.redesign .rd-post__body a{
  color: var(--rd-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.redesign .rd-post__body strong{
  color: var(--rd-black);
  font-weight: 700;
}
body.redesign .rd-post__body blockquote{
  margin: 28px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--rd-black);
  font-style: italic;
  color: var(--rd-gray-700);
}
body.redesign .rd-post__body blockquote p:last-child{
  margin-bottom: 0;
}
body.redesign .rd-post__body figure.rd-quote{
  margin: 28px 0;
}
body.redesign .rd-post__body figure.rd-quote blockquote{
  margin: 0 0 8px;
}
body.redesign .rd-post__body figure.rd-quote figcaption{
  padding-left: 23px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--rd-gray-500);
}
body.redesign .rd-post__body figure.rd-quote figcaption::before{
  content: "— ";
}
body.redesign .rd-tableWrap{
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 28px 0 32px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  border: 1px solid var(--rd-gray-300);
  border-radius: 14px;
  background: var(--rd-white);
  scrollbar-width: thin;
  scrollbar-color: var(--rd-gray-300) transparent;
}
body.redesign .rd-tableWrap:focus-visible{
  outline: 2px solid var(--rd-black);
  outline-offset: 3px;
}
body.redesign .rd-post__body table{
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .9rem;
  line-height: 1.5;
}
@media (max-width: 560px){
  body.redesign .rd-tableWrap{
    width: calc(100vw - 48px);
  }
}
body.redesign .rd-post__body th,
body.redesign .rd-post__body td{
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}
body.redesign .rd-post__body th{
  border-right: 1px solid rgba(255,255,255,.1);
  background: var(--rd-black);
  color: var(--rd-white);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .025em;
}
body.redesign .rd-post__body th:last-child{
  border-right: 0;
}
body.redesign .rd-post__body td{
  border-right: 1px solid var(--rd-gray-300);
  border-bottom: 1px solid var(--rd-gray-300);
  color: var(--rd-gray-700);
}
body.redesign .rd-post__body td:first-child{
  color: var(--rd-black);
  font-weight: 700;
}
body.redesign .rd-post__body td:last-child{
  border-right: 0;
}
body.redesign .rd-post__body tbody tr:last-child td{
  border-bottom: 0;
}
body.redesign .rd-post__body tbody tr:nth-child(even) td{
  background: var(--rd-gray-100);
}
body.redesign .rd-post__body img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--rd-gray-300);
  margin: 8px 0 28px;
}
body.redesign .rd-post__body code{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: var(--rd-gray-100);
  padding: 2px 6px;
  border-radius: 6px;
}
body.redesign .rd-post__body pre{
  background: var(--rd-black);
  color: rgba(255,255,255,.86);
  padding: 22px 24px 24px;
  border-radius: 14px;
  overflow-x: auto;
  margin: 0 0 22px;
  font-size: .88rem;
  line-height: 1.65;
  tab-size: 2;
}
body.redesign .rd-post__body pre code{
  background: none;
  padding: 0;
  color: inherit;
}
body.redesign .rd-codeBlock{
  margin: 8px 0 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: var(--rd-black);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
}
body.redesign .rd-codeBlock__bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 8px 10px 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
body.redesign .rd-codeBlock__language{
  color: rgba(255,255,255,.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
body.redesign .rd-codeBlock__copy{
  min-width: 64px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}
body.redesign .rd-codeBlock__copy:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
}
body.redesign .rd-codeBlock__copy:focus-visible{
  outline: 2px solid var(--rd-white);
  outline-offset: 2px;
}
body.redesign .rd-codeBlock pre{
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
body.redesign .rd-post__body hr{
  border: 0;
  border-top: 1px solid var(--rd-gray-300);
  margin: 40px 0;
}
body.redesign .rd-articleFaq{
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
body.redesign .rd-articleFaq .faqItem{
  border: 0;
  border-radius: 12px;
  background: var(--rd-gray-100);
  overflow: hidden;
}
body.redesign .rd-articleFaq__question{
  margin: 0 !important;
}
body.redesign .rd-articleFaq .faqItem__btn{
  padding: 18px 20px;
}
body.redesign .rd-articleFaq .faqItem__q{
  color: var(--rd-black);
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
}
body.redesign .rd-articleFaq .faqItem__icon{
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
body.redesign .rd-articleFaq .faqPlus{
  width: 12px;
  height: 12px;
}
body.redesign .rd-articleFaq .faqPlus::before{
  width: 12px;
}
body.redesign .rd-articleFaq .faqPlus::after{
  height: 12px;
}
body.redesign .rd-articleFaq .faqPlus::before,
body.redesign .rd-articleFaq .faqPlus::after{
  background: var(--rd-black);
}
body.redesign .rd-articleFaq .faqItem__a{
  color: var(--rd-gray-700);
  padding: 0 52px 20px 20px;
}
body.redesign .rd-articleFaq .faqItem__a p{
  margin: 0;
}
body.redesign .rd-articleFaq .faqItem__a p + p{
  margin-top: 14px;
}
body.redesign .rd-articleFaq .faqItem__a code{
  background: var(--rd-white);
  border: 1px solid var(--rd-gray-300);
}
body.redesign .rd-articleFaq .faqItem__btn:hover .faqItem__icon,
body.redesign .rd-articleFaq .faqItem.is-open .faqItem__icon{
  border: 0;
  transform: none;
}
body.redesign .rd-articleFaq .faqItem__btn:focus-visible{
  outline: 2px solid var(--rd-black);
  outline-offset: 4px;
}
body.redesign .rd-post__toc{
  margin: 48px 0 36px;
  padding: 26px clamp(22px, 4vw, 34px) 28px;
  border-radius: 12px;
  border: 1px solid var(--rd-gray-300);
  border-top: 3px solid var(--rd-black);
  background: #fafafa;
}
body.redesign .rd-post__toc-title{
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--rd-black);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
body.redesign .rd-post__toc-title::after{
  content: "";
  height: 1px;
  flex: 1;
  background: var(--rd-gray-300);
}
body.redesign .rd-post__toc ol{
  list-style: none;
  counter-reset: article-section;
  margin: 0;
  padding: 0;
  columns: 1;
}
@media (min-width: 700px){
  body.redesign .rd-post__toc ol{
    columns: 2;
    column-gap: 64px;
    column-rule: 1px solid var(--rd-gray-300);
  }
}
body.redesign .rd-post__toc li{
  position: relative;
  break-inside: avoid;
  counter-increment: article-section;
  margin: 0 0 14px;
  padding-left: 34px;
}
body.redesign .rd-post__toc li::before{
  content: counter(article-section, decimal-leading-zero);
  position: absolute;
  top: .12em;
  left: 0;
  color: var(--rd-gray-500);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .04em;
}
body.redesign .rd-post__toc a{
  color: var(--rd-black);
  font-size: .92rem;
  line-height: 1.5;
  text-decoration: none;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
body.redesign .rd-post__toc a:hover{
  color: var(--rd-black);
  text-decoration: underline;
}
body.redesign .rd-post__toc a:focus-visible{
  outline: 2px solid var(--rd-black);
  outline-offset: 4px;
}

body.redesign .rd-inlineOffer{
  margin: 56px 0;
  padding: clamp(28px, 5vw, 42px);
  border-radius: 18px;
  background: var(--rd-black);
  color: var(--rd-white);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  opacity: .88;
  transform: scale(.965);
  transform-origin: center;
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1);
}

/* ---- Blog: latest articles rail ---- */
body.redesign .rd-readmore{
  overflow: hidden;
  padding-top: clamp(36px, 4vw, 52px);
}
body.redesign .rd-readmore__head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
body.redesign .rd-readmore__head h2{
  color: var(--rd-black);
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  line-height: 1.08;
  margin: 8px 0 0;
}
body.redesign .rd-readmore__controls{
  display: flex;
  gap: 8px;
}
body.redesign .rd-readmore__controls button{
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rd-gray-300);
  border-radius: 50%;
  background: transparent;
  color: var(--rd-black);
  font: inherit;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, opacity .16s ease;
}
body.redesign .rd-readmore__controls button:hover:not(:disabled){
  background: var(--rd-black);
  color: var(--rd-white);
}
body.redesign .rd-readmore__controls button:focus-visible{
  outline: 2px solid var(--rd-black);
  outline-offset: 3px;
}
body.redesign .rd-readmore__controls button:disabled{
  opacity: .28;
  cursor: default;
}
body.redesign .rd-readmore__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
body.redesign .rd-readmore__track::-webkit-scrollbar{
  display: none;
}
body.redesign .rd-readmore__card{
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  border-radius: 14px;
  background: var(--rd-gray-100);
  color: var(--rd-black);
  text-decoration: none;
  scroll-snap-align: start;
  transition: background .18s ease, box-shadow .18s ease;
}
body.redesign .rd-readmore__card:hover{
  background: #eeeeee;
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}
body.redesign .rd-readmore__tag{
  color: var(--rd-gray-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
body.redesign .rd-readmore__card h3{
  color: var(--rd-black);
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 18px 0 12px;
}
body.redesign .rd-readmore__card p{
  color: var(--rd-gray-700);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 24px;
}
body.redesign .rd-readmore__meta{
  color: var(--rd-gray-500);
  font-size: 12px;
  margin-top: auto;
}
@media (max-width: 900px){
  body.redesign .rd-readmore__track{
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }
}
@media (max-width: 560px){
  body.redesign .rd-readmore__head{
    align-items: center;
  }
  body.redesign .rd-readmore__track{
    grid-auto-columns: 86%;
  }
  body.redesign .rd-readmore__card{
    min-height: 280px;
    padding: 22px;
  }
}
body.redesign .rd-inlineOffer.is-visible{
  opacity: 1;
  transform: scale(1);
}
body.redesign .rd-inlineOffer__kicker{
  color: rgba(255,255,255,.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body.redesign .rd-post__body .rd-inlineOffer h2{
  color: var(--rd-white);
  font-size: clamp(1.45rem, 2vw + .5rem, 2rem);
  line-height: 1.18;
  margin: 0 0 14px;
}
body.redesign .rd-post__body .rd-inlineOffer p{
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 22px;
}
body.redesign .rd-post__body .rd-inlineOffer a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rd-black);
  background: var(--rd-white);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
body.redesign .rd-post__body .rd-inlineOffer a:hover{
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}
@media (prefers-reduced-motion: reduce){
  body.redesign .rd-inlineOffer{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px){
  body.redesign .rd-bloghero__grid{
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  body.redesign .rd-bloghero p{
    margin: 0;
  }
  body.redesign .rd-blogindex__list{
    grid-template-columns: 1fr;
  }
  body.redesign .rd-blogindex__card{
    min-height: 0;
  }
  body.redesign .rd-blogindex__cardImage{
    margin-bottom: 20px;
    border-radius: 10px;
  }
  body.redesign .rd-posthero--hasCover{
    min-height: 0;
  }
  body.redesign .rd-posthero__cover{
    width: 100%;
    opacity: .48;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 72%, transparent 100%);
  }
  body.redesign .rd-posthero--hasCover::after{
    background: linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.84) 58%, rgba(5,5,5,.54) 100%);
  }
}

@media (prefers-reduced-motion: reduce){
  body.redesign .rd-blogindex__cardImage img{
    transition: none;
  }
}

/* ---- About Us page ---- */
body.redesign .rd-about__photoRow{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
body.redesign .rd-about__photo{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
}
body.redesign .rd-about__name{
  font-weight: 700;
  font-size: 1.05rem;
}
body.redesign .rd-about__title{
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

body.redesign .rd-story__grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
body.redesign .rd-story__image img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--rd-gray-300);
}
body.redesign .rd-story__content h2{
  font-size: clamp(1.6rem, 2.4vw + 0.5rem, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 20px;
}
body.redesign .rd-story__content p{
  color: var(--rd-gray-700);
  line-height: 1.65;
  margin: 0 0 16px;
}
body.redesign .rd-story__content p:last-child{
  margin-bottom: 0;
}

@media (max-width: 900px){
  body.redesign .rd-story__grid{
    grid-template-columns: 1fr;
  }
}

/* ---- Booking page ---- */
body.redesign .rd-booking__head{
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}
body.redesign .rd-booking__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
body.redesign .rd-booking__embed{
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--rd-gray-300);
  border-radius: 20px;
  padding: 16px;
}

/* ---- Contact page: contact methods list inside the hero card ---- */
body.redesign .rd-contact__list{
  display: flex;
  flex-direction: column;
}
body.redesign .rd-contact__row{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
  color: inherit;
  transition: opacity .15s ease;
}
body.redesign .rd-contact__row:first-child{
  border-top: 0;
}
body.redesign .rd-contact__row:hover{
  opacity: 0.75;
}
body.redesign .rd-contact__icon{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--rd-white);
}
body.redesign .rd-contact__icon svg{
  width: 18px;
  height: 18px;
}
body.redesign .rd-contact__body{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
body.redesign .rd-contact__label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
body.redesign .rd-contact__value{
  font-size: 15px;
  font-weight: 700;
  color: var(--rd-white);
  margin-top: 2px;
}
body.redesign .rd-contact__meta{
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
body.redesign .rd-contact__chev{
  flex: 0 0 auto;
  color: rgba(255,255,255,.5);
}

/* ---- FAQ teaser ---- */
body.redesign .rd-faq__head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
body.redesign .rd-faq__head h2{
  font-size: clamp(1.8rem, 2.6vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
body.redesign .rd-faq__list{
  max-width: 760px;
  margin: 0 auto 40px;
}
body.redesign .rd-faq__item{
  padding: 24px 0;
  border-top: 1px solid var(--rd-gray-300);
}
body.redesign .rd-faq__item:last-child{
  border-bottom: 1px solid var(--rd-gray-300);
}
body.redesign .rd-faq__item h3{
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}
body.redesign .rd-faq__item p{
  color: var(--rd-gray-700);
  line-height: 1.6;
  margin: 0;
}
body.redesign .rd-faq__cta{
  text-align: center;
}

/* ---- Final CTA ---- */
body.redesign .rd-finalcta{
  text-align: center;
}
body.redesign .rd-finalcta h2{
  font-size: clamp(2rem, 3.2vw + 0.5rem, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}
body.redesign .rd-finalcta p{
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  margin: 0 0 36px;
}
body.redesign .rd-section--light .rd-finalcta p{
  color: var(--rd-gray-700);
}
body.redesign .rd-finalcta .btn{
  padding: 18px 32px;
  font-size: 16px;
}

/* ---- Traditional footer ---- */
body.redesign .rdFooter{
  background: var(--rd-black);
  color: rgba(255,255,255,.7);
  padding: clamp(56px, 7vw, 80px) 0 32px;
}
body.redesign .rdFooter__top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
body.redesign .rdFooter__logo{
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
body.redesign .rdFooter__tagline{
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,.6);
  max-width: 32ch;
  margin: 0 0 20px;
}
body.redesign .rdFooter__social{
  display: flex;
  gap: 12px;
}
body.redesign .rdFooter__social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
body.redesign .rdFooter__social a:hover{
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
body.redesign .rdFooter__social svg{
  width: 16px;
  height: 16px;
}
body.redesign .rdFooter__partner{
  margin-top: 20px;
}
body.redesign .rdFooter__partner img{
  height: 22px;
  width: auto;
  opacity: .8;
}
body.redesign .rdFooter__colTitle{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
body.redesign .rdFooter__colTitle--link{
  align-self: flex-start;
  text-decoration: none;
  transition: color .2s ease;
}
body.redesign .rdFooter__colTitle--link:hover{
  color: var(--rd-white);
}
body.redesign .rdFooter__col{
  display: flex;
  flex-direction: column;
}
body.redesign .rdFooter__link{
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
body.redesign .rdFooter__link:hover{
  color: #fff;
}
body.redesign .rdFooter__ctaText{
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  margin: 0 0 16px;
}
body.redesign .rdFooter__cta{
  align-self: flex-start;
}
body.redesign .rdFooter__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
body.redesign .rdFooter__bottom a{
  color: rgba(255,255,255,.45);
  text-decoration: none;
}
body.redesign .rdFooter__bottom a:hover{
  color: #fff;
}

/* ---- Mobile ---- */
@media (max-width: 900px){
  body.redesign .rd-proof__grid{
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  body.redesign .rd-why__grid{
    grid-template-columns: 1fr;
  }
  body.redesign .rd-proofcase__grid{
    grid-template-columns: 1fr;
  }
  body.redesign .rd-process__item{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  body.redesign .rd-case-list{
    grid-template-columns: 1fr;
  }
  body.redesign .rd-case__stats{
    grid-template-columns: 1fr;
  }
  body.redesign .rd-strategy__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.redesign .rd-strategy__left{
    position: static;
  }
  body.redesign .rd-contrast__grid{
    grid-template-columns: 1fr;
  }
  body.redesign .rd-included__grid{
    grid-template-columns: 1fr;
  }
  body.redesign .rdFooter__top{
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  body.redesign .rdFooter__bottom{
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

@media (max-width: 560px){
  body.redesign .rd-claim__action{
    padding: 24px 18px;
  }
  body.redesign .rd-claim__emailRow{
    flex-direction: column;
    gap: 10px;
  }
  body.redesign .rd-claim__email{
    overflow-wrap: anywhere;
  }
}

/* Consistent, smaller button sizing on mobile — placed after every
   context-specific padding/font-size variant above so it wins the
   cascade regardless of selector specificity ties. */
@media (max-width: 640px){
  body.redesign .btn{
    padding: 14px 22px;
    font-size: 14px;
    gap: 8px;
  }
  body.redesign .btn__arrow{
    font-size: 15px;
  }
  body.redesign .rd-hero__left .btn{
    padding: 14px 22px;
    font-size: 14px;
  }
  body.redesign .rd-finalcta .btn{
    padding: 14px 22px;
    font-size: 14px;
  }
}
