/* lowk.link — landing page.
   Ported from the lowk.dc.html design prototype. The prototype carries every
   rule as an inline style plus style-hover/style-active attributes, which the
   browser has nowhere to put; those become real classes here so hover, active,
   focus and reduced-motion states all have somewhere to live.

   report.html still loads site.css. The two stylesheets share no selectors, so
   editing this file cannot reach that page. */

:root {
  --bg: #F4F2FA;

  --ink: #241239;
  --ink-2: #4B3B6B;
  --ink-3: #6B5B85;
  --ink-4: #8579A0;
  --ink-5: #A79BBE;

  --purple: #6C4CE0;
  --purple-2: #6B4CE6;
  --purple-deep: #4A2FA8;
  --blue: #8FA8E8;

  --grad: linear-gradient(100deg, #6B4CE6, #8FA8E8);
  --card-grad: linear-gradient(170deg, #FBFAFE, #EFECFA);
  --gold-grad: linear-gradient(140deg, #FBF1DC, #F6E6C4);
  --gold-ink: #8A6A1E;

  --display: "Baloo 2", ui-rounded, system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;

  --shadow-lg: 0 22px 50px rgba(78, 50, 160, .16), 0 4px 12px rgba(78, 50, 160, .07);
  --shadow-md: 0 12px 28px rgba(78, 50, 160, .10);
  --shadow-sm: 0 8px 18px rgba(78, 50, 160, .10);

  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--purple); text-decoration: none; }
a:hover { color: #5B3AD6; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 4px;
  border-radius: 999px;
}

button { font-family: inherit; }
img { max-width: 100%; }

.page {
  position: relative;
  width: 100%;
  overflow-x: clip;
  --mx: 0;
  --my: 0;
}

.wrap { max-width: var(--wrap); margin: 0 auto; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================ motion ============================ */

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(22px, -30px, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
@keyframes stream {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes mote {
  0%   { transform: translate3d(0, 0, 0); opacity: .35; }
  50%  { transform: translate3d(14px, -22px, 0); opacity: .7; }
  100% { transform: translate3d(0, 0, 0); opacity: .35; }
}
@keyframes spark {
  0%   { transform: translate(0, 0) scale(.5); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1.15); opacity: 0; }
}
@keyframes pop {
  0%   { transform: scale(.86); opacity: 0; }
  60%  { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes peek {
  0%, 88%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-11deg); }
  96% { transform: rotate(9deg); }
}

/* Sections lift in on scroll. The no-JS / observer-failed state is visible, so
   a broken observer can never leave the page blank. */
.rise {
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, .9, .3, 1.2);
}
.js .rise:not(.is-in) { opacity: 0; transform: translateY(22px); }
.rise.delay-1 { transition-delay: 120ms; }
.rise.delay-2 { transition-delay: 220ms; }

/* ============================ chrome ============================ */

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.backdrop span {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  display: block;
}
.backdrop-a {
  top: -12%; left: -18%;
  width: 70vw; height: 70vw;
  max-width: 780px; max-height: 780px;
  background: radial-gradient(circle at 40% 40%, rgba(140, 166, 232, .55), rgba(140, 166, 232, 0) 70%);
  animation: drift 40s ease-in-out infinite;
}
.backdrop-b {
  bottom: -16%; right: -14%;
  width: 66vw; height: 66vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 50% 50%, rgba(124, 92, 224, .42), rgba(124, 92, 224, 0) 70%);
  animation: drift 54s ease-in-out infinite reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  background: rgba(244, 242, 250, .82);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 30px; width: auto; display: block; }

/* The pressable pill: a hard shadow the button sinks into on press. */
.btn {
  display: inline-block;
  font-weight: 800;
  color: #FFFFFF;
  background: var(--grad);
  border-radius: 999px;
  transition: transform 110ms ease, box-shadow 110ms ease;
}
.btn:hover { color: #FFFFFF; }

.btn-sm {
  font-size: 17px;
  padding: 11px 22px 12px;
  box-shadow: 0 5px 0 var(--purple-deep), 0 10px 22px rgba(107, 76, 230, .3);
}
.btn-sm:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--purple-deep), 0 4px 12px rgba(107, 76, 230, .28);
}

.btn-lg {
  font-size: 20px;
  padding: 16px 34px 17px;
  box-shadow: 0 7px 0 var(--purple-deep), 0 16px 30px rgba(107, 76, 230, .32);
}
.btn-lg:active {
  transform: translateY(6px);
  box-shadow: 0 1px 0 var(--purple-deep), 0 6px 14px rgba(107, 76, 230, .28);
}

.btn-xl {
  font-size: clamp(20px, 3vw, 23px);
  padding: 18px 40px 19px;
  box-shadow: 0 8px 0 var(--purple-deep), 0 18px 34px rgba(107, 76, 230, .34);
}
.btn-xl:active {
  transform: translateY(7px);
  box-shadow: 0 1px 0 var(--purple-deep), 0 6px 14px rgba(107, 76, 230, .3);
}

.store-note {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-4);
}

