*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0a0a09;
  --ink-soft: #11110f;
  --card: #161614;
  --surface: #f5f3ee;
  --surface-dim: rgba(245, 243, 238, 0.72);
  --surface-faint: rgba(245, 243, 238, 0.42);
  --mint: #2d5a3d;
  --mint-light: #4d9364;
  --warm: #c4923a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-height: 100vh;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--surface);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.45rem 3rem;
  background: linear-gradient(to bottom, rgba(10, 10, 9, 0.85), rgba(10, 10, 9, 0));
}

.nav-logo {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: min(220px, 42vw);
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 48px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--surface-faint);
  transition: color 0.2s ease, background 0.2s ease;
}

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

.nav-links .nav-cta,
.nav-cta {
  color: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 0.55rem 1.1rem;
  border-radius: 99px;
}

.nav-links .nav-cta:hover,
.nav-cta:hover {
  background: var(--surface);
  color: var(--ink);
}

.content-width {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 50% 38%, rgba(45, 90, 61, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 40% at 85% 18%, rgba(196, 146, 58, 0.1), transparent 54%),
    var(--ink);
}

.hero-inner {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 3rem 5rem;
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 1120px;
  text-align: center;
}

.hero-kicker,
.feature-overline,
.work-kicker,
.label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint-light);
}

