:root {
  --bg: #f5f4f0;
  --bg-lift: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #151719;
  --muted: #656b70;
  --soft: #e7e2da;
  --line: rgba(21, 23, 25, 0.1);
  --copper: #9a7357;
  --copper-soft: #eadfd5;
  --slate: #2d3638;
  --shadow: 0 24px 70px rgba(21, 23, 25, 0.1);
  --shadow-soft: 0 12px 34px rgba(21, 23, 25, 0.075);
  --radius: 24px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.95), transparent 31rem),
    radial-gradient(circle at 82% 18%, rgba(154, 115, 87, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--bg-lift), var(--bg));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.1rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.08rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 13px max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 250, 247, 0.78);
  border-bottom: 1px solid rgba(21, 23, 25, 0.08);
  backdrop-filter: blur(22px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 780;
}

.logo-stamp {
  min-height: 42px;
}

.logo-stamp::before {
  content: "M";
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 13px;
  font-size: 1rem;
  font-weight: 800;
}

.logo-stamp span {
  display: inline;
  font-size: 1rem;
  line-height: 1;
}

.logo-stamp span:nth-child(2) {
  color: var(--copper);
}

.logo-stamp small {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 9px 13px;
  color: #4f5558;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(21, 23, 25, 0.07);
}

.nav-disabled {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 13px;
  color: rgba(79, 85, 88, 0.48);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: default;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 720;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(21, 23, 25, 0.18);
}

.button.primary:hover {
  color: #fff;
  background: #000;
}

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

.launch-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(62px, 9vw, 122px) 22px;
}

.launch-hero::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 14%;
  width: min(42vw, 430px);
  aspect-ratio: 1;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(0deg, rgba(21, 23, 25, 0.045), rgba(21, 23, 25, 0.045) 1px, transparent 1px, transparent 14px);
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
  pointer-events: none;
}

.launch-hero::after {
  content: "MONDAY\A TO\A SOMEDAY";
  white-space: pre;
  position: absolute;
  right: max(30px, 5vw);
  bottom: 9%;
  color: rgba(21, 23, 25, 0.045);
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 820;
  line-height: 0.82;
  text-align: center;
  pointer-events: none;
}

.launch-copy {
  position: relative;
  z-index: 1;
}

.launch-copy {
  display: grid;
  gap: 22px;
}

.launch-copy h1 {
  max-width: 780px;
}

.launch-copy p:not(.eyebrow) {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.75;
}

.launch-copy .button {
  justify-self: start;
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(21, 23, 25, 0.13);
}

.button.secondary:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.focus-section {
  display: grid;
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px clamp(72px, 9vw, 118px);
}

.focus-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 24px 48px;
  align-items: end;
}

.focus-heading .eyebrow {
  grid-column: 1 / -1;
}

.focus-heading h2 {
  max-width: 620px;
}

.focus-heading p:not(.eyebrow) {
  max-width: 610px;
  font-size: 1.08rem;
}

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

.focus-grid-single {
  grid-template-columns: minmax(0, 0.72fr);
}

.focus-card {
  position: relative;
  display: grid;
  min-height: 280px;
  gap: 18px;
  align-content: end;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(21, 23, 25, 0.09);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.focus-card::before {
  content: "";
  position: absolute;
  right: -68px;
  top: -72px;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(0deg, rgba(21, 23, 25, 0.045), rgba(21, 23, 25, 0.045) 1px, transparent 1px, transparent 14px);
  transform: rotate(-9deg);
}

.focus-card:nth-child(2)::before {
  background:
    radial-gradient(circle at 38% 38%, rgba(154, 115, 87, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(90deg, rgba(21, 23, 25, 0.04), rgba(21, 23, 25, 0.04) 1px, transparent 1px, transparent 12px);
}

.focus-number {
  position: relative;
  z-index: 1;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.focus-card h3,
.focus-card p {
  position: relative;
  z-index: 1;
}

.focus-card h3 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.split-entry-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.95), transparent 30rem),
    radial-gradient(circle at 86% 20%, rgba(154, 115, 87, 0.14), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, #f1eee8 100%);
}

.split-entry {
  display: grid;
  gap: clamp(34px, 5vw, 54px);
  max-width: var(--max);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) 22px clamp(68px, 9vw, 104px);
  align-content: center;
}

.split-entry-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.split-entry-head h1 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  letter-spacing: 0;
}

