:root {
  --bg: #f6f7f9;
  --bg-alt: #eef1f5;
  --ink: #12151c;
  --ink-2: #2a3140;
  --muted: #5c6678;
  --line: #d5dae3;
  --blue: #2451ff;
  --blue-deep: #1636c9;
  --white: #ffffff;
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --shell: 1180px;
  --header: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--ink);
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 48px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 48px 100%,
    var(--bg);
  background-attachment: fixed;
  line-height: 1.55;
}

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

a {
  color: var(--blue);
}

a:hover {
  color: var(--blue-deep);
}

h1,
h2,
h3,
h4,
.logo,
.brand-mark {
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 0.55em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.55rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-2);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border: 1.5px solid transparent;
  border-radius: 4px;
  font: 600 0.92rem/1 var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

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

.btn-solid {
  background: var(--blue);
  color: #fff;
}

.btn-solid:hover {
  background: var(--blue-deep);
  color: #fff;
}

.btn-line {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-line:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.plain-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.plain-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink-2);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--blue);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 247, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-bar {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  margin: 0;
  margin-right: auto;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.logo span {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--blue);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  border-top: 1px solid var(--line);
  background: var(--white);
  max-height: min(70vh, 520px);
  overflow: auto;
}

.site-nav[hidden] {
  display: none;
}

.site-nav-inner {
  display: grid;
  gap: 0;
  padding: 0.5rem 0 1.25rem;
}

.site-nav-inner a:not(.btn) {
  display: block;
  padding: 1rem 0;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease);
}

.site-nav-inner a:not(.btn):hover {
  color: var(--blue);
}

.site-nav-cta {
  margin-top: 1.15rem;
  width: fit-content;
}

@media (min-width: 900px) {
  .site-nav-inner {
    padding-block: 1rem 1.75rem;
    max-width: 520px;
    margin-left: 0;
  }
}

/* Hero — full bleed, bottom panel */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: drift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 21, 28, 0.25) 0%, rgba(18, 21, 28, 0.15) 40%, rgba(18, 21, 28, 0.92) 100%),
    linear-gradient(90deg, rgba(18, 21, 28, 0.55) 0%, transparent 55%);
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
  max-width: 44rem;
  margin-left: max(1rem, calc((100% - var(--shell)) / 2));
  margin-right: 1rem;
  animation: up 0.75s var(--ease) both;
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.9;
}

.hero h1 {
  color: #fff;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero .btn-solid {
  background: #fff;
  color: var(--ink);
}

.hero .btn-solid:hover {
  background: #e8ebf2;
  color: var(--ink);
}

@keyframes drift {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust strip */
.trust-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  padding: 0.85rem 0;
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-row span {
  position: relative;
}

.trust-row span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 1.5rem;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: middle;
}

/* Stats */
.intro-stats {
  padding: 3.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  max-width: 42rem;
  font-size: 1.08rem;
  margin-bottom: 2.25rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 1.5rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.metric-row dt {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 1;
}

.metric-row dd {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .metric-row {
    grid-template-columns: 1fr;
  }
}

/* Full-bleed bands */
.band-grid {
  display: grid;
}

.band-copy {
  padding: 3rem 1rem;
  width: min(100%, 560px);
  margin-inline: auto;
}

.band-visual {
  margin: 0;
  min-height: 280px;
}

.band-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.band-visual--ui {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, #e8ecf4 0%, #f6f7f9 55%, #dde3ef 100%);
}

.band-visual--ui img {
  height: auto;
  max-height: 420px;
  min-height: 0;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 21, 28, 0.1);
}