section { position: relative; z-index: 10; }

/* ============================= hero ============================= */

.hero { padding: clamp(20px, 5vw, 44px) 16px clamp(40px, 7vw, 72px); }

.hero-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-decor span { position: absolute; border-radius: 50%; display: block; }
.orb-1 {
  top: 24%; left: 4%; width: 110px; height: 110px;
  background: radial-gradient(circle at 42% 38%, #8FA8E8, #6B4CE6 62%, rgba(107, 76, 230, 0) 72%);
  filter: blur(15px); opacity: .62;
  transform: translate3d(calc(var(--mx) * -26px), calc(var(--my) * -20px), 0);
}
.orb-2 {
  top: 58%; right: 5%; width: 150px; height: 150px;
  background: radial-gradient(circle at 45% 40%, #B9C6F2, #7C5CE0 60%, rgba(124, 92, 224, 0) 72%);
  filter: blur(19px); opacity: .5;
  transform: translate3d(calc(var(--mx) * 32px), calc(var(--my) * 24px), 0);
}
.orb-3 {
  bottom: 8%; left: 16%; width: 84px; height: 84px;
  background: radial-gradient(circle at 45% 40%, #C9D3F6, #8CA6E8 60%, rgba(140, 166, 232, 0) 72%);
  filter: blur(13px); opacity: .55;
  transform: translate3d(calc(var(--mx) * 18px), calc(var(--my) * -26px), 0);
}
.mote-1 { top: 14%; right: 22%; width: 9px; height: 9px; background: #A98FF0; opacity: .5; animation: mote 14s ease-in-out infinite; }
.mote-2 { top: 70%; left: 30%; width: 7px; height: 7px; background: #A98FF0; opacity: .45; animation: mote 19s ease-in-out infinite 2s; }
.mote-3 { top: 42%; right: 34%; width: 6px; height: 6px; background: #8CA6E8; opacity: .5; animation: mote 16s ease-in-out infinite 4s; }

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.hero-copy h1 {
  margin: 0;
  max-width: 15ch;
  font-weight: 800;
  font-size: clamp(40px, 10.5vw, 86px);
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-copy p {
  margin: 0;
  max-width: 34ch;
  font-weight: 500;
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.45;
  color: var(--ink-3);
}

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

/* --------------------------- poll card --------------------------- */

.stage { position: relative; width: 100%; max-width: 430px; }

.poll-card {
  position: relative;
  background: var(--card-grad);
  border-radius: 34px;
  padding: clamp(18px, 4vw, 26px);
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite;
}

.poll-panel { display: none; }
.poll-card[data-phase="poll"] .poll-panel-poll { display: flex; flex-direction: column; gap: 16px; }
.poll-card[data-phase="picked"] .poll-panel-picked { display: flex; }

.poll-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.coin-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-grad);
  border-radius: 999px;
  padding: 5px 14px 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-ink);
}
.poll-count { font-weight: 700; font-size: 15px; color: var(--ink-3); }

.poll-track {
  height: 7px;
  border-radius: 999px;
  background: #E2DDF3;
  overflow: hidden;
}
.poll-track i {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #6B4CE6, #8FA8E8);
}

.poll-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #7B6C95;
}
.poll-live::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #8CA6E8;
}

.poll-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}
.poll-question .emoji { font-size: 30px; animation: peek 9s ease-in-out infinite; }
.poll-question h2 {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: clamp(24px, 5.2vw, 30px);
  line-height: 1.14;
  letter-spacing: -.02em;
}

.poll-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 4px;
}
.poll-option {
  position: relative;
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  background: #FFFFFF;
  border: 0;
  border-radius: 24px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 120ms cubic-bezier(.2, .8, .3, 1.4), box-shadow 120ms ease;
}
.poll-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(78, 50, 160, .16);
}
.poll-option:active {
  transform: scale(.94);
  box-shadow: 0 3px 8px rgba(78, 50, 160, .12);
}

