:root {
  --friends-lime: #b6ff6a;
  --friends-lavender: #a78bfa;
  --friends-coral: #ff5a7a;
  --friends-background: #fff8f0;
  --friends-text: #151515;
  --friends-muted: #666068;
  --friends-container: 1220px;
  --friends-gutter: clamp(20px, 4vw, 54px);
  --friends-section-space: clamp(112px, 11vw, 176px);
  --friends-radius: 34px;
}

.friends-page {
  background: var(--friends-background);
  color: var(--friends-text);
}

.friends-page::before {
  opacity: 0.07;
}

.friends-page h1,
.friends-page h2,
.friends-page h3,
.friends-page p {
  text-wrap: pretty;
}

.friends-icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.friends-page a:focus-visible,
.friends-page button:focus-visible,
.friends-page summary:focus-visible {
  outline: 3px solid var(--friends-lavender);
  outline-offset: 4px;
}

.friends-page .friends-header {
  height: 82px;
  padding-inline: max(var(--friends-gutter), calc((100vw - var(--friends-container)) / 2));
  background: rgba(255, 248, 240, 0.9);
}

.friends-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
}

.friends-nav a {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(21, 21, 21, 0.7);
  font-size: 14px;
  font-weight: 880;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.friends-nav a:hover {
  color: var(--friends-text);
  transform: translateY(-1px);
}

.friends-nav a.is-active {
  background: var(--friends-lime);
  color: var(--friends-text);
}

.friends-mobile-nav {
  display: none;
}

.friends-page .nav-cta {
  min-height: 44px;
  background: var(--friends-lime);
  color: var(--friends-text);
  box-shadow: 0 10px 24px rgba(111, 168, 51, 0.16);
}

.friends-page .button {
  min-height: 54px;
  padding-inline: 24px;
}

.friends-page .button.primary {
  background: var(--friends-lime);
  color: var(--friends-text);
  box-shadow: 0 14px 30px rgba(111, 168, 51, 0.18);
}

.friends-page .button.secondary {
  border-color: rgba(21, 21, 21, 0.18);
  background: rgba(255, 255, 255, 0.52);
}

.friends-page main > section {
  width: min(100%, var(--friends-container));
  max-width: var(--friends-container);
  margin-inline: auto;
  padding: var(--friends-section-space) var(--friends-gutter) 0;
}

.friends-page main > section:first-child {
  padding-top: 0;
}

.friends-hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
  padding-bottom: clamp(42px, 5vw, 72px);
}

.friends-hero-copy {
  max-width: 610px;
}

.friends-hero-copy h1 {
  font-size: clamp(66px, 5.7vw, 96px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.friends-hero-copy > p {
  max-width: 520px;
  margin-top: 30px;
  color: var(--friends-muted);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.52;
  font-weight: 690;
}

.friends-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.friends-hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 36%, rgba(167, 139, 250, 0.32), transparent 38%),
    radial-gradient(circle at 38% 62%, rgba(182, 255, 106, 0.29), transparent 42%),
    radial-gradient(circle, rgba(255, 255, 255, 0.84), transparent 68%);
  filter: blur(16px);
}

.friends-hero-image {
  position: relative;
  z-index: 1;
  width: min(126%, 860px);
  height: auto;
  max-width: none;
  aspect-ratio: 1600 / 983;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: radial-gradient(
    ellipse 78% 74% at 50% 52%,
    #000 52%,
    rgba(0, 0, 0, 0.96) 68%,
    rgba(0, 0, 0, 0.46) 84%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 78% 74% at 50% 52%,
    #000 52%,
    rgba(0, 0, 0, 0.96) 68%,
    rgba(0, 0, 0, 0.46) 84%,
    transparent 100%
  );
  filter: drop-shadow(0 30px 34px rgba(21, 21, 21, 0.11));
  mix-blend-mode: multiply;
}

.speech-bubble {
  position: absolute;
  z-index: 5;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--friends-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 920;
  box-shadow: 0 12px 24px rgba(111, 168, 51, 0.14);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: inherit;
  transform: rotate(45deg);
}