.hero-copy h1 {
  margin-top: 1.4rem;
  font-weight: 600;
  font-size: clamp(3.4rem, 7.2vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: inline-block;
}

.hero-sub {
  max-width: 480px;
  margin: 2rem auto 0;
  color: var(--surface-dim);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.hero-price {
  margin: 1.25rem auto 0;
  color: var(--surface);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-solid,
.btn-mint-new,
.btn-ghost-new,
.price-btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn-solid {
  background: var(--surface);
  color: var(--ink);
  padding: 0.76rem 1.55rem;
}

.btn-solid:hover,
.btn-mint-new:hover,
.btn-ghost-new:hover,
.price-btn:hover,
.cta-btn:hover {
  transform: translateY(-2px);
}

.floating-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.float-card {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
  will-change: transform;
  transform: translateZ(0);
}

.float-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.05) 58%),
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.float-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.fc1 {
  width: min(24vw, 285px);
  aspect-ratio: 4 / 5;
  top: 17%;
  left: 7%;
  background: radial-gradient(circle at 30% 24%, #e06b2b, #8f2608 46%, #130804);
}

.fc2 {
  width: min(25vw, 305px);
  aspect-ratio: 4 / 5;
  top: 10%;
  right: 8%;
  background: radial-gradient(circle at 68% 28%, #4d9364, #153d25 48%, #06100a);
}

.fc3 {
  width: min(22vw, 250px);
  aspect-ratio: 4 / 5;
  bottom: 13%;
  left: 13%;
  background: radial-gradient(circle at 45% 38%, #4f79d5, #16327d 44%, #050814);
}

.fc4 {
  width: min(31vw, 360px);
  aspect-ratio: 5 / 4;
  bottom: 14%;
  right: 10%;
  background: radial-gradient(circle at 58% 45%, #b94372, #54102e 44%, #100408);
}

.intro-statement {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding: 5rem;
  text-align: center;
}

.intro-eyebrow {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint-light);
}

.intro-text {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.3;
  color: rgba(245, 243, 238, 0.9);
}

.intro-founder {
  max-width: 520px;
  margin: 1.75rem auto 0;
  color: var(--surface-faint);
  font-size: 0.88rem;
  line-height: 1.7;
}

.authority-strip {
  background: var(--ink-soft);
  border-block: 1px solid var(--line);
  padding: 3.6rem 5rem;
}

.authority-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.authority-item {
  text-align: center;
  padding: 0 1.5rem;
}

.authority-item + .authority-item {
  border-left: 1px solid var(--line);
}

.authority-num {
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--mint-light);
}

.authority-label {
  margin-top: 0.65rem;
  color: var(--surface-faint);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.55;
}

.feature-wrap {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.fi1-bg {
  background: radial-gradient(ellipse 70% 100% at 100% 50%, #e06b2b, #5c1f08 30%, var(--ink) 68%);
}

.fi2-bg {
  background: radial-gradient(ellipse 70% 100% at 0% 50%, #4d9364, #153d25 30%, var(--ink) 68%);
}

.fi3-bg {
  background: radial-gradient(ellipse 70% 100% at 100% 50%, #4f79d5, #16327d 30%, var(--ink) 68%);
}

.feature {
  max-width: 860px;
  margin: 0 auto;
  padding: 8rem 5rem;
}

.feature-h,
.h2 {
  margin-top: 1.15rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.feature-h {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.feature-h em {
  font-weight: 300;
  color: var(--mint-light);
}

.feature-body,
.body-copy {
  max-width: 520px;
  margin-top: 1.4rem;
  color: var(--surface-dim);
  font-size: 1rem;
  line-height: 1.85;
}

.section,
.work-section {
  padding: 8rem 5rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.work-section {
  position: relative;
  overflow: hidden;
}

.work-section::before {
  content: "Work";
  position: absolute;
  right: -0.06em;
  bottom: -0.16em;
  font-weight: 600;
  font-size: 28vw;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.section-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.section-header.compact {
  margin-bottom: 3.25rem;
  border-bottom: 0;
  padding-bottom: 0;
}

.section-header h2 {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.section-header a {
  color: var(--mint-light);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-list {
  position: relative;
  z-index: 1;
}

.work-entry {
  border-bottom: 1px solid var(--line);
}

.work-row {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1.6fr 0.5fr 40px;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  border: 0;
  background: none;
  color: var(--surface);
  text-align: left;
  cursor: pointer;
  transition: padding-left 0.25s ease, background 0.25s ease;
}

.work-row:hover,
.work-row:focus-visible,
.work-row[aria-expanded="true"] {
  padding-left: 1rem;
  background: rgba(77, 147, 100, 0.045);
}

.wr-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  line-height: 1;
}

.wr-cat {
  color: var(--surface-dim);
  font-size: 0.82rem;
  line-height: 1.5;
}

.wr-year {
  color: var(--surface-faint);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wr-year,
.wr-toggle {
  text-align: right;
}

.wr-toggle {
  color: var(--mint-light);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.work-row[aria-expanded="true"] .wr-toggle {
  transform: rotate(45deg);
}

.work-expand-inner {
  max-width: 680px;
  margin: 0 0 0.5rem 0.5rem;
  padding: 0 1rem 2.4rem 2rem;
  border-left: 2px solid rgba(77, 147, 100, 0.35);
}

.work-expand-inner p {
  margin-bottom: 1.1rem;
  color: rgba(245, 243, 238, 0.68);
  font-size: 0.95rem;
  line-height: 1.9;
}

.work-live-link {
  display: inline-block;
  margin-top: 0.3rem;
  border-bottom: 1px solid rgba(77, 147, 100, 0.4);
  padding-bottom: 2px;
  color: var(--mint-light);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Website critiques */
.critiques-head {
  max-width: 640px;
  margin-bottom: 3.25rem;
}

.critiques-intro {
  margin-top: 1.4rem;
  color: var(--surface-dim);
  font-size: 1rem;
  line-height: 1.85;
}

.critique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}

.critique-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  transition: border-color 0.25s ease;
}

.critique-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.critique-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.critique-media iframe,
.critique-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.critique-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.critique-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.2;
}

.critique-note {
  margin-top: 0.6rem;
  color: var(--surface-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

.critique-length {
  display: block;
  margin-top: 0.9rem;
  color: var(--surface-faint);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-stats {
  display: flex;
  gap: 2.75rem;
  margin-top: 2.5rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  margin-top: 0.35rem;
  color: var(--surface-faint);
  font-size: 0.82rem;
}

.about-visual,
.svc-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-visual {
  min-height: 520px;
  padding: 2rem;
  border-radius: 16px;
  background: radial-gradient(circle at 40% 32%, #d0a23b, #674307 48%, var(--ink));
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.75rem, 6vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
}

.svc-grid,
.price-grid,
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}

.svc-card,
.price-card,
.proc-card,
.faq-list,
.cta-inner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.svc-card,
.price-card,
.proc-card {
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.svc-card:hover,
.price-card:hover,
.proc-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.svc-visual {
  aspect-ratio: 1;
}

.svc-a {
  background: radial-gradient(circle at 30% 35%, #e06b2b, #5c1f08 48%, var(--ink));
}

.svc-b {
  background: radial-gradient(circle at 66% 36%, #4d9364, #153d25 48%, var(--ink));
}

.svc-c {
  background: radial-gradient(circle at 44% 42%, #4f79d5, #16327d 48%, var(--ink));
}

.type-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  pointer-events: none;
}

.type-word {
  font-size: clamp(3.75rem, 6vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.svc-body {
  padding: 1.75rem;
}

.svc-body h3,
.proc-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
}

.svc-body p,
.proc-card p,
.price-desc {
  color: var(--surface-faint);
  font-size: 0.9rem;
  line-height: 1.65;
}

.btn-mint-new {
  background: var(--mint-light);
  color: #fff;
  padding: 0.75rem 1.5rem;
}

.btn-ghost-new {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 243, 238, 0.9);
  padding: 0.75rem 1.5rem;
}

.price-head,
.faq-head {
  margin-bottom: 3.25rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 2.125rem 1.875rem;
}

.price-hi {
  border-color: #d0a23b;
  background: radial-gradient(circle at 80% 0%, rgba(208, 162, 59, 0.08), transparent 55%), var(--card);
}

.price-plan {
  margin-bottom: 0.5rem;
  color: var(--surface-faint);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-value {
  margin-top: 1.15rem;
  color: var(--surface);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-name {
  margin: 1rem 0 1.75rem;
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: rgba(245, 243, 238, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  border: 1px solid var(--mint-light);
  border-radius: 50%;
  background: rgba(77, 147, 100, 0.12);
}

.price-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 243, 238, 0.9);
  padding: 0.75rem;
}

.price-btn-hi {
  background: var(--mint-light);
  border-color: var(--mint-light);
  color: #fff;
}

.proc-card {
  position: relative;
  min-height: 230px;
  padding: 2.125rem 1.875rem;
}

.proc-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.16;
  background: var(--mint-light);
}

.proc-card:nth-child(1)::before,
.proc-card:nth-child(6)::before {
  background: #e06b2b;
}

.proc-card:nth-child(3)::before {
  background: #4f79d5;
}

.proc-card:nth-child(4)::before {
  background: #b94372;
}

.proc-card:nth-child(5)::before {
  background: #d0a23b;
}

.proc-card span {
  display: block;
  margin-bottom: 1.125rem;
  color: var(--mint-light);
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.55;
}

.faq-list {
  max-width: 760px;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.6rem;
  border: 0;
  background: none;
  color: rgba(245, 243, 238, 0.9);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-q:hover,
.faq-q:focus-visible {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 2px;
  background: var(--surface-faint);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
}

.faq-item.open .faq-icon::after {
  opacity: 0;
}

.faq-a {
  padding: 0 1.6rem 1.35rem;
  color: var(--surface-faint);
  font-size: 0.9rem;
  line-height: 1.72;
}

.faq-note {
  margin-top: 1.4rem;
  color: var(--surface-faint);
  font-size: 0.9rem;
}

.faq-note a {
  color: var(--mint-light);
}

.cta-banner {
  padding: 3.75rem 2.5rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.cta-inner {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3.75rem;
  text-align: center;
  background: linear-gradient(145deg, #172a1e, #0c1810);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(77, 147, 100, 0.14), transparent 65%);
  pointer-events: none;
}

.cta-ticker {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 3.25rem;
  overflow: hidden;
  color: rgba(245, 243, 238, 0.32);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-tick-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.cta-tick-track span {
  flex-shrink: 0;
  padding: 0 2rem;
}

.cta-inner h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 5.375rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.cta-btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  padding: 0.95rem 2.125rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 2.5rem 2rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 0.625rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
}

.footer-tag,
.fcol a,
.footer-bottom {
  color: var(--surface-faint);
  font-size: 0.84rem;
  line-height: 1.6;
}

.fcol-label {
  margin-bottom: 0.875rem;
  color: rgba(245, 243, 238, 0.32);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fcol a {
  display: block;
  margin-bottom: 0.625rem;
  transition: color 0.2s ease;
}

.fcol a:hover,
.fcol a:focus-visible {
  color: rgba(245, 243, 238, 0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.fallback-page {
  padding-top: 5rem;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .authority-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-item {
    padding: 2rem 1rem;
  }

  .authority-item:nth-child(3) {
    border-left: 0;
  }

  .authority-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .two-col,
  .svc-grid,
  .price-grid,
  .proc-grid,
  .critique-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1.1rem 1.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .nav-cta,
  .nav-links .nav-cta {
    padding: 0.5rem 0.9rem;
  }

  .hero-section {
    min-height: 138vh;
  }

  .hero-inner {
    align-items: flex-start;
    padding: 7.5rem 1.25rem 4rem;
  }

  .hero-copy {
    padding-top: 5.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
    line-height: 0.94;
  }

  .fc1 {
    width: 142px;
    top: 36%;
    left: -8%;
  }

  .fc2 {
    width: 138px;
    top: 27%;
    right: -7%;
  }

  .fc3 {
    width: 150px;
    bottom: 13%;
    left: -5%;
  }

  .fc4 {
    width: 180px;
    bottom: 18%;
    right: -10%;
  }

  .intro-statement,
  .authority-strip,
  .feature,
  .section,
  .work-section,
  .cta-banner {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .intro-statement {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .authority-strip {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .authority-inner {
    grid-template-columns: 1fr;
  }

  .authority-item + .authority-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .section,
  .work-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-header,
  .section-header.compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .work-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name toggle"
      "cat toggle";
    padding: 1.55rem 0;
  }

  .wr-name {
    grid-area: name;
  }

  .wr-cat {
    grid-area: cat;
    margin-top: 0.4rem;
    font-size: 0.78rem;
  }

  .wr-toggle {
    grid-area: toggle;
    align-self: center;
  }

  .wr-year {
    display: none;
  }

  .work-expand-inner {
    margin-left: 0;
    padding-left: 1.2rem;
  }

  .two-col {
    gap: 3rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-visual {
    min-height: 340px;
  }

  .cta-inner {
    padding: 3.75rem 1.75rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.35rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.125rem 1.35rem;
  }
}

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


/* Landing pages */
.landing-page .landing-hero {
  padding-top: 9rem;
}

.landing-page .landing-actions {
  justify-content: flex-start;
  margin-top: 2rem;
}

.landing-page .landing-list p {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  color: var(--surface-dim);
}

@media (max-width: 780px) {
  .landing-page .landing-actions {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Wildmint 2.7 — websites, ecommerce and SaaS
   -------------------------------------------------------------------------- */

.wm-main {
  --wm-ink: #0b100d;
  --wm-ink-2: #121a15;
  --wm-paper: #f2f0e9;
  --wm-paper-2: #e9e7df;
  --wm-acid: #a8ff60;
  --wm-mint: #55e68a;
  --wm-blue: #5c76ff;
  --wm-orange: #ff754e;
  --wm-line-dark: rgba(11, 16, 13, 0.16);
  --wm-line-light: rgba(255, 255, 255, 0.15);
  --wm-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wm-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  background: var(--wm-paper);
  color: var(--wm-ink);
  font-family: var(--wm-sans);
  font-weight: 500;
}

body.home {
  --wm-ink: #0b100d;
  --wm-ink-2: #121a15;
  --wm-paper: #f2f0e9;
  --wm-paper-2: #e9e7df;
  --wm-acid: #a8ff60;
  --wm-mint: #55e68a;
  --wm-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wm-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  background: var(--wm-paper);
  color: var(--wm-ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

body.home .site-header {
  padding: 1.1rem 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 16, 13, 0.82);
  backdrop-filter: blur(18px);
}

body.home .nav-logo {
  color: #fff;
  font-family: var(--wm-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

body.home .nav-logo span,
.wm-footer .footer-brand span {
  color: var(--wm-acid);
}

body.home .custom-logo-link {
  max-width: min(178px, 42vw);
}

body.home .custom-logo {
  max-height: 37px;
}

body.home .nav-links {
  gap: 1.65rem;
}

body.home .nav-links a {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--wm-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

body.home .nav-links a:hover,
body.home .nav-links a:focus-visible {
  color: #fff;
}

body.home .nav-links .nav-cta {
  border: 0;
  border-radius: 0;
  background: var(--wm-acid);
  color: var(--wm-ink);
  padding: 0.7rem 1rem;
}

.wm-main a:focus-visible,
body.home .site-header a:focus-visible,
.wm-footer a:focus-visible {
  outline: 2px solid var(--wm-acid);
  outline-offset: 4px;
}

.wm-shell {
  width: min(100% - 5.5rem, 1380px);
  margin-inline: auto;
}

.wm-section {
  padding: clamp(6.5rem, 10vw, 10rem) 0;
}

#services,
#products,
#work,
#process,
#contact {
  scroll-margin-top: 74px;
}

.wm-kicker,
.wm-section-label,
.wm-capability-type {
  font-family: var(--wm-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.wm-section-label {
  color: rgba(11, 16, 13, 0.56);
}

.wm-hero {
  position: relative;
  min-height: min(980px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(85, 230, 138, 0.11), transparent 30%),
    var(--wm-ink);
  color: #fff;
}

.wm-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.043) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.043) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.wm-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
  min-height: min(980px, 100svh);
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}

.wm-hero-copy {
  max-width: 860px;
}

.wm-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.62);
}

.wm-kicker span {
  width: 8px;
  height: 8px;
  background: var(--wm-acid);
  box-shadow: 0 0 20px rgba(168, 255, 96, 0.72);
}

.wm-hero h1 {
  font-family: var(--wm-sans);
  font-size: clamp(4.25rem, 7.6vw, 8.2rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.wm-hero h1 em {
  color: var(--wm-acid);
  font-style: normal;
  font-weight: 600;
}

.wm-hero-lede {
  max-width: 670px;
  margin-top: 2.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 400;
  line-height: 1.65;
}

.wm-actions,
.wm-product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.6rem;
}

.wm-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 220px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 1rem 1.15rem;
  font-family: var(--wm-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.wm-button--bright {
  background: var(--wm-acid);
  color: var(--wm-ink);
}

.wm-button--bright:hover {
  background: #fff;
}

.wm-button--dark {
  background: var(--wm-ink);
  color: #fff;
}

.wm-button--dark:hover {
  background: #fff;
  color: var(--wm-ink);
}

.wm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.3rem;
  color: inherit;
  font-family: var(--wm-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wm-system-card {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 26, 21, 0.86);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(24px);
}

.wm-system-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(168, 255, 96, 0.2);
}

.wm-system-bar,
.wm-system-head,
.wm-system-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--wm-mono);
}

.wm-system-bar {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--wm-line-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.65rem;
}

.wm-system-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.wm-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wm-acid);
  box-shadow: 0 0 15px rgba(168, 255, 96, 0.88);
}

.wm-system-state {
  color: var(--wm-acid);
}

.wm-system-head {
  padding: 1.2rem 1.25rem 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.wm-system-metric {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.5rem;
  align-items: end;
  min-height: 170px;
  padding: 2rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--wm-line-light);
}

.wm-system-metric div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wm-system-metric span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.wm-system-metric strong {
  font-size: clamp(3.5rem, 5vw, 5.25rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.wm-system-metric svg {
  width: 100%;
  color: var(--wm-acid);
}

.wm-system-feed {
  padding: 0 1.25rem;
}

.wm-feed-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.wm-feed-row > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.16rem;
}

.wm-feed-row strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 600;
}

.wm-feed-row small,
.wm-feed-row time {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--wm-mono);
  font-size: 0.56rem;
}

.wm-feed-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-family: var(--wm-mono);
  font-size: 0.6rem;
  font-weight: 500;
}

.wm-feed-icon--web { background: var(--wm-acid); color: var(--wm-ink); }
.wm-feed-icon--shop { background: var(--wm-orange); color: var(--wm-ink); }
.wm-feed-icon--saas { background: var(--wm-blue); color: #fff; }

.wm-system-foot {
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.33);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.wm-hero-ticker {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--wm-acid);
  color: var(--wm-ink);
  font-family: var(--wm-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-hero-ticker div {
  display: flex;
  width: max-content;
  align-items: center;
  animation: wm-ticker 28s linear infinite;
}

.wm-hero-ticker span,
.wm-hero-ticker i {
  flex: none;
  padding: 0.95rem 1.35rem;
  font-style: normal;
}

.wm-hero-ticker i {
  padding-inline: 0;
  font-size: 1rem;
}

@keyframes wm-ticker {
  to { transform: translateX(-50%); }
}

.wm-intro {
  border-bottom: 1px solid var(--wm-line-dark);
  background: var(--wm-paper);
}

.wm-intro-grid,
.wm-fit-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.wm-intro h2,
.wm-section-heading h2,
.wm-product h2,
.wm-final-cta h2 {
  font-size: clamp(3rem, 6.4vw, 7.2rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.wm-intro h2 em,
.wm-final-cta h2 em {
  color: #427450;
  font-style: normal;
}

.wm-intro h2 + p {
  max-width: 720px;
  margin: 2.6rem 0 0 auto;
  color: rgba(11, 16, 13, 0.66);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 500;
  line-height: 1.75;
}

.wm-capabilities {
  background: var(--wm-paper-2);
}

.wm-section-heading {
  max-width: 1000px;
  margin-bottom: clamp(4.5rem, 8vw, 7rem);
}

.wm-section-heading .wm-section-label {
  margin-bottom: 1.4rem;
}

.wm-section-heading--split {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-end;
}

.wm-capability-list {
  border-top: 1px solid var(--wm-ink);
}

.wm-capability-row {
  display: grid;
  grid-template-columns: 52px minmax(210px, 0.75fr) minmax(280px, 1.2fr) minmax(180px, 0.7fr) 48px;
  gap: clamp(1.25rem, 3vw, 3.25rem);
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--wm-line-dark);
}

.wm-capability-number {
  padding-top: 0.35rem;
  font-family: var(--wm-mono);
  font-size: 0.68rem;
}

.wm-capability-type {
  margin-bottom: 0.6rem;
  color: rgba(11, 16, 13, 0.5);
}

.wm-capability-row h3 {
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.wm-capability-row > p {
  color: rgba(11, 16, 13, 0.68);
  font-size: 0.98rem;
  line-height: 1.72;
}

.wm-capability-row ul {
  display: grid;
  gap: 0.52rem;
  padding: 0;
  list-style: none;
}

.wm-capability-row li {
  display: flex;
  gap: 0.55rem;
  color: rgba(11, 16, 13, 0.62);
  font-family: var(--wm-mono);
  font-size: 0.63rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.wm-capability-row li::before {
  content: "+";
  color: #427450;
}

.wm-capability-row > a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wm-ink);
  font-size: 1.2rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.wm-capability-row > a:hover {
  background: var(--wm-ink);
  color: var(--wm-acid);
}

.wm-product {
  overflow: hidden;
  background: var(--wm-acid);
}

.wm-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
}

.wm-product .wm-section-label {
  margin-bottom: 1.4rem;
  color: rgba(11, 16, 13, 0.6);
}

.wm-product h2 span {
  display: inline-block;
  border: 2px solid var(--wm-ink);
  padding: 0.1em 0.18em;
  font-family: var(--wm-mono);
  font-size: 0.18em;
  letter-spacing: 0;
  vertical-align: top;
}

.wm-product-lede {
  max-width: 650px;
  margin-top: 2rem;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.wm-check-list {
  display: grid;
  gap: 0;
  margin-top: 2.3rem;
  padding: 0;
  border-top: 1px solid rgba(11, 16, 13, 0.28);
  list-style: none;
}

.wm-check-list li {
  display: flex;
  gap: 0.85rem;
  padding: 0.92rem 0;
  border-bottom: 1px solid rgba(11, 16, 13, 0.22);
  font-size: 0.83rem;
  line-height: 1.5;
}

.wm-check-list li::before {
  content: "✓";
  font-family: var(--wm-mono);
}

.wm-product-actions > span {
  max-width: 140px;
  font-family: var(--wm-mono);
  font-size: 0.58rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.wm-product-stage {
  position: relative;
  min-height: 690px;
  border: 1px solid rgba(11, 16, 13, 0.48);
  background:
    linear-gradient(rgba(168, 255, 96, 0.04), rgba(168, 255, 96, 0.04)),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(168, 255, 96, 0.08) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(168, 255, 96, 0.08) 40px),
    var(--wm-ink);
}

.wm-product-stage::after {
  content: "LIVE PRODUCT";
  position: absolute;
  right: 1.25rem;
  bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--wm-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.wm-phone {
  position: absolute;
  overflow: hidden;
  border: 8px solid #060806;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.wm-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.wm-phone--back {
  top: 112px;
  left: 9%;
  width: 42%;
  height: 500px;
  opacity: 0.7;
  transform: rotate(-5deg);
}

.wm-phone--front {
  z-index: 2;
  top: 55px;
  right: 8%;
  width: 48%;
  height: 570px;
  transform: rotate(3deg);
}

.wm-phone-bar {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 27px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-family: var(--wm-mono);
  font-size: 0.48rem;
}

.wm-phone-bar i {
  width: 38px;
  height: 9px;
  border-radius: 99px;
  background: #111;
}

.wm-render-state {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(11, 16, 13, 0.9);
  color: #fff;
  font-family: var(--wm-mono);
  font-size: 0.52rem;
  backdrop-filter: blur(14px);
}

.wm-render-state span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wm-acid);
  box-shadow: 0 0 10px var(--wm-acid);
}

.wm-product-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 16, 13, 0.92);
  color: #fff;
  font-family: var(--wm-mono);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.wm-product-note span {
  color: var(--wm-acid);
}

.wm-product-note--top { top: 28px; left: 24px; }
.wm-product-note--bottom { right: 24px; bottom: 30px; }

.wm-work {
  background: var(--wm-paper);
}

.wm-work .wm-text-link {
  color: rgba(11, 16, 13, 0.72);
}

.wm-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--wm-ink);
  border: 1px solid var(--wm-ink);
}

.wm-project {
  min-width: 0;
  background: var(--wm-paper);
}

.wm-project--wide {
  grid-column: 1 / -1;
}

.wm-project-image {
  height: clamp(360px, 42vw, 650px);
  overflow: hidden;
  background: #d7d4cb;
}

.wm-project:not(.wm-project--wide) .wm-project-image {
  height: clamp(350px, 34vw, 520px);
}

.wm-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.wm-project:hover img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.wm-project-meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  min-height: 128px;
  padding: 1.5rem;
}

.wm-project-meta p,
.wm-project-meta > span {
  color: rgba(11, 16, 13, 0.55);
  font-family: var(--wm-mono);
  font-size: 0.58rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.wm-project-meta h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.wm-fit {
  background: var(--wm-ink-2);
  color: #fff;
}

.wm-fit .wm-section-label {
  color: rgba(255, 255, 255, 0.45);
}

.wm-fit-grid {
  grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1.2fr) minmax(250px, 0.48fr);
}

.wm-fit blockquote {
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.wm-fit blockquote em {
  color: var(--wm-acid);
  font-style: normal;
}

.wm-fit-copy {
  align-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.72;
}

.wm-fit-detail {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--wm-mono);
  font-size: 0.58rem;
  line-height: 1.8;
  text-transform: uppercase;
}

.wm-process {
  background: var(--wm-paper-2);
}

.wm-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  border-top: 1px solid var(--wm-ink);
  border-bottom: 1px solid var(--wm-ink);
  list-style: none;
}

.wm-process-grid li {
  min-height: 360px;
  padding: 1.75rem;
}

.wm-process-grid li + li {
  border-left: 1px solid var(--wm-line-dark);
}

.wm-process-grid span {
  color: rgba(11, 16, 13, 0.5);
  font-family: var(--wm-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.wm-process-grid h3 {
  margin-top: 5.5rem;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.05em;
}

.wm-process-grid p {
  margin-top: 1.3rem;
  color: rgba(11, 16, 13, 0.62);
  font-size: 0.88rem;
  line-height: 1.68;
}

.wm-starts {
  padding-block: 3rem;
  background: var(--wm-ink);
  color: #fff;
}

.wm-starts-grid {
  display: grid;
  grid-template-columns: 0.72fr repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.wm-starts .wm-section-label {
  color: rgba(255, 255, 255, 0.45);
}

.wm-starts-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 72px;
  justify-content: center;
  padding-left: 1.5rem;
  border-left: 1px solid var(--wm-line-light);
}

.wm-starts-grid span {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--wm-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.wm-starts-grid strong {
  font-size: 1rem;
  font-weight: 600;
}

.wm-final-cta {
  overflow: hidden;
  background: var(--wm-acid);
}

.wm-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(4rem, 10vw, 12rem);
  align-items: end;
}

.wm-final-cta .wm-section-label {
  margin-bottom: 1.5rem;
  color: rgba(11, 16, 13, 0.6);
}

.wm-final-cta h2 em {
  color: var(--wm-ink);
  -webkit-text-stroke: 1px var(--wm-ink);
  -webkit-text-fill-color: transparent;
}

.wm-final-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.wm-footer.site-footer {
  --wm-acid: #789681;
  --wm-ink: #0b100d;
  position: relative;
  overflow: hidden;
  grid-template-columns: 1.5fr 0.65fr 0.85fr 0.8fr;
  gap: 4rem;
  padding: 5rem 2.75rem 4rem;
  background: #070a08;
  border-top: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.wm-footer .footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  text-transform: lowercase;
}

.wm-footer .footer-tag {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.wm-footer .fcol-label {
  color: var(--wm-acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.wm-footer .fcol a,
.wm-footer .fcol span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 1.7;
}

.wm-footer-mark {
  align-self: end;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.1em;
}

body.home .footer-bottom {
  padding: 1.25rem 2.75rem;
  background: #070a08;
  color: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .wm-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: 4rem;
  }

  .wm-capability-row {
    grid-template-columns: 44px 0.72fr 1.25fr 46px;
  }

  .wm-capability-row ul {
    display: none;
  }

  .wm-product-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

  .wm-fit-grid {
    grid-template-columns: 140px 1fr;
  }

  .wm-fit-copy {
    grid-column: 2;
    max-width: 600px;
  }

  .wm-footer.site-footer {
    grid-template-columns: 1.35fr 0.65fr 0.8fr;
  }

  .wm-footer-mark {
    display: none;
  }
}

@media (max-width: 920px) {
  .wm-shell {
    width: min(100% - 3rem, 1380px);
  }

  .wm-hero {
    min-height: auto;
  }

  .wm-hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 10.5rem;
    padding-bottom: 9rem;
  }

  .wm-hero-copy {
    max-width: 760px;
  }

  .wm-system-card {
    width: min(100%, 650px);
    margin-left: auto;
  }

  .wm-intro-grid,
  .wm-product-grid,
  .wm-final-grid {
    grid-template-columns: 1fr;
  }

  .wm-intro h2 + p {
    margin-left: 0;
  }

  .wm-product-stage {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .wm-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wm-process-grid li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--wm-line-dark);
  }

  .wm-process-grid li:nth-child(4) {
    border-top: 1px solid var(--wm-line-dark);
  }

  .wm-starts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wm-starts-grid > div:nth-of-type(2) {
    border-left: 0;
  }
}

@media (max-width: 768px) {
  body.home .site-header {
    padding: 1rem 1.1rem;
  }

  body.home .nav-links li:not(:last-child) {
    display: none;
  }

  body.home .nav-links .nav-cta {
    padding: 0.64rem 0.8rem;
  }

  .wm-shell {
    width: min(100% - 2.25rem, 1380px);
  }

  .wm-section {
    padding-block: 5.5rem;
  }

  .wm-hero-layout {
    gap: 4.25rem;
    padding-top: 9rem;
    padding-bottom: 7rem;
  }

  .wm-kicker {
    margin-bottom: 1.4rem;
    font-size: 0.58rem;
  }

  .wm-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
    line-height: 0.9;
  }

  .wm-hero-lede {
    margin-top: 1.6rem;
    font-size: 1rem;
  }

  .wm-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .wm-button {
    width: 100%;
  }

  .wm-system-card::before {
    inset: 12px -10px -10px 12px;
  }

  .wm-system-metric {
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 145px;
  }

  .wm-system-metric strong {
    font-size: 3.8rem;
  }

  .wm-feed-row {
    grid-template-columns: 34px 1fr;
  }

  .wm-feed-row time {
    display: none;
  }

  .wm-system-foot {
    display: none;
  }

  .wm-intro-grid,
  .wm-fit-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .wm-intro h2,
  .wm-section-heading h2,
  .wm-product h2,
  .wm-final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .wm-intro h2 + p {
    margin-top: 1.75rem;
    font-size: 1rem;
  }

  .wm-section-heading,
  .wm-section-heading--split {
    display: block;
    margin-bottom: 3.5rem;
  }

  .wm-section-heading--split .wm-text-link {
    margin-top: 1.75rem;
  }

  .wm-capability-row {
    grid-template-columns: 32px 1fr 42px;
    gap: 1rem;
    padding-block: 2rem;
  }

  .wm-capability-row > p {
    grid-column: 2 / -1;
    padding-right: 0.4rem;
  }

  .wm-capability-row > a {
    grid-column: 3;
    grid-row: 1;
    width: 40px;
    height: 40px;
  }

  .wm-product-grid {
    gap: 3.5rem;
  }

  .wm-product-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .wm-product-stage {
    min-height: 540px;
  }

  .wm-phone--back {
    top: 90px;
    left: 6%;
    width: 46%;
    height: 390px;
  }

  .wm-phone--front {
    top: 45px;
    right: 5%;
    width: 52%;
    height: 440px;
  }

  .wm-product-note {
    display: none;
  }

  .wm-project-grid {
    grid-template-columns: 1fr;
  }

  .wm-project--wide {
    grid-column: auto;
  }

  .wm-project-image,
  .wm-project:not(.wm-project--wide) .wm-project-image {
    height: 390px;
  }

  .wm-project-meta {
    min-height: 112px;
    padding: 1.2rem;
  }

  .wm-project-meta > span {
    display: none;
  }

  .wm-fit-copy {
    grid-column: auto;
  }

  .wm-fit blockquote {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .wm-process-grid {
    grid-template-columns: 1fr;
  }

  .wm-process-grid li {
    min-height: 290px;
  }

  .wm-process-grid li + li,
  .wm-process-grid li:nth-child(3),
  .wm-process-grid li:nth-child(4) {
    border-top: 1px solid var(--wm-line-dark);
    border-left: 0;
  }

  .wm-process-grid h3 {
    margin-top: 3.5rem;
  }

  .wm-starts-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wm-starts .wm-section-label {
    margin-bottom: 1.5rem;
  }

  .wm-starts-grid > div,
  .wm-starts-grid > div:nth-of-type(2) {
    min-height: 80px;
    padding-left: 0;
    border-top: 1px solid var(--wm-line-light);
    border-left: 0;
  }

  .wm-final-grid {
    gap: 2.5rem;
  }

  .wm-footer.site-footer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.25rem 2.5rem;
  }

  body.home .footer-bottom {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 420px) {
  .wm-hero h1 {
    font-size: 3.25rem;
  }

  .wm-system-head span:last-child,
  .wm-system-state {
    display: none;
  }

  .wm-system-metric {
    grid-template-columns: 1fr;
  }

  .wm-system-metric svg {
    display: none;
  }

  .wm-product-stage {
    min-height: 470px;
  }

  .wm-phone--back {
    width: 48%;
    height: 340px;
  }

  .wm-phone--front {
    width: 54%;
    height: 380px;
  }

  .wm-project-image,
  .wm-project:not(.wm-project--wide) .wm-project-image {
    height: 300px;
  }
}

/* Full-site pages */
.wm-inner { background: #f1eee7; color: #11130f; }
.wm-inner .site-header { background: rgba(241,238,231,.94); border-bottom: 1px solid rgba(15,18,14,.12); }
.wm-inner .nav-links a { color:#30352f; }
.wm-inner .nav-links a:hover,.wm-inner .nav-links a:focus-visible { color:#11130f; }
.wm-inner .nav-links .nav-cta { color:#f1eee7; background:#11130f; border-color:#11130f; }
.wm-inner .nav-links .nav-cta:hover { color:#f1eee7; background:#607966; border-color:#607966; }
.wm-page-hero { padding: 11rem 0 6rem; border-bottom: 1px solid rgba(15,18,14,.14); }
.wm-page-hero-grid { display:grid; grid-template-columns: minmax(0,1.45fr) minmax(260px,.55fr); gap:7vw; align-items:end; }
.wm-page-hero h1 { margin:.6rem 0 1.5rem; font-size:clamp(4rem,9.2vw,9rem); line-height:.82; letter-spacing:-.065em; font-weight:500; }
.wm-page-hero h1 em { font-family:"Cormorant Garamond",Georgia,serif; font-weight:300; color:#607966; }
.wm-page-hero .wm-page-lede { max-width:36rem; font-size:clamp(1.15rem,1.7vw,1.5rem); line-height:1.55; color:#464b43; }
.wm-page-aside { border-top:1px solid #11130f; padding-top:1rem; font-family:var(--wm-mono); font-size:.72rem; line-height:1.7; text-transform:uppercase; letter-spacing:.06em; }
.wm-page-aside span { display:block; padding:.6rem 0; border-bottom:1px solid rgba(15,18,14,.15); }
.wm-page-section { padding:7rem 0; }
.wm-page-section--dark { background:#10120f; color:#f1eee7; }
.wm-page-section--green { background:#172019; color:#f1eee7; }
.wm-page-intro { display:grid; grid-template-columns:.38fr 1fr; gap:8vw; }
.wm-page-intro h2,.wm-page-section h2 { margin:0; font-size:clamp(2.8rem,5.5vw,5.7rem); line-height:.94; letter-spacing:-.045em; font-weight:500; }
.wm-page-intro-copy { max-width:50rem; }
.wm-page-intro-copy>p { margin:0 0 2rem; color:#51564e; font-size:1.2rem; line-height:1.75; }
.wm-page-section--dark .wm-page-intro-copy>p,.wm-page-section--green .wm-page-intro-copy>p { color:rgba(241,238,231,.68); }
.wm-offer-grid,.wm-case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-top:4rem; background:rgba(128,140,128,.3); }
.wm-offer-card { min-height:330px; padding:2rem; background:#f1eee7; }
.wm-page-section--dark .wm-offer-card { background:#10120f; }
.wm-offer-card span { font-family:var(--wm-mono); font-size:.68rem; color:#718174; }
.wm-offer-card h3 { margin:5rem 0 1rem; font-size:1.6rem; }
.wm-offer-card p { color:#5a5f56; line-height:1.7; }
.wm-page-section--dark .wm-offer-card p { color:rgba(241,238,231,.58); }
.wm-project-grid--full { grid-template-columns:repeat(2,minmax(0,1fr)); }
.wm-project-grid--full .wm-project--wide { grid-column:auto; }
.wm-project--product .wm-project-image { width:100%; height:auto; aspect-ratio:16/9; }
.wm-project--product .wm-project-image img { object-position:center; }
.wm-ui-card { box-sizing:border-box; height:100%; min-height:390px; padding:2rem; display:flex; flex-direction:column; justify-content:space-between; color:#f5f2eb; font-style:normal; }
.wm-ui-card span,.wm-ui-card i { font-family:var(--wm-mono); text-transform:uppercase; font-size:.67rem; letter-spacing:.08em; font-style:normal; opacity:.66; }
.wm-ui-card strong { font-size:clamp(2.5rem,4.7vw,5rem); line-height:.9; letter-spacing:-.055em; }
.wm-ui-card--ads { background:linear-gradient(135deg,#161914,#27342b); }
.wm-ui-card--viz { background:linear-gradient(135deg,#5f7867,#27352d); }
.wm-product-hero { margin-top:3.5rem; min-height:500px; padding:3rem; border-radius:2px; display:flex; flex-direction:column; justify-content:space-between; color:#f5f2eb; }
.wm-product-hero--ads { background:radial-gradient(circle at 75% 20%,#536d59,transparent 36%),#11140f; }
.wm-product-hero--viz { background:radial-gradient(circle at 70% 20%,#829c87,transparent 38%),#172019; }
.wm-product-hero>span { font-family:var(--wm-mono); text-transform:uppercase; font-size:.7rem; letter-spacing:.1em; }
.wm-product-hero strong { max-width:780px; font-size:clamp(3.2rem,7vw,7rem); line-height:.86; letter-spacing:-.06em; }
.wm-contact-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:8vw; }
.wm-contact-email { display:block; margin-top:2rem; font-size:clamp(1.8rem,4vw,4.2rem); letter-spacing:-.04em; color:inherit; text-decoration:none; border-bottom:1px solid currentColor; }
.wm-small-links { display:flex; gap:1.5rem; flex-wrap:wrap; margin-top:2rem; }
.wm-small-links a { color:inherit; }
.wm-case-hero-image { margin-top:3.5rem; background:#121511; overflow:hidden; }
.wm-case-hero-image img { display:block; width:100%; aspect-ratio:16/8.25; object-fit:cover; object-position:top; }
.wm-case-facts { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(15,18,14,.18); margin-top:3rem; }
.wm-case-facts div { padding:1.3rem 1.2rem 1.3rem 0; border-right:1px solid rgba(15,18,14,.18); }
.wm-case-facts span { display:block; margin-bottom:.55rem; color:#718174; font-family:var(--wm-mono); font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; }
.wm-case-facts strong { font-size:.9rem; font-weight:500; }
.wm-compare-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; margin-top:4rem; }
.wm-compare-card { margin:0; background:#0b0d0b; }
.wm-compare-card img { display:block; width:100%; aspect-ratio:1265/650; object-fit:cover; object-position:top; }
.wm-compare-card figcaption { display:flex; justify-content:space-between; gap:1rem; padding:1.1rem 1.2rem; color:rgba(241,238,231,.72); font-family:var(--wm-mono); font-size:.65rem; letter-spacing:.06em; text-transform:uppercase; }
.wm-compare-card figcaption strong { color:#f1eee7; font-weight:500; }
.wm-case-outcomes { display:grid; grid-template-columns:.7fr 1fr; gap:9vw; align-items:start; }
.wm-case-outcomes-list { list-style:none; margin:0; padding:0; }
.wm-case-outcomes-list li { display:grid; grid-template-columns:3rem 1fr; gap:1rem; padding:1.4rem 0; border-top:1px solid rgba(241,238,231,.18); color:rgba(241,238,231,.68); line-height:1.6; }
.wm-case-outcomes-list span { color:#91aa98; font-family:var(--wm-mono); font-size:.68rem; }
.wm-case-brief h2 { margin-bottom:2.75rem; }
.wm-case-brief>p+p { margin-top:.35rem; }
.wm-case-detail { border-top:1px solid rgba(15,18,14,.14); }
.wm-case-cta-copy p { margin:0 0 2.25rem; line-height:1.7; }
.wm-case-cta-copy .wm-button { margin-top:.25rem; }
.wm-waterside-case .wm-page-hero h1 { margin-bottom:3.25rem; }
.wm-waterside-case .wm-case-facts div { padding:2rem 1.75rem 2.2rem; }
.wm-waterside-case .wm-case-facts div:first-child { padding-left:0; }
.wm-waterside-case .wm-case-facts div:last-child { border-right:0; }
@media(max-width:900px){.wm-page-hero-grid,.wm-page-intro,.wm-contact-grid{grid-template-columns:1fr}.wm-page-aside{margin-top:2rem}.wm-offer-grid{grid-template-columns:1fr}.wm-project-grid--full{grid-template-columns:1fr}}
@media(max-width:900px){.wm-case-facts{grid-template-columns:1fr 1fr}.wm-compare-grid,.wm-case-outcomes{grid-template-columns:1fr}}
@media(max-width:640px){.wm-page-hero{padding:8rem 0 4rem}.wm-page-section{padding:4.5rem 0}.wm-product-hero{min-height:390px;padding:1.5rem}.wm-ui-card{min-height:310px}.wm-case-facts{grid-template-columns:1fr}.wm-case-facts div{border-right:0}.wm-waterside-case .wm-case-facts div,.wm-waterside-case .wm-case-facts div:first-child{padding:1.5rem 0 1.7rem;border-bottom:1px solid rgba(15,18,14,.14)}.wm-waterside-case .wm-page-hero h1{margin-bottom:2.75rem}.wm-compare-grid{margin-top:2.5rem}.wm-case-brief h2{margin-bottom:2.25rem}.wm-case-cta-copy p{margin-bottom:2rem}.wm-case-cta-copy .wm-button{display:inline-flex}}

/* 2.7.1 refinement — quieter, more editorial, less startup theatre */
body.home,
.wm-main {
  --wm-acid: #789681;
  --wm-mint: #789681;
  --wm-paper: #f2efe8;
  --wm-paper-2: #e9e6de;
}

body.home .site-header {
  background: rgba(10, 10, 9, 0.9);
  backdrop-filter: blur(16px);
}

body.home .nav-links .nav-cta {
  border: 1px solid rgba(245, 243, 238, 0.9);
  border-radius: 999px;
  background: #f5f3ee;
  color: #0a0a09;
}

.wm-kicker,
.wm-section-label,
.wm-capability-type {
  font-family: var(--wm-sans);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.wm-hero {
  min-height: min(960px, 100svh);
  background:
    radial-gradient(circle at 76% 32%, rgba(84, 119, 94, 0.12), transparent 34%),
    #0a0a09;
}

.wm-hero-grid {
  opacity: 0.16;
  background-size: 82px 82px;
}

.wm-hero-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(5rem, 10vw, 11rem);
  min-height: min(960px, 100svh);
  padding-bottom: 5.5rem;
}

.wm-kicker {
  color: rgba(245, 243, 238, 0.48);
}

.wm-kicker span {
  width: 28px;
  height: 1px;
  background: #789681;
  box-shadow: none;
}

.wm-hero h1 {
  max-width: 820px;
  font-size: clamp(4.25rem, 7vw, 7.65rem);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.wm-hero h1 em {
  color: #8caa94;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.wm-hero-lede {
  max-width: 620px;
  color: rgba(245, 243, 238, 0.6);
}

.wm-button {
  min-width: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
}

.wm-button--bright {
  background: #f5f3ee;
  color: #0a0a09;
}

.wm-button--bright:hover {
  background: #dfe5de;
}

.wm-button--light {
  border-color: rgba(245, 243, 238, 0.78);
  background: #f5f3ee;
  color: #0a0a09;
}

.wm-button--light:hover {
  background: transparent;
  color: #f5f3ee;
}

.wm-practice-index {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  border-top: 1px solid rgba(245, 243, 238, 0.34);
  border-bottom: 1px solid rgba(245, 243, 238, 0.34);
}

.wm-practice-head,
.wm-practice-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: rgba(245, 243, 238, 0.36);
  font-family: var(--wm-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-practice-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(245, 243, 238, 0.12);
}

.wm-practice-row > span {
  color: #789681;
  font-family: var(--wm-mono);
  font-size: 0.6rem;
}

.wm-practice-row div {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wm-practice-row strong {
  color: #f5f3ee;
  font-size: clamp(1.6rem, 2.5vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.wm-practice-row small {
  color: rgba(245, 243, 238, 0.44);
  font-size: 0.75rem;
  line-height: 1.5;
}

.wm-practice-foot {
  justify-content: flex-start;
  border-top: 1px solid rgba(245, 243, 238, 0.12);
}

.wm-intro h2 em,
.wm-final-cta h2 em {
  color: #66806d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
}

.wm-capabilities {
  background: #e9e6de;
}

.wm-capability-row > a {
  display: flex;
  width: auto;
  height: auto;
  justify-content: flex-end;
  border: 0;
  color: #4f6857;
  font-size: 1.1rem;
}

.wm-capability-row > a:hover {
  background: transparent;
  color: #0a0a09;
}

.wm-product {
  background: #172019;
  color: #f2efe8;
}

.wm-product .wm-section-label {
  color: rgba(242, 239, 232, 0.45);
}

.wm-product h2 span {
  border-color: rgba(242, 239, 232, 0.65);
}

.wm-product-lede {
  color: rgba(242, 239, 232, 0.72);
}

.wm-check-list {
  border-color: rgba(242, 239, 232, 0.2);
}

.wm-check-list li {
  border-color: rgba(242, 239, 232, 0.13);
  color: rgba(242, 239, 232, 0.68);
}

.wm-check-list li::before {
  color: #91aa98;
}

.wm-product-actions > span {
  color: rgba(242, 239, 232, 0.42);
}

.wm-product-stage {
  min-height: 720px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.wm-product-stage::after {
  display: none;
}

.wm-product-main-image,
.wm-product-inset-image {
  position: absolute;
  margin: 0;
  background: #0a0a09;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.wm-product-main-image {
  top: 0;
  right: 0;
  width: 78%;
  height: 650px;
}

.wm-product-inset-image {
  bottom: -24px;
  left: 0;
  z-index: 2;
  width: 37%;
  height: 440px;
  border: 8px solid #172019;
}

.wm-product-main-image img,
.wm-product-inset-image img {
  display: block;
  width: 100%;
  height: calc(100% - 40px);
  object-fit: cover;
  object-position: top;
}

.wm-product-main-image figcaption,
.wm-product-inset-image figcaption {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 0.85rem;
  color: rgba(245, 243, 238, 0.52);
  font-family: var(--wm-mono);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wm-fit {
  background: #0d0f0d;
}

.wm-fit blockquote em {
  color: #88a18e;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
}

.wm-starts {
  background: #0a0a09;
}

.wm-final-cta {
  background: #182019;
  color: #f2efe8;
}

.wm-final-cta .wm-section-label {
  color: rgba(242, 239, 232, 0.42);
}

.wm-final-cta h2 em {
  color: #91aa98;
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: currentColor;
}

.wm-final-copy p {
  color: rgba(242, 239, 232, 0.66);
  margin-bottom: 2.5rem;
}

@media (max-width: 920px) {
  .wm-hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wm-practice-index {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .wm-hero h1 {
    font-size: clamp(3.3rem, 16.2vw, 5rem);
    line-height: 0.92;
  }

  .wm-practice-index {
    margin-top: 0.5rem;
  }

  .wm-product-stage {
    min-height: 600px;
  }

  .wm-product-main-image {
    width: 87%;
    height: 535px;
  }

  .wm-product-inset-image {
    bottom: -20px;
    width: 42%;
    height: 330px;
    border-width: 6px;
  }
}

@media (max-width: 420px) {
  .wm-product-stage {
    min-height: 520px;
  }

  .wm-product-main-image {
    height: 460px;
  }

  .wm-product-inset-image {
    width: 44%;
    height: 280px;
  }
}

/* AI creative portfolio */
.wm-ai-creative {
  --wm-ai-ink: #090a09;
  --wm-ai-panel: #111511;
  --wm-ai-paper: #eeeae1;
  --wm-ai-mint: #91aa98;
  --wm-ai-line: rgba(238, 234, 225, 0.16);
  --wm-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wm-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  background: var(--wm-ai-ink);
  color: var(--wm-ai-paper);
  font-family: var(--wm-sans);
  font-weight: 500;
}

.wm-ai-creative .site-header {
  padding: 1.1rem 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 10, 9, 0.88);
  backdrop-filter: blur(16px);
}

.wm-ai-creative .nav-logo {
  color: #fff;
  font-family: var(--wm-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.wm-ai-creative .nav-logo span,
.wm-ai-creative .footer-brand span {
  color: var(--wm-ai-mint);
}

.wm-ai-creative .nav-links {
  gap: 1.65rem;
}

.wm-ai-creative .nav-links a {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--wm-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.wm-ai-creative .nav-links a:hover,
.wm-ai-creative .nav-links a:focus-visible {
  color: #fff;
}

.wm-ai-creative .nav-links .nav-cta {
  border-color: var(--wm-ai-paper);
  background: var(--wm-ai-paper);
  color: var(--wm-ai-ink);
}

.wm-ai-creative .nav-links .nav-cta:hover {
  border-color: var(--wm-ai-mint);
  background: var(--wm-ai-mint);
  color: var(--wm-ai-ink);
}

.wm-ai-creative a:focus-visible {
  outline: 2px solid var(--wm-ai-mint);
  outline-offset: 4px;
}

.wm-ai-hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(9rem, 15vw, 13.5rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  border-bottom: 1px solid var(--wm-ai-line);
  background:
    radial-gradient(circle at 74% 18%, rgba(145, 170, 152, 0.14), transparent 31%),
    linear-gradient(145deg, #090a09 50%, #111712);
}

.wm-ai-eyebrow,
.wm-ai-number,
.wm-ai-small-label,
.wm-ai-media-head,
.wm-ai-spec span,
.wm-ai-tools > div > p {
  font-family: var(--wm-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.wm-ai-eyebrow,
.wm-ai-number {
  color: var(--wm-ai-mint);
}

.wm-ai-hero h1 {
  max-width: 1100px;
  margin: 1.35rem 0 clamp(3.5rem, 7vw, 6.5rem);
  font-size: clamp(4.5rem, 12vw, 11.5rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.wm-ai-hero h1 em,
.wm-ai-case-head h2 em {
  color: var(--wm-ai-mint);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
}

.wm-ai-hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 9vw, 9rem);
  align-items: end;
}

.wm-ai-hero-foot > p {
  max-width: 610px;
  color: rgba(238, 234, 225, 0.7);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.wm-ai-hero-foot .wm-ai-thesis {
  color: var(--wm-ai-paper);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  letter-spacing: -0.025em;
}

.wm-ai-index {
  position: sticky;
  top: 58px;
  z-index: 30;
  border-bottom: 1px solid var(--wm-ai-line);
  background: rgba(9, 10, 9, 0.93);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.wm-ai-index::-webkit-scrollbar {
  display: none;
}

.wm-ai-index .wm-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wm-ai-index a {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  min-height: 58px;
  padding: 0 1rem;
  border-left: 1px solid var(--wm-ai-line);
  color: rgba(238, 234, 225, 0.68);
  font-family: var(--wm-mono);
  font-size: 0.63rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.wm-ai-index a:last-child {
  border-right: 1px solid var(--wm-ai-line);
}

.wm-ai-index a:hover,
.wm-ai-index a:focus-visible {
  background: rgba(145, 170, 152, 0.12);
  color: #fff;
}

.wm-ai-index a span {
  color: var(--wm-ai-mint);
}

.wm-ai-case {
  padding: clamp(6.5rem, 11vw, 11rem) 0;
  border-bottom: 1px solid var(--wm-ai-line);
  background: var(--wm-ai-ink);
  scroll-margin-top: 130px;
}

.wm-ai-case--feature {
  background: #0c0f0c;
}

.wm-ai-case--jesus {
  background:
    radial-gradient(circle at 82% 14%, rgba(179, 144, 86, 0.12), transparent 28%),
    #0d100e;
}

.wm-ai-case--jesus .wm-ai-case-head h2 em {
  color: #b39462;
}

.wm-ai-case--jesus .wm-ai-number,
.wm-ai-case--jesus .wm-ai-spec span,
.wm-ai-case--jesus .wm-ai-media-head a {
  color: #b39462;
}

.wm-ai-case--paper {
  border-color: rgba(9, 10, 9, 0.16);
  background: var(--wm-ai-paper);
  color: var(--wm-ai-ink);
}

.wm-ai-case--paper .wm-ai-number {
  color: #5e7664;
}

.wm-ai-case--paper .wm-ai-case-head h2 em {
  color: #607966;
}

.wm-ai-case-head {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7.5rem);
}

.wm-ai-case-head h2 {
  margin: 1.2rem 0 0;
  font-size: clamp(3.8rem, 8.6vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.wm-ai-summary {
  max-width: 520px;
  color: rgba(238, 234, 225, 0.66);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.wm-ai-case--paper .wm-ai-summary {
  color: #50554e;
}

.wm-ai-mrs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  min-height: 700px;
  margin: 0;
  overflow: hidden;
  background: #17141b;
}

.wm-ai-mrs-hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center 20%;
}

.wm-ai-mrs-hero figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(82, 76, 255, 0.33), transparent 42%),
    #17141b;
}

.wm-ai-mrs-hero figcaption span {
  color: rgba(238, 234, 225, 0.55);
  font-family: var(--wm-mono);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wm-ai-mrs-hero figcaption strong {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.wm-ai-jesus-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  min-height: 600px;
  margin: 0 0 clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
  background: #15140f;
}

.wm-ai-jesus-hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center 28%;
}

.wm-ai-jesus-hero figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(179, 144, 86, 0.2), transparent 42%),
    #15140f;
}

.wm-ai-jesus-hero figcaption span {
  color: #b39462;
  font-family: var(--wm-mono);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wm-ai-jesus-hero figcaption strong {
  color: var(--wm-ai-paper);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.wm-ai-spec {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid var(--wm-ai-line);
  border-bottom: 1px solid var(--wm-ai-line);
}

.wm-ai-spec > div {
  min-height: 220px;
  padding: 1.5rem 1.5rem 1.75rem 0;
  border-right: 1px solid var(--wm-ai-line);
}

.wm-ai-spec > div + div {
  padding-left: 1.5rem;
}

.wm-ai-spec > div:last-child {
  border-right: 0;
}

.wm-ai-spec span {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--wm-ai-mint);
}

.wm-ai-spec p {
  color: rgba(238, 234, 225, 0.64);
  font-size: 0.87rem;
  line-height: 1.7;
}

.wm-ai-case--paper .wm-ai-spec {
  border-color: rgba(9, 10, 9, 0.18);
}

.wm-ai-case--paper .wm-ai-spec > div {
  border-color: rgba(9, 10, 9, 0.18);
}

.wm-ai-case--paper .wm-ai-spec span {
  color: #607966;
}

.wm-ai-case--paper .wm-ai-spec p {
  color: #50554e;
}

.wm-ai-voice-direction {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(2rem, 8vw, 8rem);
  margin: clamp(5rem, 9vw, 9rem) 0;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--wm-ai-line);
  background: #121512;
}

.wm-ai-voice-direction > p,
.wm-ai-voice-direction > span {
  color: var(--wm-ai-mint);
  font-family: var(--wm-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-ai-voice-direction blockquote {
  max-width: 920px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  font-weight: 300;
  line-height: 1.06;
}

.wm-ai-voice-direction > span {
  grid-column: 2;
  color: rgba(238, 234, 225, 0.38);
  overflow-wrap: anywhere;
}

.wm-ai-media-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  color: rgba(238, 234, 225, 0.58);
}

.wm-ai-media-head a {
  color: var(--wm-ai-mint);
}

.wm-ai-tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.wm-ai-tiktok {
  min-width: 0;
  padding: 0.85rem;
  overflow: hidden;
  background: #141714;
}

.wm-ai-tiktok iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #000;
}

.wm-ai-tiktok-grid--jesus .wm-ai-tiktok {
  background: #0a0c0a;
}

.wm-ai-podcast-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.wm-ai-podcast-art {
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border: 1px solid rgba(9, 10, 9, 0.16);
  background: #e4dfd5;
}

.wm-ai-podcast-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.wm-ai-podcast-art figcaption {
  padding-top: 0.9rem;
  color: #656a62;
  font-family: var(--wm-mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wm-ai-podcast-copy {
  max-width: 720px;
}

.wm-ai-small-label {
  color: #607966;
}

.wm-ai-podcast-copy h3 {
  margin: 1.3rem 0 1.6rem;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.wm-ai-podcast-copy > p:not(.wm-ai-small-label) {
  max-width: 590px;
  margin-bottom: 2rem;
  color: #50554e;
  font-size: 1.05rem;
  line-height: 1.7;
}

.wm-ai-podcast-copy iframe {
  display: block;
  width: 100%;
  max-width: 660px;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

.wm-ai-text-link {
  display: inline-block;
  margin-top: 1.5rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--wm-mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wm-ai-audio-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(5rem, 9vw, 9rem) 0 0;
  padding: 0;
  border-top: 1px solid rgba(9, 10, 9, 0.18);
  border-bottom: 1px solid rgba(9, 10, 9, 0.18);
  list-style: none;
}

.wm-ai-audio-flow li {
  min-height: 245px;
  padding: 1.5rem 2rem 2rem 0;
  border-right: 1px solid rgba(9, 10, 9, 0.18);
}

.wm-ai-audio-flow li + li {
  padding-left: 2rem;
}

.wm-ai-audio-flow li:last-child {
  border-right: 0;
}

.wm-ai-audio-flow span {
  display: block;
  color: #607966;
  font-family: var(--wm-mono);
  font-size: 0.65rem;
}

.wm-ai-audio-flow strong {
  display: block;
  margin: 3.5rem 0 0.85rem;
  font-size: 1.45rem;
  font-weight: 600;
}

.wm-ai-audio-flow p {
  max-width: 290px;
  color: #565b54;
  font-size: 0.9rem;
  line-height: 1.65;
}

.wm-ai-technical-note {
  margin-top: 1.2rem;
  color: #777b75;
  font-family: var(--wm-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.wm-ai-case--experiments {
  background: #111511;
}

.wm-ai-experiment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.wm-ai-experiment-grid article {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--wm-ai-line);
  background: #090a09;
}

.wm-ai-experiment-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #050605;
}

.wm-ai-experiment-grid article > div {
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.wm-ai-experiment-kicker {
  color: var(--wm-ai-mint);
  font-family: var(--wm-mono);
  font-size: 0.63rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wm-ai-experiment-grid h3 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.wm-ai-experiment-lede {
  max-width: 620px;
  color: rgba(238, 234, 225, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}

.wm-ai-experiment-details {
  margin: 1.5rem 0 0;
}

.wm-ai-experiment-details > div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--wm-ai-line);
}

.wm-ai-experiment-details dt {
  color: var(--wm-ai-mint);
  font-family: var(--wm-mono);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wm-ai-experiment-details dd {
  margin: 0;
  color: rgba(238, 234, 225, 0.56);
  font-size: 0.78rem;
  line-height: 1.62;
}

.wm-ai-tools {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--wm-ai-line);
  background: #090a09;
}

.wm-ai-tools .wm-shell {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 3rem;
}

.wm-ai-tools > div > p {
  color: var(--wm-ai-mint);
}

.wm-ai-tools .wm-shell > div {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.wm-ai-tools span {
  padding: 0.75rem 1rem;
  border: 1px solid var(--wm-ai-line);
  color: rgba(238, 234, 225, 0.68);
  font-family: var(--wm-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wm-ai-cta {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--wm-ai-mint);
  color: var(--wm-ai-ink);
}

.wm-ai-cta .wm-shell {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
}

.wm-ai-cta p {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.wm-ai-cta a {
  flex: 0 0 auto;
  padding: 1rem 1.35rem;
  border: 1px solid var(--wm-ai-ink);
  font-family: var(--wm-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.wm-ai-cta a:hover {
  background: var(--wm-ai-ink);
  color: var(--wm-ai-paper);
}

.wm-ai-creative .wm-footer.site-footer {
  background: #050605;
}

.wm-ai-creative .footer-bottom {
  background: #050605;
}

@media (min-width: 1101px) {
  .wm-ai-creative .wm-shell {
    width: min(100% - 6rem, 1120px);
  }

  .wm-ai-hero {
    min-height: 68vh;
    padding: 7.75rem 0 4rem;
  }

  .wm-ai-hero h1 {
    max-width: 780px;
    margin-bottom: 3.25rem;
    font-size: clamp(4.25rem, 6vw, 6.75rem);
    line-height: 0.84;
  }

  .wm-ai-hero-foot > p {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
  }

  .wm-ai-hero-foot .wm-ai-thesis {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  }

  .wm-ai-case {
    padding-block: clamp(4.75rem, 5.5vw, 5.75rem);
  }

  .wm-ai-case-head {
    gap: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: clamp(2.75rem, 3.5vw, 3.5rem);
  }

  .wm-ai-case-head h2 {
    font-size: clamp(3.4rem, 4.5vw, 5rem);
    line-height: 0.88;
  }

  .wm-ai-summary {
    max-width: 430px;
    font-size: clamp(0.94rem, 1vw, 1.02rem);
    line-height: 1.6;
  }

  .wm-ai-mrs-hero,
  .wm-ai-jesus-hero,
  .wm-ai-mrs-hero img,
  .wm-ai-jesus-hero img {
    height: 360px;
    min-height: 0;
  }

  .wm-ai-mrs-hero figcaption,
  .wm-ai-jesus-hero figcaption {
    min-height: 0;
    padding: clamp(2rem, 2.6vw, 2.6rem);
  }

  .wm-ai-mrs-hero figcaption strong,
  .wm-ai-jesus-hero figcaption strong {
    font-size: clamp(2.25rem, 2.8vw, 2.8rem);
  }

  .wm-ai-spec {
    margin-top: 2rem;
  }

  .wm-ai-spec > div {
    min-height: 155px;
    padding: 1.15rem 1.15rem 1.25rem 0;
  }

  .wm-ai-spec > div + div {
    padding-left: 1.15rem;
  }

  .wm-ai-spec span {
    margin-bottom: 1.25rem;
  }

  .wm-ai-spec p {
    font-size: 0.76rem;
    line-height: 1.58;
  }

  .wm-ai-voice-direction {
    gap: clamp(2rem, 4vw, 4rem);
    margin-block: clamp(3rem, 4vw, 4rem);
    padding: clamp(2rem, 3vw, 3rem);
  }

  .wm-ai-voice-direction blockquote {
    font-size: clamp(1.85rem, 2.4vw, 2.65rem);
  }

  .wm-ai-media-head,
  .wm-ai-tiktok-grid {
    width: min(100%, 980px);
    margin-inline: auto;
  }

  .wm-ai-media-head {
    margin-bottom: 1.25rem;
  }

  .wm-ai-podcast-grid {
    max-width: 1030px;
    margin-inline: auto;
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .wm-ai-podcast-art {
    max-width: 380px;
  }

  .wm-ai-podcast-copy h3 {
    font-size: clamp(2.35rem, 3vw, 3.25rem);
  }

  .wm-ai-audio-flow {
    margin-top: clamp(3rem, 4vw, 4rem);
  }

  .wm-ai-audio-flow li {
    min-height: 180px;
  }

  .wm-ai-audio-flow strong {
    margin-top: 1.85rem;
    font-size: 1.25rem;
  }

  .wm-ai-experiment-grid {
    gap: 1rem;
  }

  .wm-ai-experiment-grid h3 {
    font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  }

  .wm-ai-tools {
    padding-block: clamp(3.25rem, 4vw, 4.25rem);
  }

  .wm-ai-cta {
    padding-block: clamp(3.5rem, 4.5vw, 4.75rem);
  }

  .wm-ai-cta p {
    font-size: clamp(2.1rem, 3vw, 3.25rem);
  }
}

@media (max-width: 1100px) {
  .wm-ai-spec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wm-ai-spec > div,
  .wm-ai-spec > div + div {
    min-height: 190px;
    padding: 1.5rem;
    border-bottom: 1px solid var(--wm-ai-line);
  }

  .wm-ai-spec > div:nth-child(2n) {
    border-right: 0;
  }

  .wm-ai-case--paper .wm-ai-spec > div {
    border-bottom-color: rgba(9, 10, 9, 0.18);
  }

}

@media (max-width: 900px) {
  .wm-ai-hero-foot,
  .wm-ai-case-head,
  .wm-ai-mrs-hero,
  .wm-ai-jesus-hero,
  .wm-ai-podcast-grid {
    grid-template-columns: 1fr;
  }

  .wm-ai-index {
    top: 58px;
    overflow-x: auto;
  }

  .wm-ai-index .wm-shell {
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(4, minmax(190px, 1fr));
  }

  .wm-ai-case {
    scroll-margin-top: 116px;
  }

  .wm-ai-case-head {
    align-items: start;
  }

  .wm-ai-summary {
    max-width: 640px;
  }

  .wm-ai-mrs-hero {
    min-height: 0;
  }

  .wm-ai-jesus-hero {
    min-height: 0;
  }

  .wm-ai-mrs-hero img {
    min-height: 0;
    aspect-ratio: 1 / 0.9;
  }

  .wm-ai-jesus-hero img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .wm-ai-mrs-hero figcaption {
    min-height: 390px;
  }

  .wm-ai-jesus-hero figcaption {
    min-height: 280px;
  }

  .wm-ai-tiktok-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wm-ai-tiktok:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.625rem);
  }

  .wm-ai-podcast-art {
    max-width: 620px;
  }

  .wm-ai-audio-flow {
    grid-template-columns: 1fr;
  }

  .wm-ai-audio-flow li,
  .wm-ai-audio-flow li + li {
    min-height: 0;
    padding: 1.5rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 10, 9, 0.18);
  }

  .wm-ai-audio-flow li:last-child {
    border-bottom: 0;
  }

  .wm-ai-audio-flow strong {
    margin-top: 1.8rem;
  }

  .wm-ai-tools .wm-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wm-ai-creative .site-header {
    padding-inline: 1.4rem;
  }

  .wm-ai-creative .nav-links li:not(:last-child) {
    display: none;
  }

  .wm-ai-creative .wm-shell {
    width: min(100% - 2.5rem, 1380px);
  }

  .wm-ai-hero {
    min-height: 86vh;
    padding-bottom: 4.5rem;
  }

  .wm-ai-hero h1 {
    font-size: clamp(4rem, 21vw, 6.6rem);
    line-height: 0.8;
  }

  .wm-ai-index .wm-shell {
    width: max-content;
  }

  .wm-ai-index a {
    min-height: 52px;
  }

  .wm-ai-case {
    padding-block: 5.5rem;
  }

  .wm-ai-case-head {
    gap: 2.2rem;
    margin-bottom: 3.8rem;
  }

  .wm-ai-case-head h2 {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
  }

  .wm-ai-mrs-hero figcaption {
    min-height: 310px;
  }

  .wm-ai-jesus-hero figcaption {
    min-height: 230px;
  }

  .wm-ai-spec {
    grid-template-columns: 1fr;
  }

  .wm-ai-spec > div,
  .wm-ai-spec > div + div {
    min-height: 0;
    padding: 1.5rem 0 1.8rem;
    border-right: 0;
  }

  .wm-ai-spec span {
    margin-bottom: 1.15rem;
  }

  .wm-ai-voice-direction {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .wm-ai-voice-direction > span {
    grid-column: 1;
  }

  .wm-ai-tiktok-grid {
    grid-template-columns: 1fr;
  }

  .wm-ai-tiktok,
  .wm-ai-tiktok:last-child {
    width: 100%;
    grid-column: auto;
  }

  .wm-ai-experiment-grid {
    grid-template-columns: 1fr;
  }

  .wm-ai-experiment-grid article {
    grid-template-columns: 1fr;
  }

  .wm-ai-experiment-grid img {
    width: 100%;
  }

  .wm-ai-experiment-details > div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .wm-ai-cta .wm-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Homepage typography corrections */
.wm-intro h2 {
  font-size: clamp(3.25rem, 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.058em;
}

.wm-intro-line {
  display: block;
}

.wm-intro-line + .wm-intro-line {
  margin-top: 0.14em;
}

.wm-fit blockquote {
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.wm-fit blockquote em {
  vertical-align: baseline;
}

@media (max-width: 680px) {
  .wm-intro h2 {
    font-size: clamp(2.75rem, 11.8vw, 3.5rem);
  }

  .wm-fit blockquote {
    font-size: clamp(2.4rem, 10.5vw, 3.2rem);
  }
}

/* 2026 full-site refinement: quieter scale, clearer hierarchy, fewer boxed patterns */
.wm-inner {
  --wm-content-max: 1240px;
}

.wm-inner .wm-shell {
  width: min(calc(100% - 4rem), var(--wm-content-max));
}

.wm-page-hero {
  padding: 8.75rem 0 4.75rem;
}

.wm-page-hero h1 {
  max-width: 990px;
  margin: 0.9rem 0 2rem;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.058em;
}

.wm-page-hero h1 em,
.wm-intro h2 em,
.wm-final-cta h2 em {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}

.wm-page-hero .wm-page-lede {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.62;
}

.wm-page-hero-grid {
  gap: clamp(3.5rem, 7vw, 7rem);
}

.wm-page-section {
  padding: 6rem 0;
}

.wm-page-intro {
  gap: clamp(3rem, 7vw, 7rem);
}

.wm-page-intro h2,
.wm-page-section h2 {
  font-size: clamp(2.65rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.wm-page-intro-copy > p {
  max-width: 46rem;
  font-size: 1.08rem;
  line-height: 1.72;
}

.wm-offer-grid,
.wm-case-grid {
  gap: 0;
  margin-top: 3.25rem;
  border-top: 1px solid rgba(15, 18, 14, 0.2);
  border-bottom: 1px solid rgba(15, 18, 14, 0.2);
  background: transparent;
}

.wm-page-section--dark .wm-offer-grid,
.wm-page-section--green .wm-offer-grid {
  border-color: rgba(241, 238, 231, 0.2);
}

.wm-offer-card,
.wm-page-section--dark .wm-offer-card {
  min-height: 0;
  padding: 1.6rem 1.6rem 2rem;
  border-right: 1px solid rgba(15, 18, 14, 0.18);
  background: transparent;
}

.wm-page-section--dark .wm-offer-card,
.wm-page-section--green .wm-offer-card {
  border-color: rgba(241, 238, 231, 0.18);
}

.wm-offer-card:last-child {
  border-right: 0;
}

.wm-offer-card h3 {
  margin: 2.75rem 0 0.8rem;
  font-size: 1.45rem;
}

.wm-offer-card p {
  margin-bottom: 0;
}

.wm-product-hero {
  min-height: 390px;
  margin-top: 2.75rem;
  padding: 2.5rem;
}

.wm-product-hero h1,
.wm-product-hero strong {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.1rem, 5.4vw, 5.4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.wm-button {
  border-radius: 3px;
}

.wm-final-cta .wm-contact-grid > div > p {
  margin: 0 0 2rem;
  line-height: 1.7;
}

.wm-hero {
  min-height: min(820px, 88svh);
}

.wm-hero-layout {
  min-height: min(820px, 88svh);
  padding-bottom: 4.5rem;
}

.wm-hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.94;
}

.wm-hero h1 em {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}

.wm-waterside-case .wm-page-hero h1 {
  margin-bottom: 2rem;
}

.wm-ai-hero {
  min-height: auto;
  padding: 8rem 0 4.5rem;
}

.wm-ai-hero h1 {
  max-width: 760px;
  margin: 1.2rem 0 3rem;
  font-size: clamp(4rem, 6vw, 6.25rem);
  line-height: 0.88;
}

.wm-ai-hero h1 em,
.wm-ai-case-head h2 em {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}

.wm-ai-case--feature .wm-ai-case-head h2 em,
.wm-ai-case--jesus .wm-ai-case-head h2 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
}

.wm-ai-case--feature .wm-ai-case-head h2 em {
  color: var(--wm-ai-mint);
}

.wm-ai-case--jesus .wm-ai-case-head h2 em {
  color: #b39462;
}

.wm-ai-experiment-grid {
  width: min(100%, 960px);
}

.wm-ai-experiment-grid article {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.wm-ai-experiment-grid img {
  max-height: 380px;
}

@media (max-width: 900px) {
  .wm-inner .wm-shell {
    width: min(calc(100% - 3rem), var(--wm-content-max));
  }

  .wm-offer-card,
  .wm-page-section--dark .wm-offer-card {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 18, 14, 0.18);
  }

  .wm-page-section--dark .wm-offer-card,
  .wm-page-section--green .wm-offer-card {
    border-bottom-color: rgba(241, 238, 231, 0.18);
  }

  .wm-offer-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .wm-inner .wm-shell,
  .wm-ai-creative .wm-shell {
    width: min(calc(100% - 2.5rem), var(--wm-content-max));
  }

  .wm-page-hero {
    padding: 7.25rem 0 3.5rem;
  }

  .wm-page-hero h1 {
    margin: 0.8rem 0 1.6rem;
    font-size: clamp(3rem, 13.5vw, 4.2rem);
    line-height: 0.94;
  }

  .wm-page-hero .wm-page-lede {
    font-size: 1rem;
  }

  .wm-page-aside {
    margin-top: 2.75rem;
  }

  .wm-page-section {
    padding: 4rem 0;
  }

  .wm-page-intro h2,
  .wm-page-section h2 {
    font-size: clamp(2.5rem, 11vw, 3.35rem);
  }

  .wm-page-intro-copy > p {
    font-size: 1rem;
  }

  .wm-offer-grid,
  .wm-case-grid {
    margin-top: 2.5rem;
  }

  .wm-offer-card h3 {
    margin-top: 2rem;
  }

  .wm-product-hero {
    min-height: 310px;
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .wm-product-hero h1,
  .wm-product-hero strong {
    font-size: clamp(2.75rem, 12vw, 3.6rem);
    line-height: 0.94;
  }

  .wm-hero,
  .wm-hero-layout {
    min-height: auto;
  }

  .wm-hero-layout {
    padding-top: 8.25rem;
    padding-bottom: 4.25rem;
  }

  .wm-hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.25rem);
    line-height: 0.96;
  }

  .wm-ai-hero {
    min-height: auto;
    padding: 7.5rem 0 3.5rem;
  }

  .wm-ai-hero h1 {
    margin-bottom: 2.5rem;
    font-size: clamp(3.25rem, 14vw, 4.1rem);
    line-height: 0.94;
  }

  .wm-ai-case {
    padding-block: 4rem;
  }

  .wm-ai-case-head {
    gap: 1.6rem;
    margin-bottom: 2.75rem;
  }

  .wm-ai-case-head h2 {
    font-size: clamp(3rem, 13.5vw, 4rem);
    line-height: 0.9;
  }

  .wm-ai-mrs-hero img,
  .wm-ai-jesus-hero img {
    aspect-ratio: 4 / 3;
  }

  .wm-ai-mrs-hero figcaption,
  .wm-ai-jesus-hero figcaption {
    min-height: 220px;
  }

  .wm-ai-experiment-grid article {
    grid-template-columns: 1fr;
  }

  .wm-ai-experiment-grid img {
    max-height: 320px;
  }
}

/* Consistent homepage section hierarchy */
.wm-intro h2,
.wm-section-heading h2,
.wm-product h2,
.wm-final-cta h2 {
  font-size: clamp(3.25rem, 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.058em;
}

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

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

@media (max-width: 680px) {
  .wm-intro h2,
  .wm-section-heading h2,
  .wm-product h2,
  .wm-final-cta h2 {
    font-size: clamp(2.75rem, 11.8vw, 3.5rem);
  }
}

/* Align the homepage introduction with the editorial sections that follow */
.wm-intro.wm-section {
  padding-block: clamp(5.5rem, 7vw, 7.5rem);
}

.wm-intro-grid {
  display: block;
}

.wm-intro .wm-section-label {
  margin-bottom: 1.4rem;
}

.wm-intro h2,
.wm-section-heading {
  max-width: 1200px;
}

/* One button system across navigation and page actions */
.nav-links .nav-cta,
.nav-cta,
body.home .nav-links .nav-cta,
.wm-inner .nav-links .nav-cta,
.wm-ai-creative .nav-links .nav-cta {
  border-radius: 3px;
  padding: 0.95rem 1.35rem;
  font-family: var(--wm-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Products and pricing */
.wm-products-hero {
  padding: clamp(8rem, 12vw, 11rem) 0 clamp(5rem, 8vw, 8rem);
  border-bottom: 1px solid rgba(15, 18, 14, 0.14);
  background: var(--wm-paper);
}

.wm-products-hero h1 {
  max-width: 1080px;
  margin: 1.5rem 0 2.25rem;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.wm-products-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.wm-products-hero-copy > p {
  grid-column: 2;
  max-width: 540px;
  margin: 0;
  color: #555c55;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.7;
}

.wm-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 18, 14, 0.14);
  color: #596159;
  font-family: var(--wm-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-availability span::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: #789681;
}

.wm-availability .wm-availability--preview::before {
  background: transparent;
  border: 1px solid currentColor;
}

.wm-product-sale {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.wm-product-sale--dark {
  background: #0a0a09;
  color: #f5f3ee;
}

.wm-product-sale--paper {
  background: var(--wm-paper);
  color: var(--wm-ink);
}

.wm-product-sale--green {
  background: #18241d;
  color: #f5f3ee;
}

.wm-product-sale-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
}

.wm-product-sale-index {
  position: sticky;
  top: 7rem;
}

.wm-product-sale-index p,
.wm-product-sale-index span {
  font-family: var(--wm-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wm-product-sale-index p {
  margin: 0 0 1rem;
  color: #789681;
}

.wm-product-sale-index span {
  color: rgba(245, 243, 238, 0.46);
}

.wm-product-sale--paper .wm-product-sale-index span {
  color: #687068;
}

.wm-product-sale-copy h2 {
  max-width: 960px;
  margin: 0 0 2rem;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.wm-product-sale-copy > p {
  max-width: 720px;
  margin: 0 0 2rem;
  color: rgba(245, 243, 238, 0.64);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.75;
}

.wm-product-sale--paper .wm-product-sale-copy > p {
  color: #555c55;
}

.wm-product-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 3rem 0;
  border-top: 1px solid rgba(245, 243, 238, 0.2);
  border-bottom: 1px solid rgba(245, 243, 238, 0.2);
}

.wm-product-sale--paper .wm-product-points {
  border-color: rgba(15, 18, 14, 0.14);
}

.wm-product-points div {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-right: 1px solid rgba(245, 243, 238, 0.2);
}

.wm-product-sale--paper .wm-product-points div {
  border-color: rgba(15, 18, 14, 0.14);
}

.wm-product-points div + div {
  padding-left: 1.5rem;
}

.wm-product-points div:last-child {
  border-right: 0;
}

.wm-product-points strong,
.wm-product-points span {
  display: block;
}

.wm-product-points strong {
  margin-bottom: 0.55rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.wm-product-points span {
  color: rgba(245, 243, 238, 0.55);
  font-size: 0.82rem;
  line-height: 1.55;
}

.wm-product-sale--paper .wm-product-points span {
  color: #687068;
}

.wm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: rgba(245, 243, 238, 0.22);
  border: 1px solid rgba(245, 243, 238, 0.22);
}

.wm-price-plan {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #121411;
}

.wm-price-plan > span,
.wm-price-plan small {
  font-family: var(--wm-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-price-plan > span {
  color: #789681;
  font-size: 0.66rem;
}

.wm-price-plan h3 {
  margin: 1.5rem 0 0.4rem;
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.wm-price-plan h3 small {
  display: inline;
  color: rgba(245, 243, 238, 0.48);
  font-size: 0.62rem;
  font-weight: 400;
}

.wm-price-plan p {
  margin: 0 0 2rem;
  color: rgba(245, 243, 238, 0.58);
  line-height: 1.6;
}

.wm-price-plan .wm-button {
  width: 100%;
  margin-top: auto;
}

.wm-product-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.wm-purchase-note {
  max-width: 780px;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid currentColor;
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.7;
  opacity: 0.62;
}

@media (max-width: 900px) {
  .wm-products-hero-copy,
  .wm-product-sale-grid {
    grid-template-columns: 1fr;
  }

  .wm-products-hero-copy > p {
    grid-column: auto;
  }

  .wm-product-sale-index {
    position: static;
  }
}

@media (max-width: 680px) {
  .wm-products-hero {
    padding: 7rem 0 4rem;
  }

  .wm-products-hero h1 {
    font-size: clamp(3.35rem, 16vw, 4.7rem);
  }

  .wm-product-sale {
    padding: 4rem 0;
  }

  .wm-product-sale-copy h2 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .wm-product-points,
  .wm-pricing-grid {
    grid-template-columns: 1fr;
  }

  .wm-product-points div,
  .wm-product-points div + div {
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 243, 238, 0.2);
  }

  .wm-product-sale--paper .wm-product-points div {
    border-color: rgba(15, 18, 14, 0.14);
  }

  .wm-product-points div:last-child {
    border-bottom: 0;
  }

  .wm-price-plan {
    min-height: 285px;
  }
}

@media (max-width: 680px) {
  .wm-intro.wm-section {
    padding-block: 4rem;
  }
}
