@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;700;900&display=swap');

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --text: #1d1d1d;
  --text-white: #ffffff;
  --stroke-white: #ffffff;
  --bg-black: #1d1d1d;
  --bg-white: #ffffff;

  --pink: #fb7ba9;
  --pink-mid: #ff71aa;
  --pink-dark: #ca5580;
  --pink-badge: #f46799;
  --pink-pale: #ffd5e6;
  --pink-lightest: #ffeaf2;
  --pink-tag-text: #5f283b;
  --pink-glow: rgba(253, 181, 207, 0.2);

  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-nav: 'Gilroy', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Gabarito', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --ease-out-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  background: var(--bg-white);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  min-width: 320px;
}

img {
  display: block;
  max-width: none;
}

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

.page {
  position: relative;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
}

.page__top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1192px;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.page-content {
  position: relative;
  z-index: 1;
  padding-top: 190px;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 81px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8.9px);
  -webkit-backdrop-filter: blur(8.9px);
  z-index: 100;
}

.nav__inner {
  width: 100%;
  max-width: 1512px;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  transition: opacity 180ms var(--ease-standard);
}

.back-link:hover {
  opacity: 0.6;
}

.back-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: transform 180ms var(--ease-standard);
}

.back-link:hover img {
  transform: translateX(-2px);
}

.nav__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 773.5px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo img {
  width: 40px;
  height: 40px;
}

.nav__logo span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21.333px;
  letter-spacing: -0.235px;
  color: var(--text);
  line-height: 1.5;
}

.nav__profile {
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  text-align: right;
  line-height: 1.35;
}

/* ---------- Shared components ---------- */

.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 64px;
  background: var(--pink-lightest);
  color: var(--pink-badge);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.176px;
  flex-shrink: 0;
}

.tag-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--pink-dark);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.176px;
  white-space: nowrap;
}

.tag-label--bright {
  background: var(--pink-mid);
}

.pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--pink-dark);
  border-radius: 96px;
  color: var(--pink-tag-text);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.154px;
  white-space: nowrap;
}

.pill-outline--white {
  border-color: var(--stroke-white);
  color: var(--text-white);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.154px;
  white-space: nowrap;
}

.feature-pill--pro {
  background: var(--pink-mid);
  color: var(--text-white);
}

.feature-pill--con {
  background: var(--pink-pale);
  color: var(--text);
}

.feature-pill img {
  width: 24px;
  height: 24px;
  object-fit: none;
}

.characteristic-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--pink-mid);
  color: var(--pink-tag-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.154px;
  white-space: nowrap;
}

.eyebrow-heading {
  font-weight: 300;
  font-size: 44px;
  line-height: 48px;
  color: var(--text);
  opacity: 0.4;
}

.eyebrow-heading--white {
  color: var(--text-white);
  opacity: 0.4;
}

