/* ReWrap advertiser landing — light unified commerce, brand-first */

:root {
  --rw-ink: #14141a;
  --rw-muted: #667085;
  --rw-canvas: #fdfdfd;
  --rw-soft: #f4f5f7;
  --rw-line: rgba(20, 20, 26, 0.08);
  --rw-pink: #ff4d8d;
  --rw-orange: #ff7a3d;
  --rw-green: #1fa97a;
  --rw-indigo: #1e1b4b;
  --rw-font: "Manrope", "Segoe UI", sans-serif;
  --rw-display: "Syne", "Manrope", sans-serif;
  --rw-grad: linear-gradient(135deg, #ff4d8d 0%, #ff7a3d 55%, #ffb020 100%);
  --rw-grad-full: linear-gradient(135deg, #ff4d8d, #ff7a3d 45%, #1fa97a);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.rw-land {
  margin: 0;
  min-height: 100vh;
  color: var(--rw-ink);
  font-family: var(--rw-font);
  background: var(--rw-canvas);
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-shadow: none;
}

body.rw-land ::selection {
  background: rgba(255, 77, 141, 0.2);
  color: var(--rw-ink);
}

body.rw-land a,
body.rw-land button,
body.rw-land [role="button"] {
  -webkit-tap-highlight-color: transparent;
  text-shadow: none;
}

body.rw-land a:focus,
body.rw-land button:focus,
body.rw-land [role="button"]:focus {
  outline: none;
}

body.rw-land a:focus-visible,
body.rw-land button:focus-visible,
body.rw-land .rw-back:focus-visible {
  outline: 2px solid rgba(255, 77, 141, 0.55);
  outline-offset: 2px;
}

.rw-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 8px 12px;
  z-index: 40;
}
.rw-skip:focus { left: 12px; top: 12px; }

/* —— Buttons —— */
.rw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}
.rw-btn:active { transform: scale(0.98); }

.rw-btn--grad {
  background: var(--rw-grad);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 77, 141, 0.28);
}
.rw-btn--grad:hover { filter: brightness(1.04); }

.rw-btn--ghost {
  background: rgba(20, 20, 26, 0.04);
  color: var(--rw-ink);
  border: 1px solid var(--rw-line);
}
.rw-btn--ghost-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.rw-btn--light {
  background: #fff;
  color: var(--rw-indigo);
}

/* —— Hero —— */
.rw-hero {
  position: relative;
  min-height: min(100svh, 820px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 60% at 50% -20%, rgba(255, 77, 141, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 40%, rgba(31, 169, 122, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(255, 122, 61, 0.1), transparent 45%),
    var(--rw-canvas);
}

.rw-hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.rw-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: rw-float 12s ease-in-out infinite alternate;
}
.rw-hero__orb--a {
  width: 220px;
  height: 220px;
  top: 12%;
  right: -40px;
  background: rgba(255, 77, 141, 0.35);
}
.rw-hero__orb--b {
  width: 180px;
  height: 180px;
  bottom: 18%;
  left: -50px;
  background: rgba(31, 169, 122, 0.28);
  animation-delay: -4s;
}

.rw-hero__wave {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 8%;
  height: 3px;
  background: var(--rw-grad-full);
  opacity: 0.55;
  border-radius: 999px;
  transform: rotate(-2deg);
  animation: rw-wave 8s ease-in-out infinite alternate;
}

.rw-hero__float-art {
  position: absolute;
  right: -8%;
  bottom: 6%;
  width: min(58vw, 340px);
  opacity: 0.12;
  border-radius: 20px;
  transform: rotate(-6deg);
  filter: saturate(1.1);
  animation: rw-drift 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.rw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: max(14px, env(safe-area-inset-top)) 16px 0;
  z-index: 2;
}

.rw-back {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--rw-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rw-line);
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
  -webkit-tap-highlight-color: transparent;
}

.rw-nav__cta {
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--rw-pink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.rw-hero__soon {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: clamp(120px, 28vh, 240px);
  padding: 12px 16px 8px;
  text-align: center;
  animation: rw-rise 0.65s ease both;
}

.rw-hero__soon-text {
  display: block;
  max-width: 100%;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.2rem, 14vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(115deg, #1e1b4b 8%, #ff4d8d 48%, #ff7a3d 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.rw-hero__stage {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 8px 20px 36px;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  animation: rw-rise 0.75s ease both;
  animation-delay: 0.08s;
}

.rw-hero__logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--rw-line);
  box-shadow: 0 12px 32px rgba(255, 77, 141, 0.12);
  animation: rw-logo-in 0.9s ease both;
}