.poll-foot { display: flex; justify-content: center; padding-top: 4px; }
.poll-foot span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .7);
  border-radius: 999px;
  padding: 9px 18px 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple);
}

.poll-panel-picked {
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 20px 6px;
}
.poll-panel-picked .emoji { font-size: 46px; animation: float 3.4s ease-in-out infinite; }
.poll-panel-picked h2 {
  margin: 0;
  max-width: 13ch;
  font-weight: 800;
  font-size: clamp(27px, 6vw, 34px);
  line-height: 1.1;
  letter-spacing: -.025em;
  animation: pop 500ms cubic-bezier(.22, .9, .3, 1.3) both;
}

.picked-more {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: pop 620ms cubic-bezier(.22, .9, .3, 1.3) both;
}
.poll-card.is-second .picked-more { display: flex; }
.picked-more p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(21px, 4.6vw, 26px);
  line-height: 1.3;
  color: var(--ink-2);
}
.picked-again {
  cursor: pointer;
  background: rgba(255, 255, 255, .8);
  border: 0;
  border-radius: 999px;
  padding: 10px 20px 11px;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple);
  box-shadow: 0 4px 12px rgba(78, 50, 160, .1);
}
.picked-again:hover { background: #FFFFFF; }

/* Anonymous stand-ins for the people who picked you. */
.blobs { display: flex; align-items: center; justify-content: center; }
.blob {
  width: 46px; height: 46px;
  border-radius: 50%;
  filter: blur(6px);
  display: block;
}
.blob + .blob { margin-left: -14px; }
.blob-a { background: radial-gradient(circle at 42% 38%, #9FB4EE, #6B8FE0); }
.blob-b { background: radial-gradient(circle at 42% 38%, #B9A2F5, #7C5CE0); }
.blob-c { background: radial-gradient(circle at 42% 38%, #C6D0F7, #8CA6E8); }

.burst {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.burst > div { position: relative; width: 0; height: 0; }
.burst span { position: absolute; animation: spark 800ms ease-out forwards; }

/* ============================ activity ============================ */

.activity {
  padding: clamp(8px, 2vw, 20px) 0 clamp(40px, 7vw, 76px);
  overflow: hidden;
}
.activity-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 0 12px;
  animation: stream 46s linear infinite;
}
.activity-run { display: flex; gap: 12px; }
.activity-run span {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  background: #FFFFFF;
  border-radius: 999px;
  padding: 12px 20px 13px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-2);
  box-shadow: 0 6px 16px rgba(78, 50, 160, .09);
}
.activity-note {
  margin: 14px auto 0;
  max-width: var(--wrap);
  padding: 0 20px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--ink-5);
}

/* ============================= split ============================= */

.split {
  padding: clamp(44px, 8vw, 96px) 16px;
}
.split .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}
.split-reverse .wrap { flex-wrap: wrap-reverse; }

.section-title {
  margin: 0;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.035em;
  color: var(--ink);
}

/* -------------------------- getting picked -------------------------- */

.picking-title {
  flex: 1 1 320px;
  max-width: 13ch;
  font-size: clamp(34px, 8vw, 62px);
  line-height: 1.02;
}

.picking-art {
  flex: 1 1 320px;
  position: relative;
  min-height: 420px;
}
.picking-art > * { position: absolute; }

.picking-blobs {
  top: 6%; left: 50%;
  transform: translateX(-50%) translate3d(calc(var(--mx) * 14px), calc(var(--my) * 10px), 0);
  display: flex;
  align-items: center;
}
.picking-blobs .blob { width: 66px; height: 66px; filter: blur(7px); transition: transform 1.1s cubic-bezier(.22, .9, .3, 1.1); }
.picking-blobs .blob + .blob { margin-left: -18px; }
.picking-blobs .blob-a { transform: translateX(26px); }
.picking-blobs .blob-c { transform: translateX(-26px); }
.picking-art.is-in .picking-blobs .blob-a,
.picking-art.is-in .picking-blobs .blob-c { transform: translateX(0); }

.picking-stat {
  top: 30%; left: 0;
  transform: translate3d(calc(var(--mx) * -22px), calc(var(--my) * 16px), 0);
  background: #FFFFFF;
  border-radius: 26px;
  padding: 18px 22px 20px;
  box-shadow: 0 16px 34px rgba(78, 50, 160, .14);
  animation: float 8s ease-in-out infinite;
}
.picking-stat b {
  display: block;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 27px);
  letter-spacing: -.02em;
}
.picking-stat span {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-3);
}

.picking-clock {
  top: 55%; right: 2%;
  transform: translate3d(calc(var(--mx) * 24px), calc(var(--my) * -14px), 0);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-grad);
  border-radius: 999px;
  padding: 11px 20px 12px;
  box-shadow: 0 12px 26px rgba(160, 120, 30, .16);
  animation: float 6.4s ease-in-out infinite 1s;
  font-weight: 700;
  font-size: 17px;
  color: var(--gold-ink);
}

.picking-invite {
  bottom: 6%; left: 6%;
  transform: translate3d(calc(var(--mx) * -12px), calc(var(--my) * -20px), 0);
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 17px;
  color: #FFFFFF;
  background: var(--grad);
  border-radius: 999px;
  padding: 14px 26px 15px;
  box-shadow: 0 6px 0 var(--purple-deep), 0 14px 28px rgba(107, 76, 230, .3);
}

.picking-eyes {
  top: 44%; right: 26%;
  font-size: 30px;
  animation: peek 7s ease-in-out infinite;
}

/* ============================= reveal ============================= */

.reveal-section { padding: clamp(52px, 9vw, 110px) 16px; }
.reveal-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 5vw, 52px);
  text-align: center;
}
.reveal-inner h2 {
  max-width: 17ch;
  font-size: clamp(30px, 6.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.reveal-card {
  width: 100%;
  max-width: 430px;
  background: var(--card-grad);
  border-radius: 34px;
  padding: clamp(18px, 4vw, 26px);
  box-shadow: 0 22px 50px rgba(78, 50, 160, .16);
}
.reveal-kicker {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 4vw, 23px);
  color: var(--ink-2);
}
.reveal-subject {
  margin: 0 0 20px;
  font-weight: 800;
  font-size: clamp(22px, 4.6vw, 26px);
  letter-spacing: -.02em;
}
.reveal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.reveal-tile {
  position: relative;
  min-height: 92px;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 8px 18px rgba(78, 50, 160, .09);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.reveal-tile span { filter: blur(7px); transition: filter 900ms ease; }

.reveal-tile-hit {
  outline: 3px solid rgba(108, 76, 224, 0);
  outline-offset: 2px;
  transition: outline-color 500ms ease, transform 620ms cubic-bezier(.22, .9, .3, 1.5);
}
.reveal-tile-hit.is-lifted { transform: scale(1.06); }
.reveal-tile-hit.is-ringed { outline-color: rgba(108, 76, 224, 1); }
.reveal-tile-hit.is-clear span { filter: blur(0); }

.reveal-answer {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-2);
  opacity: 0;
  transition: opacity 700ms ease;
}
.reveal-answer.is-in { opacity: 1; }

/* ============================== inbox ============================== */

.inbox-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 26px);
}
.inbox-copy h2 {
  max-width: 13ch;
  font-size: clamp(32px, 7.4vw, 58px);
}
.inbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
}
.inbox-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border-radius: 26px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(78, 50, 160, .10);
  transition: transform 260ms cubic-bezier(.2, .85, .3, 1.3), box-shadow 260ms ease;
}
.inbox-row:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 40px rgba(78, 50, 160, .18);
}
.inbox-row .blob { flex: 0 0 auto; }
.inbox-row .blob + .blob { margin-left: 0; }
.inbox-text {
  flex: 1 1 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.inbox-dot {
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--purple);
}
.inbox-time { flex: 0 0 auto; font-weight: 600; font-size: 14px; color: var(--ink-4); }