.split-entry-head p:not(.eyebrow) {
  max-width: 720px;
  color: #4f5558;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.entry-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.entry-choice {
  position: relative;
  display: grid;
  min-height: 500px;
  gap: 22px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  align-content: end;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 23, 25, 0.09);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.entry-choice:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 23, 25, 0.16);
  box-shadow: 0 22px 58px rgba(21, 23, 25, 0.13);
}

.entry-choice-disabled,
.entry-choice-disabled:hover {
  cursor: default;
  transform: none;
  border-color: rgba(21, 23, 25, 0.09);
  box-shadow: var(--shadow-soft);
}

.entry-choice-media,
.entry-choice-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.entry-choice-media::after,
.entry-choice-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.02), rgba(251, 250, 247, 0.2) 36%, rgba(251, 250, 247, 0.96) 82%);
}

.entry-choice-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.entry-choice-visual {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(0deg, rgba(21, 23, 25, 0.045), rgba(21, 23, 25, 0.045) 1px, transparent 1px, transparent 18px),
    repeating-linear-gradient(90deg, rgba(154, 115, 87, 0.09), rgba(154, 115, 87, 0.09) 1px, transparent 1px, transparent 18px);
}

.entry-choice > .focus-number,
.entry-choice-copy,
.entry-choice-link,
.entry-choice-status {
  position: relative;
  z-index: 1;
}

.entry-choice > .focus-number {
  align-self: start;
}

.entry-choice-copy {
  display: grid;
  gap: 12px;
}

.entry-choice-copy strong {
  max-width: 430px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.entry-choice-copy span:last-child {
  max-width: 460px;
  color: #4f5558;
  font-size: 1rem;
  line-height: 1.65;
}

.entry-choice-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.entry-choice-link::after {
  content: "->";
  margin-left: 10px;
}

.entry-choice:hover .entry-choice-link {
  background: #000;
}

.entry-choice-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  color: #fff;
  background: rgba(21, 23, 25, 0.82);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-main {
  display: grid;
  gap: clamp(34px, 6vw, 58px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 22px clamp(72px, 9vw, 118px);
}

.service-hero {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.service-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.service-hero p:not(.eyebrow) {
  max-width: 690px;
  color: #4f5558;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

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

.service-card {
  display: grid;
  min-height: 250px;
  gap: 16px;
  align-content: end;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 23, 25, 0.09);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.service-card h2 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.consulting-page {
  background:
    radial-gradient(circle at 86% 10%, rgba(93, 143, 67, 0.14), transparent 30rem),
    linear-gradient(180deg, #fbfaf7 0%, #f2f5f1 100%);
}

.consulting-main {
  display: grid;
  gap: clamp(42px, 7vw, 82px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 22px clamp(72px, 9vw, 118px);
}

.consulting-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.consulting-hero-copy {
  display: grid;
  gap: 18px;
}

.consulting-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5.4vw, 5.25rem);
  line-height: 0.98;
}

.consulting-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #4f5558;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.coming-soon-banner {
  display: grid;
  gap: 4px;
  max-width: 620px;
  padding: 16px 18px;
  color: #213520;
  background: rgba(224, 239, 216, 0.82);
  border: 1px solid rgba(93, 143, 67, 0.24);
  border-radius: 12px;
}

.coming-soon-banner strong {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coming-soon-banner span {
  color: #344234;
}

.button.is-disabled,
.button.is-disabled:hover {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.88);
  background: #6f7477;
  box-shadow: none;
  transform: none;
}

.consulting-hero-media,
.consulting-feature {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 23, 25, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.consulting-hero-media {
  margin: 0;
}

.consulting-hero-media img,
.consulting-feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consulting-hero-media img {
  aspect-ratio: 16 / 10;
}

.consulting-preview {
  display: grid;
  gap: 18px;
}

.consulting-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
}

.consulting-feature:nth-child(even) {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
}

.consulting-feature:nth-child(even) img {
  order: 2;
}

.consulting-feature div {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 46px);
}

.consulting-feature h2,
.section-kicker h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.4rem);
  line-height: 1;
}

