:root {
  --ink: #071516;
  --paper: #f3f0e8;
  --chalk: #e9efe9;
  --cyan: #1ad6cf;
  --amber: #ffb127;
  --muted: #8fa19c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: Arial, Helvetica, sans-serif;
}

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

a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 5px;
}

.hero {
  min-height: 100svh;
  padding: 0 clamp(24px, 4.6vw, 78px) 28px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 84% 18%, rgba(26, 214, 207, 0.14), transparent 26%),
    radial-gradient(circle at 40% 98%, rgba(255, 177, 39, 0.12), transparent 34%),
    #071516;
}

.hero::before {
  background-image:
    linear-gradient(rgba(137, 182, 172, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 182, 172, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
  position: absolute;
}

.nav {
  align-items: center;
  border-bottom: 1px solid rgba(224, 239, 233, 0.18);
  display: flex;
  height: 88px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: -0.02em;
}

.brand-mark {
  align-items: center;
  background: var(--chalk);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 10px;
  height: 34px;
  justify-content: center;
  letter-spacing: -0.08em;
  width: 34px;
}

.nav-link,
.kicker,
.feature-label,
.hero-foot,
.section-kicker,
.app-category,
.card-topline,
.step-number,
.workflow-steps li > div > p,
.back-to-top {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.13em;
}

.nav-link {
  color: #b8c6c2;
  font-size: 11px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 6vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.84fr);
  min-height: calc(100svh - 152px);
  padding: 70px 0 66px;
  position: relative;
  z-index: 1;
}

.kicker {
  color: var(--cyan);
  font-size: 11px;
  margin: 0 0 26px;
}

h1 {
  font-size: clamp(64px, 8.4vw, 138px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.82;
  margin: 0;
  max-width: 890px;
}

h1 em {
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.intro {
  color: #a9b9b4;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
  margin: 40px 0 38px;
  max-width: 620px;
}

.primary-cta {
  align-items: center;
  background: var(--chalk);
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 24px;
  padding: 17px 20px;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-cta:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-card {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(12, 34, 34, 0.78);
  border: 1px solid rgba(227, 241, 235, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: 28px 92px 1fr 24px;
  min-height: 160px;
  padding: 20px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: var(--amber);
  transform: translateX(-6px);
}

.feature-card.cyan:hover {
  border-color: var(--cyan);
}

.feature-index {
  align-self: start;
  color: #5d7570;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.feature-card img {
  border-radius: 22%;
  height: 92px;
  object-fit: cover;
  width: 92px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-label {
  color: var(--amber);
  font-size: 9px;
}

.cyan .feature-label {
  color: var(--cyan);
}

.feature-content strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.feature-content > span:last-child {
  color: #9cafaa;
  font-size: 13px;
  line-height: 1.42;
}

.feature-arrow {
  align-self: start;
  color: #94a6a1;
  font-size: 18px;
}

.hero-foot {
  align-items: center;
  bottom: 28px;
  color: #5e7470;
  display: flex;
  font-size: 8px;
  gap: 18px;
  left: clamp(24px, 4.6vw, 78px);
  position: absolute;
  right: clamp(24px, 4.6vw, 78px);
}

.strata-line {
  background: #344d49;
  display: block;
  height: 1px;
  width: 60px;
}

.software-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(90px, 10vw, 156px) clamp(24px, 4.6vw, 78px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  margin-bottom: 84px;
}

.section-kicker {
  color: #59706b;
  font-size: 10px;
  margin: 0 0 26px;
}

.section-heading h2,
.workflow h2,
.privacy-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.88;
  margin: 0;
}

.section-heading h2 em,
.privacy-copy h2 em {
  color: #d57727;
  font-weight: 400;
}

.section-intro {
  color: #53635f;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 4px;
  max-width: 480px;
}

.app-grid {
  border-left: 1px solid #c9c8bf;
  border-top: 1px solid #c9c8bf;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.app-card {
  border-bottom: 1px solid #c9c8bf;
  border-right: 1px solid #c9c8bf;
  display: flex;
  flex-direction: column;
  min-height: 488px;
  padding: 22px;
  position: relative;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.app-card:hover {
  background: var(--ink);
  color: var(--chalk);
  transform: translateY(-5px);
  z-index: 2;
}

.card-topline {
  align-items: center;
  color: #80908b;
  display: flex;
  font-size: 9px;
  min-height: 23px;
}

.new-badge {
  background: #d57727;
  color: #fff9ed;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-left: auto;
  padding: 6px 8px 5px;
}

.card-arrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  margin-left: auto;
  transition: transform 180ms ease;
}

.new-badge + .card-arrow {
  margin-left: 12px;
}

.app-card:hover .card-arrow {
  color: var(--amber);
  transform: translate(3px, -3px);
}

.app-icon {
  border: 1px solid rgba(7, 21, 22, 0.13);
  border-radius: 23%;
  box-shadow: 0 16px 30px rgba(11, 31, 31, 0.13);
  height: clamp(90px, 8vw, 128px);
  margin: 35px 0 28px;
  object-fit: cover;
  transition: box-shadow 180ms ease, transform 180ms ease;
  width: clamp(90px, 8vw, 128px);
}

.app-card:hover .app-icon {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.33);
  transform: rotate(-2deg) scale(1.035);
}

.app-category {
  color: #687d78;
  font-size: 9px;
  margin: 0 0 11px;
}

.app-card:hover .app-category {
  color: var(--card-accent, var(--cyan));
}

.app-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 14px;
}

.app-description {
  color: #66716e;
  font-size: 13px;
  line-height: 1.52;
  margin: 0;
}

.app-card:hover .app-description {
  color: #a9bab5;
}

.app-link {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}

.app-card:hover .app-link {
  color: var(--card-accent, var(--amber));
}

.tone-amber {
  --card-accent: var(--amber);
}

.tone-cyan,
.tone-ice {
  --card-accent: var(--cyan);
}

.tone-lime,
.tone-mint {
  --card-accent: #a3dd6f;
}

.tone-coral {
  --card-accent: #ff846d;
}

.tone-yellow {
  --card-accent: #ffe05d;
}

.tone-violet {
  --card-accent: #c58cff;
}

.tone-slate {
  --card-accent: #b8c9c6;
}

.workflow {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 177, 39, 0.12), transparent 28%),
    #0a1b1c;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 4.6vw, 78px);
}

.workflow-heading {
  display: grid;
  gap: 50px;
  grid-template-columns: 0.48fr 1fr;
  margin-bottom: 82px;
}

.workflow-heading .section-kicker {
  color: var(--cyan);
}

.workflow h2 {
  font-size: clamp(50px, 6.1vw, 92px);
  max-width: 970px;
}

.workflow-steps {
  border-top: 1px solid rgba(231, 239, 235, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.workflow-steps li {
  border-right: 1px solid rgba(231, 239, 235, 0.18);
  display: grid;
  gap: 28px;
  grid-template-columns: 28px 1fr;
  min-height: 275px;
  padding: 28px 32px 16px 0;
}

.workflow-steps li + li {
  padding-left: 32px;
}

.workflow-steps li:last-child {
  border-right: 0;
}

.step-number {
  color: #586e69;
  font-size: 9px;
}

.workflow-steps li > div > p {
  color: var(--amber);
  font-size: 9px;
  margin: 0 0 21px;
}

.workflow-steps h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 21px;
}

.workflow-steps li > div > span {
  color: #8fa29d;
  display: block;
  font-size: 14px;
  line-height: 1.6;
  max-width: 330px;
}

.privacy-section {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(55px, 10vw, 160px);
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  min-height: 720px;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 8vw, 140px);
}

.privacy-orbit {
  aspect-ratio: 1;
  border: 1px solid #b9c0b9;
  border-radius: 50%;
  max-width: 500px;
  position: relative;
  width: 100%;
}

.privacy-orbit::before,
.privacy-orbit::after {
  border: 1px solid #b9c0b9;
  border-radius: 50%;
  content: "";
  inset: 15%;
  position: absolute;
}

.privacy-orbit::after {
  inset: 31%;
}

.privacy-orbit span {
  background: var(--ink);
  border-radius: 50%;
  height: 8px;
  left: 50%;
  position: absolute;
  top: -4px;
  width: 8px;
}

.privacy-orbit span:nth-child(2) {
  background: #d57727;
  left: 11%;
  top: 72%;
}

.privacy-orbit span:nth-child(3) {
  background: #0ea7a4;
  left: auto;
  right: 21%;
  top: 83%;
}

.privacy-copy .section-kicker {
  color: #0b8f8c;
}

.privacy-copy h2 {
  font-size: clamp(58px, 7vw, 108px);
}

.privacy-copy > p:last-child {
  color: #596763;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.65;
  margin: 36px 0 0;
  max-width: 590px;
}

footer {
  align-items: center;
  background: #051112;
  color: #a6b5b1;
  display: grid;
  font-size: 12px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 136px;
  padding: 28px clamp(24px, 4.6vw, 78px);
}

.footer-brand {
  color: var(--chalk);
  justify-self: start;
}

footer p {
  margin: 0;
}

.back-to-top {
  font-size: 9px;
  justify-self: end;
}

.detail-page {
  background: var(--ink);
}

.detail-nav {
  margin: 0 clamp(24px, 4.6vw, 78px);
}

.detail-hero {
  align-items: center;
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  min-height: calc(100svh - 88px);
  overflow: hidden;
  padding: clamp(75px, 8vw, 130px) clamp(24px, 7vw, 120px);
  position: relative;
}

.detail-amber .detail-hero {
  background:
    radial-gradient(circle at 16% 60%, rgba(255, 177, 39, 0.2), transparent 32%),
    linear-gradient(135deg, transparent 55%, rgba(255, 177, 39, 0.06));
}

.detail-cyan .detail-hero {
  background:
    radial-gradient(circle at 16% 60%, rgba(26, 214, 207, 0.18), transparent 32%),
    linear-gradient(135deg, transparent 55%, rgba(26, 214, 207, 0.06));
}

.detail-hero::before {
  background-image:
    linear-gradient(rgba(137, 182, 172, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 182, 172, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
  position: absolute;
}

.detail-icon-wrap {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.detail-orbit {
  border: 1px solid rgba(229, 239, 234, 0.15);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.detail-orbit::before,
.detail-orbit::after {
  border: 1px solid rgba(229, 239, 234, 0.13);
  border-radius: 50%;
  content: "";
  inset: 12%;
  position: absolute;
}

.detail-orbit::after {
  inset: 26%;
}

.detail-icon-wrap img {
  border-radius: 23%;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  width: 62%;
  z-index: 2;
}

.detail-amber .detail-icon-wrap img {
  box-shadow: 0 35px 90px rgba(255, 131, 31, 0.2);
}

.detail-cyan .detail-icon-wrap img {
  box-shadow: 0 35px 90px rgba(26, 214, 207, 0.18);
}

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

.detail-amber .detail-hero-copy .kicker {
  color: var(--amber);
}

.detail-hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 8vw, 130px);
  font-weight: 400;
  line-height: 0.88;
}

.detail-lead {
  color: #a6b8b2;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.58;
  margin: 40px 0;
  max-width: 740px;
}

.detail-actions {
  align-items: center;
  display: flex;
  gap: 28px;
}

.detail-actions > span {
  color: #718984;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.detail-content {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 120px);
}

.detail-overview {
  display: grid;
  gap: 50px;
  grid-template-columns: 0.35fr 1fr;
  margin-bottom: 92px;
}

.detail-overview h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 1100px;
}

.detail-highlights {
  border-top: 1px solid #c9c8bf;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.detail-highlights article {
  border-bottom: 1px solid #c9c8bf;
  border-right: 1px solid #c9c8bf;
  min-height: 330px;
  padding: 28px 34px 36px 0;
}

.detail-highlights article + article {
  padding-left: 34px;
}

.detail-highlights article:last-child {
  border-right: 0;
}

.detail-highlights article > p {
  color: #6e817c;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin: 0 0 48px;
}

.detail-highlights h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 23px;
}

.detail-highlights article > span {
  color: #60706c;
  display: block;
  font-size: 14px;
  line-height: 1.62;
  max-width: 360px;
}

.science-note {
  align-items: start;
  background: #dfe5dc;
  display: grid;
  gap: 28px;
  grid-template-columns: 28px 1fr;
  margin-top: 62px;
  padding: 30px 34px;
}

.science-note > span {
  color: #1a9b96;
  font-size: 24px;
}

.detail-amber .science-note > span {
  color: #d57727;
}

.science-note p {
  color: #4d5f5b;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 1080px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

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

  .feature-card {
    grid-template-columns: 24px 74px 1fr;
  }

  .feature-card img {
    height: 74px;
    width: 74px;
  }

  .feature-arrow {
    display: none;
  }

  .section-heading {
    align-items: start;
    gap: 38px;
    grid-template-columns: 1fr;
  }

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

  .workflow-heading {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .workflow-steps li {
    gap: 18px;
    grid-template-columns: 22px 1fr;
    padding-right: 22px;
  }

  .workflow-steps li + li {
    padding-left: 22px;
  }

  .privacy-section {
    gap: 65px;
    grid-template-columns: minmax(240px, 0.65fr) 1fr;
  }

  .detail-hero {
    gap: 50px;
    grid-template-columns: minmax(260px, 0.6fr) 1fr;
  }

  .detail-overview {
    gap: 28px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav {
    height: 70px;
  }

  .nav-link {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    gap: 50px;
    padding: 62px 0 86px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 92px);
  }

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

  .feature-card {
    grid-template-columns: 18px 70px 1fr;
    min-height: 142px;
    padding: 16px;
  }

  .feature-content > span:last-child {
    display: none;
  }

  .software-section {
    padding-bottom: 90px;
    padding-top: 90px;
  }

  .section-heading {
    margin-bottom: 56px;
  }

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

  .app-card {
    min-height: 440px;
    padding: 18px;
  }

  .app-icon {
    height: 94px;
    width: 94px;
  }

  .workflow-heading {
    margin-bottom: 56px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps li {
    border-bottom: 1px solid rgba(231, 239, 235, 0.18);
    border-right: 0;
    min-height: 0;
    padding: 30px 0 38px;
  }

  .workflow-steps li + li {
    padding-left: 0;
  }

  .privacy-section {
    gap: 62px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .privacy-orbit {
    max-width: 320px;
  }

  footer {
    align-items: start;
    gap: 28px;
    grid-template-columns: 1fr;
    padding-bottom: 42px;
    padding-top: 42px;
  }

  footer p,
  .back-to-top {
    justify-self: start;
  }

  .detail-nav {
    height: 70px;
  }

  .detail-hero {
    gap: 55px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .detail-icon-wrap {
    max-width: 360px;
    width: 100%;
  }

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

  .detail-overview {
    margin-bottom: 60px;
  }

  .detail-highlights {
    grid-template-columns: 1fr;
  }

  .detail-highlights article,
  .detail-highlights article + article {
    border-right: 0;
    min-height: 0;
    padding: 30px 0 38px;
  }

  .detail-highlights article > p {
    margin-bottom: 28px;
  }

  .science-note {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .app-grid {
    border-left: 0;
    grid-template-columns: 1fr;
  }

  .app-card {
    border-left: 1px solid #c9c8bf;
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}


/* MacArgon long-form product page. */
.macargon-page .detail-hero {
  min-height: 820px;
}

.app-facts {
  border-left: 1px solid #c9c8bf;
  border-top: 1px solid #c9c8bf;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(84px, 9vw, 132px);
}

.app-facts > div {
  border-bottom: 1px solid #c9c8bf;
  border-right: 1px solid #c9c8bf;
  min-height: 170px;
  padding: 24px;
}

.app-facts span,
.product-figure figcaption span {
  color: #6e817c;
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.app-facts strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.app-facts p {
  color: #60706c;
  font-size: 13px;
  line-height: 1.55;
  margin: 12px 0 0;
}

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

.macargon-workflow article {
  min-height: 430px;
}

.macargon-workflow h3 {
  font-size: clamp(25px, 2.25vw, 37px);
}

.product-figure {
  margin: clamp(72px, 8vw, 116px) 0 0;
}

.product-figure img {
  background: #dfe5dc;
  border: 1px solid #c9c8bf;
  display: block;
  height: auto;
  width: 100%;
}

.product-figure figcaption {
  align-items: start;
  border-bottom: 1px solid #c9c8bf;
  border-left: 1px solid #c9c8bf;
  border-right: 1px solid #c9c8bf;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(190px, 0.35fr) 1fr;
  padding: 24px 28px 28px;
}

.product-figure figcaption span {
  margin: 2px 0 0;
}

.product-figure figcaption p {
  color: #52635f;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 820px;
}

.capability-section {
  margin-top: clamp(72px, 8vw, 116px);
}

.capability-grid {
  border-left: 1px solid #c9c8bf;
  border-top: 1px solid #c9c8bf;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-grid article {
  border-bottom: 1px solid #c9c8bf;
  border-right: 1px solid #c9c8bf;
  padding: 30px;
}

.capability-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 26px;
}

.capability-grid ul {
  color: #52635f;
  line-height: 1.65;
  margin: 0;
  padding-left: 20px;
}

.capability-grid li + li {
  margin-top: 8px;
}

.macargon-page .science-note strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .app-facts,
  .macargon-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .macargon-workflow article:nth-child(2) {
    border-right: 0;
  }

  .macargon-workflow article:nth-child(3) {
    padding-left: 0;
  }

  .macargon-workflow article:last-child {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .macargon-page .detail-hero {
    min-height: 0;
  }

  .app-facts,
  .macargon-workflow,
  .capability-grid,
  .product-figure figcaption {
    grid-template-columns: 1fr;
  }

  .app-facts {
    border-left: 0;
  }

  .app-facts > div {
    border-left: 1px solid #c9c8bf;
    min-height: 0;
  }

  .macargon-workflow article,
  .macargon-workflow article + article,
  .macargon-workflow article:nth-child(3) {
    border-right: 0;
    min-height: 0;
    padding: 30px 0 38px;
  }

  .capability-grid {
    border-left: 0;
  }

  .capability-grid article {
    border-left: 1px solid #c9c8bf;
    padding: 26px;
  }

  .product-figure figcaption {
    gap: 14px;
  }
}


/* Shared treatment for the eight established application pages. */
.detail-lime {
  --detail-accent: #a3dd6f;
  --detail-glow: rgba(163, 221, 111, 0.18);
}

.detail-coral {
  --detail-accent: #ff846d;
  --detail-glow: rgba(255, 132, 109, 0.18);
}

.detail-yellow {
  --detail-accent: #ffe05d;
  --detail-glow: rgba(255, 224, 93, 0.17);
}

.detail-mint {
  --detail-accent: #8de1b4;
  --detail-glow: rgba(141, 225, 180, 0.18);
}

.detail-violet {
  --detail-accent: #c58cff;
  --detail-glow: rgba(197, 140, 255, 0.18);
}

.detail-ice {
  --detail-accent: #77dfe8;
  --detail-glow: rgba(119, 223, 232, 0.18);
}

.detail-slate {
  --detail-accent: #b8c9c6;
  --detail-glow: rgba(184, 201, 198, 0.17);
}

.detail-lime .detail-hero,
.detail-coral .detail-hero,
.detail-yellow .detail-hero,
.detail-mint .detail-hero,
.detail-violet .detail-hero,
.detail-ice .detail-hero,
.detail-slate .detail-hero {
  background:
    radial-gradient(circle at 16% 60%, var(--detail-glow), transparent 32%),
    linear-gradient(135deg, transparent 55%, var(--detail-glow));
}

.detail-lime .detail-hero-copy .kicker,
.detail-coral .detail-hero-copy .kicker,
.detail-yellow .detail-hero-copy .kicker,
.detail-mint .detail-hero-copy .kicker,
.detail-violet .detail-hero-copy .kicker,
.detail-ice .detail-hero-copy .kicker,
.detail-slate .detail-hero-copy .kicker {
  color: var(--detail-accent);
}

.detail-lime .detail-icon-wrap img,
.detail-coral .detail-icon-wrap img,
.detail-yellow .detail-icon-wrap img,
.detail-mint .detail-icon-wrap img,
.detail-violet .detail-icon-wrap img,
.detail-ice .detail-icon-wrap img,
.detail-slate .detail-icon-wrap img {
  box-shadow: 0 35px 90px var(--detail-glow);
}

.detail-lime .science-note > span,
.detail-coral .science-note > span,
.detail-yellow .science-note > span,
.detail-mint .science-note > span,
.detail-violet .science-note > span,
.detail-ice .science-note > span,
.detail-slate .science-note > span {
  color: var(--detail-accent);
}

.secondary-cta {
  align-items: center;
  border: 1px solid rgba(229, 239, 234, 0.28);
  color: var(--chalk);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 20px;
  padding: 16px 20px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.secondary-cta:hover {
  border-color: var(--detail-accent, var(--cyan));
  color: var(--detail-accent, var(--cyan));
  transform: translateY(-2px);
}

.detail-actions.app-actions {
  align-items: stretch;
  flex-wrap: wrap;
}

.detail-actions.app-actions > span {
  align-self: center;
}

.detail-resources {
  margin-top: clamp(72px, 8vw, 116px);
}

.detail-resources-heading {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  margin-bottom: 44px;
}

.detail-resources-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
  margin: 0;
}

.detail-resources-heading > p {
  color: #60706c;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.resource-grid {
  border-left: 1px solid #c9c8bf;
  border-top: 1px solid #c9c8bf;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.resource-card {
  border-bottom: 1px solid #c9c8bf;
  border-right: 1px solid #c9c8bf;
  display: flex;
  flex-direction: column;
  min-height: 275px;
  padding: 28px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

a.resource-card:hover {
  background: var(--ink);
  color: var(--chalk);
  transform: translateY(-4px);
}

.resource-label {
  color: #6e817c;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin: 0 0 34px;
}

.resource-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 18px;
}

.resource-card > p:not(.resource-label) {
  color: #60706c;
  font-size: 13px;
  line-height: 1.58;
  margin: 0;
}

a.resource-card:hover > p {
  color: #a9bab5;
}

.resource-link {
  color: var(--detail-accent, #0b8f8c);
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 26px;
}

.reference-list {
  color: #52635f;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  padding-left: 20px;
}

.reference-list li + li {
  margin-top: 14px;
}

@media (max-width: 860px) {
  .detail-resources-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .resource-grid,
  .resource-grid.two-up {
    border-left: 0;
    grid-template-columns: 1fr;
  }

  .resource-card {
    border-left: 1px solid #c9c8bf;
    min-height: 240px;
  }
}
