:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #86868b;
  --line: rgba(0, 0, 0, 0.08);
  --panel: rgba(255, 255, 255, 0.72);
  --button: #1d1d1f;
  --accent: #0071e3;
  --clay: #a1a1a6;
  --green-glow: rgba(0, 113, 227, 0.16);
  --paper: #f5f5f7;
  --hand: "Caveat", ui-rounded, "Segoe Print", cursive;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.86), transparent 17rem),
    radial-gradient(circle at 18% 10%, rgba(0, 113, 227, 0.08), transparent 25rem),
    radial-gradient(circle at 84% 18%, rgba(175, 197, 226, 0.2), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.36);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-140%);
}

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

.page-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

.site-header {
  width: min(100%, 1540px);
  height: 104px;
  margin: 0 auto;
  padding: 0 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 84px;
  right: 84px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111113;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand:hover .brand-mark {
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

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

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
  min-width: 0;
}

.brand-wordmark strong {
  font-size: 23px;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.brand-wordmark span {
  font-size: 15px;
  color: #86868b;
  letter-spacing: 0.2em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 46px;
  font-size: 15px;
  font-weight: 500;
}

.primary-nav a {
  transition: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--accent);
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 54%),
    linear-gradient(135deg, rgba(0, 113, 227, 0.18), transparent 44%),
    var(--button);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -8px 16px rgba(0, 0, 0, 0.18),
    0 16px 32px rgba(0, 0, 0, 0.14);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.button:hover,
.text-link:hover {
  transform: none;
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button > * {
  position: relative;
  z-index: 1;
}

.button-header {
  justify-self: end;
}

.hero {
  width: min(100%, 1540px);
  min-height: 590px;
  margin: 0 auto;
  padding: 86px 84px 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 74px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 84px;
  right: 84px;
  top: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 23, 17, 0.1), rgba(255, 255, 255, 0.8), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 7%;
  top: 16%;
  width: min(40vw, 560px);
  height: 56%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 54% 50%, rgba(0, 113, 227, 0.18), transparent 42%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08));
  filter: blur(22px);
  opacity: 0.74;
  pointer-events: none;
}


.hero-copy {
  max-width: 760px;
  padding-top: 14px;
  position: relative;
  z-index: 1;
}

.hero-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.hero-logo-glow {
  position: absolute;
  width: min(36vw, 500px);
  aspect-ratio: 1.18;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 40%, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 58% 62%, rgba(0, 113, 227, 0.22), transparent 46%),
    radial-gradient(circle at 76% 44%, rgba(185, 199, 220, 0.32), transparent 38%);
  filter: blur(22px);
  opacity: 0.86;
}

.hero-logo-frame {
  width: min(31vw, 405px);
  min-width: 340px;
  aspect-ratio: 1;
  border-radius: 31%;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 44px 90px rgba(29, 29, 31, 0.2),
    0 24px 60px rgba(0, 113, 227, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.hero-logo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.38), transparent 34%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-art {
  display: none;
}

/* Retained utility styles for hidden/legacy art. */
.hero-art {
  align-items: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #6e6e73;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hand-note {
  width: fit-content;
  margin: 0;
  position: relative;
  color: #5b6f89;
  font-family: var(--hand);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transform: rotate(-2deg);
  text-wrap: balance;
}

.hand-note::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 6px;
  bottom: -6px;
  height: 7px;
  border-bottom: 1.5px solid rgba(0, 113, 227, 0.22);
  border-radius: 50%;
  transform: rotate(0.8deg) scaleX(1);
  transform-origin: left center;
}

.hero-hand {
  margin: -14px 0 24px 8px;
  color: #6b7f99;
  font-size: clamp(28px, 3.1vw, 40px);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(54px, 5.1vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 900;
  overflow-wrap: anywhere;
}

h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 520px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 46px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  transition: none;
}

.text-link:hover {
  color: var(--accent);
}

.hero-art {
  min-height: 390px;
  display: grid;
  place-items: center;
}

.app-tile {
  width: min(37vw, 365px);
  min-width: 300px;
  aspect-ratio: 1;
  border-radius: 34%;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.98), transparent 27%),
    radial-gradient(circle at 76% 76%, rgba(218, 226, 216, 0.82), transparent 35%),
    linear-gradient(145deg, #fefef9, #f3f3ee 66%, #e6e8df);
  box-shadow:
    0 48px 88px rgba(82, 88, 76, 0.16),
    0 26px 72px var(--green-glow),
    inset 0 4px 14px rgba(255, 255, 255, 0.88),
    inset 0 -22px 44px rgba(130, 135, 118, 0.2);
}

.app-tile::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 28%;
  filter: blur(34px);
  background:
    radial-gradient(circle at 42% 55%, rgba(0, 113, 227, 0.18), transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(184, 134, 104, 0.2), transparent 45%);
  transform: translateY(34%);
  z-index: -1;
}

.app-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.soft-c {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: currentColor;
}

.soft-c::before {
  content: "C";
  font-size: 238px;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.16em;
  transform: translate(-1px, -7px) scaleX(1.1);
}

.soft-c::after {
  content: "";
  position: absolute;
  right: 29%;
  bottom: 33%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(0, 113, 227, 0.42);
}

.soft-c-shadow {
  color: rgba(75, 86, 72, 0.2);
  transform: translate(0, 15px);
  filter: blur(8px);
}

.soft-c-shadow::after {
  opacity: 0;
}

.soft-c-core {
  color: #fbfbf6;
  filter: drop-shadow(-6px 8px 8px rgba(76, 86, 73, 0.18))
    drop-shadow(0 18px 20px rgba(0, 113, 227, 0.14));
}

.approach {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 22px 84px 70px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.section-copy {
  padding-top: 22px;
}

h2 {
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.section-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

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

.approach-card {
  min-height: 188px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 18px 48px rgba(0, 0, 0, 0.045);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(239, 241, 235, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
}

.target-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #f5f5f7;
}

.target-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(5px, -5px);
}

.sparkle-icon::before {
  content: "";
  width: 23px;
  height: 23px;
  background: var(--accent);
  clip-path: polygon(
    50% 0,
    61% 34%,
    96% 39%,
    66% 58%,
    74% 93%,
    50% 68%,
    26% 93%,
    34% 58%,
    4% 39%,
    39% 34%
  );
}

.sparkle-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
}

