/* REDRESS MARKETING SITE
   Premium social fashion-tech landing page
*/

:root {
  --red: #dc1f35;
  --red-dark: #8f0d1d;
  --red-soft: rgba(220, 31, 53, 0.1);
  --cream: #f5eadc;
  --cream-light: #fff8ef;
  --paper: #fffdf9;
  --sand: #d9c3a8;
  --clay: #b78b6f;
  --ink: #15100e;
  --ink-2: #2a211e;
  --white: #ffffff;
  --muted: rgba(21, 16, 14, 0.62);
  --muted-strong: rgba(21, 16, 14, 0.76);
  --muted-invert: rgba(255, 255, 255, 0.68);
  --line: rgba(21, 16, 14, 0.1);
  --line-strong: rgba(21, 16, 14, 0.18);
  --line-invert: rgba(255, 255, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --shadow-soft: 0 26px 80px rgba(70, 42, 28, 0.12);
  --shadow-deep: 0 48px 130px rgba(21, 16, 14, 0.22);
  --shadow-red: 0 22px 64px rgba(220, 31, 53, 0.26);
  --radius: 8px;
  --max: 1180px;
  --wide: 1360px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(118deg, rgba(220, 31, 53, 0.09), transparent 34%),
    linear-gradient(180deg, #fffaf3 0%, #f2e4d2 44%, #fffdf9 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(21, 16, 14, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 16, 14, 0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

:where(a, button, input):focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 18px 50px rgba(21, 16, 14, 0.22);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 240;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff7a87, var(--ink));
  box-shadow: 0 0 30px rgba(220, 31, 53, 0.55);
}

.soft-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 170;
  opacity: 0.045;
  background-image:
    repeating-radial-gradient(circle at 20% 20%, rgba(21, 16, 14, 0.9) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(21, 16, 14, 0.3) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
}

.cursor-light {
  pointer-events: none;
  position: fixed;
  z-index: 160;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 31, 53, 0.14), rgba(255, 255, 255, 0.34) 35%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

@media (pointer: coarse) {
  .cursor-light {
    display: none;
  }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 220;
  width: min(calc(100% - 32px), var(--max));
  height: 66px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 12px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px);
  box-shadow: 0 22px 70px rgba(70, 42, 28, 0.1);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(220, 31, 53, 0.15);
  box-shadow: 0 24px 84px rgba(70, 42, 28, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  font-size: 1.02rem;
  font-weight: 850;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(220, 31, 53, 0.22);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(21, 16, 14, 0.62);
  font-size: 0.9rem;
  font-weight: 720;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button,
.store-button,
.signup-form button {
  position: relative;
  isolation: isolate;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 18px 44px rgba(21, 16, 14, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 16, 14, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 200ms ease;
}

.menu-toggle.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 96px 16px auto;
  z-index: 210;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--muted-strong);
  font-weight: 760;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(220, 31, 53, 0.08);
  color: var(--ink);
}

.mobile-download {
  justify-content: center;
  margin-top: 4px;
  background: var(--red);
  color: var(--white) !important;
}

.section,
.section-narrow {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 118px 0;
}

.section-narrow {
  padding: 22px 0;
}

.hero {
  position: relative;
  width: min(calc(100% - 32px), var(--wide));
  min-height: 92svh;
  margin: 0 auto;
  padding: 150px 0 74px;
  overflow: hidden;
}

.hero-grid,
.hero-scanline,
.hero-light {
  pointer-events: none;
  position: absolute;
}

.hero-grid {
  inset: 104px 0 30px;
  border: 1px solid rgba(21, 16, 14, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(21, 16, 14, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 16, 14, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, black 0%, black 58%, transparent 88%);
}

.hero-scanline {
  inset: 104px 0 30px;
  border-radius: 12px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  height: 160px;
  opacity: 0.45;
  animation: scanDrop 8s linear infinite;
}

.hero-light {
  width: 520px;
  height: 190px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.75;
}

.hero-light-one {
  top: 12%;
  left: -170px;
  background: linear-gradient(90deg, rgba(220, 31, 53, 0.22), transparent);
  transform: rotate(-18deg);
}

.hero-light-two {
  right: -120px;
  bottom: 10%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(220, 31, 53, 0.12));
  transform: rotate(16deg);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
  padding: 44px 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(21, 16, 14, 0.66);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(220, 31, 53, 0.7);
}

.hero-title {
  max-width: 820px;
  margin-top: 22px;
  font-size: 7.4rem;
  line-height: 0.9;
  font-weight: 920;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 860;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.button-primary span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(70, 42, 28, 0.08);
  backdrop-filter: blur(20px);
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(660px, 100%);
  margin-top: 48px;
}

.hero-signals div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.hero-signals strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-signals span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.product-stage {
  position: absolute;
  z-index: 5;
  top: 116px;
  right: 20px;
  width: 468px;
  min-height: 790px;
  perspective: 1200px;
}

.device-shadow {
  position: absolute;
  right: 58px;
  bottom: 8px;
  width: 330px;
  height: 78px;
  border-radius: 50%;
  background: rgba(21, 16, 14, 0.2);
  filter: blur(24px);
  transform: rotate(-8deg);
}

.phone-shell {
  position: relative;
  width: 360px;
  min-height: 724px;
  margin: 0 auto;
  padding: 13px;
  border: 1px solid rgba(21, 16, 14, 0.14);
  border-radius: 54px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(218, 194, 164, 0.72)),
    var(--paper);
  box-shadow:
    0 48px 120px rgba(65, 35, 24, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  transform: rotateX(4deg) rotateY(-10deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.phone-hardware {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 20;
  width: 96px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #27201d, #070504);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.14);
}

.phone-hardware span {
  position: absolute;
  top: 9px;
  right: 17px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #181111;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 696px;
  border-radius: 43px;
  background: var(--ink);
  isolation: isolate;
}

.app-feed {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 16, 14, 0.12), rgba(21, 16, 14, 0.44)),
    linear-gradient(145deg, #edc7aa 0%, #b78363 48%, #3a2620 100%);
}

.app-feed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%, rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: soft-light;
}

.status-bar {
  position: absolute;
  top: 12px;
  left: 18px;
  right: 18px;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.status-bar > span {
  display: grid;
  place-items: center;
  min-width: 78px;
  height: 30px;
  border-radius: 999px;
  background: rgba(26, 186, 86, 0.95);
  color: white;
  font-size: 0.96rem;
  font-weight: 850;
}

.status-bar div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #16100e;
  font-size: 0.9rem;
  font-weight: 850;
}

.status-bar i {
  width: 5px;
  border-radius: 999px;
  background: #16100e;
}

.status-bar i:nth-child(1) { height: 8px; }
.status-bar i:nth-child(2) { height: 13px; }
.status-bar i:nth-child(3) { height: 18px; }

.status-bar em {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 21px;
  border-radius: 6px;
  background: #f8d94c;
  color: #16100e;
  font-style: normal;
  line-height: 1;
}

.feed-topbar {
  position: absolute;
  z-index: 18;
  top: 60px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(64, 38, 30, 0.35);
  backdrop-filter: blur(18px);
}

.feed-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.feed-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
}

.feed-brand strong,
.feed-tabs b {
  color: white;
  font-size: 0.92rem;
  font-weight: 880;
}

.feed-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  white-space: nowrap;
}

.video-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.18) 48% 51%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 36%),
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.2), transparent 19%);
}

.video-lines {
  position: absolute;
  inset: 128px 0 auto;
  height: 240px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 16px),
    repeating-linear-gradient(0deg, rgba(21, 16, 14, 0.12) 0 1px, transparent 1px 42px);
  opacity: 0.45;
}

.wardrobe-rail {
  position: absolute;
  top: 158px;
  left: -20px;
  right: -20px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 38px rgba(21, 16, 14, 0.12);
}

