@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #eef3fb;
  --bg-soft: #e5edf8;
  --surface: #f9fbff;
  --surface-strong: #ffffff;
  --navy: #0b1630;
  --ink: #18243b;
  --muted: #63728e;
  --muted-light: #8c99af;
  --blue: #2457f5;
  --blue-dark: #1745d1;
  --blue-soft: #dce6ff;
  --border: #c7d5e9;
  --border-strong: #aebfda;
  --reddit: #ff4500;
  --shadow: 0 24px 70px rgba(45, 70, 118, 0.13);
  --shadow-soft: 0 12px 36px rgba(45, 70, 118, 0.1);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #8fa5c6 var(--bg);
}

html::-webkit-scrollbar {
  width: 11px;
}

html::-webkit-scrollbar-track {
  background: var(--bg);
}

html::-webkit-scrollbar-thumb {
  min-height: 72px;
  border: 3px solid var(--bg);
  border-radius: 999px;
  background: #8fa5c6;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--navy);
  background: var(--bg);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
a,
textarea {
  font: inherit;
}

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

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(238, 243, 251, 0.88);
  border-color: rgba(174, 191, 218, 0.58);
  box-shadow: 0 8px 30px rgba(45, 70, 118, 0.07);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand--small {
  font-size: 17px;
  gap: 8px;
}

.brand--small img {
  width: 27px;
  height: 27px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: color 160ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.demo-tab:focus-visible,
.tone:focus-visible,
.reply-list button:focus-visible,
.angle-visual button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(36, 87, 245, 0.24);
  outline-offset: 3px;
}

.button--primary {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 20px rgba(36, 87, 245, 0.18);
}

.button--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(36, 87, 245, 0.24);
}

.button--outline {
  background: rgba(255, 255, 255, 0.46);
  border-color: var(--blue);
  color: var(--blue);
}

.button--quiet {
  background: transparent;
  border-color: var(--border);
}

.section {
  padding-block: 120px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.voice-copy h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.5vw, 72px);
}

.section-heading p,
.voice-copy > p,
.final-cta p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 162px 0 64px;
}

.hero__wash {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(104, 139, 255, 0.17), transparent 35%),
    linear-gradient(180deg, #f5f8fd 0%, var(--bg) 68%);
}

.hero__content {
  text-align: center;
}