.bubble-left {
  top: 78px;
  left: 14%;
}

.bubble-left::after {
  right: 18px;
}

.bubble-right {
  top: 146px;
  right: 5%;
  background: rgba(182, 255, 106, 0.88);
}

.bubble-right::after {
  left: 18px;
}

.friends-section-heading {
  max-width: 780px;
}

.friends-section-heading h2,
.consent-copy h2,
.not-social-copy h2,
.club-copy h2,
.friends-final-cta h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.042em;
  font-weight: 950;
}

.friends-section-heading > p,
.consent-intro,
.not-social-copy > p,
.club-copy > p,
.friends-final-cta p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--friends-muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  font-weight: 680;
}

.moment-rail {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 18px;
}

.moment-card {
  min-height: 224px;
  padding: 28px 20px 24px;
  border: 1px solid rgba(21, 21, 21, 0.07);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 40px rgba(44, 31, 52, 0.045);
}

.moment-card svg {
  width: 76px;
  height: 76px;
  padding: 17px;
  border: 1px solid rgba(21, 21, 21, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 12px 24px rgba(21, 21, 21, 0.07);
}

.moment-card h3 {
  max-width: 130px;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
}

.moment-lime {
  background: rgba(182, 255, 106, 0.25);
}

.moment-coral {
  background: rgba(255, 90, 122, 0.13);
}

.moment-lavender {
  background: rgba(167, 139, 250, 0.17);
}

.moment-yellow {
  background: rgba(255, 230, 109, 0.22);
}

.moment-blue {
  background: rgba(191, 233, 247, 0.28);
}

.moment-pink {
  background: rgba(255, 190, 204, 0.2);
}

.friends-flow {
  position: relative;
}

.flow-steps {
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-steps li {
  position: relative;
  min-width: 0;
  min-height: 390px;
  padding: 22px;
  border: 1px solid rgba(21, 21, 21, 0.07);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.46);
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 22px 48px rgba(44, 31, 52, 0.055);
}

.flow-number {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--friends-lime);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(111, 168, 51, 0.14);
}

.flow-icon {
  width: 100%;
  height: 144px;
  margin: 18px 0 24px;
  border-radius: 24px;
  background: rgba(182, 255, 106, 0.23);
  display: grid;
  place-items: center;
}

.flow-steps li:nth-child(2) .flow-icon {
  background: rgba(167, 139, 250, 0.18);
}

.flow-steps li:nth-child(3) .flow-icon {
  background: rgba(255, 90, 122, 0.13);
}

.flow-steps li:nth-child(4) .flow-icon {
  background: rgba(191, 233, 247, 0.3);
}

.flow-icon > svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: var(--friends-text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-steps h3 {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 930;
}

.flow-steps p {
  margin-top: 12px;
  color: var(--friends-muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 670;
}

.flow-capacity {
  margin-top: 34px;
  color: rgba(21, 21, 21, 0.48);
  font-size: 14px;
  font-weight: 820;
}

.friends-consent,
.friends-not-social,
.phone-down-club {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(60px, 8vw, 116px);
  align-items: center;
}

.friends-consent {
  gap: clamp(96px, 10vw, 154px);
}

.consent-copy {
  padding-left: clamp(8px, 1.5vw, 24px);
}

.consent-art {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.consent-art::before {
  content: "";
  position: absolute;
  inset: 8% 4% 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(182, 255, 106, 0.44), transparent 48%),
    radial-gradient(circle at 38% 62%, rgba(167, 139, 250, 0.18), transparent 52%);
  filter: blur(12px);
}

.consent-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  height: auto;
  filter: drop-shadow(0 26px 24px rgba(21, 21, 21, 0.1));
}

.consent-shield {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 360px;
  border: 9px solid #446b27;
  border-radius: 50% 50% 45% 45% / 28% 28% 64% 64%;
  background: linear-gradient(155deg, #b6ff6a 0%, #69b83f 100%);
  box-shadow:
    inset 14px 14px 28px rgba(255, 255, 255, 0.38),
    0 28px 48px rgba(82, 139, 40, 0.24);
  display: grid;
  place-items: center;
  transform: translate(-50%, -54%);
}

.consent-shield svg {
  width: 118px;
  height: 118px;
  fill: none;
  stroke: #fffdeb;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consent-copy {
  max-width: 650px;
}

.consent-list {
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 30px;
}

.consent-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.consent-list li > span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(182, 255, 106, 0.4);
  display: grid;
  place-items: center;
}

.consent-list li:nth-child(even) > span {
  background: rgba(167, 139, 250, 0.23);
}

.consent-list svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consent-list h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 920;
}

