:root {
  color-scheme: light;
  --paper: #f4f0e8;
  --paper-bright: #fcfaf6;
  --paper-deep: #e9e1d3;
  --ink: #17332e;
  --ink-deep: #0c211d;
  --ink-soft: #4d645f;
  --jade: #2d6f62;
  --jade-light: #d9e9e3;
  --coral: #d95d42;
  --coral-deep: #b9442d;
  --gold: #d6a44f;
  --line: rgba(23, 51, 46, 0.14);
  --shadow-sm: 0 12px 32px rgba(32, 49, 43, 0.08);
  --shadow-lg: 0 34px 80px rgba(30, 48, 42, 0.16);
  --shell: min(1180px, calc(100% - 40px));
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  --font-serif: "Iowan Old Style", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 12%, rgba(214, 164, 79, 0.14), transparent 25rem),
    radial-gradient(circle at 94% 24%, rgba(45, 111, 98, 0.12), transparent 30rem);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink-deep);
  color: white;
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 232, 0.88);
  backdrop-filter: blur(18px);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(22, 41, 36, 0.07);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--jade);
  box-shadow: 0 10px 22px rgba(45, 111, 98, 0.2);
}

.brand__mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #f5d697;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.brand__mark circle {
  fill: #f5d697;
  stroke: none;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__copy strong {
  font-family: var(--font-serif);
  font-size: 1.17rem;
  letter-spacing: 0.08em;
}

.brand__copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 220ms var(--ease),
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--compact {
  min-height: 44px;
  padding: 9px 17px;
  font-size: 0.84rem;
}

.button--dark {
  background: var(--ink);
  color: white;
}

.button--primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 14px 28px rgba(185, 68, 45, 0.22);
}

.button--primary:hover {
  background: var(--coral-deep);
  box-shadow: 0 18px 34px rgba(185, 68, 45, 0.28);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(252, 250, 246, 0.62);
}

.button--ghost:hover {
  border-color: rgba(23, 51, 46, 0.3);
  background: var(--paper-bright);
}

.button--large {
  min-height: 58px;
  padding-inline: 30px;
}

.hero {
  display: grid;
  min-height: calc(100svh - 110px);
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  padding-block: clamp(64px, 10vh, 112px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--jade);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 10em;
  margin-bottom: 26px;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.hero h1 span {
  color: var(--coral);
}

.hero__lead {
  max-width: 38rem;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 700;
  list-style: none;
}

.hero__principles li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__principles li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.hero__visual {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 62%;
  height: 58%;
  border-radius: var(--radius-lg);
  content: "";
  background: var(--jade);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  border: 8px solid rgba(252, 250, 246, 0.8);
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-lg);
}

.hero__visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  max-width: 270px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  background: rgba(12, 33, 29, 0.88);
  box-shadow: var(--shadow-sm);
  color: rgba(255, 255, 255, 0.82);
  padding: 13px 16px;
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
}

.hero__visual figcaption span {
  margin-bottom: 2px;
  color: #f4d392;
  font-weight: 900;
}

.signal-strip {
  border-block: 1px solid var(--line);
  background: rgba(252, 250, 246, 0.62);
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-strip__grid > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 34px;
}

.signal-strip__grid > div + div {
  border-left: 1px solid var(--line);
}

.signal-strip strong {
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

.signal-strip span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.section {
  padding-block: clamp(82px, 11vw, 150px);
}

.section--warm {
  background:
    linear-gradient(rgba(233, 225, 211, 0.74), rgba(233, 225, 211, 0.74)),
    radial-gradient(circle at 75% 20%, rgba(214, 164, 79, 0.24), transparent 28rem);
}

.section--ink {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(45, 111, 98, 0.5), transparent 34rem),
    var(--ink-deep);
  color: white;
}

.section--quiet {
  background: var(--paper-bright);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 52px;
}