/* ---------- Section 00: Hero ---------- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding: clamp(40px, 5vw, 72px);
}

.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 903px;
  text-align: center;
}

.hero__heading {
  font-weight: 500;
  font-size: clamp(46px, 4vw + 6px, 64px);
  line-height: 1.0625;
  letter-spacing: -1.088px;
  color: var(--text);
}

.hero__subheading {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.176px;
  color: var(--text);
  opacity: 0.4;
}

.hero__panel {
  position: relative;
  width: 100%;
  height: 660px;
  border-radius: 16px;
  background: var(--bg-white);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  filter: blur(60px);
  pointer-events: none;
}

.hero__blob--1 {
  width: 900px;
  height: 900px;
  left: -220px;
  top: -320px;
  background: radial-gradient(circle, rgba(255, 197, 220, 0.9) 0%, rgba(255, 197, 220, 0) 70%);
}

.hero__blob--2 {
  width: 780px;
  height: 780px;
  right: -180px;
  top: -300px;
  background: radial-gradient(circle, rgba(255, 235, 243, 0.95) 0%, rgba(255, 235, 243, 0) 70%);
}

.hero__blob--3 {
  width: 760px;
  height: 900px;
  left: 90px;
  top: -80px;
  background: radial-gradient(circle, rgba(255, 209, 227, 0.8) 0%, rgba(255, 209, 227, 0) 70%);
}

.hero__blob--4 {
  width: 900px;
  height: 900px;
  right: -180px;
  bottom: -420px;
  background: radial-gradient(circle, rgba(251, 123, 169, 0.55) 0%, rgba(251, 123, 169, 0) 70%);
}

.hero__side-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: clamp(20px, 4.3vw - 24.032px, 40px);
  line-height: normal;
  letter-spacing: -0.68px;
  color: var(--text);
  z-index: 2;
}

.hero__side-text--left {
  left: 116px;
  top: 138px;
}

.hero__side-text--right {
  right: 116px;
  top: calc(50% + 80px);
  transform: translateY(-50%);
  text-align: right;
}

.hero__side-text span.dim {
  color: rgba(29, 29, 29, 0.5);
}

.hero__phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 238px;
  min-width: 238px;
  max-width: 238px;
  height: 494px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 3;
  touch-action: none;
}

.hero__phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__phone .cocoen-drag::before,
.hero__phone .cocoen-drag::after {
  display: none;
}

.hero__phone .hero__chevron {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: ew-resize;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 180ms var(--ease-standard);
}

.hero__phone .hero__chevron::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 20px;
  border-radius: 8px;
  background: var(--pink);
  transform: translate(-50%, -50%);
}

.hero__phone .hero__chevron img {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  object-fit: none;
  pointer-events: none;
}

.hero__phone .hero__chevron img:first-child {
  transform: rotate(180deg);
  margin-right: -8px;
}

/* ---------- Summary ---------- */

.summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(40px, 5vw, 72px);
}

.summary__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 571px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.176px;
  font-weight: 400;
}

.summary__info b {
  font-weight: 700;
}

.summary__lead {
  font-weight: 300;
  font-size: 44px;
  line-height: 48px;
  color: var(--text);
  opacity: 0.4;
}

/* ---------- Generic gradient section wrapper ---------- */

.section {
  position: relative;
  padding: clamp(40px, 5vw, 72px);
}

.section--gradient {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--pink-glow) 56.28%, rgba(251, 123, 169, 0) 100%);
}

.section--dark {
  background-color: var(--bg-black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.9569 0 0 0 0 0.4039 0 0 0 0 0.6 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ---------- 01 Challenge ---------- */

.challenge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.challenge > .section-header {
  align-self: flex-start;
}

.challenge__icon-wrap {
  position: relative;
  width: 136px;
  height: 136px;
  filter: drop-shadow(0px 8px 3.4px rgba(0, 0, 0, 0.1));
}

.challenge__icon {
  width: 136px;
  height: 136px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(175.77deg, rgb(53, 53, 53) 1%, rgb(0, 1, 0) 97%);
}

.challenge__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.challenge__badge {
  position: absolute;
  right: -19px;
  top: -12px;
  width: 31px;
  height: 31px;
  border-radius: 79px;
  background: red;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 19.84px;
}

.challenge__text {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.264px;
  width: 100%;
  max-width: 714px;
  color: var(--text);
}

.challenge__text b {
  font-weight: 700;
}

.sprint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.sprint__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.sprint__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sprint__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 64px;
  background: var(--pink-pale);
  color: #a24467;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.22px;
}

.sprint__step-title {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.176px;
  max-width: 160px;
}

.challenge__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 152px;
  width: 100%;
}

.challenge__quote p {
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.176px;
  width: 100%;
  max-width: 512px;
}

/* ---------- 02 Competitor analysis intro ---------- */

.comp-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-intro__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 16px;
}

.comp-intro__copy {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.22px;
  flex: 0 1 550px;
  min-width: 0;
}

.comp-intro__sticker {
  flex-shrink: 0;
}

.comp-intro__copy b {
  font-weight: 700;
}

.comp-intro__sticker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comp-intro__sticker-img {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  transform: rotate(15deg);
  box-shadow: 2px 4px 4.8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-bottom: 20px;
}