.inbox-row-cta {
  background: linear-gradient(140deg, #E7E1FA, #DDD6F7);
  box-shadow: 0 10px 24px rgba(78, 50, 160, .12);
}
.inbox-row-cta:hover { box-shadow: 0 22px 40px rgba(78, 50, 160, .2); }
.inbox-row-cta .emoji { flex: 0 0 auto; font-size: 24px; }
.inbox-row-cta .inbox-text { display: flex; flex-direction: column; font-family: var(--display); font-style: normal; }
.inbox-row-cta b { font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.inbox-row-cta i { font-style: normal; font-weight: 700; font-size: 14px; color: var(--purple); }

/* Phone frames — the screenshot supplies its own rounded corners via the mask. */
.phone-slot {
  flex: 0 1 300px;
  margin: 0 auto;
  transition: transform 400ms ease-out;
}
.phone-slot-right { transform: rotate(3deg) translate3d(calc(var(--mx) * 16px), calc(var(--my) * 12px), 0); }
.phone-slot-left { transform: rotate(-3deg) translate3d(calc(var(--mx) * -16px), calc(var(--my) * 12px), 0); }
.phone {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 19.5;
  background: #1B1030;
  border-radius: 46px;
  padding: 9px;
  box-shadow: 0 30px 60px rgba(50, 26, 120, .28);
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 38px;
  display: block;
}

/* ============================== forum ============================== */

.forum { padding: clamp(44px, 8vw, 96px) 16px; }
.forum-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 38px);
}
.forum-head { display: flex; flex-direction: column; gap: 8px; }
.forum-head h2 { max-width: 14ch; font-size: clamp(32px, 7.4vw, 56px); }
.forum-head p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 3.4vw, 23px);
  color: var(--ink-2);
}