.rw-hero__by {
  margin: 14px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rw-muted);
}

.rw-hero__tag {
  margin: 6px 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rw-ink);
}

.rw-hero__stage h1 {
  margin: 14px 0 0;
  font-family: var(--rw-display);
  font-size: clamp(2.15rem, 8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--rw-ink) 35%, #ff4d8d 75%, #ff7a3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rw-hero__lede {
  margin: 14px 0 0;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--rw-muted);
}

.rw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* —— Strip —— */
.rw-strip {
  border-block: 1px solid var(--rw-line);
  background: var(--rw-soft);
}

.rw-strip__row {
  list-style: none;
  margin: 0 auto;
  padding: 18px 12px;
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  text-align: center;
}

.rw-strip__row strong {
  display: block;
  font-family: var(--rw-display);
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.rw-strip__row span {
  display: block;
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--rw-muted);
}

/* —— Sections —— */
.rw-section {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 40px 16px 12px;
}

.rw-section--soft {
  width: 100%;
  margin-top: 12px;
  padding-top: 36px;
  padding-bottom: 32px;
  background: linear-gradient(180deg, #f7f8fa, #fdfdfd);
  border-block: 1px solid var(--rw-line);
}
.rw-section--soft > * {
  width: min(100%, 720px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.rw-eyebrow {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--rw-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rw-section__head h2 {
  margin: 0;
  font-family: var(--rw-display);
  font-size: clamp(1.55rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.rw-section__head p:not(.rw-eyebrow) {
  margin: 10px 0 0;
  max-width: 34rem;
  color: var(--rw-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* —— Brand control / product model —— */
.rw-split {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.rw-split__card {
  padding: 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--rw-line);
}

.rw-split__card--full {
  border-color: rgba(255, 77, 141, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 77, 141, 0.08), transparent 45%),
    #fff;
  box-shadow: 0 10px 28px rgba(255, 77, 141, 0.08);
}

.rw-split__label {
  margin: 0 0 8px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rw-muted);
}

.rw-split__card--full .rw-split__label {
  background: var(--rw-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rw-split__card h3 {
  margin: 0;
  font-family: var(--rw-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rw-split__card > p {
  margin: 8px 0 0;
  color: var(--rw-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.rw-split__card ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.rw-split__card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--rw-ink);
}

.rw-split__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rw-muted);
  opacity: 0.45;
}

.rw-split__card--full li::before {
  background: var(--rw-grad);
  opacity: 1;
}

.rw-roles {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.rw-roles__col {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--rw-line);
}

.rw-roles__col--ops {
  background: rgba(31, 169, 122, 0.06);
  border-color: rgba(31, 169, 122, 0.2);
}

.rw-roles__col h3 {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 800;
}

.rw-roles__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rw-roles__col li {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--rw-muted);
}

.rw-roles__col li strong {
  color: var(--rw-ink);
  font-weight: 800;
}

.rw-control__note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 77, 141, 0.06);
  border: 1px solid rgba(255, 77, 141, 0.16);
}

.rw-control__note strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
}

.rw-control__note p {
  margin: 6px 0 0;
  color: var(--rw-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* —— Phone —— */
.rw-phone {
  margin-top: 8px;
  animation: rw-rise 0.7s ease both;
  animation-delay: 0.08s;
}

.rw-phone__bezel {
  border-radius: 32px;
  padding: 12px;
  background: linear-gradient(165deg, #2a2a35, #14141a);
  box-shadow: 0 24px 48px rgba(20, 20, 26, 0.2);
}

.rw-phone__chrome {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 650;
  margin-bottom: 10px;
  padding: 4px 8px 2px;
}

.rw-phone__card {
  background: #fff;
  border-radius: 22px;
  padding: 14px;
  color: var(--rw-ink);
}

.rw-phone__badge {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rw-pink);
}

.rw-phone__visual {
  display: grid;
  gap: 2px;
  place-items: start;
  min-height: 128px;
  padding: 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 77, 141, 0.18), transparent 45%),
    linear-gradient(145deg, #fff5f8, #fff8f2 50%, #f0fff8);
}

.rw-phone__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 8px;
  font-family: var(--rw-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: var(--rw-grad-full);
}
.rw-phone__visual strong { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.rw-phone__visual small { color: var(--rw-muted); font-size: 0.82rem; }

.rw-ownership-block {
  margin: 14px 0 12px;
  text-align: center;
}
.rw-ownership-block__rule {
  height: 1px;
  margin: 8px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 141, 0.5), transparent);
}
.rw-ownership-block__day {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.rw-ownership-block__owned {
  margin: 4px 0 0;
  font-size: 0.7rem;
  color: var(--rw-muted);
}
.rw-ownership-block__brand {
  margin: 2px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--rw-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rw-phone__cart {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--rw-ink);
  color: #fff;
  font-family: inherit;
  font-weight: 750;
  font-size: 0.9rem;
  pointer-events: none;
}

.rw-phone__caption {
  margin: 14px 6px 0;
  color: var(--rw-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* —— Wrap —— */
.rw-wrap-stage {
  display: grid;
  gap: 14px;
}

.rw-wrap-demo {
  padding: 22px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 150, 214, 0.12), transparent 40%),
    #fff;
  border: 1px solid var(--rw-line);
  box-shadow: 0 8px 24px rgba(20, 20, 26, 0.04);
}

.rw-wrap-demo__chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.rw-wrap-demo__chip span {
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rw-muted);
}
.rw-wrap-demo__chip strong {
  font-size: 1.1rem;
  color: #0096d6;
}
.rw-wrap-demo h3 {
  margin: 0;
  font-family: var(--rw-display);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}
.rw-wrap-demo p {
  margin: 8px 0 0;
  color: var(--rw-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.rw-wrap-note {
  padding: 18px;
  border-radius: 18px;
  background: rgba(31, 169, 122, 0.06);
  border: 1px solid rgba(31, 169, 122, 0.18);
}
.rw-wrap-note h4 {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 800;
}
.rw-wrap-note ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--rw-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.rw-wrap-note li + li { margin-top: 6px; }

/* —— Billboards (own banners) —— */
.rw-billboard {
  position: relative;
  margin: 36px 0 8px;
  overflow: hidden;
  isolation: isolate;
}

.rw-billboard--takeover {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 36px 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 77, 141, 0.45), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(31, 169, 122, 0.35), transparent 40%),
    linear-gradient(145deg, #1e1b4b, #0f172a 55%, #1a1030);
  color: #fff;
}

.rw-billboard__glow {
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.35), transparent 65%);
  z-index: -1;
  animation: rw-float 10s ease-in-out infinite alternate;
}

.rw-billboard__inner {
  width: min(100%, 720px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rw-billboard__kicker {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffc4a8;
}

.rw-billboard h2 {
  margin: 0;
  font-family: var(--rw-display);
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  background: linear-gradient(90deg, #fff, #ffb4d0 50%, #ffd0a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rw-billboard--takeover p {
  margin: 12px 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}

.rw-billboard--takeover .rw-btn {
  margin-top: 20px;
}

.rw-billboard--engine {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

.rw-billboard__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.rw-billboard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: rw-drift 20s ease-in-out infinite alternate;
}

.rw-billboard__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.88) 100%),
    linear-gradient(90deg, rgba(30, 27, 75, 0.65), transparent 60%);
}

.rw-billboard__inner--on-media {
  padding: 36px 18px 32px;
  color: #fff;
}

.rw-billboard__checks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.rw-billboard__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.9);
}
.rw-billboard__checks li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, #fff 0 28%, transparent 29%),
    var(--rw-green);
  box-shadow: 0 0 0 2px rgba(31, 169, 122, 0.35);
}