.code-icon::before {
  content: "</>";
  color: var(--accent);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.12em;
}

.growth-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background:
    linear-gradient(var(--accent), var(--accent)) 2px 17px / 4px 8px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 11px 10px / 4px 15px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 20px 3px / 4px 22px no-repeat;
}

h3 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.studio-strip {
  width: min(100%, 1372px);
  margin: -34px auto 70px;
  padding: 0 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.studio-strip div {
  min-height: 116px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.studio-strip strong {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.studio-strip span {
  color: var(--muted);
  font-size: 14px;
}

.feature-section,
.split-section,
.cta-section,
.page-hero,
.product-showcase,
.process-list,
.journal-list {
  width: min(100%, 1372px);
  margin: 0 auto;
  padding-left: 84px;
  padding-right: 84px;
}

.feature-section {
  padding-top: 24px;
  padding-bottom: 92px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin-bottom: 20px;
}

.section-heading h2,
.split-section h2,
.cta-section h2,
.page-hero h1 {
  text-wrap: balance;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

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

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

.product-card,
.value-grid article,
.lens-card,
.future-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 48px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(18px);
}

.product-card:hover,
.value-grid article:hover,
.lens-card:hover,
.future-card:hover,
.app-profile:hover {
  border-color: rgba(0, 113, 227, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 60px rgba(0, 0, 0, 0.08);
}

.product-card::before,
.value-grid article::before,
.lens-card::before,
.future-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.55), transparent 34%);
  opacity: 0.52;
  pointer-events: none;
}

.product-card > *,
.value-grid article > *,
.lens-card > *,
.future-card > * {
  position: relative;
  z-index: 1;
}

.product-card-large {
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 18px;
}

.product-card-large h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.product-kicker,
.journal-list span,
.process-list span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #6e6e73;
  background: rgba(0, 0, 0, 0.045);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3,
.value-grid h3 {
  font-size: 24px;
  letter-spacing: -0.045em;
}

.product-card p,
.value-grid p,
.lens-card p,
.future-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.card-note {
  margin: -2px 0 14px;
  color: #6e6e73;
  font-size: 21px;
  transform: rotate(-1deg);
}

.app-profile .card-note {
  margin: -6px 0 16px;
}

.section-note {
  margin: -8px 0 18px;
  color: #6c7f98;
  font-size: 27px;
}

.snb-preview {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid rgba(0, 113, 227, 0.16);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 113, 227, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(245, 250, 255, 0.92), rgba(255, 255, 255, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.snb-preview-top,
.snb-preview-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.snb-preview-top span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snb-preview-top strong {
  color: #0066cc;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.snb-risk-bar {
  height: 8px;
  margin: 14px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(120, 113, 108, 0.12);
}

.snb-risk-bar span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #f59e0b, #dc2626);
}

.snb-preview-list {
  align-items: stretch;
}

.snb-preview-list span {
  flex: 1;
  padding: 9px 10px;
  border-radius: 1rem;
  color: #57534e;
  background: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.lens-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 40px;
  align-items: end;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 113, 227, 0.11), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.78);
}

.lens-card h3 {
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.lens-card p {
  max-width: 560px;
  font-size: 19px;
}

.lens-points {
  display: grid;
  gap: 10px;
}

.lens-points span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #424245;
  background: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 700;
}

.compact-section {
  padding-top: 6px;
}

.split-section {
  padding-top: 74px;
  padding-bottom: 74px;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 82px;
  border-top: 1px solid var(--line);
  position: relative;
}

.split-section::before {
  content: "";
  position: absolute;
  left: 84px;
  right: 84px;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.principle-list,
.rich-copy {
  display: grid;
  gap: 24px;
}

.principle-list article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.principle-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.principle-list p,
.rich-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cta-section {
  margin-bottom: 34px;
  padding-top: 68px;
  padding-bottom: 72px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 113, 227, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.68);
}

.cta-section h2 {
  max-width: 820px;
  margin-bottom: 30px;
}

.page-hero {
  padding-top: 92px;
  padding-bottom: 72px;
  position: relative;
}

.page-hero h1 {
  max-width: 800px;
}

.tiny-character + h1 {
  max-width: 700px;
}

.page-hero > p:not(.eyebrow):not(.hand-note) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.tiny-character ~ p:not(.hand-note) {
  max-width: 580px;
}

.tiny-character {
  width: 108px;
  height: 124px;
  position: absolute;
  right: 114px;
  top: 76px;
  display: grid;
  place-items: center;
}

.tiny-character::before,
.tiny-character::after {
  display: none;
}

.character-body {
  width: 82px;
  height: 82px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  padding: 29px 23px 32px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 25px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 1), transparent 32%),
    radial-gradient(circle at 78% 80%, rgba(0, 113, 227, 0.13), transparent 36%),
    linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -12px 22px rgba(0, 113, 227, 0.055),
    0 18px 38px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.character-body::before,
.character-body::after {
  content: "";
  position: absolute;
  top: 50px;
  width: 11px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 145, 170, 0.24);
}

.character-body::before {
  left: 17px;
}

.character-body::after {
  right: 17px;
}

.character-eye {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d1d1f;
  transform: translate(var(--bob-eye-x, 0), var(--bob-eye-y, 0));
}

.character-smile {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 16px;
  height: 8px;
  border-bottom: 2px solid #1d1d1f;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.character-arm {
  width: 48px;
  height: 15px;
  position: absolute;
  right: -18px;
  top: 43px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 45%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(0, 113, 227, 0.2));
  border: 1px solid rgba(0, 113, 227, 0.12);
  transform-origin: 5px 50%;
  transform: rotate(-38deg);
  z-index: 0;
  animation: bobWave 1.8s ease-in-out infinite;
}

.character-shadow {
  width: 70px;
  height: 14px;
  position: absolute;
  bottom: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.07);
  filter: blur(4px);
}

@keyframes bobWave {
  0%,
  100% {
    transform: rotate(-38deg);
  }
  50% {
    transform: rotate(-6deg);
  }
}

.product-showcase {
  padding-bottom: 88px;
  display: grid;
  gap: 22px;
}

.app-profile {
  min-height: 260px;
  padding: 36px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 58px rgba(0, 0, 0, 0.06);
}

.app-profile-preview {
  grid-template-columns: 0.7fr 1.3fr;
}