.floor-grid {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  height: 38%;
  background:
    linear-gradient(180deg, rgba(141, 85, 53, 0.06), rgba(67, 38, 28, 0.66)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 52px);
  transform: perspective(430px) rotateX(48deg);
  transform-origin: bottom center;
}

.outfit-model {
  position: absolute;
  left: 45%;
  top: 185px;
  z-index: 3;
  width: 210px;
  height: 460px;
  transform: translateX(-50%) rotate(-2deg);
  filter: drop-shadow(0 28px 36px rgba(44, 23, 18, 0.34));
  animation: modelFloat 4.5s ease-in-out infinite alternate;
}

.outfit-model span {
  position: absolute;
  display: block;
}

.model-hair {
  left: 50%;
  top: -8px;
  width: 124px;
  height: 132px;
  transform: translateX(-50%);
  border-radius: 54% 54% 46% 46%;
  background:
    radial-gradient(circle at 18% 22%, rgba(109, 66, 51, 0.9), transparent 18%),
    radial-gradient(circle at 76% 24%, rgba(82, 49, 40, 0.88), transparent 19%),
    linear-gradient(135deg, #4e3028, #221615);
}

.model-head {
  left: 50%;
  top: 22px;
  width: 78px;
  height: 96px;
  transform: translateX(-50%);
  border-radius: 48% 48% 43% 43%;
  background: linear-gradient(180deg, #c98b70, #ad715b);
}

.model-neck {
  left: 50%;
  top: 109px;
  width: 35px;
  height: 36px;
  transform: translateX(-50%);
  background: #ad715b;
}

.model-jacket {
  left: 50%;
  top: 130px;
  width: 164px;
  height: 170px;
  transform: translateX(-50%);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 3px, transparent 3px 52%, rgba(21, 16, 14, 0.18) 52% 55%, transparent 55%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 3px, transparent 3px 13px),
    linear-gradient(135deg, #ff555f, #b40e25);
  box-shadow: inset 0 12px 30px rgba(255, 255, 255, 0.12);
}

.model-arm {
  top: 148px;
  width: 34px;
  height: 172px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b77961, #9c5d4c);
}

.model-arm-left {
  left: 7px;
  transform: rotate(15deg);
}

.model-arm-right {
  right: 10px;
  transform: rotate(-13deg);
}

.model-skirt {
  left: 50%;
  top: 292px;
  width: 148px;
  height: 155px;
  transform: translateX(-50%);
  border-radius: 8px 8px 14px 14px;
  background:
    repeating-linear-gradient(45deg, transparent 0 13px, rgba(255, 255, 255, 0.76) 13px 17px, transparent 17px 31px),
    repeating-linear-gradient(-45deg, transparent 0 16px, rgba(255, 255, 255, 0.5) 16px 19px, transparent 19px 34px),
    linear-gradient(135deg, #17110f, #5b4039);
}

.model-leg {
  top: 430px;
  width: 26px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9f604f, #2b211e);
}

.model-leg-left {
  left: 74px;
}

.model-leg-right {
  right: 70px;
}

.floating-tag {
  position: absolute;
  z-index: 15;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
  animation: tagFloat 3.8s ease-in-out infinite alternate;
}

.tag-one {
  left: 20px;
  top: 162px;
}

.tag-two {
  right: 20px;
  top: 214px;
  animation-delay: -1.4s;
}

.side-actions {
  position: absolute;
  z-index: 16;
  right: 10px;
  top: 316px;
  display: grid;
  gap: 9px;
}

.side-actions button {
  width: 74px;
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.side-actions small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 780;
  text-transform: uppercase;
}

.score-ring {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    conic-gradient(var(--red) 0 320deg, rgba(255, 255, 255, 0.18) 320deg 360deg);
  color: white;
  font-size: 1.12rem;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(220, 31, 53, 0.2);
}

.score-ring::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(21, 16, 14, 0.35);
  z-index: -1;
}

.comment-dot {
  width: 30px;
  height: 24px;
  border-radius: 8px;
  background: white;
}

.comment-dot::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 18px 0 0 5px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.save-shape {
  width: 26px;
  height: 34px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
}

.caption-panel,
.rate-dock,
.app-bottom-nav {
  position: absolute;
  z-index: 16;
  left: 14px;
  right: 14px;
}

.caption-panel {
  bottom: 164px;
  max-width: 230px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(48, 30, 25, 0.32);
  color: white;
  backdrop-filter: blur(18px);
}

.caption-panel strong {
  display: block;
  font-size: 0.96rem;
}

.caption-panel p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.38;
}

.caption-panel a {
  display: inline-flex;
  margin-top: 10px;
  color: #ffd6d9;
  font-size: 0.78rem;
  font-weight: 820;
}

.rate-dock {
  bottom: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.rate-dock span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.rate-dock strong {
  display: block;
  margin-top: 2px;
  font-size: 1.4rem;
}

.mini-rating-rail {
  display: flex;
  align-items: end;
  gap: 4px;
}

.mini-rating-rail i {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #ff8c95);
  animation: miniMeter 1.8s ease-in-out infinite alternate;
}

.mini-rating-rail i:nth-child(1) { height: 16px; }
.mini-rating-rail i:nth-child(2) { height: 22px; animation-delay: -0.2s; }
.mini-rating-rail i:nth-child(3) { height: 30px; animation-delay: -0.4s; }
.mini-rating-rail i:nth-child(4) { height: 40px; animation-delay: -0.6s; }
.mini-rating-rail i:nth-child(5) { height: 48px; animation-delay: -0.8s; }

.app-bottom-nav {
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-height: 58px;
}

.app-bottom-nav button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: white;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.app-bottom-nav span {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--red);
}

.app-bottom-nav b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
}

.app-bottom-nav em {
  width: 26px;
  height: 26px;
  border: 4px solid rgba(255, 255, 255, 0.75);
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.app-bottom-nav em::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: -20px auto 0;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.75);
}

.stage-chip {
  position: absolute;
  z-index: 8;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  animation: chipFloat 4.2s ease-in-out infinite alternate;
}

.stage-chip span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.stage-chip strong {
  font-size: 1.2rem;
}

.stage-chip-left {
  top: 220px;
  left: 0;
}

.stage-chip-right {
  right: 0;
  bottom: 190px;
  animation-delay: -1.7s;
}

.brand-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(21, 16, 14, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 18px 55px rgba(70, 42, 28, 0.08);
}

.brand-rail span:first-child {
  color: var(--red);
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.section-title,
.download-title {
  margin-top: 16px;
  font-size: 4.7rem;
  line-height: 0.96;
  font-weight: 920;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.mobile-hyphen,
.mobile-title-break {
  display: none;
}

.section-heading > p:not(.eyebrow),
.split-copy > p,
.rating-copy > p,
.download-inner > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.benefit-grid,
.rating-benefits,
.interface-grid,
.marketplace-grid {
  display: grid;
  gap: 14px;
}

.benefit-grid {
  margin-top: 28px;
}

.benefit-card,
.interface-panel,
.rating-benefits article,
.flow-step,
.marketplace-grid article,
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 54px rgba(70, 42, 28, 0.08);
  backdrop-filter: blur(18px);
}

.benefit-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
}

.benefit-card span,
.rating-benefits span,
.flow-step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit-card h3,
.interface-panel h3,
.rating-benefits h3,
.flow-step h3 {
  font-size: 1.24rem;
  line-height: 1.15;
  font-weight: 880;
}

.benefit-card p,
.interface-panel p,
.rating-benefits p,
.flow-step p,
.faq-item p {
  color: var(--muted);
  line-height: 1.6;
}

.benefit-card p {
  grid-column: 2;
  margin-top: -8px;
}

.interface-grid {
  grid-template-columns: repeat(3, 1fr);
}