.forum-list { display: flex; flex-direction: column; gap: 14px; }
.forum-post {
  display: flex;
  gap: 14px;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
}
.forum-vote {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.forum-vote button {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 2px;
  font-size: 19px;
  line-height: 1;
  color: var(--purple);
  transition: transform 140ms cubic-bezier(.2, .8, .3, 1.6);
}
.forum-vote button:hover { transform: translateY(-2px) scale(1.1); }
.forum-vote button:active { transform: translateY(-4px) scale(1.2); }
.forum-vote b { font-weight: 800; font-size: 16px; }

.forum-body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 8px; }
.forum-meta { font-weight: 700; font-size: 13.5px; color: var(--ink-4); }
.forum-body p { margin: 0; font-weight: 600; font-size: 18px; line-height: 1.4; }

.forum-poll { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.forum-bar {
  position: relative;
  height: 42px;
  border-radius: 14px;
  background: #F0EDFA;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.forum-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #6B4CE6, #8FA8E8);
  opacity: .22;
  transition: width 1.2s cubic-bezier(.22, .9, .3, 1);
}
.forum-bar:last-child i { transition-delay: 120ms; }
.forum-bar span {
  position: relative;
  flex: 1 1 auto;
  padding-left: 14px;
  font-weight: 700;
  font-size: 15.5px;
}
.forum-bar b {
  position: relative;
  padding-right: 14px;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--purple);
}
.forum-list.is-in .forum-bar-1 i { width: 68%; }
.forum-list.is-in .forum-bar-2 i { width: 32%; }