.section-heading h2,
.adoption h2,
.cta h2 {
  margin-bottom: 20px;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.section-heading p,
.adoption__intro p,
.cta p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

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

.need-card {
  display: flex;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 46, 0.1);
  border-radius: var(--radius-md);
  background: rgba(252, 250, 246, 0.78);
  box-shadow: 0 22px 55px rgba(56, 55, 46, 0.06);
  flex-direction: column;
}

.need-card__visual {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin: 0;
  background: var(--sand);
}

.need-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(18, 39, 35, 0.08));
  content: "";
  pointer-events: none;
}

.need-card__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.need-card:hover .need-card__visual img {
  transform: scale(1.025);
}

.need-card__body {
  display: flex;
  flex: 1;
  padding: clamp(24px, 2.7vw, 34px);
  flex-direction: column;
}

.need-card__number {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 900;
}

.need-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.need-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section--products {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 111, 98, 0.09), transparent 30rem),
    var(--paper-bright);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f8f5ef;
  box-shadow: var(--shadow-sm);
}

.product-showcase + .product-showcase {
  margin-top: 28px;
}

.product-showcase--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
}

.product-showcase--emotrans {
  grid-template-columns: 1fr;
}

.product-showcase--emotrans .product-showcase__copy {
  width: min(100%, 900px);
  padding-bottom: clamp(32px, 4vw, 46px);
}

.product-showcase--reverse .product-showcase__copy {
  order: 2;
}

.product-showcase--reverse .product-showcase__visual {
  order: 1;
}

.product-showcase__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
}

.product-showcase__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-showcase__index {
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 900;
}

.product-showcase__status {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.product-showcase h3 {
  margin-bottom: 12px;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.product-showcase h3 small {
  display: block;
  margin-top: 10px;
  color: var(--jade);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-showcase__lead {
  margin-bottom: 15px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.6;
}

.product-showcase__copy > p:not(.product-showcase__lead, .product-showcase__note) {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.product-showcase__note {
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.65;
}

.product-showcase__visual {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(214, 164, 79, 0.2), transparent 24rem),
    var(--ink-deep);
  padding: clamp(22px, 3.4vw, 44px);
}

.product-showcase__visual--dark {
  background:
    radial-gradient(circle at 15% 92%, rgba(45, 111, 98, 0.44), transparent 28rem),
    #0a171d;
}

.product-showcase--emotrans .product-showcase__visual {
  min-height: 0;
  align-items: center;
  padding: clamp(20px, 3vw, 36px);
}

.product-showcase--emotrans .product-window__bar,
.product-showcase--emotrans .product-showcase__picture,
.product-showcase--emotrans .product-showcase__visual figcaption {
  width: min(100%, 1040px);
}

.product-showcase__picture {
  display: block;
  font-size: 0;
}

.product-showcase__visual img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 30px 64px rgba(3, 13, 12, 0.28);
}

.product-window__bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.08);
  padding-inline: 13px;
}

.product-window__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.product-window__bar small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.product-window__bar + img {
  border-radius: 0 0 12px 12px;
}

.product-window__bar + .product-showcase__picture img {
  border-radius: 0 0 12px 12px;
}

.product-showcase__visual figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: right;
}

.product-showcase__visual--collage {
  min-height: 620px;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 20% 16%, rgba(214, 164, 79, 0.24), transparent 24rem),
    #183e36;
}

.product-window {
  position: relative;
}

.product-window--main {
  z-index: 1;
  width: 91%;
}

.product-window--detail {
  z-index: 2;
  width: 61%;
  aspect-ratio: 4 / 3;
  margin-top: -9%;
  margin-left: auto;
  overflow: hidden;
  border: 5px solid rgba(248, 245, 239, 0.92);
  border-radius: 18px;
  background: #3d2118;
  box-shadow: 0 22px 46px rgba(2, 14, 11, 0.3);
}

.product-window--detail img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
}

.product-window__badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(190, 72, 49, 0.9);
  color: white;
  padding: 7px 11px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(9px);
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 0;
  border-block: 1px solid var(--line);
}

.product-metrics div {
  padding: 16px 10px 16px 0;
}