.interface-panel {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.interface-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 31, 53, 0.22);
  background: rgba(255, 255, 255, 0.84);
}

.panel-screen {
  position: relative;
  min-height: 270px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.interface-panel > span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.interface-panel h3 {
  margin-top: 10px;
}

.interface-panel p {
  margin-top: 10px;
}

.feed-panel {
  background:
    linear-gradient(180deg, transparent, rgba(21, 16, 14, 0.72)),
    linear-gradient(135deg, #f0c5a6, var(--red));
}

.feed-panel div {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 74px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.feed-panel div:nth-child(2) {
  bottom: 38px;
  right: 130px;
}

.feed-panel div:nth-child(3) {
  width: 50px;
  height: 50px;
  left: auto;
  right: 16px;
  bottom: 20px;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 315deg, rgba(255, 255, 255, 0.24) 315deg);
}

.rating-panel {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(220, 31, 53, 0.22), transparent 34%),
    linear-gradient(145deg, #fff8ef, #d6bea2);
  color: var(--ink);
}

.rating-panel strong {
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
}

.rating-panel div {
  width: 78%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 16, 14, 0.08);
}

.rating-panel i {
  display: block;
  width: 89%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  animation: meterBreathe 2.3s ease-in-out infinite alternate;
}

.rating-panel span {
  color: rgba(21, 16, 14, 0.48);
  font-size: 0.8rem;
  word-spacing: 6px;
}

.commerce-panel {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(21, 16, 14, 0.92), rgba(75, 38, 33, 0.9)),
    var(--ink);
}

.commerce-panel b {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.rating-system {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.rating-benefits {
  margin-top: 28px;
}

.rating-benefits article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.rating-benefits article:hover {
  transform: translateX(6px);
  border-color: rgba(220, 31, 53, 0.2);
  background: rgba(255, 255, 255, 0.84);
}

.rating-benefits p {
  grid-column: 2;
  margin-top: -8px;
}

.rating-console {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 239, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.rating-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(220, 31, 53, 0.08), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent 42%);
  opacity: 0.65;
}

.console-top,
.score-visual,
.rating-buttons,
.rating-insight,
.like-vs-rating {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.console-top span {
  color: rgba(21, 16, 14, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-top strong {
  color: var(--red);
  font-size: 5.6rem;
  line-height: 0.9;
}

.score-visual {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.score-orb {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.95), transparent 19%),
    conic-gradient(var(--red) 0 324deg, rgba(21, 16, 14, 0.08) 324deg 360deg);
  box-shadow:
    0 24px 64px rgba(220, 31, 53, 0.2),
    inset 0 0 0 12px rgba(255, 255, 255, 0.58);
}

.score-orb span {
  width: 78px;
  color: white;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 1px 10px rgba(21, 16, 14, 0.35);
}

.rating-meter {
  overflow: hidden;
  height: 18px;
  border-radius: 999px;
  background: rgba(21, 16, 14, 0.08);
}

.rating-meter-fill {
  width: 90%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--red-dark), var(--red), #ff8b94),
    var(--red);
  box-shadow: 0 0 32px rgba(220, 31, 53, 0.35);
  transition: width 360ms var(--ease);
}

.rating-buttons {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin-top: 22px;
}

.rating-buttons button {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(21, 16, 14, 0.68);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rating-buttons button:hover,
.rating-buttons button:focus-visible,
.rating-buttons button.active {
  transform: translateY(-3px);
  border-color: rgba(220, 31, 53, 0.28);
  background: var(--red);
  color: white;
  box-shadow: 0 14px 34px rgba(220, 31, 53, 0.22);
}

.rating-insight {
  min-height: 92px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(220, 31, 53, 0.14);
  border-radius: 8px;
  background: rgba(220, 31, 53, 0.07);
  color: rgba(21, 16, 14, 0.72);
  line-height: 1.58;
}

.like-vs-rating {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.like-vs-rating article {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.like-vs-rating article:nth-child(2) {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.like-vs-rating small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.like-vs-rating strong {
  font-size: 1.18rem;
  line-height: 1.08;
}

.like-vs-rating span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.46;
}

.secondhand {
  position: relative;
  isolation: isolate;
}

.secondhand::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(21, 16, 14, 0.94), rgba(64, 36, 31, 0.92)),
    var(--ink);
}

.secondhand .section-heading {
  color: white;
}

.secondhand .eyebrow,
.secondhand .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.resale-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.resale-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.flow-step {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.flow-step:last-child::after {
  display: none;
}

.flow-step span {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.flow-step h3 {
  margin-top: auto;
  color: white;
  font-size: 1.7rem;
}

.flow-step p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.flow-step-active {
  background:
    linear-gradient(135deg, rgba(220, 31, 53, 0.92), rgba(143, 13, 29, 0.86)),
    var(--red);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 86px rgba(220, 31, 53, 0.24);
}

.marketplace-grid {
  grid-template-columns: 1fr;
}

.marketplace-grid article {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.marketplace-grid small {
  color: rgba(21, 16, 14, 0.48);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marketplace-grid strong {
  font-size: 2.25rem;
  line-height: 1;
}

.marketplace-grid span {
  color: var(--red);
  font-weight: 820;
}

.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.faq-list {
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  transition: transform 180ms ease;
}

.faq-item p {
  display: none;
  max-width: 720px;
  padding: 0 20px 22px;
}

.faq-item.open p {
  display: block;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

.download {
  padding-top: 80px;
}

.download-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: 54px 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(220, 31, 53, 0.9), rgba(21, 16, 14, 0.95)),
    var(--ink);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-deep);
}

.download-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.36;
}

.download-inner > * {
  position: relative;
  z-index: 1;
}

.download-inner .eyebrow,
.download-inner > p {
  color: rgba(255, 255, 255, 0.72);
}

.download-title {
  max-width: 850px;
  color: white;
}

.download-inner > p {
  max-width: 650px;
}

.download-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
  min-height: 68px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: left;
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.18);
}

.store-button > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: white;
  color: var(--red);
  font-weight: 950;
}

.store-button small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.store-button strong {
  display: block;
  margin-top: 2px;
  font-size: 1.12rem;
}

.signup-form {
  width: min(620px, 100%);
  margin-top: 28px;
  text-align: left;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 820;
}

.signup-form > div {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.signup-form input {
  flex: 1;
  min-width: 0;
  min-height: 50px;
  border: 0;
  outline: 0;
  padding: 0 16px;
  background: transparent;
  color: white;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.signup-form button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: white;
  color: var(--red);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.signup-form button:hover,
.signup-form button:focus-visible {
  transform: scale(1.02);
  background: var(--cream-light);
}

.signup-form p {
  min-height: 24px;
  margin-top: 12px;
  color: white;
  text-align: center;
  font-weight: 780;
}

.footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 42px 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: rgba(21, 16, 14, 0.58);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 720;
}

.footer a {
  transition: color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}


/* Cinematic anchored story section */
.story-cinema {
  --story-accent: var(--red);
  --story-accent-soft: rgba(220, 31, 53, 0.28);
  --story-light-x: 24%;
  --story-light-y: 30%;
  --story-progress: 0;
  --story-backdrop-drift: 0px;
  --story-spotlight-one-x: 0px;
  --story-spotlight-two-x: 0px;
  --story-fabric-x: 0px;
  --story-fabric-y: 0px;
  --story-photo-one-y: 0px;
  --story-photo-two-y: 0px;
  position: relative;
  min-height: 560svh;
  margin: 26px 0 0;
  color: var(--white);
  background: #130d0b;
  isolation: isolate;
}

.story-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.story-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--story-light-x) var(--story-light-y), rgba(255, 248, 239, 0.34), transparent 23%),
    radial-gradient(circle at 76% 70%, var(--story-accent-soft), transparent 26%),
    linear-gradient(135deg, #140d0b 0%, #281813 42%, #0e0908 100%);
  transition: background 700ms var(--ease);
}

