:root {
  --bg: #f5ede7;
  --surface: #fffaf6;
  --surface-strong: #ffffff;
  --ink: #1f1a17;
  --muted: #6d5f57;
  --brand: #734332;
  --brand-soft: #f1e1dd;
  --line: rgba(31, 26, 23, 0.12);
  --shadow: 0 18px 50px rgba(60, 34, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(115, 67, 50, 0.1), transparent 32%),
    linear-gradient(180deg, #fcf8f4 0%, var(--bg) 100%);
}

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

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 248, 244, 0.84);
  border-bottom: 1px solid rgba(115, 67, 50, 0.08);
}

.site-header__inner,
.site-footer__inner,
.section,
.hero,
.contact-hero,
.contact-layout {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(115, 67, 50, 0.1);
  color: var(--brand);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 48px 0 34px;
}

.hero__content,
.hero__visual,
.contact-card,
.contact-panel,
.feature-card,
.cta-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 241, 235, 0.96));
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero h1,
.contact-card h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero p,
.contact-card p,
.section-intro p,
.feature-copy,
.cta-panel p,
.contact-copy {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 0px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(115, 67, 50, 0.24);
}

.button-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(115, 67, 50, 0.22);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero__visual {
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(19, 14, 12, 0.14), rgba(19, 14, 12, 0.48)),
    url("/assets/images/hero-bg.jpg") center/cover no-repeat;
  position: relative;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.hero__badge strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
}

.section {
  padding: 28px 0;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--surface-strong);
  border: 1px solid rgba(115, 67, 50, 0.08);
}

.feature-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}

.feature-card img.feature-card__preview-tall {
  aspect-ratio: 1 / 1.28;
  object-fit: contain;
  object-position: center top;
  background: #F4B3CC;
  padding-top: 14px;
}

.feature-card__body {
  padding: 22px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.feature-copy {
  margin: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 22px 0 56px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(115, 67, 50, 1), rgba(57, 35, 27, 1));
  color: #fff;
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-panel .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-hero {
  padding: 48px 0 24px;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 225, 221, 0.88));
  padding: clamp(28px, 5vw, 52px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  padding-bottom: 56px;
}

.product-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 44px 0 56px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 136, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(101, 186, 156, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 241, 235, 0.94));
  border: 1px solid rgba(115, 67, 50, 0.08);
  box-shadow: var(--shadow);
}

.product-copy {
  padding: clamp(8px, 2vw, 20px);
}

.product-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.product-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
}

.product-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(115, 67, 50, 0.08);
  color: var(--brand);
  font-weight: 700;
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    linear-gradient(135deg, rgba(255, 190, 201, 0.3), rgba(255, 244, 214, 0.34)),
    #fffaf6;
}

.product-visual img {
  width: 100%;
  max-width: 560px;
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(36, 23, 18, 0.16);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-button svg {
  width: 18px;
  height: 18px;
}

.contact-panel,
.contact-card {
  border: 1px solid rgba(115, 67, 50, 0.08);
}

.contact-panel {
  background: var(--surface-strong);
  padding: 18px;
}

.contact-panel iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 20px;
  background: #fff;
}