.announcement {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 26px;
  padding: 8px 12px 8px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  border: 1px solid rgba(36, 87, 245, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 500;
}

.hero__title {
  max-width: 980px;
  margin: 0 auto 25px;
  font-size: clamp(60px, 8.5vw, 118px);
}

.hero__title span {
  color: var(--blue);
}

.hero__copy {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-stage {
  position: relative;
  max-width: 1030px;
  min-height: 620px;
  margin: 92px auto 0;
  border: 1px solid rgba(174, 191, 218, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(245, 248, 253, 0.8)),
    radial-gradient(circle, rgba(36, 87, 245, 0.12) 1px, transparent 1px);
  background-size: auto, 24px 24px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto 8% -36px;
  height: 80px;
  border-radius: 50%;
  background: rgba(67, 97, 158, 0.12);
  filter: blur(28px);
}

.hero-stage__platform {
  position: absolute;
  top: 28px;
  left: 32px;
  display: flex;
  gap: 8px;
}

.hero-stage__platform span {
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

.hero-stage__platform img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.social-post,
.extension-preview,
.demo-post,
.demo-read,
.voice-form {
  background: rgba(249, 251, 255, 0.94);
  border: 1px solid var(--border);
}

.social-post {
  padding: 24px;
  text-align: left;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.social-post__header,
.demo-post__header {
  display: flex;
  align-items: center;
  gap: 11px;
}

.social-post__header > span:nth-child(2),
.demo-post__header > span:nth-child(2) {
  min-width: 0;
  display: grid;
  line-height: 1.35;
}

.social-post__header strong,
.demo-post__header strong {
  font-size: 14px;
}

.social-post__header small,
.demo-post__header small {
  color: var(--muted);
  font-size: 11px;
}

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

.avatar--blue {
  background: var(--blue);
}

.verified-mark {
  width: 14px;
  height: 14px;
  margin-left: 3px;
  display: inline-grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: #1d9bf0;
  font-size: 9px;
  font-style: normal;
  vertical-align: 1px;
}

.platform-mark {
  width: 18px;
  height: 18px;
  margin-left: auto;
  object-fit: contain;
}

.social-post > p {
  margin: 25px 0 20px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}

.social-post__time {
  padding-bottom: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}

.social-post__time strong {
  color: var(--ink);
}

.social-post__metrics {
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
}

.hero-stage__post {
  position: absolute;
  top: 104px;
  left: 48px;
  width: 56%;
}

.extension-preview {
  text-align: left;
  border-radius: var(--radius-md);
  box-shadow: 0 28px 60px rgba(24, 45, 92, 0.2);
}

.hero-stage__extension {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 38px;
  width: 42%;
}

.extension-preview__header {
  min-height: 58px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.extension-preview__platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.extension-preview__platform img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.extension-preview__body {
  padding: 20px 20px 18px;
}

.preview-read {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}

.preview-read > span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.preview-read strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.025em;
}

.preview-read small {
  color: var(--muted);
  font-size: 8px;
}

.preview-summary {
  margin: 13px 0 15px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.preview-tones {
  margin-bottom: 15px;
  display: flex;
  gap: 17px;
  border-bottom: 1px solid var(--border);
}

.preview-tones span {
  position: relative;
  padding: 0 0 8px;
  color: var(--muted);
  border: 0;
  font-size: 9px;
  font-weight: 500;
}

.preview-tones span.is-active {
  color: var(--blue);
}

.preview-tones span.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
}

.preview-reply {
  padding: 13px 14px 12px;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.5);
}

.preview-reply > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.preview-reply span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.preview-reply button {
  padding: 4px 8px;
  color: var(--blue);
  border: 1px solid rgba(36, 87, 245, 0.42);
  border-radius: 4px;
  background: transparent;
  font: inherit;
  font-size: 8px;
  font-weight: 600;
}

.preview-reply p {
  margin: 0;
  font-size: 11px;
  line-height: 1.48;
}

.demo {
  background: var(--surface);
}

.demo-shell {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(231, 238, 248, 0.96), rgba(211, 224, 241, 0.96));
  box-shadow: 0 28px 70px rgba(29, 54, 105, 0.14);
}

.demo-tabs {
  min-height: 66px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  background: rgba(241, 246, 252, 0.88);
}

.demo-app-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
}

.demo-app-brand img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.demo-app-brand strong {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -0.025em;
}

.demo-app-divider {
  width: 1px;
  height: 26px;
  margin-right: 4px;
  background: var(--border);
}

.demo-app-state {
  margin-left: auto;
  color: #5c6f90;
  font-size: 9px;
  font-weight: 500;
}

.demo-tab {
  min-width: 84px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.demo-tab img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.demo-tab.is-active {
  color: #173b9e;
  border-color: #89a6e8;
  background: rgba(247, 250, 255, 0.94);
}

.demo-grid {
  padding: 30px 32px 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 38px;
  border-bottom: 1px solid rgba(151, 170, 202, 0.55);
}

.demo-post {
  min-height: 286px;
  padding: 23px;
  border-color: #afbed3;
  border-radius: 11px;
  background: rgba(250, 252, 255, 0.84);
  box-shadow: 0 9px 26px rgba(38, 60, 104, 0.07);
}

.demo-post h3 {
  margin: 24px 0 12px;
  font-size: 24px;
}

.demo-post > p {
  margin: 28px 0;
  color: var(--ink);
  font-size: 17px;
}

.demo-post__meta {
  margin-top: 34px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 2px 0;
}

.demo-read {
  flex: 1;
  padding: 2px 0 19px;
  border: 0;
  border-bottom: 1px solid rgba(151, 170, 202, 0.72);
  border-radius: 0;
  background: transparent;
}

.demo-read span {
  display: block;
  margin-bottom: 7px;
  color: #637391;
  font-size: 9px;
  font-weight: 500;
}

.demo-read strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.demo-read p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.tone-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tone,
.angle-visual button {
  padding: 8px 11px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: rgba(248, 251, 255, 0.72);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition:
    color 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.tone:hover,
.angle-visual button:hover {
  transform: translateY(-1px);
}

.tone.is-active,
.angle-visual button.is-active {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.demo-generate {
  width: 100%;
}

.demo-generate.is-loading {
  cursor: wait;
  opacity: 0.82;
}

.demo-results {
  padding: 24px 32px 30px;
}

.demo-results__heading {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-results__heading span {
  color: var(--muted);
  font-size: 11px;
}

.reply-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid #afbed3;
  border-radius: 10px;
  background: rgba(248, 251, 255, 0.58);
  list-style: none;
}

.reply-list li {
  min-height: 0;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.reply-list li + li {
  border-top: 1px solid #c6d2e2;
}

.reply-list li:hover {
  background: rgba(255, 255, 255, 0.54);
}

.reply-list li.is-refreshing {
  opacity: 0;
  transform: translateY(8px);
}

.reply-list li > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
}

.reply-list p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.reply-list button {
  grid-column: 3;
  justify-self: end;
  padding: 7px 10px;
  color: var(--blue);
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.reply-list button.is-used {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.features {
  padding-bottom: 180px;
}

.feature-stack {
  max-width: 1050px;
  margin-inline: auto;
}

.feature-card {
  position: sticky;
  min-height: 480px;
  margin-bottom: 80px;
  padding: 62px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card:nth-child(1) {
  top: 116px;
}

.feature-card:nth-child(2) {
  top: 136px;
}

.feature-card:nth-child(3) {
  top: 156px;
  margin-bottom: 0;
}

.feature-card--blue {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.feature-card--light {
  background: var(--surface-strong);
  border-color: var(--blue);
}

.feature-card--navy {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.feature-card h3 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 66px);
}

.feature-card__copy p {
  margin-bottom: 0;
  max-width: 560px;
  font-size: 17px;
  opacity: 0.72;
}

.feature-card__visual {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.analysis-visual {
  display: grid;
  align-content: center;
  gap: 24px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  background: rgba(11, 34, 105, 0.18);
  box-shadow: none;
}

.analysis-visual__headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.analysis-visual__headline > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 500;
}

.analysis-visual__headline strong {
  color: white;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.analysis-visual > p {
  margin: 0;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 13px;
  line-height: 1.6;
}

.analysis-visual__signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.analysis-visual__signals > div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding-right: 14px;
}

.analysis-visual__signals > div + div {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.analysis-visual__signals span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.analysis-visual__signals strong {
  overflow: hidden;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
}

.angle-visual {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background:
    linear-gradient(rgba(238, 243, 251, 0.82), rgba(238, 243, 251, 0.82)),
    radial-gradient(circle, rgba(36, 87, 245, 0.18) 1px, transparent 1px);
  background-size: auto, 18px 18px;
}

.voice-visual {
  display: grid;
  align-content: center;
  gap: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 112, 255, 0.16), transparent 43%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.voice-visual__source,
.voice-visual__match {
  padding: 20px 22px;
  border-radius: 15px;
}

.voice-visual__source {
  width: 100%;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.voice-visual__match {
  width: 88%;
  margin-left: auto;
  color: var(--navy);
  background: #f4f7ff;
  box-shadow: 0 18px 44px rgba(2, 9, 27, 0.2);
}

.voice-visual__match > div {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.voice-visual__match span {
  font-size: 11px;
  font-weight: 600;
}

.voice-visual__match small {
  font-size: 10px;
  opacity: 0.5;
}

.voice-visual__source > div:not(.voice-post__header):not(.voice-post__meta) {
  display: none;
}

.voice-post__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-post__avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--navy);
  border-radius: 50%;
  background: #f4f7ff;
  font-size: 9px;
  font-weight: 700;
  place-items: center;
}

.voice-post__identity {
  display: grid;
  min-width: 0;
  line-height: 1.35;
}

.voice-post__identity strong {
  color: white;
  font-size: 11px;
  font-weight: 600;
}

.voice-post__identity small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.voice-post__header > img {
  width: 15px;
  height: 15px;
  margin-left: auto;
  padding: 2px;
  border-radius: 4px;
  background: white;
  object-fit: contain;
}

.voice-visual__source p {
  margin: 17px 0 14px;
  color: white;
  font-size: 13px;
  line-height: 1.55;
}

.voice-post__meta {
  display: flex;
  gap: 18px;
  padding-top: 11px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 8.5px;
}

.voice-visual__match strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}

.voice-visual__path {
  height: 60px;
  display: grid;
  grid-template-columns: 1fr 46px 1fr;
  align-items: center;
  gap: 10px;
}

.voice-visual__path > span:not(.voice-visual__app-mark) {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(119, 148, 255, 0.56));
}

.voice-visual__path > span:last-child {
  background: linear-gradient(90deg, rgba(119, 148, 255, 0.56), transparent);
}

.voice-visual__app-mark {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(109, 137, 238, 0.42);
  border-radius: 13px;
  background: #e8eef8;
  box-shadow:
    0 0 0 5px rgba(66, 98, 220, 0.08),
    0 10px 24px rgba(2, 9, 27, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  place-items: center;
}

.voice-visual__app-mark img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.voice {
  background: var(--surface);
}

.voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 100px;
}

.voice-copy h2 {
  max-width: 680px;
}

.headline-x {
  display: inline-block;
  width: 0.82em;
  vertical-align: -0.02em;
}

.headline-x img {
  width: 100%;
}

.voice-form {
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.voice-form header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.voice-form header span {
  display: grid;
}

.voice-form header strong {
  font-size: 17px;
}

.voice-form header small {
  color: var(--muted);
  font-size: 11px;
}

.voice-form header img {
  width: 38px;
}

.voice-form label {
  margin-bottom: 14px;
  display: grid;
  gap: 7px;
}

.voice-form label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.voice-form textarea {
  min-height: 96px;
  padding: 15px;
  resize: none;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface-strong);
  font-size: 12px;
  line-height: 1.55;
}

.voice-form .button {
  width: 100%;
}

.voice-form > p {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.platform-card {
  position: relative;
  min-height: 310px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 42px rgba(20, 48, 105, 0.08);
}

.platform-card__top {
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.platform-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
}

.platform-card__icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.platform-card--reddit .platform-card__icon img {
  width: 33px;
  height: 33px;
}

.platform-card h3 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: 31px;
}

.platform-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 90px;
}

.accordion details {
  border-bottom: 1px solid var(--border);
}

.accordion summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 650px;
  padding: 0 44px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding-block: 96px;
}

.final-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: clamp(54px, 7vw, 88px);
  text-align: left;
  color: white;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(125deg, rgba(48, 89, 238, 0.2), transparent 42%),
    var(--navy);
}

.waitlist-copy > img {
  width: 52px;
  margin-bottom: 24px;
}

.final-cta__panel h2 {
  margin-bottom: 15px;
}

.final-cta__panel p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.waitlist-form {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.waitlist-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.waitlist-field input {
  min-width: 0;
  height: 54px;
  padding: 0 17px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  outline: none;
  background: rgba(5, 12, 29, 0.7);
  font: inherit;
  font-size: 14px;
}

.waitlist-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.waitlist-field input:focus {
  border-color: rgba(116, 151, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(48, 89, 238, 0.16);
}

.waitlist-field .button {
  min-width: 145px;
  height: 54px;
  border-radius: 13px;
}

.waitlist-field .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.waitlist-form.is-complete .waitlist-field input {
  opacity: 0.5;
}

.waitlist-status {
  min-height: 18px;
  margin: 10px 6px 0 !important;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 10px;
}

.waitlist-status[data-state="success"] {
  color: #9cb5ff !important;
}

.waitlist-status[data-state="error"] {
  color: #ff9eae !important;
}

.waitlist-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Centered, lighter waitlist conversion block. */
.final-cta__panel {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: clamp(58px, 7vw, 88px) clamp(24px, 7vw, 96px);
  color: var(--navy);
  border: 1px solid #b8c9e1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.56), transparent 54%),
    #d8e4f4;
  box-shadow: 0 24px 70px rgba(39, 62, 105, 0.1);
}

.waitlist-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-copy > img {
  width: 58px;
  margin: 0 auto 25px;
}

.final-cta__panel h2 {
  max-width: none;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.final-cta__panel .waitlist-copy p {
  max-width: 590px;
  margin: 0 auto;
  color: #596982;
  font-size: 16px;
  line-height: 1.65;
}

.waitlist-form {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 9px;
  border-color: #b7c6dc;
  background: rgba(244, 248, 253, 0.72);
  box-shadow: 0 16px 40px rgba(54, 76, 116, 0.1);
}

.waitlist-field input {
  color: #172238;
  border-color: #c0ccdc;
  background: rgba(255, 255, 255, 0.86);
}

.waitlist-field input::placeholder {
  color: #8a96a9;
}

.waitlist-status {
  text-align: center;
  color: #6d7b91 !important;
}

.waitlist-status[data-state="success"] {
  color: #2458c8 !important;
}

.waitlist-status[data-state="error"] {
  color: #bd3e58 !important;
}

.footer {
  padding: 30px 0 42px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}

.footer__inner p {
  margin: 0;
}

.footer__inner > span {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 76px 20px auto;
    padding: 24px;
    display: grid;
    justify-items: start;
    gap: 18px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(249, 251, 255, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .hero-stage {
    min-height: 690px;
  }

  .hero-stage__post {
    width: calc(100% - 80px);
    left: 40px;
  }

  .hero-stage__extension {
    width: 50%;
    right: 40px;
  }

  .demo-grid,
  .voice-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .reply-list {
    grid-template-columns: 1fr;
  }

  .reply-list li {
    min-height: 0;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-card__visual {
    min-height: 210px;
  }

  .voice-grid,
  .faq-grid {
    gap: 54px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 26px, 1180px);
    --radius-lg: 26px;
  }

  .nav {
    min-height: 72px;
  }

  .section {
    padding-block: 84px;
  }

  .hero {
    padding-top: 128px;
  }

  .hero__title {
    font-size: clamp(50px, 15vw, 78px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 620px;
    margin-top: 60px;
  }

  .hero-stage__platform {
    top: 18px;
    left: 18px;
  }

  .hero-stage__post {
    top: 76px;
    left: 18px;
    width: calc(100% - 36px);
    padding: 18px;
  }

  .social-post > p {
    font-size: 14px;
  }

  .social-post__metrics {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-stage__extension {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 64px);
  }

  .demo-grid,
  .demo-results {
    padding-inline: 18px;
  }

  .demo-grid {
    padding-top: 22px;
  }

  .demo-tabs {
    overflow-x: auto;
  }

  .demo-tab {
    min-width: 100px;
  }

  .demo-post {
    min-height: 0;
    padding: 20px;
  }

  .tone-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .tone:last-child {
    grid-column: span 2;
  }

  .feature-card {
    position: relative;
    top: auto !important;
    min-height: 0;
    margin-bottom: 20px;
    padding: 32px 24px;
  }

  .feature-card h3 {
    font-size: 42px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 290px;
    padding: 30px;
  }

  .platform-card__top {
    margin-bottom: 44px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .footer__inner > span {
    justify-self: center;
  }

  .final-cta__panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .final-cta {
    padding-block: 64px;
  }

  .final-cta__panel {
    padding: 36px 22px;
  }

  .waitlist-field {
    grid-template-columns: 1fr;
  }

  .waitlist-field .button {
    width: 100%;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