.story-backdrop::before,
.story-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.story-backdrop::before {
  background:
    linear-gradient(105deg, transparent 0 30%, rgba(255, 255, 255, 0.2) 45%, transparent 58%),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.38));
  opacity: 0.78;
  mix-blend-mode: screen;
  transform: translate3d(var(--story-backdrop-drift), 0, 0);
}

.story-backdrop::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 84px),
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(0, 0, 0, 0.44) 100%);
  opacity: 0.7;
}

.story-editorial-grid {
  position: absolute;
  inset: 9% 5%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.32;
  mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
}

.story-spotlight {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.72;
  transition: transform 700ms var(--ease), opacity 700ms var(--ease), background 700ms var(--ease);
}

.story-spotlight-one {
  width: 48vw;
  height: 17vw;
  left: -10vw;
  top: 15vh;
  background: linear-gradient(90deg, var(--story-accent-soft), rgba(255, 255, 255, 0.16), transparent);
  transform: rotate(-18deg) translateX(var(--story-spotlight-one-x));
}

.story-spotlight-two {
  width: 38vw;
  height: 20vw;
  right: -11vw;
  bottom: 10vh;
  background: linear-gradient(90deg, transparent, rgba(245, 234, 220, 0.18), var(--story-accent-soft));
  transform: rotate(22deg) translateX(var(--story-spotlight-two-x));
}

.story-fabric-canvas {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--story-fabric-x), var(--story-fabric-y), 0);
  transition: transform 600ms var(--ease);
}

.fabric-strip,
.story-photo-card {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 48px 130px rgba(0, 0, 0, 0.32);
}

.fabric-strip {
  border-radius: 999px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.12), rgba(245, 234, 220, 0.42), var(--story-accent-soft), rgba(255, 255, 255, 0.1)),
    repeating-linear-gradient(92deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 9px);
  backdrop-filter: blur(2px);
  animation: fabricDrift 8s ease-in-out infinite alternate;
}

.fabric-strip-one {
  width: 64vw;
  height: 24vh;
  top: 10vh;
  right: -16vw;
  transform: rotate(-12deg);
}

.fabric-strip-two {
  width: 54vw;
  height: 20vh;
  left: -15vw;
  bottom: 18vh;
  transform: rotate(16deg);
  animation-delay: -2.5s;
}

.fabric-strip-three {
  width: 38vw;
  height: 14vh;
  right: 16vw;
  bottom: 2vh;
  transform: rotate(-5deg);
  opacity: 0.72;
  animation-delay: -5s;
}

.story-photo-card {
  width: 158px;
  height: 214px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(21, 16, 14, 0.18)),
    linear-gradient(135deg, rgba(245, 234, 220, 0.82), rgba(220, 31, 53, 0.32));
  opacity: 0.32;
  backdrop-filter: blur(10px);
}

.story-photo-one {
  top: 18vh;
  right: 17vw;
  transform: rotate(8deg) translateY(var(--story-photo-one-y));
}

.story-photo-two {
  left: 8vw;
  bottom: 17vh;
  transform: rotate(-10deg) translateY(var(--story-photo-two-y));
}

.story-runway-line {
  position: absolute;
  left: 50%;
  bottom: -14vh;
  width: 1px;
  height: 68vh;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: translateX(-50%) rotate(24deg);
  opacity: 0.42;
}

.story-bg-caption {
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  bottom: clamp(22px, 5vw, 76px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(3.4rem, 11vw, 11rem);
  line-height: 0.8;
  font-weight: 930;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 420ms ease, transform 620ms var(--ease);
}

.story-frame {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
  padding: 116px 0 76px;
}

.story-copy {
  align-self: center;
  max-width: 520px;
}

.story-copy .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.story-copy .eyebrow span {
  background: var(--story-accent);
}

.story-title {
  margin-top: 18px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.9;
  font-weight: 930;
  letter-spacing: -0.07em;
}

.story-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.78;
}

.story-progress-shell {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.story-progress-shell > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.story-progress-shell small,
.story-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-progress-shell strong {
  font-size: 0.98rem;
  font-weight: 860;
}

.story-progress-track {
  overflow: hidden;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.story-progress-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--story-accent), rgba(255, 255, 255, 0.78));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms linear;
}

.story-mini-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.story-mini-nav span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 860;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.story-mini-nav span.active {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.38);
  background: var(--story-accent);
  color: white;
}

.story-stack {
  position: relative;
  height: min(64svh, 620px);
  min-height: 470px;
}

.story-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(21, 16, 14, 0.46));
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(34px) scale(0.97);
  transition: opacity 520ms var(--ease), transform 620ms var(--ease), border-color 520ms ease, box-shadow 520ms ease;
}

.story-card::before,
.story-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.story-card::before {
  inset: 0;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.24), transparent 23%),
    linear-gradient(135deg, transparent, var(--story-accent-soft));
  opacity: 0.7;
}

.story-card::after {
  right: -0.08em;
  bottom: -0.18em;
  content: attr(data-story-label);
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.82;
  font-weight: 940;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.story-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 58px 150px rgba(0, 0, 0, 0.42);
}

.story-card.before {
  transform: translateY(-34px) scale(0.97);
}

.story-card span,
.story-card h3,
.story-card p {
  position: relative;
  z-index: 1;
}

.story-card h3 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.95;
  font-weight: 930;
  letter-spacing: -0.06em;
}

.story-card p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.78;
}

@keyframes fabricDrift {
  from { translate: 0 0; filter: blur(0.2px) saturate(1); }
  to { translate: 0 -14px; filter: blur(0.4px) saturate(1.12); }
}

@keyframes scanDrop {
  0% { transform: translateY(-190px); }
  100% { transform: translateY(760px); }
}

@keyframes modelFloat {
  from { transform: translateX(-50%) rotate(-2deg) translateY(0); }
  to { transform: translateX(-50%) rotate(-1deg) translateY(-8px); }
}

@keyframes tagFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

@keyframes miniMeter {
  from { opacity: 0.68; transform: scaleY(0.9); }
  to { opacity: 1; transform: scaleY(1.08); }
}

@keyframes chipFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-14px); }
}

@keyframes meterBreathe {
  from { width: 82%; }
  to { width: 92%; }
}

