@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Caveat";
  src: url("./assets/fonts/caveat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Kalam";
  src: url("./assets/fonts/kalam-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

:root {
  --ink: #10131c;
  --muted: #5e6576;
  --line: #e6e9f0;
  --soft: #f7f8fb;
  --orange: #ff441b;
  --purple: #4d22ff;
  --footer: #0f1b2a;
}

* { box-sizing: border-box; }

html {
  color: var(--ink);
  background: #fff;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.018em;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 52% 4%, rgba(255, 68, 27, .08), transparent 13rem),
    radial-gradient(circle at 90% 40%, rgba(19, 57, 100, .05), transparent 21rem),
    #fff;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 86px;
  margin: 0 auto;
  padding: 22px 24px 0;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(640px, 100%);
  min-height: 62px;
  padding: 10px 12px 10px 26px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f7;
  box-shadow: none;
  backdrop-filter: blur(14px);
  transition: width .24s ease, background .18s ease;
  will-change: width;
}

.show-nav-cta .nav-pill {
  width: min(780px, 100%);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
}

.logo strong { font-weight: 800; }

.logo img {
  width: 24px;
  height: 24px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: #303848;
  font-size: 15px;
  font-weight: 600;
  transition: color .18s ease;
}

.nav-links a:hover {
  color: #7b8393;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  max-width: 0;
  margin-left: 0;
  padding: 0;
  overflow: hidden;
  border: 0 solid var(--orange);
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px) scale(.96);
  pointer-events: none;
  transition: max-width .24s ease, margin-left .24s ease, padding .24s ease, opacity .18s ease, transform .24s ease, color .18s ease, background .18s ease;
}

.show-nav-cta .nav-cta {
  max-width: 140px;
  margin-left: 8px;
  padding: 0 18px;
  border-width: 1px;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.nav-cta:hover {
  color: var(--orange);
  background: #fff;
}

.logo-mark {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(3, 3px);
  gap: 3px;
  width: 29px;
  height: 29px;
  padding: 8px 7px;
  grid-template-columns: repeat(3, 4px);
  gap: 4px;
  color: #fff;
  background: var(--orange);
  border-radius: 5px 5px 5px 0;
}

.logo-mark::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  content: "";
  border-top: 7px solid var(--orange);
  border-right: 7px solid transparent;
}

.logo-mark i {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.avatar {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #f1b088 0 46%, #162235 47%);
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px #dfe3eb;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 78px);
  text-align: center;
  padding: 0 20px 70px;
}

.pill {
  display: grid;
  justify-items: center;
  gap: 2px;
  margin: 0 0 26px;
  padding: 0;
  color: #778092;
  border: 0;
  background: transparent;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.quote-line {
  display: block;
}

.pill .quote-name {
  display: inline;
  margin-left: 6px;
  font-family: Kalam, Manrope, Inter, cursive;
  color: #778092;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.hero-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  margin: 0 auto 14px;
}

.hero-reddit-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 168px;
  height: 168px;
  object-fit: contain;
  cursor: pointer;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-reddit-icon.is-bouncing {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  margin: 0;
  filter: drop-shadow(0 18px 26px rgba(16, 19, 28, .18));
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  min-height: 2.08em;
  margin-bottom: 44px;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 80px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.rotating-outcome {
  display: inline-block;
  max-width: 1080px;
  color: #10131c;
  transition: opacity .26s ease, transform .26s ease;
}

.rotating-outcome.is-changing {
  opacity: 0;
  transform: none;
}

.founder-quote {
  display: grid;
  justify-items: center;
  place-content: center;
  max-width: 1120px;
  margin: 150px auto 240px;
  padding: 0 32px;
  text-align: center;
}

.founder-quote p {
  margin: 0;
  width: 100%;
  color: #10131c;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 3.35vw, 50px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.founder-quote p span {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.founder-quote cite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  color: #8a93a3;
  font-family: inherit;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
  font-style: normal;
  font-weight: 700;
}

.founder-quote cite img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-video {
  width: min(1080px, calc(100% - 64px));
  margin: 0 auto 68px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0b1220;
  box-shadow: 0 28px 70px rgba(16, 19, 28, .16);
}

.hero-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.lead {
  max-width: 760px;
  margin-bottom: 36px;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #778092;
  font-size: 22px;
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: 0;
  white-space: normal;
}

.lead span {
  font-weight: 600;
}

.hero-form-wrap {
  position: relative;
  width: min(100%, 620px);
  margin: 0 auto;
}

.hero-form-wrap .url-form {
  width: 100%;
}

.hero-input-arrow {
  position: absolute;
  left: -160px;
  top: -17px;
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(37%) sepia(99%) saturate(3299%) hue-rotate(351deg) brightness(103%) contrast(103%);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-form-wrap .url-form input,
.cta .url-form input {
  border-color: var(--orange);
  box-shadow: 0 11px 28px rgba(255, 68, 27, .1);
}

.url-form {
  display: flex;
  gap: 9px;
  width: min(100%, 620px);
  gap: 14px;
  margin: 0 auto;
}

.url-form input {
  flex: 1;
  min-width: 0;
  height: 58px;
  padding: 0 24px;
  border: 1px solid #dfe3eb;
  border-radius: 5px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 11px 28px rgba(15, 24, 39, .05);
  font-size: 14px;
}

.url-form button,
.footer-form button {
  height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 11px 22px rgba(255, 68, 27, .22);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.hero-form-wrap .url-form button {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.hero-form-wrap .url-form button:hover,
.cta .url-form button:hover,
.footer-form button:hover {
  color: var(--orange);
  background: #fff;
  box-shadow: 0 11px 22px rgba(255, 68, 27, .12);
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 34px;
  text-align: center;
}

.videos {
  margin-top: 0;
}

.section h2 {
  margin-bottom: 28px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.how-new {
  position: relative;
  max-width: none;
  min-height: 520vh;
  margin: 112px auto 0;
  padding: 0;
  background: #fff;
  text-align: center;
}

.how-sticky {
  position: sticky;
  top: 48px;
  height: calc(100vh - 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 92px 0 0;
  background: #fff;
}

.how-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 0 30px;
  color: var(--orange);
  background: #fff4ed;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
}

.how-new h2 {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  margin-bottom: 16px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 900;
}

.how-new h2 span {
  color: var(--orange);
}

.how-subtitle {
  margin-bottom: 55px;
  color: #43506a;
  font-size: 19px;
  line-height: 1.55;
}

.how-flow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7vw;
  width: max-content;
  padding: 0 calc((100vw - min(1120px, calc(100vw - 72px))) / 2);
  transform: translate3d(var(--how-x, 0px), 0, 0);
  transition: transform .08s linear;
  will-change: transform;
}

.how-flow::before {
  display: none;
}

.how-step {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 54px;
  align-items: center;
  flex: 0 0 min(1120px, calc(100vw - 72px));
  min-height: min(500px, calc(100vh - 250px));
  text-align: left;
  opacity: var(--step-opacity, 0);
  transform: translateY(calc((1 - var(--step-opacity, 0)) * 24px)) scale(calc(.985 + (var(--step-opacity, 0) * .015)));
  transition: opacity .18s linear, transform .18s linear;
  will-change: opacity, transform;
}

.step-two,
.step-four {
  grid-template-columns: .86fr 1.14fr;
}

.how-copy {
  position: relative;
  order: -1;
  padding-left: 82px;
}

.how-number {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.how-copy h3 {
  margin-bottom: 26px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 900;
}

.how-copy p {
  color: #43506a;
  font-size: 18px;
  line-height: 1.62;
}

.how-copy ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #283349;
  font-size: 17px;
}

.how-copy li::before,
.how-footnotes span::before {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-right: 11px;
  content: "✓";
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.how-card {
  background: #fff;
  border: 1px solid #e3e7ef;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(20, 25, 37, .08);
}

.how-image-card {
  position: relative;
  display: flex;
  justify-content: center;
  justify-self: center;
  width: 100%;
  overflow: hidden;
  border: 0;
  background: #fff;
  box-shadow: none;
  isolation: isolate;
}

.how-image-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  z-index: 0;
  background: #fff;
}

.how-image-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(460px, 38vw);
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.how-image-card-large img {
  width: min(660px, 53vw);
}

.how-image-card-step-one img {
  width: min(520px, 42vw);
}

.how-image-card-xl img {
  width: min(800px, 64vw);
}

.how-image-card-final img {
  width: min(610px, 49vw);
}

.analyze-card {
  padding: 22px;
}

.mini-title {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 900;
}

.mini-title b {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px;
}

.how-copy .no-break {
  white-space: nowrap;
}

.mini-form {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.mini-form span {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #dfe3eb;
  border-radius: 6px;
  font-size: 12px;
}

.mini-form button,
.reply-card button,
.how-final-cta a {
  border: 0;
  color: #fff;
  background: var(--orange);
  border-radius: 7px;
  font-weight: 900;
}

.mini-form button {
  padding: 0 22px;
}

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 15px;
}

.analysis-grid > div {
  min-height: 245px;
  padding: 22px;
  border: 1px solid #e4e8f0;
  border-radius: 8px;
}

.analysis-grid h4,
.reply-card h4 {
  margin: 0 0 18px;
  font-size: 13px;
}

.analysis-grid p,
.analysis-grid dd,
.analysis-grid dt {
  font-size: 12px;
}

.analysis-grid p {
  display: flex;
  justify-content: space-between;
}

.analysis-grid p b {
  color: #16b36d;
}

.analysis-grid dl {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 11px;
  margin: 0 0 18px;
}

.sub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.sub-tags span {
  padding: 6px 12px;
  border: 1px solid #e1e5ed;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.inbox-card {
  padding: 22px;
}

.tabs {
  display: flex;
  gap: 13px;
  margin-bottom: 16px;
  font-size: 12px;
}

.tabs > * {
  padding: 8px 12px;
  border: 1px solid #e1e5ed;
  border-radius: 7px;
  font-style: normal;
}

.tabs b,
.tabs em {
  color: var(--orange);
}

.inbox-card ol {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inbox-card li {
  position: relative;
  padding-left: 24px;
}

.inbox-card li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.inbox-card b {
  color: #3f2aff;
}

.inbox-card strong {
  float: right;
  color: var(--orange);
  font-size: 22px;
}

.inbox-card p {
  margin: 5px 0 0;
  font-weight: 800;
}

.reply-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.reply-card > div {
  padding: 26px;
}

.reply-card > div + div {
  border-left: 1px solid #e4e8f0;
}

.reply-card p {
  color: #283349;
  font-size: 14px;
  line-height: 1.55;
}

.reply-card button {
  height: 38px;
  padding: 0 22px;
}

.reply-card footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-around;
  padding: 16px;
  color: var(--orange);
  background: #fff4ed;
  font-size: 12px;
  font-weight: 800;
}

.timeline-card {
  display: grid;
  gap: 14px;
  padding: 24px 28px;
}

.timeline-card div {
  padding: 16px 18px;
  border: 1px solid #e7ebf2;
  border-radius: 8px;
}

.timeline-card p {
  margin: 7px 0 0;
  font-size: 13px;
}

.timeline-card footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  color: var(--orange);
  font-weight: 900;
}

.results-card {
  padding: 26px;
}

.results-card header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.results-card .chart {
  float: left;
  width: 52%;
}

.results-card strong {
  color: var(--orange);
  font-size: 30px;
}

.results-card ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 12px 0 0;
  list-style: none;
}

.results-card li {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.results-card p {
  clear: both;
  margin: 28px 0 0;
  padding: 20px;
  background: #fff4ed;
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.how-final-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px 12px 22px;
  padding: 34px 78px;
  background: #fff4ed;
  border: 1px solid #f4dfd1;
  border-radius: 12px;
}

.how-final-cta .url-form {
  width: min(100%, 720px);
}

.how-footnotes {
  display: flex;
  justify-content: center;
  gap: 76px;
  color: #566179;
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1110px;
  margin: 0 auto;
}

.step {
  position: relative;
  height: 238px;
  padding: 156px 32px 26px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(22, 30, 45, .03);
  overflow: hidden;
}

.badge {
  position: absolute;
  top: 22px;
  left: 25px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.step p {
  margin: 0;
  color: #2f3950;
  font-size: 15px;
  line-height: 1.42;
}

.step-art {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 190px;
  height: 112px;
  object-fit: contain;
  transform: translateX(-50%);
}

.step-art-phone {
  top: 30px;
  width: 220px;
  height: 130px;
}

.magnifier {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 122px;
  height: 94px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid #f0f1f5;
}

.magnifier span {
  position: absolute;
  right: 22px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  border: 7px solid #555d77;
  border-radius: 50%;
}

.magnifier span::after {
  position: absolute;
  right: -14px;
  bottom: -11px;
  width: 19px;
  height: 5px;
  content: "";
  background: #555d77;
  border-radius: 99px;
  transform: rotate(45deg);
}

.magnifier i {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 1px;
}

.magnifier i:nth-child(2) { left: 21px; top: 17px; }
.magnifier i:nth-child(3) { left: 48px; top: 7px; }
.magnifier i:nth-child(4) { right: 11px; top: 19px; }
.magnifier i:nth-child(5) { left: 29px; bottom: 13px; }

.comment-art {
  position: absolute;
  top: 54px;
  left: 50%;
  width: 150px;
  height: 92px;
  transform: translateX(-50%);
}

.comment-art b {
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}

.comment-art span {
  position: absolute;
  left: 58px;
  width: 72px;
  height: 9px;
  background: #d6dae3;
  border-radius: 99px;
}

.comment-art span:nth-child(2) { top: 10px; }
.comment-art span:nth-child(3) { top: 31px; width: 57px; }
.comment-art span:nth-child(4) { top: 58px; width: 80px; }

.comment-art em {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 77px;
  height: 51px;
  background: linear-gradient(135deg, #552bff, #3512d7);
  border-radius: 6px 6px 6px 1px;
}

.comment-art em::before,
.comment-art em::after {
  position: absolute;
  left: 14px;
  width: 31px;
  height: 3px;
  content: "";
  background: rgba(255,255,255,.85);
  border-radius: 99px;
}

.comment-art em::before { top: 13px; }
.comment-art em::after { top: 22px; }

.phone-art {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 228px;
  height: 136px;
  transform: translateX(-50%);
}

.phone {
  position: absolute;
  right: 14px;
  top: -1px;
  width: 88px;
  height: 118px;
  padding-top: 36px;
  color: #fff;
  background: linear-gradient(145deg, #182232, #4b5564);
  border: 5px solid #0e1522;
  border-radius: 13px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.toast {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 166px;
  height: 67px;
  padding: 11px 14px 8px 42px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 6px;
  box-shadow: 0 16px 32px rgba(20, 28, 42, .12);
  font-size: 10px;
}

.toast::before {
  position: absolute;
  left: 10px;
  top: 15px;
  content: "";
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 3px;
}

.toast strong,
.toast b,
.toast small { display: block; }

.toast b { margin-top: 3px; font-size: 12px; }
.toast small { color: #485166; }

.mockup {
  max-width: 1240px;
  margin: 56px auto 96px;
  padding: 0 28px;
}

.screenshot-mockup {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.scroll-device {
  width: 100%;
  max-width: 1180px;
  padding: 0;
  border: 1px solid #d9dee8;
  border-radius: 12px;
  background: #fff;
  transform: none !important;
  transition: none;
  box-shadow: 0 18px 42px rgba(16, 19, 28, .08);
}

.scroll-screen {
  height: auto;
  overflow: visible;
  border-radius: 12px;
  background: #f5f6f8;
}

.screenshot-mockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left top;
  border-radius: 12px;
}

.browser-bar {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  background: #edf0f5;
  border: 1px solid #dde2eb;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
}

.browser-bar span:nth-child(1) { background: #ff563d; }
.browser-bar span:nth-child(2) { background: #ffbd2e; }
.browser-bar span:nth-child(3) { background: #28c941; }
.browser-bar p {
  width: 230px;
  height: 17px;
  margin: 0 auto;
  padding-top: 3px;
  color: #555e71;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  font-size: 9px;
}

.app {
  display: grid;
  grid-template-columns: 340px 1fr 375px;
  min-height: 585px;
  background: #fff;
  border: 1px solid #dde2eb;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 23px 55px rgba(23, 30, 43, .12);
  overflow: hidden;
}

.sidebar {
  padding: 30px 26px;
  border-right: 1px solid #e8ebf2;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 16px;
}

.app-logo .logo-mark { width: 18px; height: 18px; padding: 5px 4px; grid-template-columns: repeat(3, 2px); gap: 2px; }
.app-logo .logo-mark i { width: 2px; height: 2px; }

.sidebar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 33px;
  margin-right: 7px;
  color: #1b2440;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.sidebar a.active { color: #fff; background: #3e22ff; }
.sidebar h4 { margin: 20px 0 17px; font-size: 12px; }

.thread-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thread-list li {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 10px;
  align-items: start;
}

.reddit {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}

.purple { background: #2a217f; }
.orange { background: var(--orange); }
.green { background: #29b663; }
.blue { background: #38aee8; }

.thread-list strong,
.thread-list small,
.thread-list em {
  display: block;
  font-size: 10px;
}

.thread-list strong { color: #4c31ff; }
.thread-list small { margin-top: 4px; color: #253048; line-height: 1.35; }
.thread-list em { color: #4c31ff; font-style: normal; font-weight: 800; }

.post {
  padding: 58px 34px;
  border-right: 1px solid #e8ebf2;
}

.post .meta {
  margin-bottom: 18px;
  color: #1a2032;
  font-size: 12px;
  font-weight: 800;
}

.post .meta span {
  display: block;
  margin-top: 3px;
  color: #7b8394;
  font-weight: 600;
}

.post h3 {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.35;
}

.post p,
.post li,
.reply p,
.reply small {
  color: #20283a;
  font-size: 13px;
  line-height: 1.6;
}

.post ul { padding-left: 16px; }
.post-actions { display: flex; gap: 44px; margin-top: 36px; color: #384155; font-size: 13px; }

.reply {
  padding: 58px 34px;
}

.reply h3 {
  color: #4c31ff;
  margin-bottom: 6px;
  font-size: 18px;
}

.reply small { display: block; margin-bottom: 24px; color: #5c6478; }

.reply button {
  width: 256px;
  height: 54px;
  margin-top: 34px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #4c22ff;
  font-size: 15px;
  font-weight: 900;
}

.caption {
  margin: 31px 0 35px;
  color: #2f374c;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}

.caption-above {
  max-width: 1180px;
  margin: 110px auto 28px;
  color: #10131c;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
}

.seo-compare {
  max-width: 1040px;
  margin: 125px auto 135px;
  padding: 0 34px;
  text-align: center;
}

.seo-compare h2 {
  margin-bottom: 24px;
  color: #080d18;
  font-size: 54px;
  line-height: .98;
  font-weight: 1000;
}

.seo-compare h2 span {
  color: var(--orange);
}

.seo-subhead {
  margin: 0 0 68px;
  color: #4c5871;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 800;
}

.seo-panels {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: stretch;
}

.seo-panel {
  min-height: 404px;
  padding: 32px 42px 38px;
  border: 1px solid #dfe4ed;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fbfcfe);
}

.new-aeo {
  border-color: #ffcdbf;
  background: linear-gradient(180deg, #fff8f3, #fffdfb);
}

.seo-panel h3 {
  margin-bottom: 32px;
  color: #354158;
  font-size: 27px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .03em;
}

.new-aeo h3 {
  color: var(--orange);
}

.seo-stack {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.seo-stack > i {
  color: #39465e;
  font-size: 30px;
  line-height: .9;
  font-style: normal;
}

.new-aeo .seo-stack > i {
  color: var(--orange);
}

.seo-item {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 74px;
  padding: 12px 26px;
  text-align: center;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 13px;
  box-shadow: 0 16px 34px rgba(20, 25, 37, .08);
}

.seo-item b {
  color: #111622;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 1000;
}

.seo-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  color: #101725;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: translate(-50%, -50%);
  font-size: 42px;
  font-weight: 1000;
}

.seo-stat-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 42px;
  align-items: center;
  margin: 46px 4px 0;
  padding: 18px 46px;
  color: #10131c;
  background: #fff7ef;
  border: 1px solid #f4d8c7;
  border-radius: 14px;
  text-align: left;
}

.seo-stat-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 42px;
  border-right: 1px solid #f0d7c7;
}

.seo-stat-strip strong {
  color: var(--orange);
  font-size: 38px;
  line-height: 1;
  font-weight: 1000;
}

.seo-stat-strip b,
.seo-stat-strip p {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
}

.seo-after {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin: 54px auto 0;
  color: #10131c;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 1000;
}

.seo-after p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.seo-after span {
  color: var(--orange);
}

.why-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 24px;
  padding: 0 28px;
  color: var(--orange);
  background: #fff4ed;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 900;
}

.why-reddit h2 {
  margin-bottom: 24px;
  color: #10131c;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 900;
}

.why-reddit h2 span {
  color: var(--orange);
}

.why-subtitle {
  margin-bottom: 50px;
  color: #3b4863;
  font-size: 22px;
  line-height: 1.45;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.why-stats article {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 25px;
  align-items: center;
  min-height: 178px;
  padding: 28px;
  text-align: left;
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(20, 25, 37, .06);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: var(--orange);
  background: #fff1e8;
  border-radius: 50%;
  font-size: 46px;
  font-weight: 900;
  overflow: hidden;
}

.why-icon img,
.flow-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.why-stats h3 {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.35;
}

.why-stats p {
  margin: 0;
  color: #59667d;
  font-size: 15px;
}

.discovery-flow {
  margin-bottom: 36px;
  padding: 32px 46px;
  background: #fff6ef;
  border-radius: 20px;
}

.discovery-flow > h3 {
  margin-bottom: 35px;
  font-size: 30px;
  line-height: 1.2;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 38px 1fr 38px 1fr 38px 1fr 38px 1fr;
  gap: 12px;
  align-items: start;
  text-align: left;
}

.flow-grid > i {
  padding-top: 48px;
  color: #0f1728;
  font-size: 42px;
  font-style: normal;
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  color: #667085;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  font-size: 42px;
  font-weight: 900;
  overflow: hidden;
}

.flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-right: 11px;
  color: var(--orange);
  background: #fff;
  border: 1px solid #e1e5ed;
  border-radius: 7px;
  font-size: 22px;
  font-weight: 900;
}

.flow-grid h4 {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.flow-grid p {
  margin: 0 0 0 42px;
  color: #34415b;
  font-size: 15px;
  line-height: 1.45;
}

.shift-banner {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  align-items: center;
  overflow: hidden;
  text-align: left;
  background: #fff;
  border: 1px solid #e3e7ef;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(20, 25, 37, .06);
}

.reddit-badge {
  display: grid;
  place-items: center;
  height: 116px;
  background: #fff1e8;
}

.reddit-badge img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.shift-banner p {
  margin: 0;
  padding: 24px 38px;
  color: #34415b;
  font-size: 20px;
  line-height: 1.38;
}

.shift-banner b {
  color: #10131c;
  font-size: 24px;
}

.ai-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #10131c;
  font-weight: 800;
}

.ai-logos span {
  padding: 24px 18px;
  border-left: 1px solid #e3e7ef;
  text-align: center;
}

.ai-logos img {
  width: 112px;
  height: 36px;
  object-fit: contain;
}

.videos h2 {
  margin-bottom: 58px;
  font-size: 44px;
  line-height: 1.12;
}
.videos > p,
.love > p {
  margin-bottom: 26px;
  color: #60687a;
  font-size: 14px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 42px;
  max-width: 1120px;
  margin: 0 auto 170px;
  text-align: left;
}

.video-grid article {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 8px;
  background: #0b1220;
  box-shadow: 0 16px 38px rgba(16, 19, 28, .12);
}

.video-grid iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cta {
  max-width: 1095px;
  margin: 180px auto 330px;
  padding: 40px 34px;
  text-align: center;
  background: transparent;
  border-radius: 0;
}

.cta h2 {
  margin-bottom: 40px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
}

.cta h2 span {
  color: var(--orange);
}

.cta p {
  margin-bottom: 28px;
  color: #414a5d;
  font-size: 14px;
  line-height: 1.55;
}

.cta .url-form input,
.cta .url-form button {
  height: 64px;
  font-size: 17px;
}

.cta ul {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  color: #4c5569;
  font-size: 14px;
  font-weight: 700;
}

.cta li::before {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  content: "✓";
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 9px;
}

.love { padding-bottom: 70px; }

.love h2 {
  margin-bottom: 10px;
}

.love > p {
  margin-bottom: 28px;
}

.testimonial-columns {
  display: flex;
  justify-content: center;
  gap: 26px;
  max-height: 740px;
  overflow: hidden;
  text-align: left;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.testimonial-column {
  width: min(100%, 330px);
}

.testimonial-track {
  display: grid;
  gap: 24px;
  padding-bottom: 24px;
  animation: testimonial-scroll 16s linear infinite;
}

.testimonial-track.medium {
  animation-duration: 20s;
}

.testimonial-track.slow {
  animation-duration: 18s;
}

.testimonial-track article {
  width: 100%;
  min-height: 218px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(255, 68, 27, .08);
}

.testimonial-track article > p {
  margin: 0;
  color: #20283a;
  font-size: 16px;
  line-height: 1.55;
}

.testimonial-track footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonial-track .avatar {
  width: 42px;
  height: 42px;
}

.testimonial-track b,
.testimonial-track em {
  display: block;
}

.testimonial-track b {
  color: #10131c;
  font-size: 15px;
}

.testimonial-track em {
  color: #687084;
  font-size: 13px;
  font-style: normal;
}

@keyframes testimonial-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.a2 { filter: hue-rotate(45deg); }
.a3 { filter: hue-rotate(90deg); }
.a4 { filter: hue-rotate(160deg); }
.a5 { filter: hue-rotate(210deg); }
.a6 { filter: hue-rotate(260deg); }
.a7 { filter: hue-rotate(310deg); }
.a8 { filter: hue-rotate(130deg); }
.a9 { filter: hue-rotate(25deg); }
.a10 { filter: hue-rotate(190deg); }

.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 58px 74px 92px;
  color: #cfdae9;
  background:
    radial-gradient(circle at 0 100%, rgba(44, 106, 162, .3), transparent 21rem),
    var(--footer);
}

.footer .logo {
  color: #fff;
  margin-bottom: 22px;
  font-size: 20px;
  opacity: .9;
}

.footer section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer section > p {
  max-width: 820px;
  margin-bottom: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-form {
  display: flex;
  gap: 14px;
  width: 680px;
  margin-top: 24px;
}

.footer-form input {
  flex: 1;
  width: auto;
  height: 64px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 4px;
  outline: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-size: 16px;
}

.footer-form input:hover,
.footer-form input:focus {
  border-color: rgba(255, 255, 255, .55);
}

.footer-form button {
  height: 64px;
  padding: 0 30px;
  border: 0;
  box-shadow: none;
  font-size: 15px;
}

.footer .legal-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  color: #dbe5f2;
  font-size: 13px;
  font-weight: 700;
}

.footer .legal-links a {
  text-decoration: none;
}

.footer .legal-links a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 23px;
  margin-top: 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 14px;
}

.footer nav b {
  margin-bottom: 5px;
  color: #fff;
}

.copyright {
  position: absolute;
  left: 50%;
  bottom: 18px;
  margin: 0;
  transform: translateX(-50%);
  color: #cbd5e4;
  font-size: 9px;
  line-height: 1;
  font-weight: 400;
  opacity: .58;
}

.landing-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fff;
}

.landing-loader[hidden] {
  display: none;
}

.landing-loader-card {
  width: min(100%, 760px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(16, 20, 32, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(16, 20, 32, .10);
  text-align: center;
}

.landing-loader-kicker {
  display: inline-flex;
  margin-bottom: 30px;
  color: #ff441b;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-loader-message {
  min-height: 42px;
  margin: 0 0 32px;
  color: #4f5a6e;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.15;
}

.landing-progress {
  width: 100%;
  height: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 68, 27, .28);
  border-radius: 999px;
  background: #fff2ed;
  box-shadow: inset 0 1px 3px rgba(16, 20, 32, .08);
}

.landing-progress-bar {
  display: block;
  width: var(--landing-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff441b, #ff7a45);
  box-shadow: 0 0 24px rgba(255, 68, 27, .35);
  transition: width .45s ease;
}

.landing-loader-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: #7b8494;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 750;
}

.landing-loader-website {
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-progress-count {
  flex: 0 0 auto;
  color: #0d111c;
  font-size: 18px;
}

body.launch-loading {
  overflow: hidden;
}

@media (max-width: 700px) {
  html {
    overflow-x: clip;
  }

  body,
  main,
  main > section {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    background: #fff;
  }

  .topbar {
    min-height: auto;
    padding: 12px 14px 0;
    overflow: hidden;
  }

  .nav-pill {
    width: 100%;
    max-width: calc(100vw - 28px);
    min-height: 54px;
    padding: 8px 12px;
    gap: 6px;
  }

  .show-nav-cta .nav-pill {
    width: 100%;
  }

  .logo {
    flex: 0 0 auto;
    font-size: 17px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a:first-child {
    display: none;
  }

  .nav-links a {
    min-height: 34px;
    padding: 0 7px;
    font-size: 13px;
  }

  .show-nav-cta .nav-cta {
    max-width: 124px;
    min-height: 34px;
    margin-left: 4px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 42px 18px 86px;
  }

  .hero-icon-wrap,
  .hero-reddit-icon {
    width: 118px;
    height: 118px;
  }

  .hero-icon-wrap {
    margin-bottom: 16px;
  }

  .hero-reddit-icon.is-bouncing {
    width: 118px;
    height: 118px;
  }

  h1 {
    width: calc(100vw - 48px);
    max-width: 360px;
    min-height: 4.08em;
    margin-bottom: 26px;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
  }

  .rotating-outcome {
    display: inline;
    max-width: none;
  }

  .lead {
    width: calc(100vw - 48px);
    max-width: 370px;
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.5;
    overflow-wrap: normal;
  }

  .url-form,
  .footer-form {
    display: grid;
    width: 100%;
    gap: 10px;
  }

  .hero-form-wrap {
    width: calc(100vw - 48px);
    max-width: 360px;
  }

  .url-form input,
  .url-form button,
  .footer-form input,
  .footer-form button {
    width: 100%;
    height: 56px;
  }

  .url-form input,
  .footer-form input {
    font-size: 15px;
  }

  .url-form button,
  .footer-form button {
    padding: 0 18px;
    font-size: 16px;
  }

  .hero-input-arrow {
    display: none;
  }

  .founder-quote {
    margin: 34px auto 84px;
    padding: 0 20px;
  }

  .founder-quote p {
    width: calc(100vw - 84px);
    max-width: 320px;
    font-size: clamp(25px, 7.2vw, 32px);
    line-height: 1.18;
  }

  .founder-quote p span {
    display: inline;
    white-space: normal;
  }

  .founder-quote cite {
    margin-top: 22px;
    font-size: 22px;
  }

  .founder-quote cite img {
    width: 38px;
    height: 38px;
  }

  .caption-above {
    width: calc(100vw - 40px);
    max-width: 390px;
    margin-inline: auto;
    padding: 0;
    font-size: 30px;
    line-height: 1.18;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mockup {
    width: 100%;
    max-width: 100%;
    margin: 34px auto 72px;
    padding: 0 12px;
    overflow: hidden;
  }

  .scroll-device {
    width: 100%;
    max-width: 100%;
  }

  .scroll-device {
    border-radius: 10px;
  }

  .scroll-screen {
    height: auto;
    border-radius: 10px;
  }

  .screenshot-mockup img {
    border-radius: 10px;
  }

  .how-new {
    min-height: auto;
    margin: 112px auto 0;
    padding: 0 20px;
  }

  .how-sticky {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
  }

  .how-new h2 {
    margin-bottom: 58px;
    font-size: clamp(34px, 10vw, 46px);
  }

  .how-flow {
    display: grid;
    width: 100%;
    max-width: 360px;
    gap: 48px;
    margin: 0 auto;
    padding: 0;
    transform: none !important;
  }

  .how-step,
  .step-two,
  .step-four {
    display: flex;
    flex-direction: column;
    min-height: 0;
    grid-template-columns: none;
    flex: initial;
    width: 100%;
    min-width: 0;
    opacity: 1 !important;
    transform: none !important;
    text-align: left;
  }

  .how-card {
    display: flex;
    justify-content: center;
    order: 2;
    width: 100%;
    min-width: 0;
    margin: 8px 0 0;
    padding-left: 0;
  }

  .how-image-card img {
    width: 100%;
    max-width: 260px;
    border-radius: 14px;
  }

  .how-image-card-large img {
    max-width: 306px;
  }

  .how-image-card-step-one img {
    max-width: 290px;
  }

  .how-image-card-xl img {
    max-width: 306px;
  }

  .how-image-card-final img {
    max-width: 306px;
  }

  .how-copy {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
    order: 1;
    width: 100%;
    min-width: 0;
    padding-left: 0;
    overflow-wrap: normal;
  }

  .how-number {
    position: static;
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .how-copy h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 1.16;
    overflow-wrap: normal;
  }

  .how-copy p {
    display: none;
  }

  .how-copy ul {
    grid-column: 2;
    gap: 14px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.35;
    min-width: 0;
  }

  .how-copy li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
    min-width: 0;
    padding-left: 0;
    overflow-wrap: anywhere;
  }

  .how-copy .no-break {
    white-space: normal;
  }

  .how-copy li::before {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    font-size: 11px;
  }

  .cta {
    margin: 92px auto 100px;
    padding: 0 20px;
  }

  .cta h2 {
    width: min(100%, 360px);
    margin-inline: auto;
    margin-bottom: 28px;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 0 18px;
    overflow: hidden;
  }

  .videos h2 {
    margin-bottom: 30px;
    font-size: clamp(30px, 8.8vw, 42px);
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 92px;
  }

  .love {
    padding-bottom: 104px;
  }

  .love h2 {
    margin-bottom: 38px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .testimonial-columns {
    display: grid;
    grid-template-columns: 1fr;
    max-height: none;
    gap: 16px;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonial-column {
    width: 100%;
  }

  .testimonial-track {
    gap: 16px;
    padding-bottom: 0;
    animation: none;
  }

  .testimonial-track article:nth-child(n + 4) {
    display: none;
  }

  .testimonial-track article {
    min-height: 0;
    padding: 22px;
    border-radius: 14px;
  }

  .footer {
    display: block;
    padding: 54px 18px 34px;
    text-align: center;
  }

  .footer section > p {
    max-width: 32rem;
    margin: 0 auto;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
  }

  .footer-form {
    max-width: 430px;
    margin: 24px auto 0;
  }

  .copyright {
    position: static;
    transform: none;
    margin-top: 30px;
  }

  .landing-loader {
    align-items: start;
    padding: 80px 18px 24px;
  }

  .landing-loader-card {
    width: min(100%, 300px);
    padding: 28px 18px;
    border-radius: 14px;
  }

  .landing-loader-kicker {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .landing-loader-message {
    min-height: 76px;
    margin-bottom: 24px;
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .landing-progress {
    height: 20px;
  }

  .landing-loader-meta {
    gap: 12px;
    margin-top: 14px;
    font-size: 13px;
  }

  .landing-progress-count {
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .logo-mark { width: 27px; height: 27px; padding: 8px 6px; }
  .step { height: auto; min-height: 178px; }
  .post, .reply, .sidebar { padding: 24px 18px; }
  .cta ul { display: grid; gap: 12px; justify-content: start; text-align: left; }
}
