:root {
  --bg: #f7f3ec;
  --bg-header: rgba(233, 226, 214, 0.94);
  --bg-soft: #efe8dc;
  --bg-soft-2: #f3ece1;
  --bg-tint: #e8dcc8;
  --bg-deep: #181614;
  --surface: #faf7f1;
  --surface-soft: #f4ede3;
  --text: #1d1a17;
  --muted: #766d62;
  --muted-strong: #5f574d;
  --muted-light: rgba(255, 255, 255, 0.72);
  --border: #d7cec1;
  --border-strong: #cdbfae;
  --accent: #242321;
  --gold: #d5bc87;
  --gold-soft: rgba(213, 188, 135, 0.22);
  --max-width: 1120px;
  --radius: 28px;
  --radius-sm: 22px;
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.035);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.48;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

strong {
  font-weight: 500;
}

.shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg-header);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215, 206, 193, 0.95);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.wordmark {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.header-inner > .button {
  justify-self: end;
  white-space: nowrap;
  min-width: 132px;
}

.site-nav a,
.footer-links a,
.text-link,
.text-link-arrow {
  color: var(--muted);
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover,
.text-link-arrow:hover {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
  cursor: pointer;
}

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

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #171614;
  border-color: #171614;
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(0, 0, 0, 0.03);
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary-light:hover,
.button-secondary-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.eyebrow,
.section-label,
.card-label,
.pillar-number,
.mini-label,
.pillar-label,
.step-number {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-label-light {
  color: var(--muted-light);
}

main {
  overflow: clip;
}

.hero {
  padding: 100px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.78fr);
  gap: 54px;
  align-items: start;
}

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

.hero-copy h1 {
  margin-top: 12px;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.058em;
  font-weight: 200;
  max-width: 860px;
}

.hero-text {
  margin-top: 22px;
  max-width: 700px;
  font-size: 1.18rem;
  color: var(--muted);
}

.hero-note {
  margin-top: 26px;
  max-width: 700px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 1.02rem;
  color: var(--muted-strong);
}

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

.hero-aside {
  display: grid;
  gap: 16px;
}

.hero-panel,
.focus-card,
.secondary-card,
.nav-card,
.closing-card,
.page-card,
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel,
.focus-card,
.secondary-card,
.nav-card,
.closing-card,
.page-card,
.step-card {
  padding: 26px;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(239, 232, 220, 0.95) 0%, rgba(250, 247, 241, 0.92) 100%);
}

.hero-panel p + p,
.hero-panel ul {
  margin-top: 12px;
}

.hero-panel ul,
.page-panel ul,
.dark-card ul,
.focus-list {
  list-style: none;
  padding: 0;
}

.hero-panel ul {
  display: grid;
  gap: 12px;
}

.hero-panel li {
  padding-top: 12px;
  border-top: 1px solid rgba(125, 114, 99, 0.16);
  color: var(--muted-strong);
}

.hero-panel li:first-child,
.page-panel li:first-child,
.dark-card li:first-child,
.focus-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.section {
  padding: 86px 0;
  border-top: 1px solid var(--border);
}

.section-soft {
  background: rgba(255, 255, 255, 0.35);
}

.section-tint {
  background:
    radial-gradient(circle at top right, rgba(213, 188, 135, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(239, 232, 220, 0.9) 0%, rgba(247, 243, 236, 0.95) 100%);
}

.section-dark {
  background: var(--bg-deep);
  color: #f7f2ea;
}

.section-intro {
  max-width: 780px;
}

.section-intro h2 {
  margin-top: 10px;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.046em;
  font-weight: 300;
}

.section-intro p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-intro-dark p {
  color: var(--muted-light);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.pillar-card {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.88) 0%, rgba(244, 237, 227, 0.98) 100%);
  border: 1px solid rgba(205, 191, 174, 0.95);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pillar-icon-stage {
  position: relative;
  min-height: 218px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(213, 188, 135, 0.18), transparent 42%),
    linear-gradient(180deg, #151311 0%, #1d1a17 100%);
  border-bottom: 1px solid rgba(213, 188, 135, 0.22);
}

.pillar-icon-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-icon-stage svg {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  color: #f7f2ea;
}

.pillar-icon-stage svg * {
  stroke: #f7f2ea;
}

.pillar-stage-number {
  position: absolute;
  left: 20px;
  bottom: 8px;
  font-size: 5rem;
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 300;
  color: rgba(213, 188, 135, 0.28);
}

.pillar-body {
  padding: 24px 24px 28px;
}

.pillar-label {
  color: var(--muted-strong);
}

.pillar-body h3,
.focus-card h3,
.secondary-card h3,
.nav-card h3,
.closing-card h2,
.page-card h3,
.step-card h3,
.page-panel h3,
.dark-card h3 {
  margin-top: 12px;
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
  font-weight: 300;
}

.pillar-body p,
.focus-card p,
.secondary-card p,
.nav-card p,
.closing-card p,
.focus-list li,
.page-card p,
.step-card p,
.step-card li,
.page-panel p,
.page-panel li,
.dark-card p,
.dark-card li {
  margin-top: 12px;
  color: var(--muted);
}

.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.88fr);
  gap: 26px;
  align-items: start;
  margin-top: 34px;
}