.contact-copy {
  margin: 18px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer__links {
  display: flex;
  gap: 16px;
}

@media (max-width: 960px) {
  .hero,
  .contact-layout,
  .cta-panel,
  .product-card {
    grid-template-columns: 1fr;
  }

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

  .hero__visual {
    min-height: 360px;
  }

  .product-visual {
    min-height: auto;
  }

  .site-footer__inner,
  .section-intro {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 28px;
  }

  .hero__content,
  .contact-card {
    padding: 24px;
  }

  .cta-panel {
    padding: 22px;
  }

  .hero__badge {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .contact-panel {
    padding: 12px;
  }
}

.wordman-page {
  font-family: "Inter Tight", "Avenir Next", "Segoe UI", sans-serif;
  background: #f6be1f;
  color: #404541;
  --wordman-screen-width: 170px;
}

body.wordman-page {
  background: #f6be1f;
}

.wordman-page .brand {
  display: inline-flex;
  align-items: center;
}

.wordman-page .site-header {
  background: rgba(246, 190, 31, 0.84);
  border-bottom: 0 solid rgba(115, 67, 50, 0.317);
}

.wordman-page .site-header__inner {
  width: min(calc(100% - 16px), 1180px);
}

.wordman-brand {
  max-width: min(100%, 260px);
}

.wordman-brand--header {
  max-width: min(100%, 180px);
}

.wordman-brand img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
}

.wordman-brand--header img {
  width: 100%;
}

.wordman-shell,
.wordman-footer__inner {
  width: min(calc(100% - 16px), 1180px);
  margin: 0 auto;
}

.wordman-shell {
  padding-top: 8px;
  padding-bottom: 24px;
}

.wordman-section + .wordman-section {
  margin-top: 3px;
}

.wordman-card {
  background: #fcfcfc;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 0;
  padding: 22px 16px;
  box-shadow: none;
}

.wordman-card--soft {
  background: #fcfcfc;
}

.wordman-section-heading {
  max-width: 46.875rem;
}

.wordman-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 9.5vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.wordman-section-intro,
.wordman-progress__intro,
.wordman-trust__intro,
.wordman-trust__closing {
  margin: 12px 0 0;
  color: rgba(64, 69, 65, 0.84);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 600;
}

.wordman-panel-progress {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(64, 69, 65, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.wordman-panel-progress__dots {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 7px;
}

.wordman-panel-progress__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(64, 69, 65, 0.18);
}

.wordman-panel-progress__dot.is-active {
  background: #404541;
}

.wordman-eyebrow {
  color: rgba(64, 69, 65, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.wordman-hero {
  display: grid;
  gap: 22px;
  padding: 10px 0 14px;
}

.wordman-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.wordman-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 14vw, 4rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.wordman-copy__lead {
  margin: 12px 0 0;
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.48;
  font-weight: 700;
}

.wordman-copy__sub {
  margin: 8px 0 0;
  max-width: 32ch;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(64, 69, 65, 0.82);
  font-weight: 600;
}

.wordman-copy__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.wordman-copy__highlights--mobile {
  display: none;
}

.wordman-copy__highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 0;
  background: #fff6da;
  border: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.wordman-cta-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.wordman-button,
.wordman-button-secondary {
  width: 100%;
  min-height: 50px;
  font-size: 0.97rem;
}

.wordman-button {
  background: #404541;
  box-shadow: 0 14px 28px rgba(64, 69, 65, 0.2);
}

.wordman-button--static {
  cursor: default;
}

.wordman-button--static:hover {
  transform: none;
}

.wordman-button-secondary {
  background: transparent;
  border-color: rgba(64, 69, 65, 0.22);
  color: #404541;
}

.wordman-button-secondary--static {
  cursor: default;
}

.wordman-button-secondary--static:hover {
  transform: none;
}

.wordman-copy__reassurance {
  margin: 20px 0 0;
  font-size: 0.88rem;
  line-height: 1.32;
  font-weight: 700;
}

.wordman-trust-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.wordman-trust-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 600;
}

.wordman-trust-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #404541;
}

.wordman-phone-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wordman-phone {
  width: 100%;
  background: #fcfcfc;
  border: 4px solid #121212;
  border-radius: 0;
  padding: 8px;
}

.wordman-phone img {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
  background: #fcfcfc;
}

.wordman-reassurance-grid {
  display: grid;
  gap: 0;
  margin-top: 16px;
}

.wordman-reassurance-item,
.wordman-trust-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 14px 0;
}

.wordman-reassurance-item {
  border-bottom: 1px solid rgba(64, 69, 65, 0.1);
}

.wordman-reassurance-item:first-child {
  padding-top: 0;
}

.wordman-reassurance-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.wordman-reassurance-item h3,
.wordman-trust-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.wordman-reassurance-item p,
.wordman-trust-item p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.92rem;
}

.wordman-how {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 20px;
}

.wordman-how-story {
  position: relative;
  margin-top: 18px;
}