@media (max-width: 1180px) {
  .hero-title {
    font-size: 6rem;
  }

  .product-stage {
    right: -34px;
    transform: scale(0.94);
    transform-origin: top right;
  }

  .section-title,
  .download-title {
    font-size: 4rem;
  }

  .desktop-nav {
    gap: 16px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-grid {
    mask-image: linear-gradient(180deg, black, transparent 86%);
  }

  .hero-copy {
    width: 100%;
    max-width: 760px;
  }

  .product-stage {
    position: relative;
    top: auto;
    right: auto;
    width: min(480px, 100%);
    min-height: 755px;
    margin: 26px auto 0;
    transform: none;
  }

  .phone-shell {
    transform: rotateX(3deg) rotateY(-6deg) rotateZ(1deg);
  }

  .split-section,
  .rating-system,
  .resale-layout,
  .faq {
    grid-template-columns: 1fr;
  }

  .interface-grid {
    grid-template-columns: 1fr 1fr;
  }

  .resale-flow {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 190px;
  }

  .flow-step::after {
    display: none;
  }

}

@media (max-width: 720px) {
  .site-header {
    top: 12px;
    width: min(calc(100% - 20px), var(--max));
  }

  .section,
  .section-narrow {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    width: min(calc(100% - 24px), var(--wide));
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .hero-title {
    font-size: 4.15rem;
    line-height: 0.95;
  }

  .hero-subtitle,
  .section-heading > p:not(.eyebrow),
  .split-copy > p,
  .rating-copy > p,
  .download-inner > p {
    font-size: 1rem;
  }

  .hero-actions,
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-light,
  .device-shadow {
    display: none;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .hero-signals {
    display: none;
  }

  .product-stage {
    min-height: 710px;
  }

  .phone-shell {
    width: min(338px, 92vw);
    min-height: 684px;
  }

  .phone-screen {
    min-height: 656px;
  }

  .status-bar > span {
    min-width: 68px;
  }

  .feed-tabs span {
    display: none;
  }

  .outfit-model {
    top: 178px;
    transform: translateX(-50%) rotate(-2deg) scale(0.92);
  }

  .side-actions {
    right: 8px;
  }

  .side-actions button {
    width: 66px;
  }

  .caption-panel {
    max-width: 210px;
    bottom: 156px;
  }

  .stage-chip {
    display: none;
  }

  .brand-rail {
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: calc(100vw - 24px);
    overflow: hidden;
    white-space: normal;
    scrollbar-width: none;
  }

  .floor-grid {
    left: 0;
    right: 0;
  }

  .cursor-light {
    display: none;
  }

  .brand-rail::-webkit-scrollbar {
    display: none;
  }

  .section-title,
  .download-title {
    font-size: 3rem;
    line-height: 1;
  }

  .mobile-hyphen {
    display: inline;
  }

  .mobile-title-break {
    display: block;
  }

  .interface-grid,
  .like-vs-rating {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .rating-benefits article {
    grid-template-columns: 1fr;
  }

  .benefit-card p,
  .rating-benefits p {
    grid-column: auto;
    margin-top: 0;
  }

  .rating-console {
    padding: 18px;
  }

  .console-top {
    display: grid;
  }

  .console-top strong {
    font-size: 4.3rem;
  }

  .score-visual {
    grid-template-columns: 1fr;
  }

  .score-orb {
    width: 116px;
    height: 116px;
  }

  .rating-buttons {
    grid-template-columns: repeat(5, 1fr);
  }

  .marketplace-grid strong {
    font-size: 1.9rem;
  }

  .faq-list {
    border-radius: 8px;
  }

  .download-inner {
    padding: 38px 18px;
  }

  .signup-form > div {
    flex-direction: column;
    border-radius: 8px;
  }

  .signup-form input {
    text-align: center;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .hero-title {
    font-size: 3.45rem;
  }

  .section-title,
  .download-title {
    font-size: 2.45rem;
  }

  .phone-shell {
    width: min(318px, 92vw);
    padding: 11px;
  }

  .phone-screen {
    border-radius: 38px;
  }

  .rate-dock {
    bottom: 82px;
  }

  .app-bottom-nav {
    min-height: 54px;
  }

  .floating-tag {
    font-size: 0.68rem;
  }
}

/* Story section responsive overrides */

@media (max-width: 1080px) {
  .story-cinema {
    min-height: 540svh;
  }

  .story-frame {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 34px;
    padding-top: 104px;
  }

  .story-copy {
    max-width: 760px;
  }

  .story-copy > p:not(.eyebrow) {
    max-width: 680px;
  }

  .story-stack {
    height: 45svh;
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .story-cinema {
    min-height: auto;
    margin-top: 0;
  }

  .story-sticky {
    position: relative;
    min-height: auto;
    overflow: hidden;
  }

  .story-backdrop {
    position: absolute;
  }

  .story-frame {
    min-height: auto;
    display: block;
    width: min(calc(100% - 24px), var(--max));
    padding: 90px 0;
  }

  .story-title {
    font-size: 3.1rem;
  }

  .story-progress-shell,
  .story-mini-nav {
    display: none;
  }

  .story-stack {
    height: auto;
    min-height: auto;
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .story-card,
  .story-card.before,
  .story-card.active {
    position: relative;
    min-height: 330px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .story-card h3 {
    font-size: 2.6rem;
  }

  .story-card p {
    font-size: 1rem;
  }

  .story-bg-caption {
    right: 10px;
    bottom: 16px;
    font-size: 4rem;
    white-space: normal;
    opacity: 0.78;
  }

  .fabric-strip-one {
    width: 98vw;
    right: -46vw;
  }

  .fabric-strip-two {
    width: 94vw;
    left: -55vw;
  }

  .story-photo-card {
    display: none;
  }
}

@media (max-width: 460px) {
  .story-title {
    font-size: 2.72rem;
  }

  .story-card {
    min-height: 360px;
    padding: 22px;
  }

  .story-card h3 {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-light {
    display: none;
  }

  .story-cinema {
    min-height: auto;
  }

  .story-sticky {
    position: relative;
    min-height: auto;
  }

  .story-frame {
    min-height: auto;
  }

  .story-stack {
    height: auto;
    display: grid;
    gap: 14px;
  }

  .story-card,
  .story-card.before,
  .story-card.after,
  .story-card.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

/* Premium tech redesign overrides */

:root {
  --red: #df1f36;
  --red-dark: #931125;
  --red-soft: rgba(223, 31, 54, 0.1);
  --cream: #eadfce;
  --cream-light: #fbf5eb;
  --paper: #fffaf2;
  --sand: #d8c5aa;
  --clay: #9a7a63;
  --ink: #15100d;
  --ink-2: #241b16;
  --white: #ffffff;
  --muted: rgba(21, 16, 13, 0.62);
  --muted-strong: rgba(21, 16, 13, 0.78);
  --muted-invert: rgba(255, 255, 255, 0.7);
  --line: rgba(71, 51, 38, 0.12);
  --line-strong: rgba(71, 51, 38, 0.2);
  --line-invert: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 250, 242, 0.74);
  --glass-strong: rgba(255, 250, 242, 0.92);
  --shadow-soft: 0 24px 80px rgba(86, 61, 41, 0.11);
  --shadow-deep: 0 42px 120px rgba(31, 21, 15, 0.28);
  --shadow-red: 0 20px 56px rgba(223, 31, 54, 0.24);
  --radius: 8px;
  --max: 1180px;
  --wide: 1360px;
}

body,
body * {
  letter-spacing: 0 !important;
}

body {
  color: var(--ink);
  background:
    linear-gradient(118deg, rgba(223, 31, 54, 0.055), transparent 32%),
    linear-gradient(180deg, #fff8ed 0%, #eadfce 46%, #fbf5eb 100%);
  font-family: "SF Pro Text", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  background:
    linear-gradient(90deg, rgba(72, 51, 38, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(72, 51, 38, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 70%);
}

.soft-noise {
  opacity: 0.018;
  mix-blend-mode: multiply;
}

.cursor-light,
.hero-light,
.story-spotlight {
  display: none;
}

.page-progress {
  height: 2px;
  background: linear-gradient(90deg, var(--ink), var(--red));
  box-shadow: none;
}

.site-header {
  top: 16px;
  height: 64px;
  padding: 0 10px 0 14px;
  border-color: rgba(75, 53, 40, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 18px 60px rgba(86, 61, 41, 0.11);
}

.site-header.scrolled {
  background: rgba(255, 250, 242, 0.95);
  border-color: rgba(75, 53, 40, 0.16);
  box-shadow: 0 20px 70px rgba(86, 61, 41, 0.15);
}

.brand {
  gap: 10px;
  align-items: flex-end;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 820;
}

.brand-mark,
.feed-brand img {
  background: var(--red);
  clip-path: inset(5% round 7px);
  box-shadow: 0 12px 30px rgba(227, 34, 63, 0.22);
}

.brand .brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  clip-path: none;
  box-shadow: none;
}

.brand-text {
  display: block;
  width: 92px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.site-header {
  height: 78px;
  padding-left: 18px;
}

.footer .brand {
  gap: 12px;
}

.desktop-nav {
  gap: 22px;
  color: rgba(55, 39, 30, 0.62);
  font-size: 0.86rem;
  font-weight: 680;
}

.desktop-nav a::after {
  bottom: 2px;
  background: var(--ink);
}

.header-cta,
.button,
.store-button,
.signup-form button,
.menu-toggle,
.mobile-nav,
.mobile-nav a {
  border-radius: 8px;
}

.header-cta {
  min-height: 42px;
  padding: 0 16px;
  background: var(--ink);
  font-weight: 760;
  box-shadow: 0 16px 44px rgba(9, 12, 18, 0.16);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red);
}

.menu-toggle {
  background: rgba(72, 51, 38, 0.08);
}

.mobile-nav {
  border-color: rgba(72, 51, 38, 0.12);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow-soft);
}

.mobile-download {
  background: var(--ink);
}

.section {
  padding: 118px 0;
}

.hero {
  width: min(calc(100% - 32px), var(--wide));
  min-height: 92svh;
  padding: 148px 0 76px;
}

.hero-grid {
  inset: 106px 0 28px;
  border-color: rgba(72, 51, 38, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(94, 67, 49, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(94, 67, 49, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 250, 242, 0.42), rgba(216, 197, 170, 0.22));
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, black 0%, black 56%, transparent 86%);
}

.hero-scanline {
  display: none;
}

.hero-copy {
  width: min(720px, calc(100% - 490px));
  padding: 42px 0 38px;
}

.eyebrow {
  gap: 8px;
  color: rgba(75, 53, 40, 0.62);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--red);
  box-shadow: none;
}

.hero-title,
.section-title,
.download-title,
.story-title,
.story-card h3 {
  font-family: "SF Pro Display", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-title {
  max-width: 740px;
  margin-top: 20px;
  font-size: 6.45rem;
  line-height: 0.94;
}

.hero-subtitle {
  max-width: 590px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.62;
}

.button {
  min-height: 54px;
  padding: 0 20px;
  font-weight: 780;
}

.button:hover,
.button:focus-visible,
.store-button:hover,
.store-button:focus-visible,
.interface-panel:hover,
.rating-benefits article:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(9, 12, 18, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red);
}

.button-secondary {
  border-color: rgba(75, 53, 40, 0.14);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 16px 44px rgba(86, 61, 41, 0.1);
}

.hero-signals {
  width: min(620px, 100%);
  margin-top: 44px;
}

.hero-signals div {
  min-height: 104px;
  border-color: rgba(75, 53, 40, 0.12);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 16px 50px rgba(86, 61, 41, 0.08);
}

.hero-signals strong {
  font-size: 1.45rem;
  font-weight: 820;
}

.product-stage {
  top: 126px;
  right: 0;
  width: 460px;
}

.device-shadow {
  background: rgba(9, 12, 18, 0.18);
  filter: blur(22px);
}

.phone-shell {
  border-color: rgba(75, 53, 40, 0.18);
  background:
    linear-gradient(145deg, #fffaf2, #d9c8af),
    var(--paper);
  box-shadow:
    0 44px 116px rgba(70, 48, 34, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transform: rotateX(3deg) rotateY(-7deg) rotateZ(1deg);
}

.phone-hardware {
  background: linear-gradient(180deg, #171d27, #05070b);
}

.app-feed {
  background:
    linear-gradient(180deg, rgba(21, 16, 13, 0.08), rgba(21, 16, 13, 0.72)),
    linear-gradient(145deg, #e7d4b7 0%, #92725c 45%, #201712 100%);
}

.app-feed::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 30%, rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 6px);
}

.status-bar > span {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(6, 10, 18, 0.12);
}

.status-bar div {
  color: white;
}

.status-bar i {
  background: white;
}

.status-bar em {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: transparent;
  color: white;
}

.feed-topbar,
.caption-panel,
.rate-dock,
.side-actions button,
.app-bottom-nav button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(27, 18, 14, 0.48);
}

.feed-topbar,
.caption-panel,
.rate-dock {
  border-radius: 8px;
}

.video-frame::before {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.14) 49% 50%, transparent 51%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%);
}

.video-lines {
  opacity: 0.28;
}

.floor-grid {
  background:
    linear-gradient(180deg, rgba(9, 12, 18, 0.03), rgba(9, 12, 18, 0.64)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 52px);
}

.floating-tag {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 18, 0.48);
  font-weight: 720;
  animation-duration: 5.8s;
}

.stage-chip,
.brand-rail {
  border-color: rgba(75, 53, 40, 0.12);
  background: rgba(255, 250, 242, 0.84);
  box-shadow: var(--shadow-soft);
}

.stage-chip {
  animation-duration: 6s;
}

.brand-rail {
  color: rgba(75, 53, 40, 0.56);
  font-size: 0.76rem;
  font-weight: 760;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(232, 218, 196, 0.72));
}

.section-title,
.download-title {
  margin-top: 16px;
  font-size: 4.25rem;
  line-height: 1;
}

.section-heading > p:not(.eyebrow),
.split-copy > p,
.rating-copy > p,
.download-inner > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.benefit-card,
.interface-panel,
.rating-benefits article,
.flow-step,
.marketplace-grid article,
.faq-list {
  border-color: rgba(75, 53, 40, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 18px 60px rgba(86, 61, 41, 0.08);
  backdrop-filter: none;
}

.benefit-card span,
.rating-benefits span,
.flow-step span {
  background: rgba(227, 34, 63, 0.08);
  color: var(--red);
  font-weight: 800;
}

.benefit-card h3,
.interface-panel h3,
.rating-benefits h3,
.flow-step h3 {
  color: var(--ink);
  font-weight: 760;
}

.interface-panel,
.rating-benefits article {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.interface-panel:hover,
.rating-benefits article:hover {
  border-color: rgba(227, 34, 63, 0.24);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(86, 61, 41, 0.12);
}

.panel-screen {
  border-radius: 8px;
}

.feed-panel {
  background:
    linear-gradient(180deg, transparent, rgba(9, 12, 18, 0.78)),
    linear-gradient(135deg, #f0dfc4, #92715a 52%, var(--red));
}

.rating-panel {
  background:
    linear-gradient(145deg, #fffaf2, #e1cfb4);
  color: var(--ink);
}

.rating-panel strong {
  color: var(--red);
  font-weight: 820;
}

.commerce-panel {
  background:
    linear-gradient(145deg, rgba(25, 17, 13, 0.96), rgba(60, 42, 31, 0.92)),
    var(--ink);
}

.rating-console {
  border-color: rgba(75, 53, 40, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.94), rgba(234, 223, 206, 0.84));
  box-shadow: 0 28px 90px rgba(86, 61, 41, 0.13);
}

.rating-console::before {
  background:
    linear-gradient(90deg, transparent, rgba(227, 34, 63, 0.055), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 44%);
}

.console-top span,
.marketplace-grid small,
.like-vs-rating small,
.rate-dock span,
.side-actions small,
.stage-chip span {
  font-weight: 720;
}

.console-top strong {
  color: var(--red);
  font-weight: 800;
}

.score-orb {
  border-radius: 8px;
  background:
    conic-gradient(var(--red) 0 324deg, rgba(9, 12, 18, 0.08) 324deg 360deg);
  box-shadow: inset 0 0 0 1px rgba(9, 12, 18, 0.08);
}

.score-orb span {
  color: var(--ink);
  text-shadow: none;
}

.rating-meter {
  background: rgba(9, 12, 18, 0.08);
}

.rating-meter-fill {
  background: linear-gradient(90deg, var(--ink), var(--red));
  box-shadow: none;
}

.rating-buttons button {
  border-color: rgba(9, 12, 18, 0.1);
  background: #ffffff;
  color: rgba(9, 12, 18, 0.66);
}

.rating-buttons button:hover,
.rating-buttons button:focus-visible,
.rating-buttons button.active {
  border-color: var(--red);
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 36px rgba(9, 12, 18, 0.16);
}

.rating-insight {
  border-color: rgba(227, 34, 63, 0.16);
  background: rgba(227, 34, 63, 0.06);
  color: var(--muted-strong);
}

.like-vs-rating article {
  background: var(--ink);
}

.like-vs-rating article:nth-child(2) {
  background: linear-gradient(135deg, #161d28, var(--red));
}

.secondhand::before {
  background:
    linear-gradient(135deg, rgba(25, 17, 13, 0.98), rgba(62, 43, 32, 0.96)),
    var(--ink);
}

.flow-step {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.flow-step h3 {
  color: white;
}

.flow-step-active {
  background:
    linear-gradient(135deg, rgba(227, 34, 63, 0.92), rgba(17, 24, 39, 0.9)),
    var(--red);
  box-shadow: 0 30px 86px rgba(227, 34, 63, 0.22);
}

.marketplace-grid article {
  background: rgba(255, 250, 242, 0.94);
}

.marketplace-grid span {
  color: var(--red);
}

.faq-item button {
  color: var(--ink);
  font-weight: 760;
}

.faq-item button span {
  background: rgba(227, 34, 63, 0.08);
  color: var(--red);
}

.download-inner {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 17, 13, 0.98), rgba(75, 53, 40, 0.94) 58%, rgba(223, 31, 54, 0.9)),
    var(--ink);
}

.download-inner::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  opacity: 0.28;
}

.download-inner .eyebrow,
.download-inner > p {
  color: rgba(255, 255, 255, 0.72);
}

.store-button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.store-button > span {
  border-radius: 8px;
  color: var(--ink);
}

.signup-form > div {
  border-radius: 8px;
}

.signup-form button {
  color: var(--ink);
}

.signup-form button:hover,
.signup-form button:focus-visible {
  background: var(--cream-light);
}

.footer {
  color: rgba(75, 53, 40, 0.58);
}

.story-cinema {
  --story-accent: var(--red);
  --story-accent-soft: rgba(223, 31, 54, 0.2);
  background: var(--ink);
}

.story-backdrop {
  background:
    radial-gradient(circle at var(--story-light-x) var(--story-light-y), rgba(255, 246, 231, 0.24), transparent 25%),
    linear-gradient(135deg, #17100c, #342419 58%, #120c09);
}

.story-editorial-grid {
  opacity: 0.22;
}

.fabric-strip {
  opacity: 0.2;
  filter: blur(0.2px);
  background: linear-gradient(90deg, transparent, rgba(234, 223, 206, 0.32), rgba(223, 31, 54, 0.18), transparent);
}

.story-photo-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.16), rgba(21, 16, 13, 0.22)),
    linear-gradient(135deg, rgba(216, 197, 170, 0.26), rgba(223, 31, 54, 0.2));
  opacity: 0.24;
}

.story-bg-caption {
  color: rgba(255, 255, 255, 0.08);
  font-weight: 820;
}

.story-title {
  font-size: 5.6rem;
  line-height: 0.98;
}

.story-progress-shell {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.story-mini-nav span {
  border-radius: 8px;
}

.story-mini-nav span.active {
  background: var(--red);
}

.story-card {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.13), rgba(255, 250, 242, 0.06)),
    rgba(255, 250, 242, 0.06);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.34);
}

.story-card::before {
  background: linear-gradient(135deg, transparent, var(--story-accent-soft));
  opacity: 0.55;
}

.story-card::after {
  color: rgba(255, 255, 255, 0.045);
  font-weight: 820;
}

.story-card.active {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 52px 140px rgba(0, 0, 0, 0.4);
}

.story-card h3 {
  max-width: 760px;
  font-size: 4.25rem;
  line-height: 1;
}

.story-cinema[data-story-theme="idea"] {
  --story-accent: #df1f36;
  --story-accent-soft: rgba(223, 31, 54, 0.24);
}

.story-cinema[data-story-theme="problem"] {
  --story-accent: #f25565;
  --story-accent-soft: rgba(242, 85, 101, 0.22);
}

.story-cinema[data-story-theme="build"] {
  --story-accent: #d8c5aa;
  --story-accent-soft: rgba(216, 197, 170, 0.3);
}

.story-cinema[data-story-theme="launch"] {
  --story-accent: #fff0dc;
  --story-accent-soft: rgba(255, 240, 220, 0.24);
}

.story-cinema[data-story-theme="availability"] {
  --story-accent: #df1f36;
  --story-accent-soft: rgba(223, 31, 54, 0.3);
}

@media (max-width: 1180px) {
  .hero-title {
    font-size: 5.7rem;
  }

  .hero-copy {
    width: min(690px, calc(100% - 410px));
  }

  .product-stage {
    right: -28px;
    transform: scale(0.92);
    transform-origin: top right;
  }

  .section-title,
  .download-title {
    font-size: 3.85rem;
  }

  .story-title {
    font-size: 4.7rem;
  }

  .story-card h3 {
    font-size: 4rem;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-copy {
    width: 100%;
    max-width: 760px;
  }

  .product-stage {
    position: relative;
    top: auto;
    right: auto;
    width: min(480px, 100%);
    min-height: 755px;
    margin: 28px auto 0;
    transform: none;
  }

  .phone-shell {
    transform: rotateX(3deg) rotateY(-5deg) rotateZ(1deg);
  }

  .story-title {
    font-size: 4.25rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .section {
    padding: 86px 0;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .hero-title {
    font-size: 3.85rem;
    line-height: 0.98;
  }

  .hero-subtitle,
  .section-heading > p:not(.eyebrow),
  .split-copy > p,
  .rating-copy > p,
  .download-inner > p {
    font-size: 1rem;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .product-stage {
    min-height: 710px;
  }

  .section-title,
  .download-title {
    font-size: 2.85rem;
    line-height: 1.02;
  }

  .story-title {
    font-size: 2.95rem;
    line-height: 1.02;
  }

  .story-card h3 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .story-frame {
    padding: 84px 0;
  }

  .story-bg-caption {
    opacity: 0.28;
  }

}

@media (max-width: 460px) {
  .hero-title {
    font-size: 3.08rem;
  }

  .section-title,
  .download-title {
    font-size: 2.35rem;
  }

  .story-title {
    font-size: 2.5rem;
  }

  .story-card h3 {
    font-size: 2rem;
  }
}

/* Story headings need one shared size across all cards, with enough room for long launch copy. */
.story-card h3 {
  max-width: min(820px, 100%);
  font-size: clamp(2.15rem, 2.65vw, 3.05rem);
  line-height: 1.08;
}

@media (max-width: 720px) {
  .story-card h3 {
    font-size: clamp(1.55rem, 5vw, 1.82rem);
    line-height: 1.1;
  }
}

@media (max-width: 460px) {
  .story-card h3 {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-cinema {
    min-height: auto !important;
  }

  .story-sticky {
    position: relative !important;
    min-height: auto !important;
  }

  .story-frame {
    min-height: auto !important;
  }

  .story-stack {
    height: auto !important;
    display: grid !important;
    gap: 14px !important;
  }

  .story-card,
  .story-card.before,
  .story-card.after,
  .story-card.active {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}

/* Keep the sticky story scene inside common laptop and browser-window heights. */
@media (min-width: 721px) and (max-height: 1200px) {
  .story-frame {
    height: 100svh;
    min-height: 100svh;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(34px, 4vw, 52px);
    padding-top: clamp(86px, 9svh, 106px);
    padding-bottom: clamp(26px, 4.5svh, 52px);
  }

  .story-title {
    margin-top: 14px;
    font-size: clamp(3.15rem, 4.9vw, 5rem);
    line-height: 0.96;
  }

  .story-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: clamp(0.94rem, 1.12vw, 1.02rem);
    line-height: 1.62;
  }

  .story-progress-shell {
    gap: 12px;
    margin-top: clamp(20px, 3svh, 30px);
    padding: 14px 16px;
  }

  .story-mini-nav {
    display: none;
  }

  .story-stack {
    height: min(56svh, 540px);
    min-height: min(390px, calc(100svh - 170px));
  }

  .story-card {
    padding: clamp(22px, 3.2vw, 40px);
  }

  .story-card p {
    margin-top: 18px;
    font-size: clamp(0.94rem, 1.08vw, 1rem);
    line-height: 1.62;
  }
}

@media (min-width: 721px) and (max-height: 760px) {
  .story-frame {
    padding-top: clamp(78px, 11svh, 90px);
    padding-bottom: 22px;
  }

  .story-title {
    font-size: clamp(2.85rem, 4.35vw, 4.2rem);
  }

  .story-copy > p:not(.eyebrow),
  .story-card p {
    line-height: 1.52;
  }

  .story-stack {
    height: min(52svh, 480px);
    min-height: min(340px, calc(100svh - 150px));
  }
}

/* Language switcher */
.eyebrow b,
.button b,
.faq-item button b {
  font: inherit;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(75, 53, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.language-option {
  min-width: 48px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(75, 53, 40, 0.66);
  font-size: 0.74rem;
  font-weight: 820;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--ink);
  background: rgba(21, 16, 13, 0.06);
}

.language-option.active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(9, 12, 18, 0.14);
}

.mobile-language-switcher {
  width: 100%;
  justify-content: stretch;
  margin-bottom: 4px;
  background: rgba(255, 255, 255, 0.58);
}

.mobile-language-switcher .language-option {
  flex: 1;
  min-height: 42px;
}

@media (max-width: 1180px) {
  .site-header > .language-switcher {
    min-height: 36px;
  }

  .site-header > .language-switcher .language-option {
    min-width: 44px;
    gap: 4px;
  }
}

@media (max-width: 1080px) {
  .site-header > .language-switcher {
    display: none;
  }
}

@media (max-width: 390px) {
  .mobile-language-switcher .language-option span[aria-hidden="true"] {
    display: none;
  }
}

/* Beta campaign */
.campaign-hero .hero-copy {
  width: min(700px, calc(100% - 500px));
}

.campaign-hero .hero-title {
  max-width: 720px;
  font-size: clamp(4.8rem, 6.7vw, 6.35rem);
  line-height: 0.95;
}

.campaign-badge {
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(223, 31, 54, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 31, 54, 0.14), rgba(255, 250, 242, 0.82)),
    rgba(255, 250, 242, 0.86);
  color: var(--red);
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  font-weight: 860;
  box-shadow: 0 18px 54px rgba(86, 61, 41, 0.1);
}

.testflight-note {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(75, 53, 40, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.testflight-note a {
  color: var(--red);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.campaign-overview.hero-signals {
  width: min(690px, 100%);
  margin-top: 30px;
}

.campaign-overview div {
  min-height: 128px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(234, 223, 206, 0.74)),
    rgba(255, 250, 242, 0.84);
}

.campaign-overview strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.campaign-overview span {
  margin-top: 14px;
  font-size: 0.9rem;
}

.campaign-steps {
  position: relative;
  padding-top: 78px;
}

.campaign-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 48px;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  z-index: -1;
  background:
    linear-gradient(118deg, rgba(223, 31, 54, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.2), rgba(255, 255, 255, 0));
}

.campaign-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.campaign-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.campaign-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.campaign-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(75, 53, 40, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.94), rgba(234, 223, 206, 0.72));
  box-shadow: 0 20px 70px rgba(86, 61, 41, 0.1);
}

.campaign-step-wide,
.campaign-step-final {
  grid-column: span 3;
  min-height: auto;
}

.campaign-step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(223, 31, 54, 0.09);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 860;
}

.campaign-step h3 {
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.12;
  font-weight: 820;
}

.campaign-step p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.campaign-step-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(75, 53, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  color: var(--ink);
  font-weight: 820;
  box-shadow: 0 14px 40px rgba(86, 61, 41, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.campaign-step-link:hover,
.campaign-step-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(223, 31, 54, 0.26);
  background: var(--ink);
  color: var(--white);
}

.campaign-step-link-primary {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(9, 12, 18, 0.16);
}

.campaign-step-link-primary:hover,
.campaign-step-link-primary:focus-visible {
  background: var(--red);
}

.campaign-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.campaign-checklist li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(75, 53, 40, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.campaign-checklist li > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
}

.campaign-checklist li > span::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.campaign-checklist p {
  margin-top: 0;
  color: var(--ink);
}

.campaign-checklist strong {
  font-weight: 860;
}

.campaign-payment-note {
  max-width: 620px;
  font-size: 0.94rem;
}

.download-form-button {
  color: var(--ink);
}

.real-app-shell {
  overflow: hidden;
  animation: appScreenshotFloat 5.8s ease-in-out infinite alternate;
}

.real-app-shell::after {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 4;
  pointer-events: none;
  border-radius: 43px;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.28), transparent 24%, transparent 68%, rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 22%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 6px);
  mix-blend-mode: soft-light;
}

.app-screenshot-screen {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 244, 224, 0.12), transparent 38%),
    #15100e;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 -30px 70px rgba(0, 0, 0, 0.24);
}

.app-screenshot-screen::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background: url("assets/redress-app-screenshot.png") center / cover no-repeat;
  filter: blur(18px) saturate(1.08);
  opacity: 0.34;
  transform: scale(1.04);
}

.app-screenshot {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

@keyframes appScreenshotFloat {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -9px;
  }
}

@media (max-width: 1180px) {
  .campaign-hero .hero-copy {
    width: min(650px, calc(100% - 410px));
  }

  .campaign-hero .hero-title {
    font-size: clamp(4.2rem, 5.6vw, 5.35rem);
  }

  .campaign-overview.hero-signals {
    width: min(620px, 100%);
  }
}

@media (max-width: 1080px) {
  .campaign-hero .hero-copy {
    width: 100%;
    max-width: 760px;
  }

  .campaign-hero .hero-title {
    font-size: clamp(4rem, 8vw, 5rem);
  }

  .campaign-hero .product-stage {
    display: none;
  }

  .campaign-guide {
    grid-template-columns: 1fr 1fr;
  }

  .campaign-step-wide,
  .campaign-step-final {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .campaign-hero {
    padding-top: 96px;
  }

  .campaign-hero .hero-title {
    font-size: clamp(2.88rem, 10.6vw, 4.05rem);
    line-height: 0.98;
  }

  .campaign-hero .hero-subtitle {
    margin-top: 18px;
    line-height: 1.58;
  }

  .campaign-badge {
    margin-top: 14px;
    font-size: 1rem;
  }

  .campaign-hero .hero-actions {
    margin-top: 24px;
  }

  .testflight-note {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .campaign-overview.hero-signals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .campaign-overview div {
    min-height: auto;
    gap: 8px;
    padding: 14px;
  }

  .campaign-overview span {
    margin-top: 0;
  }

  .campaign-steps {
    padding-top: 70px;
  }

  .campaign-heading {
    margin-bottom: 28px;
  }

  .campaign-guide {
    grid-template-columns: 1fr;
  }

  .campaign-step,
  .campaign-step-wide,
  .campaign-step-final {
    grid-column: auto;
  }

  .campaign-step {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .campaign-checklist {
    grid-template-columns: 1fr;
  }

  .campaign-step-link {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .campaign-hero {
    padding-top: 90px;
  }

  .campaign-hero .hero-title {
    font-size: clamp(2.42rem, 11vw, 3.05rem);
  }

  .campaign-hero .hero-copy {
    padding-top: 28px;
  }

  .campaign-badge {
    padding: 9px 12px;
  }

  .campaign-step {
    padding: 16px;
  }

  .campaign-checklist li {
    min-height: auto;
    padding: 12px;
  }
}