.consulting-feature p:not(.eyebrow),
.section-kicker + .service-grid p {
  color: #4f5558;
  line-height: 1.7;
}

.consulting-feature img {
  min-height: 360px;
}

.consulting-steps {
  display: grid;
  gap: 24px;
}

.section-kicker {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.consulting-steps .service-card h3 {
  font-size: clamp(1.28rem, 2vw, 1.8rem);
}

.product-page {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(245, 244, 240, 0.78)),
    radial-gradient(circle at 12% 10%, rgba(21, 23, 25, 0.06), transparent 22rem),
    var(--bg);
}

.product-page::before {
  content: "MONDAY\A TO\A SOMEDAY";
  white-space: pre;
  position: fixed;
  inset: 12vh auto auto -8vw;
  z-index: -1;
  color: rgba(21, 23, 25, 0.045);
  font-size: clamp(7rem, 19vw, 18rem);
  font-weight: 820;
  line-height: 0.82;
  transform: rotate(-16deg);
  pointer-events: none;
}

.icon-product {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) 22px clamp(70px, 10vw, 120px);
}

.icon-intro {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto clamp(38px, 6vw, 68px);
  text-align: center;
}

.icon-intro h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.icon-intro p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.icon-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 0.88fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.icon-media {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  justify-items: center;
}

.icon-media figure {
  margin: 0;
  overflow: hidden;
  background: #101112;
  box-shadow: 0 24px 55px rgba(21, 23, 25, 0.14);
}

.icon-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-image-main {
  width: min(420px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
}

.icon-image-main img {
  transform: scale(1.18);
}

.icon-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: clamp(18px, 3vw, 32px);
  width: min(420px, 86vw);
}

.icon-image-row figure {
  aspect-ratio: 0.72;
  border-radius: 999px;
}

.icon-image-row figure:nth-child(2) img {
  transform: scale(1.32);
}

.icon-copy {
  display: grid;
  gap: 15px;
  padding-top: clamp(8px, 2vw, 28px);
}

.icon-copy h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.02em;
}

.icon-copy p {
  max-width: 590px;
  color: #34383a;
  font-size: 0.98rem;
  line-height: 1.68;
}

.icon-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.icon-specs h3 {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.icon-specs ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-specs li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.45;
}

.icon-specs li::before {
  content: "/";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 800;
}

.icon-request {
  display: grid;
  gap: 18px;
  margin-top: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.icon-request p {
  color: #2f3335;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.16;
}

.icon-request .button {
  justify-self: start;
}

/* Compact product presentation */
.product-page::before {
  inset: 10vh auto auto -6vw;
  font-size: clamp(5rem, 13vw, 12rem);
  opacity: 0.75;
}

.icon-product {
  max-width: 980px;
  padding-top: 44px;
  padding-bottom: 72px;
}

.icon-intro {
  max-width: 720px;
  margin-bottom: 42px;
  gap: 8px;
}

.icon-intro h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.8rem);
  line-height: 1.05;
}

.icon-intro p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.55;
}

.icon-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 64px);
}

.icon-media {
  gap: 22px;
  align-content: start;
}

.icon-media figure {
  box-shadow: 0 16px 36px rgba(21, 23, 25, 0.12);
}

.icon-image-main {
  width: min(300px, 72vw);
}

.icon-image-main img {
  transform: scale(1.13);
}

.icon-image-row {
  width: min(300px, 72vw);
  gap: 18px;
}