.comp-intro__caption {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.comp-intro__caption span {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.264px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.comp-intro__caption img {
  height: 56px;
  margin-left: -12px;
}

/* ---------- Competitor search collage ---------- */

.comp-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 59px;
}

.comp-search__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 1 502px;
  min-width: 0;
}

.comp-search__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.396px;
}

.comp-search__copy {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.22px;
}

.comp-search__collage {
  position: relative;
  flex: 0 1 654px;
  min-width: 0;
  max-width: 654px;
  aspect-ratio: 654 / 648;
}

.comp-search__collage img.comp-search__grid-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comp-search__sticker {
  position: absolute;
  width: 14.679%;
  height: 14.815%;
  border-radius: 28px;
  box-shadow: 2px 4px 4.5px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.comp-search__magnifier {
  position: absolute;
  left: 2.905%;
  top: 10.031%;
  width: 50.765%;
  height: 50.547%;
  overflow: hidden;
}

.comp-search__magnifier img {
  position: absolute;
  left: -27.63%;
  top: -68.29%;
  width: 155.57%;
  height: 236.59%;
  max-width: none;
}

/* ---------- Audience-without-interviews ---------- */

.audience-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 112px;
}

.audience-intro__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
  max-width: 502px;
}

.audience-intro__header h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.396px;
}

.audience-intro__header p {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.176px;
}

.audience-intro__blocks {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.audience-intro__block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}

.audience-intro__block p {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.176px;
  max-width: 290px;
}

/* ---------- Competitor Info ---------- */

.competitor-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 112px;
  overflow: hidden;
}

.competitor-info__glow {
  position: absolute;
  left: -8%;
  top: 200px;
  width: 116%;
  z-index: 0;
}

.competitor-info__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.icon-row {
  display: flex;
  align-items: center;
}

.icon-row img {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  box-shadow: 2px 4px 4.5px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-right: -24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-row img:last-child {
  margin-right: 0;
}

.icon-row img:nth-child(1) { transform: rotate(15deg); }
.icon-row img:nth-child(2) { transform: rotate(-7.81deg); }
.icon-row img:nth-child(3) { transform: rotate(15deg); border: none; }
.icon-row img:nth-child(4) { transform: rotate(-13.97deg); border: none; }
.icon-row img:nth-child(5) { transform: rotate(-3.8deg); border: none; }

.competitor-info__caption {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.264px;
}

.competitor {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(32px, 8vw, 103px);
  width: 100%;
  z-index: 1;
}

.competitor__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 0 1 496px;
  min-width: 0;
}

.competitor__shots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.competitor__shots img {
  flex: 0 1 150px;
  min-width: 0;
  max-width: 150px;
  aspect-ratio: 150 / 290;
  height: auto;
  border-radius: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.competitor__shots img:nth-child(1) { transform: rotate(-4.73deg); }
.competitor__shots img:nth-child(2) { transform: rotate(3.75deg); }
.competitor__shots img:nth-child(3) { transform: rotate(-5.64deg); margin-left: -20px; }
.competitor__shots img:nth-child(4) { transform: none; margin-left: -20px; }

.competitor__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 1 536px;
  min-width: 0;
}

.competitor__text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.competitor__text-section h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.396px;
}

.competitor__text-section p {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.22px;
}

.competitor__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Target audience (dark) ---------- */

.audience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.audience__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.audience__row > .audience__block {
  flex: 0 1 564px;
  min-width: 0;
}

.audience__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.audience__desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.audience__desc p {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.22px;
  color: var(--text-white);
  max-width: 461px;
}

.audience__desc p span.light {
  font-weight: 400;
}

.audience__characteristics h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.396px;
  color: var(--text-white);
  margin-bottom: 8px;
}

.audience__pill-box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  border: 1px dashed var(--pink-mid);
  border-radius: 28px;
}

.audience__pill-box--primary {
  width: 100%;
  max-width: 564px;
}

.audience__pill-box--secondary {
  width: 100%;
  max-width: 360px;
}

.audience__images {
  display: flex;
  align-items: center;
  gap: 61px;
  flex: 0 1 629px;
  min-width: 0;
}