.product-metrics div + div {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.product-metrics dt {
  color: var(--jade);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
}

.product-metrics dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.45;
}

.solution {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-bright);
  box-shadow: var(--shadow-sm);
}

.solution__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.solution__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solution__image--capture,
.solution-card__image--capture {
  background: #e8e1d5;
}

.solution__image--capture img,
.solution-card__image--capture img {
  object-fit: contain;
  object-position: center;
}

.solution__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
}

.solution__tag {
  align-self: flex-start;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--jade-light);
  color: var(--jade);
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.solution h3,
.solution-card h3 {
  margin-bottom: 12px;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  letter-spacing: -0.03em;
}

.solution__headline {
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

.solution__copy > p:not(.solution__headline) {
  color: var(--ink-soft);
}

.check-list,
.mini-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-block: 11px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  background: var(--jade);
  color: white;
  font-size: 0.67rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.solution-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-bright);
  box-shadow: var(--shadow-sm);
}

.solution-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.solution-card:hover .solution-card__image img {
  transform: scale(1.025);
}

.solution-card__body {
  padding: clamp(28px, 4vw, 46px);
}

.solution-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.solution-card p {
  color: var(--ink-soft);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  padding: 6px 11px;
  font-size: 0.75rem;
  font-weight: 800;
}

.section--modules {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 8% 8%, rgba(214, 164, 79, 0.16), transparent 28rem),
    radial-gradient(circle at 95% 72%, rgba(45, 111, 98, 0.5), transparent 36rem),
    #102923;
  color: white;
}

.section--modules::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.section--modules > .shell {
  position: relative;
}

.module-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.62fr);
  align-items: end;
  gap: clamp(44px, 7vw, 96px);
  margin-bottom: clamp(46px, 7vw, 76px);
}

.module-heading h2 {
  margin: 0;
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.module-heading h2 span {
  color: #f3ce84;
}

.module-heading__aside {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: clamp(24px, 3vw, 38px);
}

.module-heading__aside p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
}

.module-kicker {
  color: #f3ce84;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

.module-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(248, 247, 240, 0.055);
  box-shadow: 0 30px 70px rgba(2, 14, 11, 0.22);
}

.module-card__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #0b1c18;
}

.module-card__visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(7, 25, 21, 0.62));
}

.module-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.module-card:hover .module-card__visual img {
  transform: scale(1.02);
}

.module-card__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module-card__visual figcaption span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #f3ce84;
  letter-spacing: 0;
}

.module-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(28px, 3vw, 38px);
}

.module-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.module-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f3ce84;
  box-shadow: 0 0 0 5px rgba(243, 206, 132, 0.11);
}

.module-card h3 {
  margin-bottom: 16px;
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.module-card__lead {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.module-points {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.module-points li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-block: 13px;
}

.module-points span {
  color: #f3ce84;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.module-points strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(410px, 1.28fr) auto;
  align-items: center;
  gap: clamp(26px, 4vw, 52px);
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(248, 247, 240, 0.08);
  padding: clamp(26px, 4vw, 40px);
}

.trust-panel__intro {
  display: flex;
  flex-direction: column;
}

.trust-panel__intro span {
  margin-bottom: 7px;
  color: #f3ce84;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.trust-panel__intro strong {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.5;
}

.trust-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-panel li span {
  color: #f3ce84;
  font-family: var(--font-serif);
  font-size: 0.72rem;
}

.button--module {
  min-width: 172px;
  border-color: rgba(243, 206, 132, 0.54);
  background: #f3ce84;
  color: var(--ink-deep);
  box-shadow: 0 16px 34px rgba(2, 14, 11, 0.18);
}

.button--module:hover {
  border-color: #ffe3a8;
  background: #ffe3a8;
}

.section--data {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(214, 164, 79, 0.16), transparent 29rem),
    radial-gradient(circle at 92% 72%, rgba(45, 111, 98, 0.11), transparent 34rem),
    linear-gradient(180deg, #f8f4ed 0%, #eee5d6 100%);
}

.section--data::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 51, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 51, 46, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.data-story {
  position: relative;
}

.data-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.68fr);
  align-items: end;
  gap: clamp(48px, 7vw, 96px);
  margin-bottom: clamp(44px, 6vw, 70px);
}