.icon-image-row figure {
  aspect-ratio: 0.78;
}

.icon-copy {
  gap: 12px;
  padding-top: 6px;
}

.icon-copy .eyebrow {
  font-size: 0.72rem;
}

.icon-copy h2 {
  font-size: 1.18rem;
}

.icon-copy p {
  max-width: 520px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.icon-specs {
  gap: 22px;
  margin-top: 10px;
  padding-top: 18px;
}

.icon-specs h3 {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.icon-specs ul {
  gap: 6px;
}

.icon-specs li {
  font-size: 0.86rem;
  line-height: 1.38;
}

.icon-request {
  gap: 14px;
  margin-top: 8px;
  padding-top: 20px;
}

.icon-request p {
  max-width: 500px;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
}

.icon-request .button {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.88rem;
}

.product-detail-page {
  background: linear-gradient(180deg, #fbfaf7 0%, #f3f1ec 100%);
}

.back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.back-link:hover {
  color: var(--ink);
}

.product-main {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 42px 22px 82px;
}

.product-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.product-head-spaced {
  margin-top: clamp(72px, 10vw, 118px);
  padding-top: clamp(42px, 6vw, 70px);
  border-top: 1px solid var(--line);
}

.product-head h1 {
  margin-top: 6px;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  letter-spacing: 0;
}

.product-head p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 10px;
  color: #4f5558;
  font-size: 1.02rem;
  line-height: 1.55;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: clamp(34px, 5.5vw, 64px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #141516;
  border: 1px solid rgba(21, 23, 25, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(21, 23, 25, 0.11);
}

.product-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-contain img {
  object-fit: contain;
}

.product-hero-image {
  aspect-ratio: 4 / 3;
}

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

.product-thumb-grid figure {
  aspect-ratio: 1.12;
  box-shadow: 0 12px 28px rgba(21, 23, 25, 0.09);
}

.product-copy {
  display: grid;
  gap: 14px;
  padding-top: 3px;
}

.product-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.product-copy p {
  max-width: 560px;
  color: #3f4447;
  font-size: 0.98rem;
  line-height: 1.68;
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.product-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  color: #2f3335;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 23, 25, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 720;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-facts h3 {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.product-facts section:nth-child(3) {
  grid-column: 1 / -1;
}

.product-facts ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-facts li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
}

.product-request {
  display: grid;
  gap: 15px;
  margin-top: 6px;
}

.product-request p {
  color: #25282a;
  font-size: 1.02rem;
  font-weight: 680;
  line-height: 1.45;
}

.product-request .button {
  justify-self: start;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(22px, 4vw, 34px);
  align-items: stretch;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.product-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #151719;
  border: 1px solid rgba(21, 23, 25, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(21, 23, 25, 0.11);
}

.product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card-image:hover img {
  transform: scale(1.025);
}

.product-card-image.product-contain img {
  padding: 10px;
}

.product-card-copy {
  display: grid;
  gap: 9px;
  padding-right: 12px;
}

.product-card-copy h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.product-card-copy p:not(.eyebrow) {
  max-width: 480px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.text-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.page-hero {
  display: grid;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) 22px 42px;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.page-hero p:not(.eyebrow):not(.legal-warning) {
  max-width: 780px;
  font-size: 1.12rem;
}

.legal-content {
  display: grid;
  gap: 13px;
  max-width: 920px;
  margin: 0 auto 88px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid rgba(21, 23, 25, 0.09);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.legal-content h2:not(:first-child) {
  margin-top: 24px;
}

.legal-content h3 {
  margin-top: 12px;
}

.legal-content a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.form-sample,
.note-section,
.info-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.inactive-page {
  display: grid;
  gap: 20px;
  max-width: 860px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) 22px;
  align-content: center;
}

.inactive-page h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.inactive-page p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.12rem;
}

.inactive-page .button {
  justify-self: start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px max(22px, calc((100vw - var(--max)) / 2));
  color: #edf0ef;
  background:
    linear-gradient(135deg, #151719, #283130);
}

.site-footer p {
  max-width: 470px;
  margin-top: 8px;
  color: #b8c0bd;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}

.site-footer a {
  color: #edf0ef;
}

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

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 80px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .launch-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .launch-hero::before {
    right: -120px;
    top: 130px;
    width: 360px;
    opacity: 0.48;
  }

  .launch-hero::after {
    right: -60px;
    bottom: 18%;
    opacity: 0.7;
  }

  .focus-heading,
  .focus-grid,
  .entry-choice-grid,
  .icon-layout,
  .icon-specs,
  .product-overview,
  .product-list,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .consulting-hero,
  .consulting-feature,
  .consulting-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .consulting-feature:nth-child(even) img {
    order: 0;
  }

  .icon-copy {
    padding-top: 0;
  }

  .icon-layout {
    gap: 34px;
  }

  .product-main {
    max-width: 720px;
  }

  .product-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card-copy {
    padding-right: 0;
  }

  .entry-choice {
    min-height: 390px;
  }

  .service-card {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 13px 16px;
  }

  .logo-stamp span:nth-child(2),
  .logo-stamp span:nth-child(3) {
    display: none;
  }

  .launch-hero,
  .focus-section,
  .split-entry,
  .service-main,
  .consulting-main,
  .icon-product,
  .product-main,
  .page-hero,
  .inactive-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .launch-copy h1 {
    font-size: clamp(3.05rem, 16vw, 4.6rem);
  }

  .launch-copy .button,
  .hero-actions,
  .icon-request .button,
  .product-request .button,
  .inactive-page .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .focus-card,
  .legal-content {
    border-radius: 22px;
  }

  .icon-intro {
    text-align: left;
    margin-bottom: 30px;
  }

  .icon-intro p:not(.eyebrow) {
    margin: 0;
  }

  .icon-image-main,
  .icon-image-row {
    width: min(100%, 280px);
  }

  .icon-media {
    justify-items: start;
  }

  .icon-copy p,
  .icon-specs li {
    font-size: 0.9rem;
  }

  .icon-request p {
    font-size: 1.18rem;
  }

  .product-main {
    padding-top: 30px;
    padding-bottom: 58px;
  }

  .product-head {
    margin-bottom: 22px;
  }

  .product-head h1 {
    font-size: clamp(2.15rem, 13vw, 3.2rem);
  }

  .product-head p:not(.eyebrow),
  .product-copy p {
    font-size: 0.94rem;
  }

  .product-overview {
    gap: 26px;
  }

  .product-thumb-grid {
    gap: 10px;
  }

  .product-gallery {
    gap: 10px;
  }

  .product-gallery figure {
    border-radius: 10px;
  }

  .product-pills span {
    font-size: 0.78rem;
  }

  .product-facts {
    margin-top: 10px;
    padding: 18px 0;
  }

  .product-facts li {
    font-size: 0.86rem;
  }

  .split-entry {
    min-height: auto;
    padding-top: 42px;
  }

  .split-entry-head h1 {
    font-size: clamp(2.35rem, 14vw, 3.8rem);
  }

  .entry-choice {
    min-height: 340px;
    border-radius: 14px;
  }

  .entry-choice-copy strong {
    font-size: clamp(1.55rem, 9vw, 2.35rem);
  }

  .service-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  .consulting-main {
    padding-top: 36px;
    padding-bottom: 58px;
  }

  .consulting-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.55rem);
  }

  .consulting-hero-media,
  .consulting-feature {
    border-radius: 10px;
  }

  .consulting-feature img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .consulting-feature div {
    padding: 22px;
  }

  .consulting-feature h2,
  .section-kicker h2 {
    font-size: clamp(1.65rem, 10vw, 2.4rem);
  }

  .legal-content {
    margin-bottom: 52px;
  }

  .site-footer {
    flex-direction: column;
    padding: 34px 16px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