/* —— Packaging rail —— */
.rw-skin-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 72%);
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rw-skin-rail::-webkit-scrollbar { display: none; }

.rw-skin-card {
  scroll-snap-align: start;
  min-height: 196px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(165deg, var(--rw-bg), var(--rw-bg-soft));
  border: 1px solid var(--rw-border);
  color: var(--rw-text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}
.rw-skin-card:active { transform: scale(0.985); }

.rw-skin-card__day {
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rw-muted);
}
.rw-skin-card h3 {
  margin: 8px 0 0;
  font-size: 1.15rem;
  font-weight: 800;
}
.rw-skin-card__theme {
  margin: 8px 0 0;
  font-size: 0.72rem;
  color: var(--rw-muted);
}

/* —— Formats —— */
.rw-formats {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.rw-format {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--rw-line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.rw-format:hover {
  border-color: rgba(255, 77, 141, 0.35);
  box-shadow: 0 10px 28px rgba(255, 77, 141, 0.08);
}

.rw-format__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(255, 77, 141, 0.1);
  color: var(--rw-pink);
  font-size: 0.9rem;
}

.rw-format__index {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--rw-muted);
}

.rw-format h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.rw-format p {
  margin: 6px 0 0;
  color: var(--rw-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* —— Steps —— */
.rw-steps {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: none;
}

.rw-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--rw-line);
}