.focus-card {
  background: rgba(250, 247, 241, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.focus-card p,
.focus-card li,
.focus-card .card-label {
  color: rgba(255, 255, 255, 0.76);
}

.focus-card h3 {
  color: #ffffff;
}

.focus-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.focus-list li {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.live-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.live-link-card {
  display: block;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.live-link-card:hover,
.live-link-card:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.live-link-card.is-emphasis {
  background: rgba(255, 255, 255, 0.12);
}

.live-link-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.live-link-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.12;
  letter-spacing: -0.018em;
}

.live-link-title::after {
  content: "↗";
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.secondary-grid,
.dark-grid,
.page-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

.secondary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.dark-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.dark-card {
  min-height: 100%;
  background: rgba(250, 247, 241, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
}

.dark-card .card-label,
.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.76);
}

.dark-card h3 {
  color: #ffffff;
}

.dark-card ul {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.dark-card li {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.text-link-arrow::after {
  content: "→";
  font-size: 1rem;
}

.closing {
  padding: 86px 0 96px;
}

.closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.62fr);
  gap: 24px;
  align-items: start;
}

.closing-copy h2 {
  margin-top: 10px;
}

.closing-copy p {
  max-width: 650px;
}

.closing-meta {
  color: var(--muted);
  display: grid;
  gap: 14px;
}

.page-hero {
  padding: 96px 0 48px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.74fr);
  gap: 32px;
  align-items: end;
}

.page-hero h1 {
  margin-top: 10px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.93;
  letter-spacing: -0.052em;
  font-weight: 200;
  max-width: 840px;
}

.page-hero p {
  margin-top: 20px;
  max-width: 760px;
  font-size: 1.12rem;
  color: var(--muted);
}

.page-panel {
  background: var(--bg-deep);
  color: #f7f2ea;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow);
}

.page-panel .card-label,
.page-panel p,
.page-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.page-panel h3 {
  color: #ffffff;
}

.page-panel ul {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.page-panel li {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

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

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.step-card ul {
  margin-top: 14px;
  padding-left: 18px;
}

.note-band {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--muted-strong);
}

.site-footer {
  padding: 34px 0 42px;
  background: #e9e2d6;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.footer-text {
  margin-top: 14px;
  max-width: 580px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 32px auto 0;
  color: var(--muted);
}

.footer-stamp img {
  display: block;
  width: 38px;
  height: auto;
}

.footer-stamp span {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .step-grid,
  .dark-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 760px) {
  .tool-hero-media {
    min-height: 420px;
  }

  .tool-hero-shell {
    padding-inline: 22px;
    padding-top: 58px;
    padding-bottom: 28px;
  }

  .tool-hero-copy {
    width: min(100%, 100%);
  }

  .tool-hero-copy h1 {
    max-width: 11ch;
  }

  .tool-hero-copy p {
    max-width: 34ch;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .focus-grid,
  .closing-card,
  .footer-inner,
  .secondary-grid,
  .page-grid,
  .pillar-grid,
  .page-hero-grid,
  .dark-grid {
    grid-template-columns: 1fr;
  }

  .secondary-grid,
  .page-grid,
  .pillar-grid,
  .dark-grid {
    display: grid;
  }

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

  .footer-inner {
    align-items: start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: 72px;
    display: flex;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero,
  .section,
  .closing,
  .page-hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .pillar-icon-stage {
    min-height: 192px;
  }

  .pillar-icon-stage svg {
    width: 102px;
    height: 102px;
  }

  .pillar-stage-number {
    font-size: 4.2rem;
  }

  .page-hero p,
  .hero-text {
    font-size: 1.05rem;
  }

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

  .footer-stamp img {
    width: 36px;
  }
}


/* Revision 4 refinements */
img {
  display: block;
  max-width: 100%;
}

.hero-panel,
.page-panel,
.dark-card {
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.page-panel::before,
.dark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(213, 188, 135, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-text {
  max-width: 720px;
}

.hero-note {
  max-width: 720px;
}

.hero-panel h3 {
  margin-top: 12px;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  line-height: 1.02;
  letter-spacing: -0.034em;
  font-weight: 300;
}

.hero-panel li {
  position: relative;
}

.pillar-icon-stage {
  min-height: 250px;
  align-items: end;
  padding: 24px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 26%, transparent 58%),
    radial-gradient(ellipse at 50% 8%, rgba(213, 188, 135, 0.30) 0%, rgba(213, 188, 135, 0.12) 24%, transparent 62%),
    linear-gradient(180deg, #13110f 0%, #1b1815 100%);
}

.pillar-icon-stage::before {
  inset: 16px;
  border-color: rgba(255, 255, 255, 0.06);
  mask-image: radial-gradient(ellipse at 50% 4%, black 32%, transparent 78%);
}

.pillar-icon-stage svg {
  width: 136px;
  height: 136px;
  margin-bottom: 18px;
}

.pillar-stage-tag {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(213, 188, 135, 0.86);
}

.section-visual {
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.75) 0%, rgba(244, 237, 227, 0.72) 100%);
}

.compact-intro {
  max-width: 700px;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.74fr);
  gap: 18px;
  margin-top: 30px;
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.visual-card,
.media-feature-figure {
  margin: 0;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.9) 0%, rgba(244, 237, 227, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-card img,
.media-feature-figure img,
.card-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-card figcaption,
.media-feature-figure figcaption {
  padding: 16px 20px 18px;
  font-size: 0.94rem;
  color: var(--muted);
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  align-items: center;
  gap: 24px;
}

.media-feature-reverse {
  grid-template-columns: minmax(340px, 1fr) minmax(0, 0.86fr);
}

.media-feature-copy h2 {
  margin-top: 10px;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.046em;
  font-weight: 300;
}

.media-feature-copy p:last-child {
  margin-top: 14px;
  font-size: 1.06rem;
  color: var(--muted);
}

.page-hero {
  padding: 104px 0 52px;
}

.page-hero-grid {
  gap: 40px;
}

.page-panel {
  background:
    radial-gradient(circle at top right, rgba(213, 188, 135, 0.13), transparent 34%),
    linear-gradient(180deg, #151311 0%, #1b1815 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-panel h3 {
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
  font-weight: 300;
}

.page-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(250, 247, 241, 0.96) 100%);
}

.page-card-visual {
  overflow: hidden;
}

.card-visual {
  margin: -26px -26px 20px;
  border-bottom: 1px solid rgba(205, 191, 174, 0.9);
  background: #181614;
}

.card-visual img {
  width: 100%;
}

.dark-card {
  background:
    radial-gradient(circle at top right, rgba(213, 188, 135, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.07) 0%, rgba(250, 247, 241, 0.05) 100%);
}

.note-band-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  border-left-color: #ffffff;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 34px 0 28px;
}

.footer-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin: 22px auto 0;
  color: var(--text);
  opacity: 1;
}

.footer-stamp,
.footer-stamp:hover,
.footer-stamp:focus-visible {
  color: var(--text);
  opacity: 1;
  transform: none;
}

.footer-stamp img {
  width: 20px;
  height: auto;
  opacity: 1;
}

.footer-stamp span {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

@media (max-width: 1080px) {
  .visual-grid,
  .media-feature,
  .media-feature-reverse {
    grid-template-columns: 1fr;
  }
}

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

  .page-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .pillar-icon-stage {
    min-height: 220px;
    padding: 20px;
  }

  .pillar-icon-stage svg {
    width: 116px;
    height: 116px;
    margin-bottom: 14px;
  }

  .card-visual {
    margin: -24px -24px 18px;
  }

  .live-link-grid {
    grid-template-columns: 1fr;
  }

  .footer-stamp img {
    width: 18px;
  }
}

/* Revision 6 — Assessment Studio */
.studio-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.studio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    radial-gradient(ellipse at 50% -6%, rgba(213, 188, 135, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(19, 17, 15, 0.98) 0%, rgba(27, 24, 21, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
}

.studio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 24%);
  pointer-events: none;
}

.studio-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  background: linear-gradient(180deg, #13110f 0%, #1b1815 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.studio-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 28px;
}

.studio-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.studio-route {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.studio-card .card-label {
  color: rgba(213, 188, 135, 0.86);
}

.studio-card h3 {
  font-size: clamp(1.58rem, 2.2vw, 1.98rem);
  line-height: 1.05;
  letter-spacing: -0.034em;
  font-weight: 300;
  color: #f7f2ea;
  max-width: 15ch;
}

.studio-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

.studio-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-status-live {
  color: rgba(247, 234, 206, 0.92);
  background: rgba(213, 188, 135, 0.12);
  border: 1px solid rgba(213, 188, 135, 0.28);
}

.studio-status-next {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.studio-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.studio-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
}

.studio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f7f2ea;
  font-size: 0.96rem;
  transition: opacity 140ms ease;
}

.studio-link::after {
  content: "↗";
  font-size: 0.9rem;
}

.studio-link:hover,
.studio-link:focus-visible {
  opacity: 0.74;
}

.studio-link-static {
  color: rgba(255, 255, 255, 0.54);
}

.studio-link-static::after {
  content: "";
}

@media (max-width: 1180px) {
  .studio-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .studio-product-grid {
    grid-template-columns: 1fr;
  }
}


/* Revision 8 — copy pass and footer correction */
.footer-stamp,
.footer-stamp:hover,
.footer-stamp:focus-visible {
  color: var(--text);
  opacity: 1 !important;
  transform: none;
}

.footer-stamp img {
  opacity: 1 !important;
}

.footer-stamp span {
  color: var(--text);
}

.studio-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.studio-route {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.studio-copy {
  color: rgba(255, 255, 255, 0.76);
}

.studio-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.studio-link:hover,
.studio-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.studio-link-static,
.studio-link-static:hover,
.studio-link-static:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  transform: none;
  cursor: default;
}

@media (max-width: 780px) {
  .studio-card-head,
  .studio-card-foot {
    align-items: start;
    justify-content: start;
  }
}


/* Revision 17 */
.dark-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hero-plain .hero-copy h1 {
  max-width: 11ch;
}

.studio-top {
  padding-top: 96px;
  border-top: 0;
}

.studio-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.74fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.studio-top-copy h1 {
  margin-top: 10px;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.052em;
  font-weight: 200;
  color: #ffffff;
}

.studio-top-copy p {
  margin-top: 18px;
  max-width: 700px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.76);
}

.studio-top-panel {
  box-shadow: none;
}

.studio-top-panel .card-label,
.studio-top-panel p,
.studio-top-panel li {
  color: rgba(255,255,255,0.76);
}

.studio-top-panel h3 {
  color: #ffffff;
}

.studio-top-panel ul {
  margin-top: 16px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.studio-top-panel li {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.studio-top-panel li:first-child {
  padding-top: 0;
  border-top: 0;
}

.studio-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.studio-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secondary-tool-grid {
  align-items: stretch;
}

.secondary-tool-stage {
  margin: -26px -26px 20px;
  padding: 24px;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(ellipse at top center, rgba(213, 188, 135, 0.26), transparent 54%),
    linear-gradient(180deg, #13110f 0%, #1b1815 100%);
  border-bottom: 1px solid rgba(205, 191, 174, 0.9);
}

.secondary-tool-stage strong {
  color: #f7f2ea;
  font-size: 1.18rem;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.secondary-tool-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(213, 188, 135, 0.86);
}

.other-tool-card h3 {
  max-width: 16ch;
}

.text-link-light {
  color: rgba(255,255,255,0.82);
}

.text-link-light:hover,
.text-link-light:focus-visible {
  color: #ffffff;
}

.media-feature-figure-dark {
  background:
    radial-gradient(ellipse at top center, rgba(213, 188, 135, 0.18), transparent 48%),
    linear-gradient(180deg, #13110f 0%, #1b1815 100%);
  border-color: rgba(255,255,255,0.12);
}

.media-feature-figure-dark figcaption {
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.media-feature-copy-dark h2 {
  color: #ffffff;
}

.media-feature-copy-dark p:last-child {
  color: rgba(255,255,255,0.76);
}

@media (max-width: 1080px) {
  .studio-top-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 760px) {
  .home-hero-plain .hero-copy h1 {
    max-width: 10ch;
  }

  .secondary-tool-stage {
    margin: -24px -24px 18px;
    min-height: 132px;
    padding: 20px;
  }
}


/* Revision 18 */
.site-footer-minimal {
  padding: 26px 0 24px;
}

.footer-inner-minimal {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.other-tool-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-top-copy-single {
  max-width: 760px;
  margin-bottom: 34px;
}

.advisory-bridge {
  border-top: 1px solid var(--border);
}

.tool-demo-section {
  padding-top: 26px;
  border-top: 0;
}

.tool-demo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(ellipse at top center, rgba(213, 188, 135, 0.18), transparent 48%),
    linear-gradient(180deg, #13110f 0%, #1b1815 100%);
  box-shadow: var(--shadow);
}

.tool-demo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.94;
}

.tool-demo-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 430px;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(18, 17, 15, 0.76);
  backdrop-filter: blur(8px);
}

.tool-demo-chip {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-demo-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .other-tool-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .tool-demo-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 15px;
    max-width: none;
  }
}


/* Revision 19 */
.home-hero-plain .hero-copy h1 {
  max-width: 8.5ch;
}

.tool-video-hero-shell {
  padding: 92px 0 44px;
}

.tool-video-stage {
  position: relative;
  min-height: clamp(420px, 62vh, 660px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.18) 0%, rgba(16, 14, 12, 0.18) 100%),
    var(--tool-poster) center / cover no-repeat,
    linear-gradient(180deg, #13110f 0%, #1b1815 100%);
  box-shadow: var(--shadow);
}

.tool-video-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top center, rgba(213, 188, 135, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.06) 0%, rgba(10, 10, 10, 0.22) 36%, rgba(10, 10, 10, 0.76) 100%);
}

.tool-video-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.tool-video-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: clamp(28px, 4vw, 42px);
}

.tool-video-content .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.tool-video-content h1 {
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 200;
  max-width: 10ch;
}

.tool-video-content p {
  margin-top: 18px;
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.tool-video-content .hero-actions {
  margin-top: 26px;
}

.tool-video-content .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.tool-video-content .button-secondary:hover,
.tool-video-content .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.tool-page-intro {
  padding-top: 34px;
}

.tool-page-intro .page-grid {
  margin-top: 0;
}

.dual-note {
  display: grid;
  gap: 12px;
}

@media (max-width: 760px) {
  .tool-video-hero-shell {
    padding-top: 74px;
    padding-bottom: 28px;
  }

  .tool-video-stage {
    min-height: 420px;
  }

  .tool-video-content {
    padding: 20px;
  }

  .tool-video-content h1 {
    max-width: 12ch;
  }
}


/* Revision 20 */
.other-tool-summary-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.other-education-grid {
  align-items: stretch;
}

.tool-hero-bleed {
  padding-top: 0;
}

.tool-hero-media {
  position: relative;
  min-height: clamp(460px, 66vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    var(--tool-poster) center / cover no-repeat,
    linear-gradient(180deg, #13110f 0%, #1b1815 100%);
}

.tool-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top center, rgba(213, 188, 135, 0.15), transparent 38%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.82) 0%, rgba(7, 6, 5, 0.74) 26%, rgba(7, 6, 5, 0.42) 52%, rgba(7, 6, 5, 0.58) 100%),
    linear-gradient(180deg, rgba(9, 8, 7, 0.06) 0%, rgba(9, 8, 7, 0.12) 22%, rgba(9, 8, 7, 0.48) 62%, rgba(9, 8, 7, 0.84) 100%);
}

.tool-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: clamp(28px, 6vw, 96px);
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(34px, 6vw, 72px);
}

.tool-hero-copy {
  width: min(100%, 620px);
  padding-inline: 0;
}

.tool-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.tool-hero-copy h1 {
  margin-top: 10px;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 200;
  max-width: 10ch;
}

.tool-hero-copy p {
  margin-top: 16px;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.tool-hero-copy .hero-actions {
  margin-top: 24px;
}

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

@media (max-width: 760px) {
  .tool-hero-bleed {
    padding-top: 76px;
  }

  .tool-hero-media {
    min-height: 460px;
  }

  .tool-hero-shell {
    padding-inline: 22px;
    padding-bottom: 28px;
  }

  .tool-hero-copy {
    padding-inline: 0;
  }

  .tool-hero-copy h1 {
    max-width: 10ch;
  }

  .tool-hero-copy p {
    font-size: 1.04rem;
  }
}


/* Revision 24 — header lock, footer stamp only, studio CTA consistency */
.footer-stamp {
  gap: 0;
}

.footer-stamp img {
  width: 22px;
}

.footer-stamp span {
  display: none;
}

.studio-card-foot {
  justify-content: flex-end;
}

.studio-link-soft {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.studio-link-soft:hover,
.studio-link-soft:focus-visible {
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border-strong);
}

.compact-other-tool-body .studio-link {
  margin-top: 12px;
}

@media (max-width: 720px) {
  .footer-stamp img {
    width: 20px;
  }
}


/* Revision 27 — access flows and product-page structure */
.page-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-page-lead {
  max-width: 760px;
  margin-bottom: 32px;
}

.tool-page-lead p + p {
  margin-top: 12px;
}

.access-hero {
  max-width: 760px;
}

.access-hero h1 {
  margin-top: 10px;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 200;
}

.access-hero p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 38ch;
}

.access-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.access-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.access-grid,
.plan-grid {
  margin-top: 34px;
}

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

.access-card,
.plan-card,
.checkout-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-number,
.access-kicker {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-price {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 200;
}

.plan-volume,
.access-fit,
.checkout-meta,
.checkout-help {
  color: var(--muted);
}

.plan-card .button,
.access-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.tool-access-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tool-access-link::after,
.text-link-arrow::after {
  content: '→';
  font-size: 0.94em;
}

.checkout-wrap {
  max-width: 760px;
}

.checkout-summary {
  margin-top: 34px;
}

.checkout-card {
  margin-top: 0;
}

.checkout-plan {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 200;
}

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

@media (max-width: 980px) {
  .page-grid-2,
  .plan-grid {
    grid-template-columns: 1fr;
  }
}


.checkout-form-grid {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field span {
  font-size: 0.94rem;
  color: var(--muted-strong);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.82);
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid rgba(174, 129, 35, 0.24);
  outline-offset: 0;
  border-color: rgba(174, 129, 35, 0.55);
}


/* Footer, access, and legal pages — cleaned */
.site-footer-minimal {
  padding: 52px 0 44px;
}

.site-footer-minimal .footer-inner-minimal {
  display: none;
}

.site-footer-minimal .footer-stamp,
.site-footer-minimal .footer-stamp:hover,
.site-footer-minimal .footer-stamp:focus-visible {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 0;
  color: var(--text);
  opacity: 1;
  transform: none;
}

.site-footer-minimal .footer-stamp img {
  width: 20px;
  height: auto;
  display: block;
  opacity: 1;
}

.site-footer-minimal .footer-stamp span {
  display: none;
}

.note-band-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.note-band-copy {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.note-band-copy strong {
  display: block;
}

.note-band-copy span {
  color: var(--muted-strong);
}

.note-band-link {
  margin-top: 0;
  flex-shrink: 0;
}

.access-hero {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.access-hero p:last-child {
  max-width: 64ch;
}

.access-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.access-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.05);
}

.plan-card {
  gap: 16px;
}

.plan-card h3 {
  font-size: clamp(2.05rem, 3vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 200;
}

.plan-price {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.plan-fit {
  color: var(--text);
}

.plan-support {
  color: var(--muted);
}

.plan-card .button {
  margin-top: auto;
}

.plan-card .button-secondary {
  border-color: var(--border-strong);
}

.access-summary-note {
  margin-top: 30px;
}

.setup-grid {
  margin-top: 34px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.setup-card {
  display: grid;
  gap: 14px;
}

.setup-card .checkout-actions {
  margin-top: 8px;
}

.setup-meta {
  color: var(--muted);
}

.legal-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-links-row a {
  color: var(--muted);
}

.legal-links-row a:hover,
.legal-links-row a:focus-visible {
  color: var(--text);
}

.legal-links-checkout {
  margin-top: 24px;
}

.legal-hero {
  max-width: 760px;
}

.legal-grid {
  display: grid;
  gap: 18px;
}

.legal-card {
  display: grid;
  gap: 12px;
}

.legal-note {
  margin-top: 6px;
}


@media (max-width: 980px) {
  .note-band-action {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .note-band-link {
    justify-self: center;
    align-self: center;
    margin-left: 0;
    text-align: center;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tool-hero-video {
    display: none;
  }
}

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

@media (max-width: 760px) {
  .note-band-action {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .note-band-link {
    justify-self: center;
    align-self: center;
    margin-left: 0;
    text-align: center;
    white-space: nowrap;
  }

  .site-footer-minimal {
    padding: 42px 0 34px;
  }

  .site-footer-minimal .footer-stamp img {
    width: 18px;
  }

  .legal-links-row {
    flex-wrap: wrap;
    gap: 8px;
  }
}


/* Revision 40 — CTA refinement and footer stamp sizing */
.button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: none;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: none;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #171614;
  border-color: #171614;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset;
}

.button-secondary {
  background: rgba(0, 0, 0, 0.018);
  color: var(--text);
  border-color: rgba(205, 191, 174, 0.98);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(0, 0, 0, 0.035);
  border-color: var(--border-strong);
}

.button-header,
.button-quiet {
  min-height: 40px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.012);
  color: var(--muted-strong);
  border-color: rgba(205, 191, 174, 0.98);
}

.button-header:hover,
.button-header:focus-visible,
.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(0, 0, 0, 0.028);
  color: var(--text);
  border-color: var(--border-strong);
}

.header-inner > .button {
  min-width: 118px;
}

.hero-actions .button,
.tool-video-actions .button,
.checkout-actions .button,
.access-card .button,
.plan-card .button {
  min-height: 43px;
}

.site-footer-minimal {
  padding: 56px 0 30px;
}

.site-footer-minimal .footer-stamp,
.site-footer-minimal .footer-stamp:hover,
.site-footer-minimal .footer-stamp:focus-visible {
  margin: 0 auto;
}

.site-footer-minimal .footer-stamp img {
  width: 25px;
}

@media (max-width: 760px) {
  .button {
    min-height: 41px;
    padding: 0 16px;
  }

  .site-footer-minimal {
    padding: 52px 0 28px;
  }

  .site-footer-minimal .footer-stamp img {
    width: 24px;
  }
}


/* Final CTA and footer polish */
.button {
  min-height: 42px;
  padding: 0 19px;
  font-size: 0.97rem;
  font-weight: 430;
  letter-spacing: 0.004em;
  transform: none;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: none;
}

.button-primary {
  background: #1f1d1b;
  border-color: #1f1d1b;
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #161513;
  border-color: #161513;
}

.button-secondary {
  background: rgba(29, 26, 23, 0.018);
  border-color: rgba(29, 26, 23, 0.14);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(29, 26, 23, 0.038);
  border-color: rgba(29, 26, 23, 0.22);
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary-light:hover,
.button-secondary-light:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.header-cta,
.button-header-quiet {
  min-height: 40px;
  padding: 0 15px;
  background: transparent;
  border-color: rgba(29, 26, 23, 0.12);
  color: var(--muted-strong);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-header-quiet:hover,
.button-header-quiet:focus-visible {
  background: rgba(29, 26, 23, 0.028);
  border-color: rgba(29, 26, 23, 0.18);
  color: var(--text);
}

.site-footer-minimal {
  padding: 60px 0 30px;
}

.site-footer-minimal .footer-stamp img {
  width: 18px;
}

@media (max-width: 760px) {
  .button {
    min-height: 40px;
    padding: 0 17px;
  }

  .header-cta,
  .button-header-quiet {
    min-height: 38px;
    padding: 0 14px;
  }

  .site-footer-minimal {
    padding: 46px 0 26px;
  }

  .site-footer-minimal .footer-stamp img {
    width: 16px;
  }
}

.access-definition { max-width: 56ch; color: var(--muted); }


/* Revision 42 — subtle contact path */
.contact-page-grid {
  margin-top: 34px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card .checkout-actions {
  margin-top: 8px;
}

.contact-quiet {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(205, 191, 174, 0.82);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.contact-quiet-copy {
  display: grid;
  gap: 6px;
  max-width: 720px;
}

.contact-quiet-copy strong {
  font-weight: 500;
}

.contact-quiet-copy span,
.section-whisper {
  color: var(--muted);
}

.section-whisper {
  margin-top: 14px;
  font-size: 0.98rem;
}

.contact-small-note {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(205, 191, 174, 0.7);
  padding-top: 16px;
}

.contact-small-note .text-link-arrow {
  flex-shrink: 0;
}

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

@media (max-width: 760px) {
  .contact-quiet,
  .contact-small-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* Revision 43 — naming, header refinement, footer sizing, legal links, and SEO support */
.wordmark {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wordmark:hover,
.wordmark:focus-visible {
  color: var(--text);
}

.site-footer-minimal {
  padding: 58px 0 28px;
}

.site-footer-minimal .footer-stamp img {
  width: 17px;
}

.plan-grid {
  align-items: stretch;
}

.plan-card {
  height: 100%;
}

.plan-card .plan-support {
  margin-bottom: 0;
}

.legal-links,
.legal-links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-links a,
.legal-links-row a {
  color: var(--muted);
}

.legal-links a:hover,
.legal-links a:focus-visible,
.legal-links-row a:hover,
.legal-links-row a:focus-visible {
  color: var(--text);
}

@media (max-width: 760px) {
  .wordmark {
    font-size: 0.92rem;
    letter-spacing: 0.11em;
  }

  .site-footer-minimal {
    padding: 44px 0 24px;
  }

  .site-footer-minimal .footer-stamp img {
    width: 15px;
  }
}


/* Revision 43b — noindex cleanup and plan-card consistency */
.plan-grid {
  grid-auto-rows: 1fr;
}


/* Revision 43c — finishing overrides */
.plan-fit {
  min-height: 3.2em;
}

.plan-support {
  min-height: 5.4em;
}

.legal-links-left {
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .plan-fit,
  .plan-support {
    min-height: 0;
  }
}


/* Revision 44 — wordmark and contact cleanup */
.wordmark {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  text-transform: none;
}

@media (max-width: 760px) {
  .wordmark {
    font-size: 0.96rem;
    letter-spacing: 0.06em;
  }
}


/* Revision 45 — contact layout, legal spacing, favicon readiness, and micro spacing */
.contact-page-section {
  padding-top: 86px;
}

.contact-page-wrap {
  display: grid;
  gap: 28px;
}

.contact-page-intro {
  max-width: 900px;
}

.contact-page-intro h1 {
  max-width: 12ch;
}

.contact-page-intro p:last-child {
  max-width: 720px;
}

.contact-page-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  gap: 18px;
  align-items: start;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card-form {
  padding: 28px 28px 26px;
}

.contact-card-side {
  padding: 26px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.contact-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

.contact-side-list {
  margin-top: 6px;
  display: grid;
  gap: 12px;
}

.contact-side-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(205, 191, 174, 0.68);
  color: var(--muted-strong);
}

.contact-side-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-mini-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(205, 191, 174, 0.68);
  color: var(--muted);
}

.legal-links-row,
.legal-links {
  gap: 12px;
}

.legal-links-row span,
.legal-links span {
  color: rgba(133, 118, 102, 0.64);
}

.button {
  min-height: 41px;
}

.wordmark {
  font-size: 1.03rem;
  letter-spacing: 0.065em;
}

.site-footer-minimal .footer-stamp img {
  width: 17px;
}

@media (max-width: 980px) {
  .contact-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-page-section {
    padding-top: 74px;
  }

  .contact-page-wrap {
    gap: 22px;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-card-form,
  .contact-card-side {
    padding: 20px;
  }

  .wordmark {
    font-size: 0.98rem;
    letter-spacing: 0.055em;
  }
}


/* Revision 45 — contact spacing, favicon-ready polish, and access routing */
.contact-shell { display: grid; gap: 18px; }
.contact-shell .section-intro { max-width: 58ch; margin-bottom: 2px; }
.contact-grid { display: grid; gap: 18px; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); align-items: start; }
.contact-field-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field-full { grid-column: 1 / -1; }
.contact-actions { margin-top: 6px; display: flex; justify-content: flex-start; }
.contact-card > .card-label + h3 { margin-top: 6px; }
.contact-card > h3 { max-width: 16ch; }
.contact-mini-note { margin-top: auto; color: var(--muted); }
.site-header { z-index: 20; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .contact-field-grid { grid-template-columns: 1fr; } .contact-shell { gap: 14px; } }


/* Revision 49 — mobile header and hero spacing cleanup */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 94px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .header-inner {
    min-height: 0;
    padding: 12px 0 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand action"
      "nav nav";
    gap: 11px 14px;
    align-items: center;
  }

  .header-inner .wordmark {
    grid-area: brand;
    align-self: center;
    font-size: 1.02rem;
    line-height: 1;
    letter-spacing: 0.055em;
  }

  .header-inner > .button {
    grid-area: action;
    justify-self: end;
    min-width: 0;
    min-height: 36px;
    padding: 0 16px;
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .site-nav {
    grid-area: nav;
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding: 9px 16px 0;
    border-top: 1px solid rgba(205, 191, 174, 0.78);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
    align-items: center;
    gap: 0;
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .site-nav a {
    padding: 0;
    text-align: center;
    color: var(--muted-strong);
  }

  .site-nav a:first-child {
    text-align: left;
  }

  .site-nav a:last-child {
    text-align: right;
  }

  .hero,
  .section,
  .closing,
  .page-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-hero-plain {
    padding-top: 76px;
  }

  .flow-heading {
    white-space: nowrap;
    font-size: clamp(1.72rem, 7.35vw, 2.2rem) !important;
    letter-spacing: -0.052em;
    line-height: 0.98;
  }

  .tool-hero-bleed {
    padding-top: 0 !important;
  }

  .tool-hero-media {
    min-height: min(560px, 74vh);
  }

  .tool-hero-shell {
    padding-top: clamp(38px, 9vh, 76px);
    padding-bottom: 30px;
  }
}

@media (max-width: 390px) {
  .flow-heading {
    font-size: clamp(1.55rem, 7vw, 1.8rem) !important;
    letter-spacing: -0.055em;
  }

  .site-nav {
    font-size: 0.95rem;
  }

  .header-inner .wordmark {
    font-size: 0.98rem;
  }
}

/* Revision 50 — mobile header polish and flow-heading alignment */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 106px;
  }

  .site-header {
    background: rgba(241, 236, 228, 0.96);
    border-bottom: 1px solid rgba(207, 194, 176, 0.7);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  }

  .header-inner {
    min-height: 0;
    padding: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand action"
      "nav nav";
    gap: 0 14px;
    align-items: center;
  }

  .header-inner .wordmark {
    grid-area: brand;
    padding: 17px 0 16px;
    font-size: 1.04rem;
    line-height: 1;
    letter-spacing: 0.052em;
    align-self: center;
  }

  .header-inner > .button {
    grid-area: action;
    min-width: 0;
    min-height: 38px;
    padding: 0 17px;
    margin: 11px 0;
    font-size: 0.95rem;
    border-color: rgba(205, 191, 174, 0.84);
    background: rgba(244, 238, 229, 0.78);
  }

  .site-nav {
    grid-area: nav;
    width: calc(100% + 32px);
    margin-inline: -16px;
    margin-top: 0;
    padding: 13px 16px 13px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    justify-self: stretch;
    font-size: 1.01rem;
    line-height: 1.1;
    background:
      linear-gradient(180deg, rgba(231, 224, 212, 0.86) 0%, rgba(225, 217, 204, 0.82) 100%);
    border-top: 1px solid rgba(205, 191, 174, 0.86);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      inset 0 -1px 0 rgba(205, 191, 174, 0.48);
  }

  .site-nav a {
    padding: 0;
    text-align: center;
    color: var(--muted-strong);
  }

  .site-nav a:first-child {
    text-align: left;
    padding-left: 0;
  }

  .site-nav a:last-child {
    text-align: right;
    padding-right: 0;
  }

  .section-tint .compact-intro {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .flow-heading {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(1.68rem, 7.15vw, 2.1rem) !important;
    letter-spacing: -0.055em;
  }
}

@media (max-width: 390px) {
  .flow-heading {
    font-size: clamp(1.48rem, 6.95vw, 1.72rem) !important;
  }

  .header-inner .wordmark {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .header-inner > .button {
    min-height: 36px;
    padding-inline: 15px;
    font-size: 0.93rem;
  }

  .site-nav {
    font-size: 0.97rem;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}


/* Revision 51 — restore homepage route section */
.home-route-section {
  padding-top: 78px;
  padding-bottom: 84px;
}

.home-route-intro {
  max-width: 820px;
}

.home-route-grid {
  margin-top: 34px;
}

.home-route-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.home-route-card .text-link-arrow {
  margin-top: auto;
  padding-top: 26px;
}

.home-route-card-primary {
  background:
    radial-gradient(circle at top right, rgba(213, 188, 135, 0.18), transparent 45%),
    rgba(250, 247, 241, 0.1);
  border-color: rgba(213, 188, 135, 0.24);
}

@media (max-width: 760px) {
  .home-route-section {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .home-route-intro h2 {
    font-size: clamp(2rem, 8.4vw, 2.72rem);
    line-height: 0.98;
  }

  .home-route-grid {
    gap: 14px;
    margin-top: 26px;
  }

  .home-route-card {
    min-height: auto;
    padding: 24px 22px 23px;
    border-radius: 24px;
  }

  .home-route-card h3 {
    font-size: clamp(1.5rem, 6.2vw, 2rem);
  }

  .home-route-card .text-link-arrow {
    padding-top: 18px;
  }
}

/* Revision 52 — final strategy alignment and secondary tool tiles */
.other-tool-grid-two-short {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.compact-other-tool-card {
  padding: 0;
  overflow: hidden;
  min-height: 0;
}

.compact-other-tool-media {
  position: relative;
  display: block;
  min-height: 208px;
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.08) 0%, rgba(16, 14, 12, 0.12) 100%),
    var(--tool-preview) center / cover no-repeat,
    linear-gradient(180deg, #13110f 0%, #1b1815 100%);
  border-bottom: 1px solid rgba(205, 191, 174, 0.9);
  text-decoration: none;
}

.compact-other-tool-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top center, rgba(213, 188, 135, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.08) 0%, rgba(10, 9, 8, 0.08) 38%, rgba(10, 9, 8, 0.72) 100%);
}

.compact-other-tool-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.compact-other-tool-overlay strong {
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 11ch;
  text-wrap: balance;
}

.compact-other-tool-body {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 172px;
}

.compact-other-tool-body .card-label {
  margin-top: 0;
}

.compact-other-tool-body p {
  max-width: 34ch;
}

.compact-other-tool-body .text-link-arrow {
  margin-top: auto;
  align-self: flex-end;
  text-align: right;
}

.home-route-section .home-route-grid {
  align-items: stretch;
}

.home-route-section .home-route-card h3 {
  letter-spacing: -0.035em;
}

@media (max-width: 980px) {
  .other-tool-grid-two-short {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .compact-other-tool-media {
    min-height: 184px;
  }

  .compact-other-tool-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .compact-other-tool-body {
    padding: 16px 18px 18px;
  }
}


/* Revision 53 — CTA alignment and in-development tool states */
.home-route-card .text-link-arrow {
  align-self: flex-end;
  text-align: right;
}

.studio-card-foot {
  justify-content: flex-end;
}

@media (max-width: 780px) {
  .studio-card-foot {
    align-items: center;
    justify-content: flex-end;
  }
}

.studio-link-disabled,
.studio-link-disabled:hover,
.studio-link-disabled:focus-visible {
  color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.11);
  cursor: default;
  transform: none;
}

.other-tool-grid-two-short {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-other-tool-media-static {
  cursor: default;
}

.compact-other-tool-card.is-in-development .compact-other-tool-media::before {
  background:
    radial-gradient(ellipse at top center, rgba(213, 188, 135, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.14) 0%, rgba(10, 9, 8, 0.18) 38%, rgba(10, 9, 8, 0.78) 100%);
}

.text-link-muted {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  margin-top: auto;
  min-height: 34px;
  color: rgba(31, 29, 26, 0.48);
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media (max-width: 1120px) {
  .other-tool-grid-two-short {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .other-tool-grid-two-short {
    grid-template-columns: 1fr;
  }

  .home-route-card .text-link-arrow {
    align-self: flex-end;
  }
}

/* Revision 55 — final form polish and Studio title tuning */
.select-field {
  position: relative;
  display: block;
}

.select-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,244,237,0.86));
  border-color: rgba(205, 191, 174, 0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
  cursor: pointer;
}

.select-field::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 9px;
  height: 9px;
  border-right: 1.6px solid rgba(31, 29, 26, 0.72);
  border-bottom: 1.6px solid rgba(31, 29, 26, 0.72);
  transform: translateY(-64%) rotate(45deg);
  pointer-events: none;
}

.select-field:focus-within::after {
  border-color: rgba(31, 29, 26, 0.94);
}

.form-field select::-ms-expand {
  display: none;
}

.contact-card-form {
  padding: 30px 30px 28px;
}

.contact-field-grid {
  gap: 15px 17px;
}

.studio-top-copy-single {
  max-width: 1080px;
}

.studio-top-copy-single h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(3.35rem, 5.35vw, 4.72rem);
  letter-spacing: -0.055em;
}

.studio-top-copy-single > p {
  max-width: 720px;
}

@media (max-width: 1040px) {
  .studio-top-copy-single h1 {
    font-size: clamp(3rem, 6.1vw, 4.15rem);
  }
}

@media (max-width: 880px) {
  .studio-top-copy-single h1 {
    white-space: normal;
    max-width: 11ch;
    font-size: clamp(3rem, 10vw, 4rem);
  }
}

@media (max-width: 760px) {
  .contact-card-form {
    padding: 22px;
  }

  .select-field select {
    padding-right: 44px;
  }
}

.select-field {
  font-size: 1rem;
  color: var(--text);
}

/* Revision 56 — Studio as display case: no middle diagnostic block */
.other-tools-showcase-section {
  background:
    radial-gradient(circle at top left, rgba(213, 188, 135, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.94), rgba(236, 230, 220, 0.86));
}

.other-tools-showcase-intro {
  max-width: 720px;
}

.other-tools-showcase-intro h2 {
  max-width: 760px;
}

.other-tool-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  align-items: stretch;
}

.other-showcase-card {
  padding: 0;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.other-showcase-media {
  position: relative;
  display: block;
  min-height: 218px;
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.08) 0%, rgba(16, 14, 12, 0.12) 100%),
    var(--tool-preview) center / cover no-repeat,
    linear-gradient(180deg, #13110f 0%, #1b1815 100%);
  border-bottom: 1px solid rgba(205, 191, 174, 0.9);
  text-decoration: none;
}

.other-showcase-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top center, rgba(213, 188, 135, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.06) 0%, rgba(10, 9, 8, 0.10) 38%, rgba(10, 9, 8, 0.76) 100%);
}

.other-showcase-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.other-showcase-overlay strong {
  color: #fff;
  font-size: clamp(1.35rem, 1.72vw, 1.78rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 12ch;
  text-wrap: balance;
}

.other-showcase-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  flex: 1;
}

.other-showcase-body .card-label {
  margin-top: 0;
}

.other-showcase-body h3 {
  max-width: 18ch;
}

.other-showcase-body p {
  max-width: 36ch;
}

.other-showcase-body .text-link-arrow {
  margin-top: auto;
  align-self: flex-end;
  text-align: right;
}

@media (max-width: 1120px) {
  .other-tool-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .other-tools-showcase-section {
    padding-top: 62px;
  }

  .other-tool-showcase-grid {
    grid-template-columns: 1fr;
  }

  .other-showcase-media {
    min-height: 188px;
  }

  .other-showcase-body {
    min-height: auto;
    padding: 17px 18px 19px;
  }
}


/* Revision 57 — Studio display-case polish, Advisory exits, Contact typography */
.other-tools-display-intro {
  max-width: 1080px;
}

.other-tools-display-intro h2 {
  max-width: 1080px;
  font-size: clamp(2.7rem, 5.25vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: -0.056em;
  font-weight: 250;
}

.other-tools-display-intro > p:not(.section-label) {
  max-width: 650px;
  margin-top: 18px;
}

.other-showcase-body {
  min-height: 220px;
}

.other-showcase-body .showcase-link,
.other-showcase-body .text-link-arrow {
  align-self: flex-end;
  margin-top: auto;
  text-align: right;
}

.contact-page-intro {
  max-width: 960px;
}

.contact-page-intro h1 {
  max-width: 18ch;
  font-size: clamp(3.2rem, 6.6vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.056em;
  font-weight: 200;
}

.contact-page-intro p:last-child {
  margin-top: 18px;
  max-width: 720px;
}

.contact-card-side h3 {
  font-weight: 300;
  letter-spacing: -0.028em;
}

.advisory-exit-row {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(205, 191, 174, 0.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.advisory-exit-row p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.advisory-exit-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .other-tools-display-intro h2 {
    font-size: clamp(2.65rem, 8.2vw, 4rem);
  }
}

@media (max-width: 760px) {
  .other-tools-display-intro h2 {
    max-width: 11ch;
  }

  .other-tools-display-intro > p:not(.section-label) {
    max-width: 34ch;
  }

  .other-showcase-body {
    min-height: auto;
  }

  .contact-page-intro h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .advisory-exit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .advisory-exit-links {
    width: 100%;
    justify-content: flex-end;
  }
}


/* Revision 57b — Contact title de-narrowing */
.contact-page-intro h1 {
  max-width: none;
}

@media (max-width: 760px) {
  .contact-page-intro h1 {
    max-width: none;
  }
}






/* Revision 66 — rubrics public header action hard-right */
.site-header .rubrics-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}
.site-header .rubrics-header-inner .wordmark {
  flex: 0 0 auto !important;
  margin-right: auto !important;
}
.site-header .rubrics-header-inner .header-cta,
.site-header .rubrics-header-inner .rubrics-header-cta {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  grid-column: auto !important;
  grid-area: auto !important;
  justify-self: flex-end !important;
  align-self: center !important;
}
@media (max-width: 760px) {
  .site-header .rubrics-header-inner {
    display: flex !important;
    min-height: 0 !important;
    padding: 12px 0 10px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
  }
  .site-header .rubrics-header-inner .header-cta,
  .site-header .rubrics-header-inner .rubrics-header-cta {
    margin-left: auto !important;
    min-width: 0 !important;
    min-height: 36px !important;
    padding: 0 15px !important;
    font-size: .93rem !important;
  }
}


/* Revision 72 — tactile interaction pass */
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .tool-access-link:hover {
    transform: translateY(-1px);
  }
}
.button:active,
.tool-access-link:active {
  transform: translateY(1px) scale(0.988);
  transition-duration: 70ms;
}
.wordmark:active,
.footer-stamp:active,
.text-link:active,
.text-link-arrow:active {
  opacity: .62;
  transition-duration: 70ms;
}
.button:focus-visible,
.tool-access-link:focus-visible,
.wordmark:focus-visible,
.footer-stamp:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}


/* Revision 73 — visible privacy footer link removed; tactile public actions handled inline on release pages. */


/* Revision 75 — rubrics v26 hero assembly and admission response are self-contained in rubrics.html; restricted pages are self-contained templates. */

/* v58 final safety */
.restricted-stamp,.restricted-stamp:hover,.restricted-stamp:focus-visible,.restricted-stamp:active{opacity:1!important;filter:none!important;transform:none!important;transition:none!important}.restricted-stamp img{opacity:1!important;filter:none!important;transform:none!important}.site-header .rubrics-header-cta::before,.site-header .rubrics-header-cta::after{display:none!important;content:none!important;animation:none!important}@media(max-width:760px){.note-band-action .note-band-link{justify-self:center!important;align-self:center!important;text-align:center!important;margin-left:0!important}}