.band-ink .band-visual--ui {
  background:
    linear-gradient(145deg, #1a2030 0%, #12151c 60%, #0c0e14 100%);
}

.band-ink .band-visual--ui img {
  border-color: rgba(255, 255, 255, 0.12);
}

.solution-row img.ui-shot {
  object-fit: contain;
  background:
    linear-gradient(145deg, #eef1f5 0%, #f6f7f9 100%);
  padding: 0.85rem;
}

@media (min-width: 900px) {
  .band-visual--ui {
    padding: 2rem;
  }

  .band-visual--ui img {
    max-height: 480px;
  }
}

.band-light {
  background: var(--bg-alt);
}

.band-ink {
  background: var(--ink);
}

.band-ink .band-copy h2,
.band-ink .kicker {
  color: #fff;
}

.band-ink .band-copy p,
.band-ink .plain-list li {
  color: rgba(255, 255, 255, 0.82);
}

.band-ink .plain-list li::before {
  background: #7f9aff;
}

@media (min-width: 900px) {
  .band-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .band-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem clamp(2rem, 5vw, 5rem);
    width: auto;
    margin: 0;
    max-width: none;
  }

  .band-flip .band-copy {
    order: 2;
  }
}

/* Sectors */
.sectors {
  padding: 4rem 0;
  background: var(--white);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.sector-list {
  border-top: 1px solid var(--line);
}

.sector-list li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.2s var(--ease);
}

.sector-list li:hover {
  background: rgba(36, 81, 255, 0.04);
}

.sector-count {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.sector-list h3 {
  margin-bottom: 0.25rem;
}

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

.sector-foot {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .sector-foot {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

/* Solutions */
.solutions {
  padding: 4rem 0 2rem;
}

.solution-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-row {
  display: grid;
  gap: 0;
  background: var(--white);
}

.solution-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.solution-row img.ui-shot {
  object-fit: contain;
  background:
    linear-gradient(145deg, #eef1f5 0%, #f6f7f9 100%);
  padding: 0.85rem;
}

.solution-row > div {
  padding: 1.5rem 1rem 2rem;
}

.solution-row .sub {
  color: var(--muted);
  margin-top: -0.25rem;
}

@media (min-width: 900px) {
  .solution-row {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .solution-row:nth-child(even) img {
    order: 2;
  }

  .solution-row img {
    aspect-ratio: 4 / 3;
    height: 100%;
    min-height: 280px;
  }

  .solution-row img.ui-shot {
    padding: 1.25rem;
  }

  .solution-row > div {
    padding: 2.5rem clamp(1.5rem, 4vw, 3.5rem);
  }
}

/* Why */
.why {
  padding: 4rem 0;
  background: var(--ink);
  color: #fff;
}

.why .section-head h2,
.why .kicker {
  color: #fff;
}

.why .kicker {
  color: #9db0ff;
}

.why-grid {
  display: grid;
  gap: 2rem;
}

.why-items {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.why-items article {
  background: var(--ink);
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-items h3 {
  color: #fff;
  margin-bottom: 0.35rem;
}

.why-items p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .why-items {
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 2rem;
  }
}

/* Stories */
.stories {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.quote-rail {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .quote-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-rail blockquote {
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--blue);
  padding-top: 1.15rem;
}

.quote-rail p {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}

.quote-rail footer {
  display: grid;
  gap: 0.15rem;
}

.quote-rail cite {
  font-style: normal;
  font-weight: 600;
}

.quote-rail span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 3rem;
  }

  .sticky-head {
    position: sticky;
    top: calc(var(--header) + 1.5rem);
    align-self: start;
  }
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--blue);
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0.7rem 0 0.2rem;
}

/* Dual CTA */
.dual-cta {
  display: grid;
}

@media (min-width: 800px) {
  .dual-cta {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-block {
  display: grid;
  gap: 0.55rem;
  padding: 2.25rem 1.5rem;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  transition: background 0.2s var(--ease);
}

.cta-block:hover {
  background: var(--blue-deep);
  color: #fff;
}

.cta-block .kicker {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cta-block strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cta-block > span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.cta-alt {
  background: var(--ink);
}

.cta-alt:hover {
  background: #1f2533;
  color: #fff;
}

/* Contact */
.contact {
  padding: 4rem 0;
  background: var(--bg);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-points li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem;
}

.role-fieldset {
  border: 0;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.role-fieldset legend {
  width: 100%;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.role-option {
  cursor: pointer;
}

.role-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-option span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-weight: 500;
  background: var(--white);
}

.role-option input:checked + span {
  border-color: var(--blue);
  background: rgba(36, 81, 255, 0.08);
  color: var(--blue-deep);
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

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

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(36, 81, 255, 0.25);
  border-color: var(--blue);
}

.form-legal {
  margin: 1rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-success {
  margin: 1rem 0 0;
  padding: 0.8rem;
  background: rgba(36, 81, 255, 0.08);
  color: var(--blue-deep);
  font-weight: 500;
}

.company-hidden {
  display: none;
}

/* Confirm modal */
.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.confirm-modal[hidden] {
  display: none;
}

.confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 28, 0.55);
}

.confirm-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: 0 20px 48px rgba(18, 21, 28, 0.2);
  animation: up 0.25s var(--ease) both;
}

.confirm-modal__panel h3 {
  margin-bottom: 0.5rem;
}

.confirm-modal__panel p {
  margin-bottom: 1.35rem;
  color: var(--muted);
}

.confirm-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost-dark:hover {
  background: var(--bg-alt);
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: #0c0e14;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 1.5rem;
}

.logo-light {
  color: #fff;
}

.logo-light img {
  background: #fff;
  border-radius: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

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

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-top {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-top {
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
  }
}

.footer-top h4 {
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
}

.footer-top ul {
  display: grid;
  gap: 0.4rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
}

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

  .hero-media img,
  .hero-panel,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 0 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 0.65rem;
}

.page-hero .lede {
  max-width: 40rem;
  margin: 0;
  font-size: 1.08rem;
}

.page-body {
  padding: 2.75rem 0 4rem;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.45rem;
}

.prose p,
.prose li {
  color: var(--ink-2);
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose a {
  font-weight: 500;
}

.meta-updated {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.about-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-grid article {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.about-layout {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.about-layout .prose {
  max-width: none;
}

.about-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.about-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-inline: auto;
}

.about-product {
  margin: 2rem auto 2.75rem;
}

.about-product figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-product img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-product-caption {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
  }

  .about-media img {
    max-height: 560px;
  }

  .about-product img {
    max-height: 480px;
  }
}

.help-blocks {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 800px) {
  .help-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

.help-blocks article {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.help-blocks h3 {
  margin-bottom: 0.35rem;
}

.contact-info h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85em;
}

.contact-page .contact-layout {
  margin-top: 0.5rem;
}