.rw-steps__n {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: var(--rw-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: var(--rw-grad);
}

.rw-steps h3 {
  margin: 0;
  align-self: end;
  font-size: 1rem;
  font-weight: 800;
}
.rw-steps p {
  margin: 0;
  grid-column: 2;
  color: var(--rw-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* —— Proof —— */
.rw-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.rw-proof li {
  padding: 16px 16px 15px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--rw-line);
  border-left: 3px solid var(--rw-green);
}
.rw-proof strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}
.rw-proof span {
  display: block;
  margin-top: 4px;
  color: var(--rw-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

/* —— Contact banner —— */
.rw-contact-banner {
  width: min(100% - 32px, 720px);
  margin: 36px auto 8px;
  padding: 22px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 77, 141, 0.1), transparent 45%),
    #fff;
  border: 1px solid var(--rw-line);
  box-shadow: 0 12px 36px rgba(20, 20, 26, 0.05);
  display: grid;
  gap: 14px;
}

.rw-contact-banner__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rw-contact-banner__brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  border: 1px solid var(--rw-line);
}
.rw-contact-banner__brand strong {
  display: block;
  font-family: var(--rw-display);
  font-size: 1.15rem;
  font-weight: 800;
}
.rw-contact-banner__brand span {
  font-size: 0.78rem;
  color: var(--rw-muted);
}
.rw-contact-banner > p {
  margin: 0;
  color: var(--rw-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* —— Finale —— */
.rw-finale {
  margin: 28px 16px 20px;
  padding: 32px 20px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 77, 141, 0.4), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(31, 169, 122, 0.25), transparent 40%),
    linear-gradient(145deg, #1e1b4b, #0f172a);
  color: #fff;
}

.rw-finale__brand {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffc4a8;
}

.rw-finale h2 {
  margin: 0;
  font-family: var(--rw-display);
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.rw-finale p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
  max-width: 28rem;
}

.rw-finale__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* —— Sticky —— */
.rw-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(253, 253, 253, 0.92);
  border-top: 1px solid var(--rw-line);
  backdrop-filter: blur(12px);
}

.rw-sticky__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 720px);
  margin: 0 auto;
  min-height: 50px;
  border-radius: 14px;
  background: var(--rw-grad);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(255, 77, 141, 0.28);
}

/* —— Motion —— */
@keyframes rw-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rw-logo-in {
  from { opacity: 0; transform: scale(0.88) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes rw-float {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(12px, -16px, 0); }
}
@keyframes rw-wave {
  from { opacity: 0.4; transform: rotate(-2deg) scaleX(1); }
  to { opacity: 0.7; transform: rotate(-1deg) scaleX(1.04); }
}
@keyframes rw-drift {
  from { transform: scale(1.05) translate3d(0, 0, 0) rotate(-6deg); }
  to { transform: scale(1.1) translate3d(-2%, -2%, 0) rotate(-4deg); }
}

@media (min-width: 640px) {
  .rw-formats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rw-wrap-stage { grid-template-columns: 1.4fr 1fr; align-items: stretch; }
  .rw-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rw-steps li {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .rw-steps__n { grid-row: auto; margin-bottom: 8px; }
  .rw-steps h3 { align-self: start; }
  .rw-steps p { grid-column: 1; }
  .rw-split { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
  .rw-roles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .rw-hero__stage { padding-left: 28px; padding-right: 28px; }
  .rw-hero__logo { width: 112px; height: 112px; }
  .rw-hero__float-art { opacity: 0.18; width: 380px; right: 4%; }
  .rw-skin-rail { grid-auto-columns: minmax(240px, 36%); }
  .rw-billboard--takeover,
  .rw-billboard--engine { min-height: 340px; }
  .rw-billboard__inner,
  .rw-billboard__inner--on-media { padding-left: 28px; padding-right: 28px; }
  .rw-finale { width: min(100%, 720px); margin-left: auto; margin-right: auto; }
  .rw-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .rw-hero__orb,
  .rw-hero__wave,
  .rw-hero__float-art,
  .rw-hero__stage,
  .rw-hero__logo,
  .rw-phone,
  .rw-billboard__glow,
  .rw-billboard__media img {
    animation: none;
  }
}