.data-heading__title h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 4.55vw, 4.55rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.data-heading__title h2 span {
  display: block;
  color: var(--jade);
}

.data-heading__summary {
  max-width: 480px;
  border-left: 1px solid rgba(23, 51, 46, 0.2);
  padding: 6px 0 8px 30px;
}

.data-heading__summary > span {
  display: block;
  margin-bottom: 14px;
  color: var(--coral-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.data-heading__summary strong {
  display: block;
  margin-bottom: 11px;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}

.data-heading__summary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.8;
}

.data-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(300px, 0.56fr);
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 46, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 94% 8%, rgba(243, 206, 132, 0.12), transparent 22rem),
    #15362f;
  padding: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 32px 74px rgba(27, 51, 44, 0.18);
}

.data-screen {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #fbfaf7;
  box-shadow: 0 18px 44px rgba(2, 14, 11, 0.18);
}

.data-screen__bar {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(23, 51, 46, 0.1);
  background: #f4efe6;
  padding-inline: 20px;
}

.data-screen__bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 51, 46, 0.24);
}

.data-screen__bar small {
  margin-left: auto;
  color: rgba(23, 51, 46, 0.58);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.data-screen figure {
  margin: 0;
}

.data-screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.data-screen figcaption {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(23, 51, 46, 0.09);
  background: white;
  padding: 14px 20px;
}

.data-screen figcaption span {
  color: var(--coral-deep);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.data-screen figcaption strong {
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: right;
}

.data-signals {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  color: white;
  padding: 28px 24px 24px;
}

.data-signals__heading > span {
  display: block;
  margin-bottom: 13px;
  color: #f3ce84;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.data-signals__heading h3 {
  margin: 0;
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.35;
}

.data-signal-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
}

.data-signal-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 15px;
}

.data-signal-list dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 900;
}

.data-signal-list dt span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(243, 206, 132, 0.32);
  border-radius: 10px;
  color: #f3ce84;
  font-family: var(--font-sans);
  font-size: 0.57rem;
  font-weight: 900;
}

.data-signal-list dd {
  margin: 6px 0 0 40px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  line-height: 1.55;
}

.data-guardrail {
  margin-top: auto;
  border: 1px solid rgba(243, 206, 132, 0.22);
  border-radius: 18px;
  background: rgba(7, 24, 20, 0.42);
  padding: 18px;
}

.data-guardrail > span {
  display: block;
  margin-bottom: 8px;
  color: #f3ce84;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.data-guardrail strong {
  display: block;
  margin-bottom: 7px;
  color: white;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  line-height: 1.45;
}

.data-guardrail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.68rem;
  line-height: 1.65;
}

.data-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 46, 0.13);
  border-radius: 24px;
  background: rgba(252, 250, 246, 0.9);
  padding: 0;
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.data-flow li {
  position: relative;
  display: grid;
  min-height: 132px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  padding: 24px 30px;
}

.data-flow li + li {
  border-left: 1px solid rgba(23, 51, 46, 0.12);
}

.data-flow li + li::before {
  position: absolute;
  top: 50%;
  left: -15px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(23, 51, 46, 0.12);
  border-radius: 50%;
  background: #f7f1e6;
  color: var(--jade);
  content: "→";
  font-size: 0.82rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.data-flow li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(45, 111, 98, 0.18);
  border-radius: 15px;
  background: rgba(45, 111, 98, 0.08);
  color: var(--jade);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 900;
}

.data-flow small {
  display: block;
  margin-bottom: 4px;
  color: var(--coral-deep);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-flow strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-deep);
  font-family: var(--font-serif);
  font-size: 1.02rem;
}

.data-flow p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.55;
}