.wordman-progress-story {
  position: relative;
  margin-top: 18px;
}

#gameplay .wordman-section-heading {
  position: static;
  top: auto;
  z-index: auto;
  background: transparent;
  padding-top: 0;
  padding-bottom: 14px;
}

.wordman-how-stage {
  display: none;
}

.wordman-progress-stage {
  display: none;
}

.wordman-step {
  display: grid;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(64, 69, 65, 0.12);
  align-content: start;
  justify-items: stretch;
  min-height: 76svh;
  justify-items: start;
}

.wordman-step:last-child {
  border-bottom: 0;
}

.wordman-step__number {
  display: none;
}

.wordman-step h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.08;
}

.wordman-step p {
  margin: 0;
  line-height: 1.58;
}

.wordman-audio-sample {
  position: absolute;
  right: -30px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: #404541;
  font-family: inherit;
  cursor: pointer;
  flex: 0 0 auto;
}

.wordman-audio-sample:hover {
  background: transparent;
}

.wordman-audio-sample__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #404541;
  color: #fcfcfc;
}

.wordman-audio-sample--playing .wordman-audio-sample__icon {
  background: #f6be1f;
  color: #404541;
  outline: 2px solid #404541;
}

.wordman-shot {
  position: relative;
  width: min(100%, 180px);
  justify-self: center;
  margin-top: 0;
  overflow: hidden;
  border-radius: 0;
  border: 2px solid #121212;
  background: #fcfcfc;
  padding: 8px;
}

.wordman-shot--audio {
  overflow: visible;
}

.wordman-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.wordman-stage-grid {
  display: grid;
  gap: 24px;
  margin-top: 20px;
}

.wordman-stage {
  display: grid;
  gap: 24px;
  align-content: start;
}

.wordman-stage__copy {
  max-width: 34ch;
  padding-top: 0;
  align-self: start;
}

.wordman-stage__gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(44vw - 12px);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  justify-content: flex-start;
}

.wordman-stage__gallery img {
  width: calc(44vw - 12px);
  aspect-ratio: 1 / 2.12;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  background: #fcfcfc;
  border: 2px solid #121212;
  padding: 8px;
}

.wordman-stage__gallery--quad {
  grid-auto-flow: row;
  grid-template-columns: repeat(2, minmax(0, calc(44vw - 12px)));
  grid-auto-columns: auto;
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
}

.wordman-stage__gallery--quad img {
  width: 100%;
  aspect-ratio: 1 / 1.035;
  object-position: center;
}

.wordman-stage__eyebrow {
  font-size: 0.86rem;
  font-weight: 700;
  color: #6e746c;
}

.wordman-stage h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.08;
}

.wordman-stage p {
  margin: 0;
  line-height: 1.58;
}

.wordman-trust {
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.wordman-trust-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(64, 69, 65, 0.1);
}

.wordman-trust-item:first-child {
  padding-top: 0;
}

.wordman-trust-item--quote {
  background: #404541;
  color: #fffaf0;
  border-bottom: 0;
  padding: 18px;
  margin-top: 4px;
}

.wordman-trust-quote {
  font-style: italic;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.68;
}

.wordman-closing-cta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(64, 69, 65, 0.12);
}

.wordman-cta-row--closing {
  margin-top: 16px;
}

.wordman-footer {
  background: #fcfcfc;
  border-top: 3px solid rgb(255, 255, 255);
  margin-top: 18px;
}

.wordman-footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
  row-gap: 12px;
  padding: 20px 0 max(24px, env(safe-area-inset-bottom));
}

.wordman-footer__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  grid-column: 1;
  grid-row: 1;
}

.wordman-footer__title {
  font-weight: 800;
  font-size: 0.94rem;
}