.app-profile-featured {
  min-height: 340px;
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 113, 227, 0.09), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 252, 255, 0.78));
}

.app-profile h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.055em;
}

.app-profile p,
.app-profile li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.app-profile .text-link {
  margin-top: 26px;
}

.snb-app-preview {
  min-width: 0;
}

.snb-window {
  padding: 18px;
  border: 1px solid rgba(0, 113, 227, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 113, 227, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(245, 250, 255, 0.94), rgba(255, 255, 255, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 26px 64px rgba(0, 0, 0, 0.08);
}

.snb-window-header {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a8a29e;
  font-size: 12px;
  font-weight: 800;
}

.snb-window-header span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(120, 113, 108, 0.24);
}

.snb-window-header span:first-child {
  background: var(--accent);
}

.snb-window-header strong {
  margin-left: 8px;
}

.snb-score-panel {
  margin-top: 8px;
  padding: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(245, 250, 255, 0.92), rgba(255, 255, 255, 0.58)),
    #fff;
  border: 1px solid rgba(0, 113, 227, 0.12);
}

.snb-score-panel small,
.snb-report-grid small {
  display: block;
  margin-bottom: 6px;
  color: #a8a29e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snb-score-panel strong {
  color: #0066cc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.snb-score-panel > span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #0055aa;
  background: rgba(0, 113, 227, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.snb-report-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.snb-report-grid div,
.snb-finding,
.snb-email-chip {
  padding: 13px;
  border: 1px solid #f5f5f4;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.snb-report-grid strong {
  color: #292524;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.snb-finding {
  margin-top: 10px;
  display: grid;
  gap: 5px;
}

.snb-finding b {
  color: #dc2626;
  font-size: 14px;
}

.snb-finding span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.snb-email-chip {
  width: fit-content;
  margin-top: 10px;
  color: #0066cc;
  font-size: 12px;
  font-weight: 800;
}

.app-profile ul {
  margin: 46px 0 0;
  padding-left: 20px;
}

.future-card {
  min-height: 180px;
}

.process-list,
.journal-list {
  padding-bottom: 86px;
  display: grid;
  gap: 0;
}

.process-list article,
.journal-list article,
.role-list article {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 120px minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 32px;
}

.process-list span,
.journal-list span {
  margin-bottom: 0;
}

.process-list h2,
.journal-list h2 {
  margin-bottom: 0;
}

.process-list p,
.journal-list p,
.role-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.role-list {
  display: grid;
}

.role-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.role-list h3 {
  margin-bottom: 6px;
  font-size: 24px;
}

.journal-list article {
  display: grid;
  grid-template-columns: 180px minmax(260px, 0.95fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.site-footer {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 34px 84px 44px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .site-header {
    height: auto;
    padding: 24px 36px 22px;
    grid-template-columns: 1fr auto;
    row-gap: 22px;
  }

  .site-header::after {
    left: 36px;
    right: 36px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
  }

  .hero {
    padding: 48px 36px 64px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero::before {
    left: 36px;
    right: 36px;
  }

  .hero::after {
    right: 0;
    width: 46vw;
  }

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

  .hero-visual {
    min-height: 340px;
    place-items: center start;
  }

  .hero-logo-glow {
    width: min(76vw, 430px);
  }

  .hero-logo-frame {
    width: min(68vw, 360px);
    min-width: 280px;
  }

  .hero-art {
    min-height: 330px;
    place-items: start center;
  }

  .app-tile {
    width: 330px;
  }

  .approach {
    padding: 46px 36px 44px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-copy {
    max-width: 520px;
    padding-top: 0;
  }

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

  .studio-strip,
  .feature-section,
  .split-section,
  .cta-section,
  .page-hero,
  .product-showcase,
  .process-list,
  .journal-list {
    padding-left: 36px;
    padding-right: 36px;
  }

  .studio-strip {
    margin-top: 0;
  }

  .tiny-character {
    right: 36px;
    top: 54px;
    scale: 0.86;
    transform-origin: top right;
  }

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

  .lens-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .split-section,
  .app-profile,
  .process-list article,
  .journal-list article {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .app-profile ul {
    margin-top: 0;
  }

  .site-footer {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 18px;
  }

  .site-header::after {
    left: 20px;
    right: 20px;
  }

  .brand {
    gap: 12px;
    max-width: 100%;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 13px;
  }

  .brand-wordmark strong {
    font-size: 18px;
  }

  .brand-wordmark span {
    font-size: 13px;
  }

  .button-header {
    display: none;
  }

  .primary-nav {
    margin: 0;
    width: 100%;
    padding: 0 0 8px;
  }

  .hero {
    padding: 40px 20px 54px;
  }

  .hero::before {
    left: 20px;
    right: 20px;
  }

  .hero::after {
    top: 18%;
    right: -84px;
    width: 300px;
    opacity: 0.38;
  }

  .eyebrow {
    margin-bottom: 26px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 12vw, 46px);
    line-height: 1.04;
  }

  .hero-hand {
    margin: -8px 0 22px 4px;
    font-size: 29px;
  }

  .card-note,
  .section-note {
    font-size: 24px;
  }

  .hero-text {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .hero-visual {
    min-height: 270px;
    margin-top: 8px;
    place-items: center;
  }

  .hero-logo-glow {
    width: min(92vw, 320px);
    filter: blur(18px);
  }

  .hero-logo-frame {
    width: min(78vw, 260px);
    min-width: 0;
    box-shadow:
      0 30px 68px rgba(29, 29, 31, 0.18),
      0 18px 42px rgba(0, 113, 227, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.52);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    min-height: 44px;
  }

  .hero-art {
    min-height: 300px;
  }

  .app-tile {
    width: min(100%, 300px);
    min-width: 0;
  }

  .soft-c {
    inset: 0;
  }

  .soft-c::before {
    font-size: 196px;
  }

  .soft-c::after {
    right: 29%;
    bottom: 33%;
    width: 15px;
    height: 15px;
  }

  .approach {
    padding: 40px 20px;
  }

  h2 {
    font-size: 32px;
  }

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

  .studio-strip,
  .feature-section,
  .split-section,
  .cta-section,
  .page-hero,
  .product-showcase,
  .process-list,
  .journal-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .studio-strip,
  .product-grid,
  .product-grid-featured,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .studio-strip {
    margin-bottom: 44px;
  }

  .feature-section,
  .split-section,
  .page-hero {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .tiny-character {
    width: 88px;
    height: 98px;
    margin: 0 0 22px;
    position: relative;
    top: auto;
    right: auto;
    scale: 1;
  }

  .character-body {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    padding: 27px 21px 30px;
  }

  .page-hero p:not(.eyebrow),
  .section-heading p,
  .principle-list p,
  .rich-copy p {
    font-size: 17px;
  }

  .product-card,
  .value-grid article,
  .app-profile,
  .lens-card,
  .future-card {
    padding: 24px;
  }

  .snb-preview-list,
  .snb-report-grid {
    grid-template-columns: 1fr;
  }

  .snb-preview-list {
    display: grid;
  }

  .snb-score-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .lens-card h3 {
    font-size: 44px;
  }

  .role-list article,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 28px 20px 36px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-wordmark strong {
    font-size: 16px;
  }

  .brand-wordmark span {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}

/* Reference homepage */
body.reference-home {
  min-height: 100vh;
  color: #032f24;
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.reference-home .skip-link {
  background: #003c2b;
}

.reference-shell {
  min-height: 100vh;
  background: #fff;
}

.reference-header {
  height: 120px;
  padding: 36px 52px 0 55px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.reference-brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: #050a0a;
  line-height: 1;
  min-width: 0;
}

.reference-brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.reference-brand > span {
  display: inline-flex;
  align-items: baseline;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.reference-brand strong {
  font-size: inherit;
  font-weight: 700;
  letter-spacing: -0.052em;
}

.reference-brand span span {
  font-size: inherit;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.reference-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 42px;
  color: #050a0a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.reference-nav a {
  white-space: nowrap;
}

.reference-nav a[aria-current="page"] {
  color: #006b42;
}

.reference-contact {
  min-width: 128px;
  height: 48px;
  margin-left: 4px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 117, 77, 0.42), transparent),
    #003d2c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 11px 23px rgba(0, 61, 44, 0.17);
}

.reference-hero {
  min-height: 554px;
  padding: 38px 92px 0 126px;
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(480px, 1fr);
  align-items: center;
  gap: 76px;
}

.reference-hero-copy {
  padding-top: 16px;
}

.reference-home h1 {
  max-width: none;
  margin: 0 0 28px;
  color: #043126;
  font-size: 66px;
  font-weight: 400;
  line-height: 1.105;
  letter-spacing: -0.048em;
  overflow-wrap: normal;
}

.reference-home h1 span {
  color: #007f4f;
}

.reference-hero-copy p {
  margin: 0 0 43px;
  color: #68707c;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.reference-link {
  width: fit-content;
  padding-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 27px;
  border-bottom: 1px solid #00653e;
  color: #005537;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.reference-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.reference-hero-art {
  align-self: start;
  margin-top: -38px;
  padding-left: 59px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.liquid-svg-defs {
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}

.reference-liquid-c {
  --liquid-x: 0px;
  --liquid-y: 0px;
  --liquid-tilt-x: 0deg;
  --liquid-tilt-y: 0deg;
  width: min(100%, 520px);
  position: relative;
  isolation: isolate;
  cursor: crosshair;
  perspective: 900px;
}

.reference-liquid-c::before,
.reference-liquid-c::after {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 1;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.reference-liquid-c::before {
  background:
    radial-gradient(circle at calc(50% + var(--liquid-x)) calc(42% + var(--liquid-y)), rgba(148, 255, 226, 0.46), transparent 23%),
    conic-gradient(from 90deg, transparent, rgba(0, 166, 112, 0.22), transparent, rgba(91, 237, 206, 0.2), transparent);
  filter: blur(15px);
  mix-blend-mode: screen;
  animation: oceanCaustics 7s ease-in-out infinite;
}

.reference-liquid-c::after {
  inset: 15% 10% 7%;
  background:
    repeating-radial-gradient(circle at calc(50% + var(--liquid-x)) calc(56% + var(--liquid-y)), rgba(255, 255, 255, 0.36) 0 1px, transparent 1px 12px),
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.28), transparent 60%);
  filter: blur(0.4px);
  mix-blend-mode: soft-light;
  transform: rotate(-8deg);
  animation: oceanRipples 4.8s ease-in-out infinite;
}

.reference-liquid-c img {
  width: min(100%, 520px);
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
  transform:
    translate3d(calc(var(--liquid-x) * 0.16), calc(var(--liquid-y) * 0.12), 0)
    rotateX(var(--liquid-tilt-y))
    rotateY(var(--liquid-tilt-x));
  transform-origin: 50% 56%;
  transition:
    filter 420ms ease,
    transform 260ms ease,
    scale 420ms ease;
  will-change: transform, filter;
}

.reference-liquid-c:hover::before,
.reference-liquid-c:hover::after,
.reference-liquid-c.is-liquid-active::before,
.reference-liquid-c.is-liquid-active::after {
  opacity: 1;
}

.reference-liquid-c:hover img,
.reference-liquid-c.is-liquid-active img {
  filter: url("#ocean-liquid-warp") saturate(1.14) contrast(1.03);
  scale: 1.018;
}

@keyframes oceanCaustics {
  0%,
  100% {
    transform: rotate(0deg) scale(0.98);
  }
  50% {
    transform: rotate(18deg) scale(1.05);
  }
}

@keyframes oceanRipples {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg) scale(1);
  }
  50% {
    transform: translateY(-14px) rotate(4deg) scale(1.06);
  }
}

.reference-values {
  min-height: 350px;
  padding: 34px 96px 30px;
  border-top: 1px solid #e4e7e6;
  text-align: center;
}

.reference-chevron {
  width: 29px;
  height: 29px;
  margin: 0 auto 32px;
  fill: none;
  stroke: #005537;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.reference-values h2 {
  margin: 0 auto 31px;
  color: #043126;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: -0.028em;
}

.reference-value-grid {
  width: min(100%, 860px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.reference-value-grid article {
  min-height: 132px;
  padding: 0 34px;
  display: grid;
  justify-items: center;
  align-content: start;
}

.reference-value-grid article + article {
  border-left: 1px solid #e0e4e3;
}

.reference-value-grid svg {
  width: 29px;
  height: 29px;
  margin-bottom: 22px;
  fill: none;
  stroke: #006b42;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.reference-value-grid h3 {
  margin: 0 0 12px;
  color: #040707;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.reference-value-grid p {
  margin: 0;
  color: #68707c;
  font-size: 12px;
  line-height: 2;
  letter-spacing: -0.01em;
}

.reference-contact-section,
.reference-page {
  width: min(100%, 1536px);
  margin: 0 auto;
}

.reference-contact-section {
  padding: 88px 126px 104px;
  border-top: 1px solid #e4e7e6;
}

.reference-kicker {
  margin: 0 0 22px;
  color: #006b42;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-contact-section h2,
.reference-page-hero h1 {
  max-width: 860px;
  margin: 0 0 24px;
  color: #043126;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.reference-contact-section h2 {
  max-width: 760px;
  font-size: clamp(40px, 4vw, 58px);
}

.reference-page-hero h1 span {
  color: #007f4f;
}

.reference-contact-section p,
.reference-page-hero p,
.reference-copy-stack p,
.reference-card-grid p,
.reference-product-list p,
.reference-product-list li,
.reference-steps p,
.reference-note p {
  color: #68707c;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.018em;
}

.reference-contact-section p,
.reference-page-hero p {
  max-width: 690px;
  margin: 0 0 36px;
}

.reference-page {
  padding: 118px 126px 110px;
}

.reference-page-hero {
  padding-bottom: 78px;
}

.reference-split {
  padding: 68px 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 90px;
  border-top: 1px solid #e4e7e6;
}

.reference-split h2,
.reference-product-list h2,
.reference-steps h2,
.reference-note h2 {
  margin: 0;
  color: #043126;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.reference-copy-stack {
  display: grid;
  gap: 24px;
}

.reference-copy-stack p {
  margin: 0;
}

.reference-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e4e7e6;
}

.reference-card-grid article {
  min-height: 220px;
  padding: 34px 34px 0;
}

.reference-card-grid article + article {
  border-left: 1px solid #e4e7e6;
}

.reference-card-grid span,
.reference-status,
.reference-steps span,
.reference-note span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #006b42;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-card-grid h3 {
  margin: 0 0 12px;
  color: #043126;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.reference-card-grid p {
  margin: 0;
  font-size: 15px;
}

.reference-product-list,
.reference-steps {
  display: grid;
  border-top: 1px solid #e4e7e6;
}

.reference-product-list article {
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 80px;
  border-bottom: 1px solid #e4e7e6;
}

.reference-product-list p {
  max-width: 620px;
  margin: 18px 0 30px;
}

.reference-product-list ul {
  margin: 50px 0 0;
  padding-left: 20px;
}

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

.reference-steps article {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 110px minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 34px;
  border-bottom: 1px solid #e4e7e6;
}

.reference-steps p {
  margin: 0;
}

.reference-note {
  padding: 48px 0 0;
  border-top: 1px solid #e4e7e6;
}

.reference-note p {
  max-width: 560px;
  margin: 18px 0 30px;
}

@media (max-width: 1120px) {
  .reference-header {
    height: auto;
    padding: 28px 32px 0;
    align-items: center;
  }

  .reference-nav {
    gap: 22px;
  }

  .reference-hero {
    min-height: 520px;
    padding: 58px 48px 0;
    grid-template-columns: minmax(430px, 0.95fr) minmax(330px, 1fr);
    gap: 30px;
  }

  .reference-hero-copy {
    padding-top: 0;
  }

  .reference-home h1 {
    font-size: clamp(48px, 5.1vw, 56px);
  }

  .reference-hero-art {
    margin-top: 0;
    padding-left: 0;
    justify-content: center;
  }

  .reference-hero-art img {
    width: min(42vw, 440px);
  }

  .reference-liquid-c {
    width: min(42vw, 440px);
  }

  .reference-values {
    padding-top: 34px;
  }

  .reference-contact-section,
  .reference-page {
    padding-left: 48px;
    padding-right: 48px;
  }

  .reference-page {
    padding-top: 88px;
  }

  .reference-product-list article,
  .reference-split {
    gap: 44px;
  }
}

@media (max-width: 860px) {
  .reference-header {
    padding: 24px 24px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .reference-nav {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .reference-nav::-webkit-scrollbar {
    display: none;
  }

  .reference-hero {
    min-height: auto;
    padding: 70px 48px 60px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .reference-home h1 {
    font-size: clamp(54px, 8vw, 62px);
  }

  .reference-hero-art img {
    width: min(74vw, 480px);
  }

  .reference-liquid-c {
    width: min(74vw, 480px);
  }
}

@media (max-width: 760px) {
  .reference-header {
    padding: 22px 20px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .reference-brand img {
    width: 37px;
    height: 37px;
  }

  .reference-brand > span {
    font-size: 21px;
  }

  .reference-nav {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .reference-nav::-webkit-scrollbar {
    display: none;
  }

  .reference-contact {
    min-width: auto;
    height: auto;
    margin-left: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #005537;
    background: transparent;
    box-shadow: none;
    font-weight: 500;
  }

  .reference-hero {
    padding: 58px 24px 52px;
    gap: 34px;
  }

  .reference-home h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .reference-hero-copy p {
    font-size: 18px;
  }

  .reference-hero-art img {
    width: min(100%, 390px);
  }

  .reference-liquid-c {
    width: min(100%, 390px);
  }

  .reference-values {
    padding: 34px 24px 42px;
  }

  .reference-contact-section,
  .reference-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .reference-page {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .reference-page-hero {
    padding-bottom: 54px;
  }

  .reference-split,
  .reference-product-list article,
  .reference-steps article {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reference-card-grid {
    grid-template-columns: 1fr;
  }

  .reference-card-grid article {
    min-height: 0;
    padding: 28px 0;
  }

  .reference-card-grid article + article {
    border-left: 0;
    border-top: 1px solid #e4e7e6;
  }

  .reference-product-list ul {
    margin-top: 0;
  }

  .reference-values h2 {
    font-size: 22px;
  }

  .reference-value-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reference-value-grid article {
    min-height: 0;
    padding: 0;
  }

  .reference-value-grid article + article {
    padding-top: 28px;
    border-left: 0;
    border-top: 1px solid #e0e4e3;
  }
}

@media (max-width: 420px) {
  .reference-header {
    padding: 20px 18px 0;
    gap: 20px;
  }

  .reference-brand {
    gap: 12px;
  }

  .reference-brand img {
    width: 34px;
    height: 34px;
  }

  .reference-brand > span {
    font-size: clamp(17px, 5.2vw, 20px);
  }

  .reference-nav {
    gap: 12px;
    font-size: 14px;
  }

  .reference-contact {
    height: auto;
    padding: 0;
  }

  .reference-hero {
    padding: 46px 20px 44px;
  }

  .reference-home h1 {
    margin-bottom: 22px;
    font-size: clamp(39px, 12.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .reference-hero-copy p {
    margin-bottom: 32px;
    font-size: 16px;
  }

  .reference-link {
    gap: 20px;
    font-size: 15px;
  }

  .reference-values {
    padding: 30px 20px 38px;
  }

  .reference-contact-section,
  .reference-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reference-contact-section {
    padding-top: 60px;
    padding-bottom: 72px;
  }

  .reference-values h2 {
    font-size: 20px;
  }

  .reference-contact-section p,
  .reference-page-hero p,
  .reference-copy-stack p,
  .reference-product-list p,
  .reference-product-list li,
  .reference-steps p,
  .reference-note p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-liquid-c::before,
  .reference-liquid-c::after,
  .reference-liquid-c img {
    animation: none !important;
    transition: none;
  }

  .reference-liquid-c:hover img,
  .reference-liquid-c.is-liquid-active img {
    filter: saturate(1.08);
    scale: 1;
  }
}

/* Quiet polish pass */
body.reference-home {
  color: #06271f;
  background: #fdfefd;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.reference-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 254, 253, 0.98)),
    #fff;
}

.reference-header {
  width: min(100%, 1480px);
  height: 96px;
  margin: 0 auto;
  padding: 28px 48px 0;
  align-items: center;
}

.reference-brand {
  gap: 14px;
}

.reference-brand img {
  width: 36px;
  height: 36px;
}

.reference-brand > span {
  font-size: 22px;
  letter-spacing: -0.05em;
}

.reference-brand strong {
  font-weight: 650;
}

.reference-nav {
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.reference-nav a {
  opacity: 0.9;
}

.reference-nav a:hover,
.reference-nav a[aria-current="page"] {
  color: #005d3f;
  opacity: 1;
}

.reference-contact {
  min-width: auto;
  height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(0, 61, 44, 0.12);
  border-radius: 999px;
  color: #063328;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 30px rgba(0, 61, 44, 0.06);
  backdrop-filter: blur(14px);
}

.reference-hero {
  width: min(100%, 1480px);
  min-height: 578px;
  margin: 0 auto;
  padding: 82px 96px 34px 126px;
  grid-template-columns: minmax(410px, 0.8fr) minmax(460px, 1fr);
  gap: 70px;
}

.reference-hero-copy {
  padding-top: 0;
}

.reference-home h1 {
  max-width: 640px;
  margin-bottom: 24px;
  color: #062d24;
  font-size: clamp(64px, 6.1vw, 94px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.072em;
}

.reference-hero-copy p {
  margin-bottom: 38px;
  color: #68716f;
  font-size: 19px;
  line-height: 1.58;
  letter-spacing: -0.022em;
}

.reference-link {
  gap: 18px;
  padding-bottom: 10px;
  border-bottom-color: rgba(0, 101, 62, 0.44);
  color: #005d3f;
  font-size: 15px;
}

.reference-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.reference-hero-art {
  margin-top: -50px;
  padding-left: 46px;
}

.reference-liquid-c {
  width: min(100%, 500px);
  cursor: default;
}

.reference-liquid-c img {
  width: min(100%, 500px);
}

.reference-liquid-c:hover img,
.reference-liquid-c.is-liquid-active img {
  filter: url("#ocean-liquid-warp") saturate(1.08) contrast(1.015);
  scale: 1.006;
}

.reference-liquid-c::before {
  opacity: 0;
  filter: blur(24px);
}

.reference-liquid-c:hover::before,
.reference-liquid-c:hover::after,
.reference-liquid-c.is-liquid-active::before,
.reference-liquid-c.is-liquid-active::after {
  opacity: 0.68;
}

.reference-values {
  min-height: auto;
  padding: 44px 96px 72px;
  border-top-color: rgba(3, 49, 38, 0.09);
}

.reference-chevron {
  width: 22px;
  height: 22px;
  margin-bottom: 30px;
  opacity: 0.82;
}

.reference-values h2 {
  margin-bottom: 42px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.reference-value-grid {
  width: min(100%, 760px);
}

.reference-value-grid article {
  min-height: 112px;
  padding: 0 30px;
}

.reference-value-grid article + article,
.reference-card-grid article + article,
.reference-product-list article,
.reference-steps article,
.reference-split,
.reference-contact-section,
.reference-card-grid,
.reference-product-list,
.reference-steps,
.reference-note {
  border-color: rgba(3, 49, 38, 0.09);
}

.reference-value-grid svg {
  width: 23px;
  height: 23px;
  margin-bottom: 18px;
  stroke-width: 1.25;
  opacity: 0.9;
}

.reference-value-grid h3 {
  margin-bottom: 9px;
  color: #062d24;
  font-size: 13px;
  font-weight: 550;
}

.reference-value-grid p {
  color: #727977;
  font-size: 11.5px;
  line-height: 1.85;
}

.reference-contact-section,
.reference-page {
  width: min(100%, 1480px);
}

.reference-contact-section {
  padding: 96px 126px 112px;
}

.reference-kicker,
.reference-card-grid span,
.reference-status,
.reference-steps span,
.reference-note span {
  color: #00734b;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
}

.reference-contact-section h2,
.reference-page-hero h1 {
  color: #062d24;
  font-size: clamp(54px, 5.6vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.072em;
}

.reference-contact-section h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}

.reference-contact-section p,
.reference-page-hero p,
.reference-copy-stack p,
.reference-product-list p,
.reference-product-list li,
.reference-steps p,
.reference-note p {
  color: #697270;
  font-size: 17px;
  line-height: 1.72;
}

.reference-page {
  padding: 112px 126px 124px;
}

.reference-page-hero {
  padding-bottom: 86px;
}

.reference-product-list article {
  padding: 54px 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 92px;
}

.reference-product-list h2,
.reference-split h2,
.reference-steps h2,
.reference-note h2 {
  color: #062d24;
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.058em;
}

.reference-product-list ul {
  margin-top: 46px;
}

.reference-product-list li::marker {
  color: #00734b;
}

.reference-card-grid article {
  min-height: 190px;
  padding-top: 30px;
}

.reference-card-grid h3 {
  color: #062d24;
  font-size: 20px;
}

@media (max-width: 1120px) {
  .reference-header {
    padding: 26px 36px 0;
  }

  .reference-hero {
    min-height: 520px;
    padding: 70px 48px 38px;
    grid-template-columns: minmax(390px, 0.9fr) minmax(320px, 1fr);
    gap: 34px;
  }

  .reference-home h1 {
    font-size: clamp(56px, 6vw, 68px);
  }

  .reference-hero-art {
    margin-top: 0;
    padding-left: 0;
  }

  .reference-liquid-c,
  .reference-liquid-c img {
    width: min(42vw, 430px);
  }

  .reference-page,
  .reference-contact-section {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 860px) {
  .reference-header {
    padding: 24px 24px 0;
  }

  .reference-contact {
    height: auto;
    padding: 0;
    border: 0;
    color: #005537;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .reference-hero {
    padding: 72px 48px 62px;
    grid-template-columns: 1fr;
  }

  .reference-home h1 {
    font-size: clamp(56px, 8vw, 68px);
    line-height: 1;
  }

  .reference-liquid-c,
  .reference-liquid-c img {
    width: min(70vw, 460px);
  }

  .reference-page,
  .reference-contact-section {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 760px) {
  .reference-header {
    padding: 20px 20px 0;
    gap: 18px;
  }

  .reference-brand img {
    width: 30px;
    height: 30px;
  }

  .reference-brand > span {
    font-size: 20px;
  }

  .reference-nav {
    gap: 15px;
    font-size: 14px;
    padding-bottom: 4px;
  }

  .reference-hero {
    padding: 60px 24px 58px;
    gap: 40px;
  }

  .reference-home h1 {
    max-width: 350px;
    font-size: clamp(52px, 14vw, 64px);
  }

  .reference-hero-copy p {
    max-width: 330px;
    font-size: 17px;
  }

  .reference-liquid-c,
  .reference-liquid-c img {
    width: min(100%, 360px);
  }

  .reference-values {
    padding: 42px 24px 58px;
  }

  .reference-value-grid article + article {
    border-top-color: rgba(3, 49, 38, 0.09);
  }

  .reference-page,
  .reference-contact-section {
    padding: 70px 24px 78px;
  }

  .reference-page-hero {
    padding-bottom: 54px;
  }

  .reference-page-hero h1,
  .reference-contact-section h2 {
    max-width: 100%;
    font-size: clamp(44px, 12vw, 58px);
    line-height: 1.04;
  }

  .reference-split,
  .reference-product-list article,
  .reference-steps article {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reference-product-list ul {
    margin-top: 0;
  }

  .reference-card-grid {
    grid-template-columns: 1fr;
  }

  .reference-card-grid article {
    min-height: 0;
    padding: 28px 0;
  }

  .reference-card-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(3, 49, 38, 0.09);
  }
}

@media (max-width: 420px) {
  .reference-header {
    padding: 18px 18px 0;
  }

  .reference-brand > span {
    font-size: 18px;
  }

  .reference-nav {
    gap: 13px;
    font-size: 13.5px;
  }

  .reference-hero {
    padding: 58px 20px 52px;
  }

  .reference-home h1 {
    font-size: clamp(48px, 15vw, 58px);
    line-height: 1.01;
  }

  .reference-hero-copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .reference-link {
    font-size: 14px;
  }

  .reference-values h2 {
    font-size: 21px;
  }

  .reference-page,
  .reference-contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reference-page-hero h1,
  .reference-contact-section h2 {
    font-size: clamp(39px, 11.8vw, 50px);
  }
}

.reference-product-list article {
  align-items: center;
  grid-template-columns: minmax(0, 0.72fr) minmax(390px, 0.78fr);
  gap: clamp(40px, 6vw, 96px);
}

.product-preview {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(3, 49, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(3, 49, 38, 0.08);
}

.product-preview * {
  box-sizing: border-box;
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin-bottom: 16px;
}

.preview-topbar img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.preview-topbar div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.preview-topbar strong {
  color: inherit;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}

.preview-topbar span {
  color: inherit;
  font-size: 11px;
  line-height: 1;
  opacity: 0.58;
}

.preview-topbar em {
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}

.product-preview-snb {
  color: #2c241d;
  background:
    radial-gradient(circle at 86% 10%, rgba(251, 146, 60, 0.16), transparent 180px),
    linear-gradient(180deg, #fdfcf8 0%, #f6f2ea 100%);
}

.product-preview-snb .preview-topbar img {
  border-radius: 8px;
}

.product-preview-snb .preview-topbar em {
  color: #047857;
  background: #ecfdf3;
  border: 1px solid rgba(16, 185, 129, 0.14);
}

.snb-journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin: 2px 0 18px;
}

.snb-journey span {
  height: 8px;
  border-radius: 8px;
  background: rgba(120, 113, 108, 0.14);
}

.snb-journey .is-done {
  background: #34d399;
}

.snb-journey .is-current {
  background: #fb923c;
}

.snb-preview-grid {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 12px;
}

.snb-risk,
.snb-dossier,
.snb-sunny,
.product-preview-bobo section,
.bobo-stats article {
  border: 1px solid rgba(68, 64, 60, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.snb-risk {
  min-height: 174px;
  padding: 18px;
}

.snb-risk span,
.snb-dossier span,
.bobo-stats span,
.module-heading-mini span,
.agent-mini span {
  display: block;
  color: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.48;
}

.snb-risk strong {
  display: block;
  margin-top: 22px;
  color: #292524;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.snb-risk p {
  margin: 4px 0 20px;
  color: #78716c;
  font-size: 11px;
  line-height: 1.35;
}

.snb-risk div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee8df;
}

.snb-risk i {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: #ef4444;
}

.snb-dossier {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.snb-dossier b {
  display: block;
  margin-top: 5px;
  color: #292524;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.08;
}

.snb-dossier article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 41px;
  padding: 0 11px;
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  background: rgba(254, 242, 242, 0.72);
}

.snb-dossier article strong {
  color: #44403c;
  font-size: 11px;
  font-weight: 680;
}

.snb-dossier article small {
  color: #a8a29e;
  font-size: 10px;
  font-weight: 700;
}

.snb-sunny {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 14px 16px;
}

.snb-sunny span {
  padding: 7px 9px;
  border-radius: 999px;
  color: #c2410c;
  background: #ffedd5;
  font-size: 11px;
  font-weight: 760;
}

.snb-sunny p {
  margin: 0;
  color: #57534e;
  font-size: 12px;
  line-height: 1.35;
}

.product-preview-bobo {
  color: #111927;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 178, 46, 0.22), transparent 170px),
    linear-gradient(180deg, #f8f8f6 0%, #eceff1 100%);
}

.product-preview-bobo .preview-topbar img {
  width: 76px;
  height: 34px;
  object-fit: contain;
}

.product-preview-bobo .preview-topbar em {
  color: #374151;
  background: #ffffffb8;
  border: 1px solid rgba(17, 25, 39, 0.08);
}

.bobo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.bobo-stats article {
  display: block;
  min-height: 78px;
  padding: 14px;
}

.bobo-stats strong {
  display: block;
  margin-top: 10px;
  color: #111927;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.bobo-preview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 12px;
}

.product-preview-bobo section {
  min-height: 156px;
  padding: 15px;
  background: rgba(255, 255, 253, 0.78);
}

.module-heading-mini {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.module-heading-mini strong {
  color: #111927;
  font-size: 15px;
  line-height: 1;
}

.product-preview-bobo section article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid rgba(17, 25, 39, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.product-preview-bobo section article + article {
  margin-top: 8px;
}

.product-preview-bobo section article span {
  color: #4d5664;
  font-size: 12px;
  font-weight: 650;
}

.product-preview-bobo section article b {
  color: #111927;
  font-size: 13px;
  font-weight: 800;
}

.agent-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.agent-mini img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #eceff1;
}

.agent-mini strong {
  display: block;
  color: #111927;
  font-size: 15px;
  line-height: 1;
}

.product-preview-bobo section p {
  margin: 0;
  padding: 13px;
  border-radius: 8px;
  color: #384252;
  background: #ffffffb8;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .reference-product-list article {
    grid-template-columns: 1fr;
  }

  .product-preview {
    width: min(100%, 620px);
  }
}

@media (max-width: 560px) {
  .product-preview {
    min-height: 0;
    padding: 14px;
  }

  .preview-topbar {
    min-height: 42px;
    margin-bottom: 12px;
  }

  .preview-topbar strong {
    font-size: 13px;
  }

  .preview-topbar em {
    display: none;
  }

  .snb-preview-grid,
  .bobo-preview-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .snb-risk {
    min-height: 0;
  }

  .snb-risk strong {
    margin-top: 12px;
    font-size: 25px;
  }

  .snb-risk p {
    margin-bottom: 13px;
  }

  .snb-dossier {
    gap: 7px;
  }

  .snb-dossier article {
    min-height: 36px;
  }

  .bobo-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bobo-stats article:last-child {
    grid-column: 1 / -1;
  }

  .bobo-stats article {
    min-height: 66px;
    padding: 12px;
  }

  .bobo-stats strong {
    margin-top: 7px;
    font-size: 22px;
  }

  .product-preview-bobo section {
    min-height: 0;
  }
}

/* Minimal product/contact pass */
.reference-header {
  height: 84px;
}

.reference-nav {
  gap: 28px;
}

.reference-nav a {
  font-size: 13px;
}

.reference-hero {
  min-height: clamp(520px, 72vh, 760px);
  padding-top: clamp(58px, 8vw, 112px);
  padding-bottom: clamp(48px, 7vw, 86px);
}

.reference-home h1 {
  max-width: 560px;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.92;
}

.reference-hero-copy p {
  max-width: 420px;
  margin-bottom: 34px;
  color: #5f6967;
  font-size: clamp(17px, 1.45vw, 21px);
}

.reference-liquid-c,
.reference-liquid-c img {
  width: min(100%, 420px);
}

.reference-contact-section {
  border-top: 1px solid rgba(3, 49, 38, 0.09);
  padding-top: clamp(70px, 9vw, 128px);
  padding-bottom: clamp(76px, 10vw, 140px);
}

.reference-contact-section h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 82px);
}

.reference-contact-section p:not(.reference-kicker) {
  max-width: 520px;
  margin-bottom: 34px;
}

.reference-page {
  padding-top: clamp(74px, 9vw, 130px);
}

.reference-page-hero {
  max-width: 840px;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.reference-page-hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 7vw, 96px);
}

.reference-page-hero p {
  max-width: 480px;
}

.reference-product-list > article {
  padding: clamp(44px, 6vw, 74px) 0;
}

.minimal-contact {
  width: 100%;
  margin-top: clamp(42px, 6vw, 76px);
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 860px) {
  .reference-header {
    min-height: 76px;
    height: auto;
  }

  .reference-hero {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .reference-brand > span {
    font-size: clamp(18px, 5.7vw, 22px);
  }

  .reference-nav {
    width: auto;
    margin-left: 0;
    gap: 18px;
  }

  .reference-hero {
    padding-top: 58px;
  }

  .reference-home h1 {
    max-width: 340px;
    font-size: clamp(56px, 16vw, 72px);
  }

  .reference-contact-section h2,
  .reference-page-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }
}

@media (max-width: 420px) {
  .reference-nav {
    gap: 16px;
  }

  .reference-home h1 {
    font-size: clamp(52px, 15.5vw, 64px);
  }

  .reference-contact-section {
    padding-top: 64px;
  }
}

.reference-product-list .product-preview article {
  width: auto;
  min-width: 0;
  padding: 0;
  border-top: 0;
  box-shadow: none;
}

.reference-product-list .snb-dossier article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 41px;
  padding: 0 11px;
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  background: rgba(254, 242, 242, 0.72);
}

.reference-product-list .bobo-stats article {
  display: block;
  min-height: 78px;
  padding: 14px;
}

.reference-product-list .product-preview-bobo section article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid rgba(17, 25, 39, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.reference-liquid-c::before,
.reference-liquid-c::after,
.reference-liquid-c.is-liquid-active::before,
.reference-liquid-c.is-liquid-active::after {
  opacity: 0.62;
}

.reference-liquid-c img,
.reference-liquid-c.is-liquid-active img {
  filter: url("#ocean-liquid-warp") saturate(1.12) contrast(1.025);
}