/* ============================= profile ============================= */

.profile-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 4vw, 34px);
}
.profile-copy h2 { max-width: 14ch; font-size: clamp(32px, 7.4vw, 56px); }

.profile-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.profile-blobs { display: flex; align-items: center; padding-left: 16px; }
.profile-blobs .blob {
  width: 52px; height: 52px;
  margin-left: -16px;
  filter: blur(5px);
  background: radial-gradient(circle at 42% 36%, #C3ADF7, #7C5CE0);
  animation: pop 520ms cubic-bezier(.22, .9, .3, 1.5) both;
}
.profile-friends b {
  font-weight: 800;
  font-size: clamp(20px, 3.4vw, 25px);
  letter-spacing: -.02em;
}

.profile-flames {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: flex-start;
  background: #FFFFFF;
  border-radius: 26px;
  padding: 18px 26px 20px;
  box-shadow: 0 14px 30px rgba(78, 50, 160, .12);
}
.profile-flames .emoji { font-size: 32px; animation: float 3.2s ease-in-out infinite; }
.profile-flames span { display: flex; flex-direction: column; line-height: 1.1; }
.profile-flames b {
  font-weight: 800;
  font-size: clamp(26px, 4.4vw, 34px);
  letter-spacing: -.02em;
}
.profile-flames i {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-3);
}

/* ============================== safety ============================== */

.safety { padding: clamp(44px, 8vw, 96px) 16px; }
.safety-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
}
.safety h2 { font-size: clamp(30px, 6.4vw, 48px); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.safety-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #FFFFFF;
  border-radius: 26px;
  padding: 20px 22px 22px;
  box-shadow: var(--shadow-md);
}
.safety-card .emoji { font-size: 24px; }
.safety-card b { font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.safety-card span { font-weight: 500; font-size: 15px; line-height: 1.45; color: var(--ink-3); }
.safety-note {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-4);
}
.safety-note a { font-weight: 700; }

/* ============================ final cta ============================ */

.finale {
  padding: clamp(64px, 12vw, 140px) 16px clamp(48px, 8vw, 90px);
  overflow: hidden;
}
.finale-decor { position: absolute; inset: 0; pointer-events: none; }
.finale-decor span { position: absolute; border-radius: 50%; display: block; }
.finale-decor span:nth-child(1) {
  top: 18%; left: 12%; width: 96px; height: 96px;
  background: radial-gradient(circle at 42% 36%, #A8BCF0, #5F86DE);
  filter: blur(11px); opacity: .55;
  animation: drift 26s ease-in-out infinite;
}
.finale-decor span:nth-child(2) {
  top: 62%; right: 14%; width: 128px; height: 128px;
  background: radial-gradient(circle at 42% 36%, #C3ADF7, #7C5CE0);
  filter: blur(13px); opacity: .5;
  animation: drift 34s ease-in-out infinite reverse;
}
.finale-decor span:nth-child(3) {
  bottom: 12%; left: 30%; width: 72px; height: 72px;
  background: radial-gradient(circle at 42% 36%, #CFD8F9, #8CA6E8);
  filter: blur(9px); opacity: .55;
  animation: drift 30s ease-in-out infinite 3s;
}
.finale-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 38px);
  text-align: center;
}
.finale-inner h2 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(48px, 15vw, 130px);
  line-height: .94;
  letter-spacing: -.045em;
}

/* ============================== footer ============================== */

.site-footer { padding: 0 16px clamp(36px, 6vw, 60px); }
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}
.site-footer img { height: 24px; width: auto; opacity: .75; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-weight: 700;
  font-size: 14.5px;
}
.footer-nav a { color: var(--ink-4); }
.footer-nav a:hover { color: var(--ink); }
.footer-note { font-weight: 600; font-size: 14px; color: var(--ink-5); }

/* ========================= reduced motion ========================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