.wordman-footer__copy {
  margin-top: 4px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.wordman-footer__links {
  grid-column: 1 / -1;
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 4px;
  border-top: 1px solid rgba(64, 69, 65, 0.12);
  font-weight: 700;
}

.wordman-footer__links a {
  color: inherit;
  font-size: 0.9rem;
}

.wordman-policy {
  width: min(calc(100% - 20px), 860px);
  margin: 0 auto;
  padding: 12px 0 48px;
}

.wordman-policy__card {
  background: #fcfcfc;
  border: 3px solid rgba(64, 69, 65, 0.16);
  border-radius: 0;
  padding: 20px;
}

.wordman-policy__card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.wordman-policy__intro {
  margin: 14px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.wordman-policy__section {
  margin-top: 26px;
}

.wordman-policy__section h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.wordman-policy__section p {
  margin: 0;
  line-height: 1.7;
}

.wordman-policy__section ul {
  margin: 12px 0 0 18px;
  padding: 0;
  line-height: 1.7;
}

.wordman-policy__section li + li {
  margin-top: 4px;
}

.wordman-policy__divider {
  margin: 22px 0 0;
  border-top: 2px solid rgba(64, 69, 65, 0.12);
}

.wordman-faq {
  margin-top: 24px;
}

.wordman-faq__item + .wordman-faq__item {
  margin-top: 18px;
}

.wordman-faq__item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.wordman-faq__item p {
  margin: 0;
  line-height: 1.7;
}

.wordman-faq__item p + p,
.wordman-faq__item ul,
.wordman-policy__section p + p,
.wordman-policy__section ul + p {
  margin-top: 12px;
}

.site-header__inner {
  padding: 12px 0;
}

@media (min-width: 720px) {
  .wordman-page {
    --wordman-screen-width: 188px;
  }

  .wordman-brand {
    max-width: min(100%, 360px);
  }

  .wordman-brand--header {
    max-width: min(100%, 216px);
  }

  .wordman-shell,
  .wordman-page .site-header__inner,
  .wordman-footer__inner,
  .wordman-policy {
    width: min(calc(100% - 32px), 1180px);
  }

  .wordman-policy {
    width: min(calc(100% - 32px), 860px);
  }

  .wordman-shell {
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .wordman-section + .wordman-section {
    margin-top: 20px;
  }

  .wordman-card {
    padding: 24px 18px;
    border-width: 3px;
  }

  .wordman-section-heading h2 {
    font-size: clamp(2rem, 6vw, 2.9rem);
    line-height: 0.98;
  }

  .wordman-section-intro,
  .wordman-progress__intro,
  .wordman-trust__intro,
  .wordman-trust__closing {
    font-size: 1rem;
  }

  .wordman-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }

  .wordman-copy h1 {
    font-size: clamp(2.65rem, 10vw, 4.4rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
  }

  .wordman-copy__lead {
    margin-top: 14px;
    max-width: 38ch;
    font-size: 1.06rem;
  }

  .wordman-copy__sub {
    margin-top: 10px;
    font-size: 0.98rem;
  }

  .wordman-copy__highlights {
    gap: 10px;
    margin-top: 18px;
  }

  .wordman-copy__highlights span {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .wordman-cta-row {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
  }

  .wordman-button,
  .wordman-button-secondary {
    width: auto;
    min-width: 190px;
    min-height: 54px;
    font-size: 1rem;
  }

  .wordman-copy__reassurance {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .wordman-trust-list {
    margin-top: 14px;
  }

  .wordman-trust-list li {
    font-size: 0.95rem;
  }

  .wordman-reassurance-grid,
  .wordman-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .wordman-reassurance-item,
  .wordman-trust-item {
    padding: 0;
    border-bottom: 0;
  }

  .wordman-reassurance-item h3,
  .wordman-trust-item h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }

  .wordman-reassurance-item p,
  .wordman-trust-item p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .wordman-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .wordman-stage__gallery {
    grid-auto-columns: var(--wordman-screen-width);
    gap: 10px;
    padding-bottom: 6px;
    overflow: visible;
  }

  .wordman-stage__gallery img {
    width: var(--wordman-screen-width);
  }

  .wordman-stage__gallery--quad {
    grid-template-columns: repeat(2, minmax(0, var(--wordman-screen-width)));
    grid-auto-columns: auto;
  }

  .wordman-stage__gallery--quad img {
    width: 100%;
    aspect-ratio: 1 / 1.035;
  }

  .wordman-footer__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    padding: 24px 0 30px;
  }

  .wordman-footer__logo {
    width: 44px;
    height: 44px;
  }

  .wordman-footer__title {
    font-size: 1rem;
  }

  .wordman-footer__copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  .wordman-footer__links {
    width: auto;
    margin-left: auto;
    gap: 18px;
    padding-top: 0;
    border-top: 0;
  }

  .wordman-footer__links a {
    font-size: 1rem;
  }

  .wordman-policy__card {
    padding: 28px;
  }

  .site-header__inner {
    padding: 16px 0;
  }
}

@media (min-width: 900px) {
  .wordman-page {
    --wordman-screen-width: 198px;
  }

  .wordman-shell {
    padding-top: 28px;
  }

  .wordman-hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: 28px;
    padding-bottom: 12px;
  }

  .wordman-copy {
    padding: 0 10px 0 0;
  }

  .wordman-copy__lead {
    font-size: 1.14rem;
  }

  .wordman-phone-group {
    grid-template-columns: repeat(2, var(--wordman-screen-width));
    gap: 14px;
  }

  .wordman-phone {
    width: var(--wordman-screen-width);
    padding: 10px;
  }

  .wordman-phone img {
    min-height: 296px;
    aspect-ratio: auto;
  }

  #gameplay .wordman-section-heading {
    position: static;
    padding-bottom: 0;
  }

  .wordman-how-stage {
    display: none !important;
  }

  .wordman-progress-stage {
    display: none !important;
  }

  .wordman-how {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .wordman-step {
    gap: 16px;
    padding: 0;
    min-height: 100%;
    border-bottom: 0;
  }

  .wordman-step h3 {
    font-size: 1.28rem;
  }

  .wordman-stage h3 {
    font-size: 1.28rem;
  }

  .wordman-step p,
  .wordman-stage p {
    min-height: 2.8em;
  }

  .wordman-panel-progress {
    display: none;
  }

  .wordman-shot {
    width: min(100%, var(--wordman-screen-width));
    margin-top: 0;
  }

  .wordman-audio-sample {
    margin-top: 0;
  }

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

  .wordman-trust-item--quote {
    grid-column: span 3;
    text-align: center;
  }
}

@media (min-width: 1120px) {
  .wordman-copy h1 {
    max-width: 11ch;
  }

  .wordman-reassurance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wordman-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wordman-trust-item--quote {
    grid-column: span 4;
  }
}

@media (max-width: 899px) {
  .wordman-has-scrolly #gameplay,
  .wordman-has-scrolly #progression {
    background: transparent;
    border-color: transparent;
    padding: 0;
    --wordman-gameplay-stage-height: clamp(340px, calc(100dvh - 248px), 555px);
    --wordman-gameplay-step-height: clamp(420px, calc(112svh - 270px), 650px);
    --wordman-progression-stage-height: clamp(340px, calc(100dvh - 258px), 545px);
    --wordman-scrolly-media-width: min(calc(100vw - 116px), 148px);
    --wordman-gameplay-media-width: min(calc(100vw - 126px), calc((var(--wordman-gameplay-stage-height) - 118px) / 2.12), 176px);
    --wordman-progression-media-width: min(calc(100vw - 132px), calc((var(--wordman-progression-stage-height) - 164px) / 2.07), 148px);
    --wordman-scrolly-media-gap: 10px;
  }

  .wordman-has-scrolly .wordman-how-story {
    position: sticky;
    top: 76px;
    z-index: 2;
    margin-top: 0;
    padding: 16px 14px;
    background: #fcfcfc;
    border: 2px solid rgb(255, 255, 255);
  }

  .wordman-has-scrolly .wordman-progress-story {
    position: sticky;
    top: 76px;
    z-index: 2;
    margin-top: 0;
    padding: 16px 14px;
    background: #fcfcfc;
    border: 2px solid rgb(255, 255, 255);
  }

  .wordman-has-scrolly .wordman-how {
    position: relative;
    margin-top: 24px;
    padding-bottom: 96px;
  }

  .wordman-has-scrolly .wordman-stage-grid {
    position: relative;
    margin-top: 24px;
    padding-bottom: 96px;
  }

  .wordman-has-scrolly .wordman-step {
    min-height: var(--wordman-gameplay-step-height);
    align-content: start;
    padding: 0;
    border-bottom: 0;
    opacity: 0;
  }

  .wordman-has-scrolly .wordman-how-stage {
    display: grid;
    position: relative;
    z-index: 1;
    height: var(--wordman-gameplay-stage-height);
  }

  .wordman-has-scrolly .wordman-progress-stage {
    display: grid;
    position: relative;
    z-index: 1;
    height: var(--wordman-progression-stage-height);
    margin-top: 8px;
  }

  .wordman-has-scrolly .wordman-step--stage {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    align-content: stretch;
    min-height: var(--wordman-gameplay-stage-height);
    padding: 0 16px 0 0;
    border-bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 950ms ease-in;
    will-change: opacity;
  }

  .wordman-has-scrolly .wordman-step--stage.is-active {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 1150ms ease-out 180ms;
  }

  .wordman-has-scrolly .wordman-step--stage h3 {
    font-size: 1.12rem;
  }

  .wordman-has-scrolly .wordman-step--stage p {
    line-height: 1.42;
  }

  .wordman-has-scrolly .wordman-step--stage .wordman-shot {
    width: var(--wordman-gameplay-media-width);
    max-height: 100%;
    align-self: center;
  }

  .wordman-has-scrolly .wordman-step--stage .wordman-shot img {
    max-height: 100%;
    object-fit: contain;
  }

  .wordman-has-scrolly .wordman-step--stage .wordman-panel-progress,
  .wordman-has-scrolly .wordman-stage--stage .wordman-panel-progress {
    position: absolute;
    right: 2px;
    bottom: 2px;
    margin-top: 0;
    padding: 0;
  }

  .wordman-has-scrolly .wordman-stage-grid .wordman-stage {
    min-height: var(--wordman-progression-stage-height);
    opacity: 0;
  }

  .wordman-has-scrolly .wordman-stage--stage {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    align-content: stretch;
    min-height: var(--wordman-progression-stage-height);
    padding: 0 16px 28px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 950ms ease-in;
    will-change: opacity;
  }

  .wordman-has-scrolly .wordman-stage--stage.is-active {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 1150ms ease-out 180ms;
  }

  .wordman-has-scrolly .wordman-stage--stage h3 {
    font-size: 1.12rem;
  }

  .wordman-has-scrolly .wordman-stage--stage p {
    line-height: 1.42;
  }

  .wordman-has-scrolly .wordman-stage--stage .wordman-stage__gallery {
    align-self: center;
    justify-content: center;
    gap: var(--wordman-scrolly-media-gap);
    max-height: calc(100% - 18px);
    overflow: visible;
  }

  .wordman-has-scrolly .wordman-stage--stage .wordman-stage__gallery img {
    max-height: 100%;
  }

  .wordman-has-scrolly .wordman-stage--stage .wordman-stage__copy {
    display: contents;
    padding-top: 0;
  }

  .wordman-has-scrolly .wordman-stage--stage .wordman-stage__gallery--duo {
    grid-auto-columns: var(--wordman-progression-media-width);
  }

  .wordman-has-scrolly .wordman-stage--stage .wordman-stage__gallery--duo img {
    width: var(--wordman-progression-media-width);
  }

  .wordman-has-scrolly .wordman-stage--stage .wordman-stage__gallery--quad {
    grid-template-columns: repeat(2, minmax(0, var(--wordman-progression-media-width)));
    gap: var(--wordman-scrolly-media-gap);
  }

  .wordman-has-scrolly .wordman-stage--stage .wordman-stage__gallery--quad img {
    aspect-ratio: 1 / 1.035;
  }

  @media (prefers-reduced-motion: reduce) {
    .wordman-has-scrolly .wordman-step--stage,
    .wordman-has-scrolly .wordman-stage--stage {
      transition: none;
    }
  }
}