.audience__images img {
  flex: 0 1 284px;
  min-width: 0;
  max-width: 284px;
  aspect-ratio: 284 / 426;
  height: auto;
  border: 12px solid var(--stroke-white);
  border-radius: 16px;
  object-fit: cover;
}

.audience__secondary-row {
  display: flex;
  align-items: center;
  gap: clamp(48px, 12vw, 175px);
  width: 100%;
}

.audience__secondary-image {
  margin-left: clamp(24px, 9vw, 138px);
  flex: 0 1 426px;
  min-width: 0;
}

.audience__secondary-row > .audience__block {
  flex: 0 1 360px;
  min-width: 0;
}

.audience__secondary-image img {
  width: 100%;
  max-width: 426px;
  aspect-ratio: 1 / 1;
  height: auto;
  border: 12px solid var(--stroke-white);
  border-radius: 16px;
  object-fit: cover;
}

.problems {
  display: flex;
  align-items: flex-start;
  gap: 72px;
  width: 100%;
}

.problems__title-col {
  position: relative;
  align-self: stretch;
  width: 230px;
  height: auto;
}

.problems__title {
  position: sticky;
  top: 40%;
  font-weight: 300;
  font-size: 64px;
  color: var(--text-white);
  white-space: nowrap;
}

.problems__list {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: auto;
  min-width: 0;
}

.problem-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.problem-row img {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  object-fit: contain;
}

.problem-row p {
  flex: 1;
  font-weight: 300;
  font-size: 44px;
  line-height: 48px;
  color: var(--text-white);
  opacity: 0.4;
}

.use-cases {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  padding: 32px 0;
}

.use-cases__intro {
  font-weight: 300;
  font-size: 44px;
  line-height: 48px;
  color: var(--text-white);
  width: 100%;
}

.use-cases__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 0 clamp(24px, 10vw, 120px);
}

.use-case {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.use-case p {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.176px;
  color: var(--text-white);
  max-width: 280px;
}

/* ---------- Design process ---------- */

.design-section {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.design-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.design-process {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}

.design-process__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 0;
  min-width: 0;
}

.design-process__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.design-process__text h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.396px;
  width: 100%;
  max-width: 445px;
}

.design-process__text p {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.22px;
  width: 100%;
  max-width: 502px;
}

.design-process__frd img {
  width: 100%;
  max-width: 556px;
  aspect-ratio: 556 / 372;
  height: auto;
  border: 12px solid var(--stroke-white);
  border-radius: 16px;
  object-fit: cover;
}

.moodboard {
  display: flex;
  align-items: center;
}

.moodboard img {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  box-shadow: 2px 4px 4.5px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-right: -24px;
}

.moodboard img:nth-child(1) { transform: rotate(15deg); }
.moodboard img:nth-child(2) { transform: rotate(-3.8deg); }
.moodboard img:nth-child(3) { transform: rotate(13.92deg); border: 1px solid rgba(0,0,0,0.05); }
.moodboard img:nth-child(4) { transform: rotate(-7.81deg); border: 1px solid rgba(0,0,0,0.05); margin-right: 0; }

.wireframes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1329px;
}

.wireframes__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.wireframes__header h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.396px;
  width: 100%;
  max-width: 579px;
}

.wireframes__header p {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.22px;
}

.wireframes__grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.wireframes__grid img {
  width: 148px;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0px 0px 8.4px rgba(0, 0, 0, 0.1);
}

.wireframes__figma-badge {
  position: relative;
  width: 108px;
  height: 108px;
  /* border-radius: 28px; */
  overflow: hidden;
  /* box-shadow: 2px 4px 4.8px rgba(0, 0, 0, 0.1); */
  transform: rotate(7.81deg);
  align-self: center;
}

.wireframes__figma-badge img {
  width: 100%;
  height: 100%;
  box-shadow: none;
  object-fit: contain;
}

/* ---------- Usability testing ---------- */

.usability-section {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.usability-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.usability-header p {
  font-weight: 300;
  font-size: 44px;
  line-height: 48px;
  color: var(--text);
  opacity: 0.4;
  width: 100%;
  max-width: 863px;
}

.usability-findings {
  position: relative;
  width: 100%;
}

.usability-findings__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 0;
}

