:root {
  color-scheme: light;
  --cream: #fff9ef;
  --canvas: #f6f5f3;
  --paper: #ffffff;
  --ink: #1a171c;
  --muted: #6c666f;
  --aubergine: #2a174d;
  --purple: #5b376f;
  --purple-soft: #f0e8f5;
  --rose: #c96e9f;
  --sand: #e8d8be;
  --sage: #afc1a3;
  --gold: #cdb97d;
  --rust: #bb8a70;
  --line: rgba(26, 23, 28, 0.12);
  --shadow: 0 24px 70px rgba(42, 23, 77, 0.11);
  --display: Georgia, "Times New Roman", serif;
  --sans: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --grade: "Marker Felt", "Bradley Hand", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--aubergine);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid rgba(42, 23, 77, 0.1);
}

.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: 236px 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--aubergine);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a {
  color: #4e4851;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 100px;
  background:
    radial-gradient(circle at 7% 13%, rgba(201, 110, 159, 0.09), transparent 27%),
    linear-gradient(180deg, var(--cream), #faf7f1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.85fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--rose);
  border-radius: 10px;
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.circle-copy h2 {
  font-family: var(--display);
  letter-spacing: -0.045em;
}

.hero h1 {
  margin: 0;
  color: var(--aubergine);
  font-size: clamp(4.25rem, 7.1vw, 6.9rem);
  font-weight: 700;
  line-height: 0.9;
}

.hero h1 em {
  color: var(--rose);
  font-weight: 700;
}

.hero-lede {
  max-width: 630px;
  margin: 32px 0 0;
  color: #5f5962;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: white;
  background: var(--aubergine);
  box-shadow: 0 14px 30px rgba(42, 23, 77, 0.2);
}

.button-secondary {
  color: var(--aubergine);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(42, 23, 77, 0.16);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  color: #777078;
  font-size: 13px;
  font-weight: 650;
}

.hero-meta span {
  position: relative;
}

.hero-meta span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 4px;
  height: 4px;
  background: var(--rose);
  border-radius: 50%;
}

.app-showcase {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
}

.app-screenshot-frame {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: #f8f7f5;
  border: 6px solid #1d1920;
  border-radius: 52px;
  box-shadow: 0 40px 85px rgba(42, 23, 77, 0.19);
}

.app-screenshot-frame img {
  width: 100%;
  height: auto;
}

.hero-screenshot {
  width: min(412px, 100%);
  max-height: 680px;
  transform: rotate(1.2deg);
}

.screen-caption {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: 0;
  margin: 0;
  padding: 7px 11px;
  color: var(--aubergine);
  background: rgba(255, 249, 239, 0.9);
  border: 1px solid rgba(42, 23, 77, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: min(412px, 100%);
  padding: 25px 22px 18px;
  overflow: hidden;
  background: #fbfaf8;
  border: 6px solid #1d1920;
  border-radius: 54px;
  box-shadow: 0 40px 85px rgba(42, 23, 77, 0.19), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transform: rotate(1.2deg);
}

.phone-shell::before {
  content: "";
  width: 92px;
  height: 22px;
  display: block;
  margin: -8px auto 20px;
  background: #1d1920;
  border-radius: 999px;
}

.stack-card {
  position: absolute;
  z-index: 1;
  width: 390px;
  height: 600px;
  background: var(--cream);
  border: 3px solid var(--sand);
  border-radius: 48px;
}

.stack-one {
  transform: translate(42px, 10px) rotate(7deg);
}

.stack-two {
  border-color: rgba(91, 55, 111, 0.28);
  transform: translate(-35px, 18px) rotate(-5deg);
}

.floating-grade {
  position: absolute;
  z-index: 5;
  width: 86px;
  height: 76px;
  display: grid;
  place-items: center;
  font-family: var(--grade);
  font-size: 36px;
  font-weight: 900;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(42, 23, 77, 0.17);
}

.grade-a {
  top: 86px;
  right: -4px;
  color: #aa8fc6;
  transform: rotate(7deg);
}

.grade-b {
  left: -12px;
  bottom: 116px;
  color: #91ae83;
  transform: rotate(-8deg);
}

.phone-topline,
.mini-brand,
.streak-row,
.people-row,
.feed-author,
.media-row,
.feed-actions,
.phone-nav {
  display: flex;
  align-items: center;
}

.phone-topline {
  justify-content: space-between;
}

.mini-brand {
  gap: 9px;
  color: var(--purple);
  font-family: var(--display);
  font-size: 21px;
}

.mini-brand img {
  width: 39px;
  height: 39px;
  border-radius: 10px;
}

.bell {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 11px;
  font-size: 8px;
}

.phone-intro {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.streak-row {
  gap: 10px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.streak-row > div {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  line-height: 1.25;
}

.streak-row strong {
  font-size: 13px;
}

.streak-row small {
  color: var(--muted);
  font-size: 10px;
}

.streak-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius: 9px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.streak-count {
  padding: 6px 8px;
  color: var(--purple);
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
}

.people-row {
  gap: 12px;
  margin: 17px 0;
}

.person-chip {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.person-chip b {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 13px;
  font-size: 11px;
}

.person-chip.selected b {
  color: var(--ink);
  background: #eee5d4;
  border: 3px solid #bc93ad;
}

.person-chip small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.feed-card {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(20, 15, 27, 0.05);
}

.feed-author {
  gap: 9px;
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 11px;
  font-size: 10px;
  font-weight: 850;
}

.feed-author > div,
.conversation-card > div p {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.feed-author strong {
  font-size: 12px;
}

.feed-author small {
  color: var(--muted);
  font-size: 9px;
}

.media-row {
  gap: 12px;
  margin-top: 14px;
}

.cover-art {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  color: var(--aubergine);
  background: linear-gradient(145deg, #d9c7e1, #e8d8be);
  border-radius: 8px;
}

.cover-art span:first-child {
  position: absolute;
  top: 13px;
  left: 14px;
  font-size: 32px;
  transform: rotate(-12deg);
}

.cover-art span:last-child {
  position: absolute;
  right: 12px;
  bottom: 9px;
  color: var(--rose);
  font-size: 18px;
}

.media-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.media-copy strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-copy span,
.media-copy small {
  color: var(--muted);
  font-size: 10px;
}

.media-copy small {
  margin-top: 3px;
}

.grade-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grade-block small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 850;
}

.grade-block strong {
  color: #ad91c8;
  font-family: var(--grade);
  font-size: 30px;
  line-height: 1;
}

.feed-note {
  margin: 13px 0;
  color: #504a53;
  font-size: 11px;
  line-height: 1.45;
}

.feed-actions {
  gap: 15px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.feed-actions span:last-child {
  margin-left: auto;
}

.phone-nav {
  justify-content: space-between;
  margin: 18px -22px -18px;
  padding: 12px 18px 14px;
  background: white;
  border-top: 1px solid var(--line);
}

.phone-nav span {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #555058;
  font-size: 7px;
  font-weight: 750;
}

.phone-nav b {
  font-size: 15px;
  line-height: 1;
}

.phone-nav .active,
.phone-nav .add {
  color: var(--purple);
}

.phone-nav .add b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: -28px;
  color: white;
  background: var(--purple);
  border: 3px solid white;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 400;
}

.category-ribbon {
  overflow: hidden;
  color: white;
  background: var(--aubergine);
  border-block: 1px solid rgba(255, 255, 255, 0.09);
}

.ribbon-track {
  min-width: max-content;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 22px 30px;
  margin-inline: auto;
}

.ribbon-track span {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.ribbon-track i {
  width: 5px;
  height: 5px;
  background: var(--rose);
  border-radius: 50%;
}

.how-section {
  background: white;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 50px;
}

.section-heading h2,
.feature-copy h2,
.circle-copy h2 {
  margin: 0;
  font-size: clamp(3.25rem, 5.4vw, 5.2rem);
  line-height: 0.98;
}

.section-heading h2 {
  color: var(--aubergine);
}

.section-heading > p:last-child {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.step-card {
  min-height: 360px;
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  padding: 24px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.step-card:nth-child(4),
.step-card:nth-child(5) {
  grid-column: span 3;
}

.step-featured {
  background: var(--cream);
  border-color: rgba(42, 23, 77, 0.18);
}

.step-number {
  color: var(--rose);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.step-card h3 {
  margin: auto 0 7px;
  color: var(--aubergine);
  font-family: var(--display);
  font-size: 27px;
}

.step-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.search-demo,
.note-demo {
  display: flex;
  align-items: center;
  margin-top: 43px;
  padding: 15px;
  background: white;
  border: 2px solid var(--purple);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(42, 23, 77, 0.07);
}

.search-demo {
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.search-demo span {
  font-size: 24px;
}

.search-demo b {
  margin-left: auto;
  color: white;
  padding: 6px 9px;
  background: var(--purple);
  border-radius: 7px;
}

.grade-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 30px;
}

.grade-demo b {
  display: grid;
  place-items: center;
  padding: 10px 2px;
  color: #aa8fc3;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--grade);
  font-size: 19px;
  box-shadow: 0 7px 16px rgba(42, 23, 77, 0.06);
}

.grade-demo b:nth-child(n + 4) {
  color: #8fab82;
}

.note-demo {
  min-height: 82px;
  align-items: flex-start;
  color: #4f4952;
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 15px;
}

.note-demo span {
  color: var(--rose);
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.top-five-demo {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 7px 10px;
  margin-top: 28px;
}

.top-five-demo b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 8px;
  font-family: var(--display);
}

.top-five-demo span {
  display: flex;
  align-items: center;
  padding: 0 11px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 750;
}

.friends-demo {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.friends-demo span,
.friends-demo b {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-left: -9px;
  color: white;
  background: var(--purple);
  border: 4px solid var(--canvas);
  border-radius: 18px;
  font-size: 12px;
}

.friends-demo span:nth-child(2) { background: var(--rose); }
.friends-demo span:nth-child(3) { background: #70896b; }
.friends-demo b { color: var(--aubergine); background: var(--cream); }

.profile-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--aubergine);
}

.profile-section::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -280px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(232, 216, 190, 0.14);
  border-radius: 120px;
  transform: rotate(20deg);
}

.split-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(58px, 9vw, 116px);
  align-items: center;
}

.screenshot-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.screenshot-stage::before,
.screenshot-stage::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 590px;
  border: 2px solid rgba(232, 216, 190, 0.26);
  border-radius: 48px;
}

.screenshot-stage::before { transform: translate(-24px, 8px) rotate(-4deg); }
.screenshot-stage::after { transform: translate(26px, 10px) rotate(5deg); }

.profile-screenshot,
.search-screenshot {
  width: min(390px, 100%);
  max-height: 650px;
  border-width: 5px;
  border-radius: 48px;
}

.profile-screenshot img,
.search-screenshot img,
.hero-screenshot img {
  display: block;
}

.light-caption {
  color: white;
  background: rgba(42, 23, 77, 0.78);
  border-color: rgba(255, 255, 255, 0.18);
}

.profile-preview {
  padding: 30px;
  color: var(--ink);
  background: #fbfaf8;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
  transform: rotate(-1.2deg);
}

.preview-header {
  display: flex;
  gap: 15px;
  align-items: center;
}

.avatar.large {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  font-size: 15px;
}

.preview-header p,
.preview-header strong {
  margin: 0;
}

.preview-header p {
  color: var(--purple);
  font-size: 12px;
  font-weight: 850;
}

.preview-header strong {
  font-family: var(--display);
  font-size: 20px;
}

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

.stat-grid div {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(20, 15, 27, 0.05);
}

.stat-grid strong {
  font-family: var(--display);
  font-size: 25px;
}

.stat-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.spread-card {
  margin-top: 18px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.spread-card > div:first-child {
  display: flex;
  flex-direction: column;
}

.spread-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.spread-card strong {
  font-family: var(--display);
  font-size: 18px;
}

.bars {
  height: 142px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  align-items: end;
  margin-top: 16px;
  border-bottom: 1px dashed rgba(26, 23, 28, 0.18);
}

.bars span {
  position: relative;
  height: var(--h);
  min-height: 16px;
  background: var(--c);
  border-radius: 5px 5px 0 0;
}

.bars i {
  position: absolute;
  bottom: -17px;
  left: 50%;
  color: var(--c);
  font-family: var(--grade);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  transform: translateX(-50%);
}

.feature-copy .eyebrow {
  color: #e8d8be;
}

.feature-copy h2 {
  color: var(--cream);
}

.feature-lede {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 17px;
  line-height: 1.7;
}

.feature-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list li > b {
  color: var(--rose);
  font-family: var(--display);
  font-size: 17px;
}

.feature-list div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-list strong {
  color: white;
  font-family: var(--display);
  font-size: 19px;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.circle-section {
  background: var(--cream);
}

.circle-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 9vw, 118px);
  align-items: center;
}

.circle-copy h2 {
  color: var(--aubergine);
}

.circle-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.mini-features > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.mini-features b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius: 9px;
}

.mini-features span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.mini-features strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 12px;
}

.conversation-stack {
  position: relative;
  min-height: 510px;
}

.screenshot-stage-search {
  min-height: 650px;
}

.screenshot-stage-search::before,
.screenshot-stage-search::after {
  border-color: rgba(42, 23, 77, 0.1);
}

.conversation-stack::before,
.conversation-stack::after {
  content: "";
  position: absolute;
  inset: 55px 54px 30px 28px;
  background: transparent;
  border: 2px solid rgba(42, 23, 77, 0.08);
  border-radius: 32px;
  transform: rotate(6deg);
}

.conversation-stack::after {
  transform: rotate(-4deg);
}

.conversation-card {
  position: relative;
  z-index: 2;
  width: 84%;
  margin-left: auto;
  padding: 23px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.conversation-card.offset {
  margin: 24px auto -4px 0;
  transform: rotate(-2deg);
}

.conversation-card > div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar.rose { background: var(--rose); }
.avatar.green { background: #779072; }

.conversation-card p {
  margin: 17px 0;
  color: #504a53;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.5;
}

.conversation-card > div p {
  gap: 0;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: initial;
}

.conversation-card > div p strong { font-size: 13px; }
.conversation-card > div p small { color: var(--muted); font-size: 10px; }

.tiny-grade {
  margin-left: auto;
  color: #ae92c8;
  font-family: var(--grade);
  font-size: 29px;
}

.green-grade { color: #8eaa81; }

.conversation-card footer {
  display: flex;
  gap: 18px;
  padding-top: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 750;
}

.site-footer {
  padding: 70px 0 22px;
  color: white;
  background: #18101f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  padding-bottom: 55px;
}

.footer-lockup {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.footer-lockup img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.footer-lockup span {
  position: relative;
  padding-bottom: 8px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
}

.footer-lockup i {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 88px;
  height: 5px;
  background: var(--rose);
  border-radius: 999px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--sand);
  font-family: var(--display);
  font-size: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

@media (max-width: 1050px) {
  .nav-shell { grid-template-columns: 210px 1fr; gap: 20px; }
  .brand-name { font-size: 28px; }
  .brand-mark { width: 40px; height: 40px; }
  .nav-links { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 45px; }
  .floating-grade { display: none; }
  .step-card { grid-column: span 3; }
  .step-card:last-child { grid-column: 2 / span 4; }
}

@media (max-width: 860px) {
  .section-pad { padding: 88px 0; }
  .nav-shell { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-grid, .split-layout, .circle-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .app-showcase { min-height: 680px; }
  .hero-screenshot { width: 412px; }
  .split-layout { gap: 70px; }
  .profile-preview { max-width: 600px; }
  .feature-copy { max-width: 650px; }
  .circle-copy { max-width: 650px; }
  .conversation-stack { max-width: 620px; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 32px, 560px); }
  .site-header { position: static; }
  .nav-shell { min-height: 72px; }
  .brand-name { font-size: 26px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding-top: 62px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(3.55rem, 17vw, 5rem); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-meta { justify-content: center; }
  .app-showcase { min-height: 610px; margin-top: 10px; }
  .hero-screenshot { width: min(388px, calc(100vw - 40px)); border-width: 4px; border-radius: 42px; transform: none; }
  .stack-card { width: 88%; height: 520px; }
  .category-ribbon { overflow-x: hidden; }
  .ribbon-track { justify-content: flex-start; gap: 20px; }
  .section-heading h2, .feature-copy h2, .circle-copy h2 { font-size: clamp(3rem, 13vw, 4.3rem); }
  .steps-grid { display: block; }
  .step-card { min-height: 330px; margin-bottom: 13px; }
  .profile-screenshot, .search-screenshot { border-width: 4px; border-radius: 40px; }
  .stat-grid { gap: 7px; }
  .stat-grid div { min-height: 72px; padding: 10px; }
  .mini-features { grid-template-columns: 1fr; }
  .screenshot-stage, .screenshot-stage-search { min-height: 610px; }
  .conversation-card { width: 94%; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 410px) {
  .nav-shell { display: flex; justify-content: center; }
  .screen-caption { right: 8px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .bars { height: 120px; }
}

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