.consent-list p {
  margin-top: 7px;
  color: var(--friends-muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 660;
}

.friends-not-social {
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
}

.not-social-copy {
  max-width: 500px;
}

.plain-check-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.plain-check-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 760;
}

.plain-check-list svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--friends-lime);
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.friend-phone-pair {
  position: relative;
  min-height: 660px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.friend-phone-pair::before {
  content: "";
  position: absolute;
  inset: 10% 0 0;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.22), transparent 66%);
  filter: blur(8px);
}

.friend-phone {
  position: relative;
  width: 290px;
  min-height: 570px;
  padding: 62px 26px 34px;
  border: 9px solid #151318;
  border-radius: 44px;
  background: #fffdf9;
  box-shadow: 0 28px 48px rgba(21, 21, 21, 0.16);
}

.phone-island {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: #09080a;
  transform: translateX(-50%);
}

.friend-phone h3 {
  margin-top: 5px;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 940;
}

.phone-kicker {
  color: rgba(21, 21, 21, 0.44);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.friend-phone ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.friend-phone li {
  min-height: 76px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(21, 21, 21, 0.045);
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.friend-phone strong,
.friend-phone small {
  display: block;
}

.friend-phone strong {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.friend-phone small {
  margin-top: 4px;
  color: var(--friends-muted);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 690;
}

.friend-dot {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(21, 21, 21, 0.18);
  border-radius: 15px;
  box-shadow: inset 5px 5px 8px rgba(255, 255, 255, 0.34);
}

.lavender-dot {
  background: var(--friends-lavender);
}

.yellow-dot {
  background: #ffe66d;
}

.blue-dot {
  background: #bfe9f7;
}

.coral-dot {
  background: var(--friends-coral);
}

.lime-dot {
  background: var(--friends-lime);
}

.kept-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--friends-lime);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 950;
}

.phone-back {
  z-index: 1;
  transform: rotate(-4deg) translate(32px, 28px);
}

.phone-front {
  z-index: 2;
  transform: rotate(3deg) translateX(-14px);
}

.phone-down-club {
  min-height: 610px;
  margin-top: clamp(78px, 8vw, 124px) !important;
  padding-top: clamp(90px, 9vw, 130px) !important;
  padding-bottom: clamp(90px, 9vw, 130px) !important;
  border-radius: 48px;
  background:
    radial-gradient(circle at 20% 65%, rgba(182, 255, 106, 0.42), transparent 36%),
    radial-gradient(circle at 88% 12%, rgba(167, 139, 250, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 249, 222, 0.96), rgba(246, 240, 255, 0.8));
  overflow: hidden;
}

.club-art {
  min-width: 0;
}

.club-art img {
  width: min(100%, 620px);
  filter: drop-shadow(0 26px 24px rgba(21, 21, 21, 0.1));
}

.club-copy {
  max-width: 590px;
}

.club-copy .button {
  margin-top: 36px;
}

.friends-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: start;
}

.friends-faq .faq-list {
  gap: 14px;
}