.usability-findings__bg img {
  position: absolute;
  top: 0;
  width: 654px;
  height: 648px;
}

.usability-findings__bg img:first-child { left: 0; }
.usability-findings__bg img:last-child { right: 0; }

.usability-findings__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.usability-findings__text h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.396px;
  margin-bottom: 16px;
}

.usability-findings__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 498px;
}

.usability-findings__shots {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.usability-findings__shots img {
  border-radius: 16px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 886px;
  height: auto;
  object-fit: contain;
  object-position: top;
}

.usability-findings__shots-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.usability-findings__shots-row img {
  height: auto;
  object-position: bottom;
}

.redesign {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.redesign__desc {
  font-weight: 300;
  font-size: 44px;
  line-height: 48px;
  color: var(--text);
  opacity: 0.4;
  text-align: right;
  width: 100%;
}

.redesign__visuals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  padding: 0 clamp(16px, 6vw, 64px);
}

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

.redesign__pair img.shot {
  border-radius: 16px;
  flex: 0 1 148px;
  min-width: 0;
  max-width: 148px;
  aspect-ratio: 148 / 320;
  height: auto;
  object-fit: cover;
  box-shadow: 0px 0px 8.4px rgba(0, 0, 0, 0.1);
}

.redesign__pair img.arrow {
  width: 60px;
  height: 33px;
  flex-shrink: 0;
}

.redesign__single {
  flex: 0 1 148px;
  min-width: 0;
}

.redesign__single img {
  border-radius: 16px;
  width: 100%;
  max-width: 148px;
  aspect-ratio: 148 / 320;
  height: auto;
  object-fit: cover;
  box-shadow: 0px 0px 8.4px rgba(0, 0, 0, 0.1);
}

.redesign__quote {
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.22px;
}

/* ---------- Final ---------- */

.final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.final__text {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.264px;
  width: 100%;
  max-width: 752px;
}

.final__pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 602px;
}

.final__pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* ---------- Giant watermark ---------- */

.watermark {
  width: 100%;
  overflow: hidden;
}