.adoption {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.adoption__intro {
  position: sticky;
  top: 130px;
}

.eyebrow--light {
  color: #f3ce84;
}

.adoption h2 {
  color: white;
}

.adoption__intro p {
  color: rgba(255, 255, 255, 0.66);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding-bottom: 40px;
}

.timeline li:not(:last-child)::before {
  position: absolute;
  top: 52px;
  bottom: 8px;
  left: 25px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.16);
}

.timeline li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: #f3ce84;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.timeline h3 {
  margin: 2px 0 7px;
  color: white;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.people {
  display: grid;
  grid-template-columns: minmax(250px, 0.66fr) minmax(0, 1.34fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.people .section-heading {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.people-grid {
  display: grid;
  gap: 16px;
}

.person-card {
  display: grid;
  min-height: 170px;
  grid-template-columns: 72px 130px 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  padding: 28px 32px;
}

.person-card > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 22px;
  background: var(--jade-light);
  color: var(--jade);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 900;
}

.person-card:nth-child(2) > span {
  background: #f4e2da;
  color: var(--coral-deep);
}

.person-card:nth-child(3) > span {
  background: #f6e9cc;
  color: #946b22;
}

.person-card h3 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.person-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.cta-section {
  padding-block: clamp(70px, 9vw, 110px);
  background: var(--paper-deep);
}

.cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.cta > div {
  max-width: 760px;
}

.cta h2 {
  margin-bottom: 14px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-deep);
  color: white;
  padding-block: 34px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand--footer .brand__copy small {
  color: rgba(255, 255, 255, 0.52);
}

.brand--footer .brand__mark {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.site-footer__note {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.site-footer__note small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 {
  transition-delay: 0ms;
}

.reveal--delay-2 {
  transition-delay: 0ms;
}

.reveal--delay-3 {
  transition-delay: 0ms;
}

.reveal--delay-4 {
  transition-delay: 0ms;
}

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

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 820px);
    justify-self: end;
  }

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

  .product-showcase,
  .product-showcase--reverse {
    grid-template-columns: 1fr;
  }

  .product-showcase--reverse .product-showcase__copy,
  .product-showcase--reverse .product-showcase__visual {
    order: initial;
  }

  .solution__image {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .trust-panel {
    grid-template-columns: 1fr 1.3fr;
  }

  .data-heading,
  .data-workspace {
    grid-template-columns: 1fr;
  }

  .data-heading__summary {
    max-width: 720px;
    border-top: 1px solid rgba(23, 51, 46, 0.2);
    border-left: 0;
    padding: 26px 0 0;
  }

  .data-signals {
    display: grid;
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
    gap: 24px 38px;
  }

  .data-signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    margin-top: 0;
  }

  .data-guardrail {
    grid-column: 1 / -1;
  }

  .trust-panel .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }

  .signal-strip__grid {
    grid-template-columns: 1fr;
  }

  .signal-strip__grid > div {
    min-height: 88px;
    padding-inline: 0;
  }

  .signal-strip__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .needs-grid,
  .solution-grid,
  .section-heading--split,
  .module-heading,
  .module-grid,
  .trust-panel,
  .adoption,
  .people {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .module-heading {
    align-items: start;
    gap: 4px;
  }

  .module-heading__aside {
    margin-top: 28px;
  }

  .trust-panel .button {
    grid-column: auto;
  }

  .data-signals {
    grid-template-columns: 1fr;
  }

  .data-signal-list {
    margin-top: 0;
  }

  .data-guardrail {
    grid-column: auto;
  }

  .data-flow {
    grid-template-columns: 1fr;
  }

  .data-flow li + li {
    border-top: 1px solid rgba(23, 51, 46, 0.12);
    border-left: 0;
  }

  .data-flow li + li::before {
    top: -15px;
    left: 50%;
    content: "↓";
    transform: translateX(-50%);
  }

  .adoption__intro,
  .people .section-heading {
    position: static;
  }

  .person-card {
    grid-template-columns: 64px 1fr;
  }

  .person-card p {
    grid-column: 1 / -1;
  }

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

@media (max-width: 600px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius-lg: 25px;
  }

  .site-header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand__copy strong {
    font-size: 1.02rem;
  }

  .brand__copy small {
    font-size: 0.56rem;
  }

  .site-header .button {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    gap: 44px;
    padding-block: 56px 76px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10.5vw, 2.8rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual::before {
    right: -9px;
    bottom: -14px;
  }

  .hero__visual {
    aspect-ratio: 4 / 5;
  }

  .hero__visual img {
    aspect-ratio: 4 / 5;
    border-width: 5px;
    object-position: 58% center;
  }

  .hero__visual figcaption {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .adoption h2,
  .cta h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .need-card {
    min-height: auto;
  }

  .need-card__body {
    padding: 24px 22px 28px;
  }

  .need-card__number {
    margin-bottom: 22px;
  }

  .solution__copy,
  .solution-card__body {
    padding: 28px 22px 34px;
  }

  .product-showcase {
    min-height: auto;
  }

  .product-showcase__copy {
    padding: 34px 22px 38px;
  }

  .product-showcase__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
  }

  .product-showcase__visual {
    min-height: 350px;
    padding: 16px;
  }

  .product-showcase__visual--collage {
    min-height: 410px;
  }

  .product-window--main {
    width: 96%;
  }

  .product-window--detail {
    width: 74%;
    margin-top: -7%;
  }

  .product-window__badge {
    top: 8px;
    left: 8px;
    padding: 6px 9px;
    font-size: 0.55rem;
  }

  .product-window__bar small {
    max-width: 72%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-showcase__visual figcaption {
    text-align: left;
  }

  .product-metrics div {
    padding-right: 8px;
  }

  .product-metrics div + div {
    padding-left: 8px;
  }

  .solution__image,
  .solution-card__image {
    aspect-ratio: 4 / 3;
  }

  .solution__image img {
    object-position: 57% center;
  }

  .solution-card:first-child img {
    object-position: 60% center;
  }

  .solution-card:last-child img {
    object-position: 58% center;
  }

  .module-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .module-heading__aside {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

  .module-card__visual {
    aspect-ratio: 4 / 3;
  }

  .module-card:first-child .module-card__visual img {
    object-position: 49% center;
  }

  .module-card:nth-child(2) .module-card__visual img {
    object-position: 50% center;
  }

  .module-card:last-child .module-card__visual img {
    object-position: 46% center;
  }

  .module-card__body {
    padding: 29px 22px 34px;
  }

  .trust-panel {
    align-items: stretch;
    padding: 26px 22px;
  }

  .trust-panel ul {
    grid-template-columns: 1fr;
  }

  .trust-panel .button {
    width: 100%;
  }

  .data-heading {
    gap: 30px;
    margin-bottom: 34px;
  }

  .data-heading__title h2 {
    font-size: clamp(2.08rem, 9.7vw, 2.8rem);
    letter-spacing: -0.045em;
    line-height: 1.12;
  }

  .data-heading__summary {
    padding-top: 22px;
  }

  .data-workspace {
    gap: 8px;
    border-radius: 24px;
    padding: 8px;
  }

  .data-screen {
    border-radius: 18px;
  }

  .data-screen__bar {
    min-height: 46px;
    padding-inline: 14px;
  }

  .data-screen__bar small {
    max-width: 72%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .data-screen img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 43% top;
  }

  .data-screen figcaption {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 14px 16px;
  }

  .data-screen figcaption strong {
    text-align: left;
  }

  .data-signals {
    gap: 0;
    border-radius: 18px;
    padding: 24px 18px 18px;
  }

  .data-signal-list {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .data-guardrail {
    margin-top: 8px;
  }

  .data-flow {
    margin-top: 14px;
    border-radius: 20px;
  }

  .data-flow li {
    min-height: 0;
    padding: 22px 20px;
  }

  .timeline li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .timeline li > span {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .timeline li:not(:last-child)::before {
    top: 44px;
    left: 21px;
  }

  .person-card {
    min-height: 0;
    padding: 22px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__note {
    align-items: flex-start;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