.friends-faq details {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.friends-faq summary {
  min-height: 74px;
}

.friends-final-cta {
  min-height: 430px;
  margin-top: var(--friends-section-space) !important;
  margin-bottom: clamp(54px, 6vw, 84px) !important;
  padding-top: clamp(70px, 7vw, 104px) !important;
  padding-bottom: clamp(66px, 7vw, 96px) !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.friends-final-cta .final-copy {
  grid-area: auto;
  padding: 0;
}

.friends-final-cta img {
  width: min(100%, 430px);
  height: auto;
  justify-self: end;
  filter: drop-shadow(0 26px 24px rgba(21, 21, 21, 0.1));
}

.friends-footer {
  min-height: 320px;
  padding-top: 92px;
  background: linear-gradient(180deg, #2e2539 0%, #211928 100%);
}

.friends-footer .footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.friends-page .section-reveal {
  opacity: 1;
  transform: none;
}

.friends-page .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .friends-page .friends-header {
    padding-inline: 24px;
  }

  .friends-hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 36px;
  }

  .friends-hero-art {
    min-height: 540px;
  }

  .friends-hero-image {
    width: min(124%, 760px);
  }

  .moment-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .friends-not-social {
    grid-template-columns: 1fr;
  }

  .not-social-copy {
    max-width: 680px;
  }

  .friend-phone-pair {
    min-height: 620px;
  }

  .friends-final-cta {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }
}

@media (max-width: 860px) {
  :root {
    --friends-section-space: 118px;
  }

  .friends-nav {
    display: none;
  }

  .friends-mobile-nav {
    position: relative;
    display: block;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .friends-mobile-nav summary {
    min-height: 44px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(21, 21, 21, 0.09);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .friends-mobile-nav summary::after {
    display: none;
    content: none;
  }

  .friends-mobile-nav nav {
    position: absolute;
    z-index: 40;
    top: calc(100% + 10px);
    left: 50%;
    width: 180px;
    padding: 8px;
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 18px 38px rgba(21, 21, 21, 0.14);
    transform: translateX(-50%);
  }

  .friends-mobile-nav nav a {
    min-height: 44px;
    padding: 0 13px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 850;
  }

  .friends-mobile-nav nav a.is-active {
    background: rgba(182, 255, 106, 0.45);
  }

  .friends-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 78px !important;
  }

  .friends-hero-copy {
    max-width: 720px;
  }

  .friends-hero-copy h1 {
    font-size: clamp(62px, 12vw, 90px);
  }

  .friends-hero-art {
    width: min(100%, 680px);
    min-height: 620px;
    margin-inline: auto;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .friends-consent,
  .phone-down-club {
    grid-template-columns: 1fr;
  }

  .consent-art {
    min-height: 570px;
  }

  .consent-copy,
  .club-copy {
    max-width: 720px;
  }

  .consent-copy {
    padding-left: 0;
  }

  .phone-down-club {
    gap: 50px;
    margin-top: 72px !important;
  }

  .club-art {
    order: 2;
  }

  .friends-faq {
    grid-template-columns: 1fr;
  }

  .friends-final-cta {
    min-height: 650px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .friends-final-cta .final-copy {
    max-width: 650px;
    margin-inline: auto;
  }

  .friends-final-cta .friends-actions {
    justify-content: center;
  }

  .friends-final-cta img {
    width: min(100%, 430px);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --friends-section-space: 94px;
    --friends-gutter: 18px;
  }

  .friends-page .friends-header {
    height: 70px;
    padding-inline: 18px;
  }

  .friends-page .friends-header .brand span {
    font-size: 17px;
  }

  .friends-page .friends-header .brand img {
    width: 36px;
    height: 36px;
  }

  .friends-page .friends-header .nav-cta {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .friends-mobile-nav summary {
    padding-inline: 10px;
    font-size: 11px;
  }

  .friends-mobile-nav nav {
    left: auto;
    right: -58px;
    transform: none;
  }

  .friends-page main > section {
    padding-top: var(--friends-section-space);
    padding-bottom: 0;
  }

  .friends-hero {
    padding-top: 60px !important;
    padding-bottom: 42px;
  }

  .friends-hero-copy h1 {
    font-size: clamp(52px, 16vw, 68px);
    line-height: 0.95;
  }

  .friends-hero-copy > p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.5;
  }

  .friends-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .friends-page .button {
    width: 100%;
  }

  .friends-hero-art {
    min-height: 470px;
    margin-top: 16px;
  }

  .friends-hero-image {
    width: 136%;
  }

  .speech-bubble {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .bubble-left {
    top: 42px;
    left: 2%;
  }

  .bubble-right {
    top: 92px;
    right: 0;
  }

  .friends-section-heading h2,
  .consent-copy h2,
  .not-social-copy h2,
  .club-copy h2,
  .friends-final-cta h2 {
    font-size: 42px;
    line-height: 1;
  }

  .friends-section-heading > p,
  .consent-intro,
  .not-social-copy > p,
  .club-copy > p,
  .friends-final-cta p {
    font-size: 17px;
  }

  .moment-rail {
    width: calc(100% + 18px);
    margin-top: 42px;
    padding-right: 18px;
    grid-template-columns: repeat(6, 154px);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .moment-card {
    min-height: 190px;
    padding: 24px 16px 20px;
    border-radius: 28px;
    scroll-snap-align: start;
  }

  .moment-card svg {
    width: 66px;
    height: 66px;
    padding: 15px;
    border-radius: 21px;
  }

  .flow-steps {
    margin-top: 52px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-steps li {
    min-height: 0;
    padding: 18px;
    border-radius: 26px;
    display: grid;
    grid-template-columns: 42px 62px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
  }

  .flow-number {
    grid-row: 1 / span 2;
  }

  .flow-icon {
    width: 62px;
    height: 62px;
    margin: 0;
    border-radius: 19px;
    grid-row: 1 / span 2;
  }

  .flow-icon > svg {
    width: 32px;
    height: 32px;
  }

  .flow-steps h3 {
    grid-column: 3;
    margin-top: 0;
    font-size: 19px;
  }

  .flow-steps p {
    grid-column: 3;
    margin-top: 6px;
    font-size: 14px;
  }

  .flow-capacity {
    margin-left: 0;
    margin-top: 28px;
  }

  .friends-consent {
    gap: 54px;
  }

  .consent-art {
    min-height: 420px;
  }

  .consent-shield {
    top: 50%;
    width: 230px;
    height: 260px;
    border-width: 7px;
    transform: translate(-50%, -54%);
  }

  .consent-shield svg {
    width: 86px;
    height: 86px;
  }

  .consent-art img {
    width: 115%;
    max-width: none;
  }

  .consent-list {
    margin-top: 40px;
    gap: 28px;
  }

  .consent-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
  }

  .consent-list li > span {
    width: 48px;
    height: 48px;
  }

  .friend-phone-pair {
    min-height: 520px;
    width: calc(100% + 18px);
    margin-top: 18px;
    overflow: hidden;
  }

  .friend-phone {
    width: 232px;
    min-height: 464px;
    padding: 50px 18px 24px;
    border-width: 7px;
    border-radius: 36px;
  }

  .friend-phone h3 {
    font-size: 24px;
  }

  .friend-phone li {
    min-height: 64px;
    padding: 9px;
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .friend-dot {
    width: 30px;
    height: 30px;
    border-radius: 12px;
  }

  .phone-back {
    margin-left: 86px;
    transform: rotate(-5deg) translate(20px, 24px);
  }

  .phone-front {
    margin-left: -58px;
    transform: rotate(4deg);
  }

  .phone-down-club {
    width: calc(100% - 24px) !important;
    margin-inline: auto !important;
    margin-top: 54px !important;
    padding-inline: 28px !important;
    border-radius: 36px;
  }

  .club-art {
    margin-inline: -28px;
  }

  .club-copy .button {
    margin-top: 30px;
  }

  .friends-faq {
    gap: 44px;
  }

  .friends-faq summary {
    min-height: 68px;
    padding-inline: 18px;
  }

  .friends-final-cta {
    width: calc(100% - 24px) !important;
    min-height: 580px;
    margin-inline: auto !important;
    padding-inline: 26px !important;
  }

  .friends-final-cta img {
    width: min(100%, 340px);
    max-width: 100%;
    margin-inline: auto;
  }

  .friends-footer {
    padding-top: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .friends-page .section-reveal {
    opacity: 1;
    transform: none;
  }
}