.watermark span {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(300px, 32.17vw, 486.349px);
  line-height: 1.5;
  letter-spacing: -0.011em;
  color: #f8f8f8;
  white-space: nowrap;
  margin-left: -0.0165em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

@supports not (text-box-trim: trim-both) {
  .watermark span {
    line-height: 0.78;
    margin-top: -0.09em;
    margin-bottom: -0.13em;
  }
}

/* =========================================================
   Smaller-desktop breakpoint (1024–1151px).
   Below this, the two-column rows in §3 of the responsive
   plan can no longer stay side-by-side at a legible size —
   they switch to a stacked, still-desktop-styled column.
   Text stays before its visual, matching DOM order.
   ========================================================= */

@media (max-width: 1151px) {
  /* Stacked rows: every direct child below had `flex: 0 1 Xpx` as a
     WIDTH basis for row layout. In column layout that same basis
     would apply to height instead, so it's neutralized here — width
     is capped again with an explicit max-width (matching each
     element's original design width) so stacked text keeps a
     readable line length instead of stretching full-bleed. */

  .comp-search {
    flex-direction: column;
    align-items: center;
  }

  .comp-search__text {
    flex: 0 1 auto;
    width: 100%;
    max-width: 560px;
  }

  .comp-search__collage {
    flex: 0 1 auto;
    width: 100%;
  }

  .competitor {
    flex-direction: column;
    align-items: center;
  }

  .competitor__icons {
    flex: 0 1 auto;
    width: 100%;
    max-width: 496px;
  }

  .competitor__text {
    flex: 0 1 auto;
    width: 100%;
    max-width: 560px;
    align-items: center;
    text-align: center;
  }

  .competitor__text-section {
    align-items: center;
  }

  .competitor__features {
    justify-content: center;
  }

  .audience__row {
    flex-direction: column;
    align-items: center;
  }

  .audience__row > .audience__block {
    flex: 0 1 auto;
    width: 100%;
    max-width: 564px;
    align-items: center;
    text-align: center;
  }

  .audience__images {
    flex: 0 1 auto;
    width: 100%;
    max-width: 629px;
  }

  .audience__desc {
    align-items: center;
  }

  .audience__secondary-row {
    flex-direction: column;
    align-items: center;
  }

  .audience__secondary-image {
    flex: 0 1 auto;
    width: 100%;
    max-width: 426px;
    margin-left: 0;
  }

  .audience__secondary-row > .audience__block {
    flex: 0 1 auto;
    width: 100%;
    max-width: 400px;
    align-items: center;
    text-align: center;
  }

  .design-process {
    flex-direction: column;
    align-items: center;
  }

  .design-process__col {
    flex: 0 1 auto;
    width: 100%;
    max-width: 560px;
    align-items: center;
    text-align: center;
  }
}

/* =========================================================
   Mobile (390 / 375 / 360px). Desktop rules above (including
   the 1151px tier) are untouched — this is an additive layer.
   ========================================================= */

@media (max-width: 767px) {

  /* ---------- Foundation: gutters ---------- */

  .section,
  .hero,
  .summary {
    padding: clamp(32px, 9vw, 48px) clamp(16px, 5vw, 24px);
  }

  .hero {
    gap: clamp(28px, 7vw, 40px);
  }

  /* ---------- Nav ---------- */

  .nav__inner {
    padding: 14px clamp(16px, 5vw, 24px);
  }

  .nav__info {
    width: auto;
  }

  .nav__profile {
    display: none;
  }

  /* ---------- Hero ---------- */

  .hero__header {
    gap: 12px;
  }

  .hero__heading {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.15;
  }

  .hero__subheading {
    font-size: 14px;
  }

  /* .hero__panel {
    height: clamp(430px, 118vw, 470px);
  } */

  /* The desktop left/right side-texts don't fit beside a mobile-width
     phone. Consolidate to one caption (reusing the right-hand text —
     "Revamp. Reinvent. Looksy." — since it's the more compact of the
     two and the H1 already carries the fuller statement) centered
     below the phone, instead of duplicating content in HTML. */
  .hero__side-text--left {
    display: none;
  }

  .hero__side-text--right {
    left: 50%;
    right: auto;
    top: auto;
    bottom: clamp(16px, 5vw, 24px);
    transform: translateX(-50%);
    align-items: center;
    text-align: center;
    font-size: 16px;
  }

  .hero__phone {
    width: 238px;
    min-width: 238px;
    max-width: 238px;
    height: auto;
    aspect-ratio: 238 / 494;
  }

  /* ---------- Summary ---------- */

  .summary__lead {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.25;
  }

  /* ---------- 01 Challenge: sprint steps ---------- */

  .sprint__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .sprint__step {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .sprint__step-title {
    text-align: left;
    max-width: none;
  }
.comp-intro__caption {
  flex-direction: column;
}
  .challenge__text {
    font-size: 20px;
    line-height: 24px;
  }

  /* ---------- 02 Competitor analysis intro ---------- */

  .comp-intro__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .comp-intro__copy {
    flex: 0 1 auto;
    width: 100%;
    max-width: none;
  }

  .comp-intro__caption img {
    max-width: 300px;
    height: auto;
  }

  .eyebrow-heading {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.25;
  }

  /* ---------- Target Audience: intro blocks ---------- */

  .audience-intro__blocks {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .audience-intro__block {
    padding: 0;
  }

  .audience-intro__block p {
    max-width: none;
  }

  /* ---------- Target Audience: characteristics ---------- */

  .audience__characteristics {
    width: 100%;
  }

  .characteristic-pill {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  /* ---------- Target Audience: problems ---------- */

  .problems {
    flex-direction: column;
    gap: 24px;
  }

  .problems__title-col {
    width: 100%;
    height: auto;
  }

  .problems__title {
    position: static;
    font-size: clamp(32px, 10vw, 40px);
  }

  .problem-row {
    padding: 10px 0;
    gap: 12px;
  }

  .problem-row p {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.3;
  }

  /* ---------- Target Audience: use cases ---------- */

  .use-cases__row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0;
  }

  .use-case {
    width: 100%;
  }

  .use-cases__intro {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.25;
  }

  /* ---------- Usability: redesigned before/after ---------- */

  .redesign__visuals {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 28px;
  }

  .redesign__single {
    flex: 0 1 auto;
  }

  .redesign__pair img.shot,
  .redesign__single img {
    flex-basis: 116px;
    max-width: 116px;
  }

  .redesign__desc {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.25;
    text-align: left;
  }

  .usability-header p {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.25;
  }

  /* Decorative background blobs (654px source) would otherwise bleed
     past the viewport at mobile widths — contain, then shrink so the
     crop reads as an intentional smaller decoration. */
  .usability-findings {
    overflow: hidden;
  }

  .usability-findings__bg img {
    width: min(260px, 70vw);
    height: auto;
    aspect-ratio: 654 / 648;
  }

  /* ---------- Final: pills ---------- */
  /* .pill-outline is shared with short tag chips elsewhere (kept
     nowrap there); the Final section's longer quote-style pills need
     to wrap at mobile widths instead of forcing a single long line. */
  .final__pills-row .pill-outline {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  /* ---------- Watermark ---------- */
  /* Desktop's clamp() floor (300px) was tuned for the 1024px desktop
     floor and doesn't shrink further — needs its own mobile range so
     "Looksy" stays proportional instead of nearly filling the screen. */

  .watermark span {
    font-size: clamp(90px, 32vw, 150px);
  }
}

/* =========================================================
   Motion layer — additive only, no layout/visual changes.
   Hero: CSS-keyframe entrance on load.
   Everything else: IntersectionObserver-driven reveals
   (see motion.js) via [data-reveal] / [data-reveal-item].
   ========================================================= */

/* ---------- Hero entrance (plays once on load) ---------- */

@keyframes motion-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes motion-heading-in {
  from { opacity: 0; transform: translateY(16px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes motion-text-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes motion-panel-in {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.nav {
  opacity: 0;
  animation: motion-fade-in 500ms var(--ease-out-premium) forwards;
}

.hero__heading {
  opacity: 0;
  animation: motion-heading-in 700ms var(--ease-out-premium) 80ms forwards;
}

.hero__subheading {
  opacity: 0;
  animation: motion-text-in 600ms var(--ease-out-premium) 220ms forwards;
}

.hero__panel {
  opacity: 0;
  animation: motion-panel-in 700ms var(--ease-out-premium) 340ms forwards;
}

.hero__phone {
  animation: motion-fade-in 600ms var(--ease-out-premium) 440ms both;
}

.hero__side-text {
  animation: motion-fade-in 600ms var(--ease-out-premium) 480ms both;
}

/* ---------- Scroll-triggered reveal system ---------- */

[data-reveal-item] {
  opacity: 0;
  transition: opacity 600ms var(--ease-out-premium), transform 600ms var(--ease-out-premium);
}

[data-reveal-item="text"] { transform: translateY(20px); }
[data-reveal-item="scale-sm"] { transform: scale(0.85); transition-duration: 450ms; }
[data-reveal-item="scale-md"] { transform: scale(0.96); transition-duration: 650ms; }
[data-reveal-item="grid"] { transform: translateY(16px); }
[data-reveal-item="row"] { transform: translateX(-12px); transition-duration: 500ms; }
[data-reveal-item="composition"] { transition: opacity 700ms var(--ease-out-premium); }

[data-reveal-item].is-visible {
  opacity: 1;
  transform: none;
}

/* Large visual compositions get their transform from motion.js's
   continuous scroll-tied scale, not the reveal system. */
.comp-search__collage {
  transform-origin: center;
  will-change: transform;
}

.hero__phone {
  will-change: transform;
}

/* ---------- Reduced motion: everything appears instantly, statically ---------- */

@media (prefers-reduced-motion: reduce) {
  .nav,
  .hero__heading,
  .hero__subheading,
  .hero__panel,
  .hero__phone,
  .hero__side-text {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  [data-reveal-item] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .back-link,
  .back-link img,
  .hero__chevron {
    transition: none !important;
  }
}
