:root {
  --ink: #14180e;
  --ink-soft: #2a2f23;
  --muted: #6a7164;
  --muted-on-dark: #a4ac92;
  --line: #e4e1d2;
  --line-on-dark: rgba(255, 253, 247, 0.12);
  --snow: #fffdf7;
  --snow-warm: #f7f3e6;
  --panel: #ffffff;
  --olive: #7e9357;
  --olive-bright: #a4ba78;
  --olive-mid: #5b6e3f;
  --olive-dark: #344225;
  --olive-deep: #25301a;
  --olive-shade: #1c2417;
  --olive-shadow: #131910;
  --field: #c6b97f;
  --signal: #d9c879;
  --shadow-soft: 0 14px 36px rgba(20, 24, 14, 0.22);
  --shadow-lift: 0 32px 70px rgba(8, 12, 4, 0.5);
  --shadow-card: 0 26px 60px -28px rgba(8, 12, 4, 0.6);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(1400px 700px at 80% -20%, rgba(126, 147, 87, 0.18), transparent 60%),
    radial-gradient(1100px 800px at -10% 30%, rgba(89, 107, 63, 0.18), transparent 55%),
    linear-gradient(180deg, var(--olive-shade), var(--olive-shadow) 70%, #0d120a);
  background-attachment: fixed;
  color: var(--snow);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
:focus-visible {
  outline: 2px solid var(--olive-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line-on-dark);
  background: rgba(20, 26, 16, 0.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow 200ms ease, background 200ms ease;
}
.site-header.is-scrolled {
  background: rgba(14, 20, 10, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--olive-bright), var(--olive-mid) 55%, var(--olive-dark));
  color: var(--snow);
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.25), 0 6px 18px rgba(0, 0, 0, 0.35);
}
.brand-mark::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 25%, rgba(255, 253, 247, 0.35), transparent 55%);
  content: "";
  pointer-events: none;
}
.brand strong, .brand small { display: block; line-height: 1.05; color: var(--snow); }
.brand small {
  color: var(--muted-on-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted-on-dark);
  font-size: 14px;
  font-weight: 600;
}
nav a { position: relative; padding: 6px 2px; text-decoration: none; transition: color 160ms ease; }
nav a:hover { color: var(--snow); }
nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--olive-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease;
}
nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--snow);
  color: var(--olive-deep);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35); background: #fff; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--olive-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.7;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 18ch;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
h1 .accent { color: var(--olive-bright); white-space: nowrap; }
h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { line-height: 1.6; }
.lede {
  max-width: 56ch;
  color: rgba(255, 253, 247, 0.78);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: calc(100svh - 70px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 120px) clamp(20px, 6vw, 88px) clamp(80px, 10vw, 140px);
}
.hero::before {
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 60%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(126, 147, 87, 0.22), transparent 70%);
  content: "";
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-dark);
  color: var(--muted-on-dark);
  font-size: 13px;
}
.hero-meta strong { display: block; color: var(--snow); font-size: 15px; font-weight: 700; letter-spacing: -0.005em; }

/* Mogul-field SVG canvas */
.mogul-field {
  position: absolute;
  top: 0;
  right: -2%;
  bottom: 0;
  width: clamp(380px, 48vw, 720px);
  height: 100%;
  z-index: 1;
  opacity: 0.95;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}
.mogul-field .ski-track {
  stroke-dasharray: 0 14;
  animation: trace 2.8s ease-out 0.4s both;
}
@keyframes trace {
  from { stroke-dasharray: 0 14; }
  to { stroke-dasharray: 3 14; }
}
@media (prefers-reduced-motion: reduce) {
  .mogul-field .ski-track { animation: none; stroke-dasharray: 3 14; }
}

/* ---------- BUTTONS ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}
.button .arrow {
  display: inline-block;
  transition: transform 200ms ease;
}
.button:hover .arrow { transform: translateX(3px); }
.button.primary {
  background: var(--snow);
  color: var(--olive-deep);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.button.primary:hover { transform: translateY(-1px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45); }
.button.secondary {
  background: transparent;
  border-color: rgba(255, 253, 247, 0.35);
  color: var(--snow);
}
.button.secondary:hover { background: rgba(255, 253, 247, 0.08); border-color: var(--olive-bright); }

/* ---------- HERO PANEL ---------- */
.hero-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 380px);
  border: 1px solid rgba(255, 253, 247, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.06), rgba(255, 253, 247, 0.02));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.hero-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--muted-on-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pulse {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive-bright);
}
.pulse::after {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--olive-bright);
  content: "";
  opacity: 0.35;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .pulse::after { animation: none; } }
.signal-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-on-dark);
}
.signal-row span { color: var(--muted-on-dark); font-size: 13px; font-weight: 600; }
.signal-row strong { color: var(--snow); font-size: 15px; font-weight: 700; text-align: right; }
.mini-audit {
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(126, 147, 87, 0.16), rgba(126, 147, 87, 0.04));
}
.mini-audit p { margin: 0; color: rgba(255, 253, 247, 0.82); font-size: 13.5px; line-height: 1.55; }
.dot { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--olive-bright); }

/* ---------- SECTION SCAFFOLDING ---------- */
.section {
  position: relative;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 6vw, 88px);
}
.section.on-dark { color: var(--snow); }
.section.on-light {
  background: var(--snow-warm);
  color: var(--ink);
}
.section.on-light .eyebrow { color: var(--olive-mid); }
.section.on-light p { color: var(--muted); }
.section.on-light h1, .section.on-light h2, .section.on-light h3 { color: var(--ink); }
.section-heading { max-width: 780px; margin-bottom: clamp(28px, 4vw, 48px); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

/* ---------- SERVICES ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.service-grid article {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 200ms ease, box-shadow 240ms ease, border-color 200ms ease;
}
.service-grid article::before {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--olive-bright), transparent);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease;
}
.service-grid article:hover {
  transform: translateY(-3px);
  border-color: var(--olive);
  box-shadow: 0 20px 40px -20px rgba(20, 24, 14, 0.18);
}
.service-grid article:hover::before { opacity: 1; }
.service-grid p { color: var(--muted); line-height: 1.6; }
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--olive-deep);
  color: var(--snow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ---------- PROOF ---------- */
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.proof-copy p { color: rgba(255, 253, 247, 0.74); }
.comparison { display: grid; gap: 14px; }
.comparison > div {
  position: relative;
  padding: 24px 26px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.comparison > div span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--olive-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.comparison > div span::before {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.7;
}
.comparison p { margin: 0; color: var(--snow); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.4; }
.comparison .after {
  background: linear-gradient(180deg, rgba(126, 147, 87, 0.18), rgba(126, 147, 87, 0.06));
  border-color: rgba(164, 186, 120, 0.35);
}

/* ---------- PRICING ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.price-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 200ms ease, box-shadow 240ms ease, border-color 200ms ease;
}
.price-grid article:hover {
  transform: translateY(-3px);
  border-color: var(--olive);
  box-shadow: 0 22px 44px -20px rgba(20, 24, 14, 0.22);
}
.price-grid .featured {
  border-color: var(--olive);
  box-shadow: 0 22px 52px -18px rgba(89, 110, 63, 0.45);
}
.price-grid .featured::after {
  position: absolute;
  top: -10px;
  right: 18px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--olive-deep);
  color: var(--snow);
  content: "Most picked";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--olive-deep);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price small { color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0; }
.price-grid p { color: var(--muted); line-height: 1.55; }
.price-grid h3 { color: var(--ink); }

/* ---------- PROCESS ---------- */
.process { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 70px); }
.steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  position: relative;
  min-height: 96px;
  padding: 22px 24px 22px 86px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 253, 247, 0.78);
  line-height: 1.6;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.steps li:hover {
  transform: translateX(3px);
  border-color: var(--olive);
  background: rgba(126, 147, 87, 0.1);
}
.steps li::before {
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--olive-bright), var(--olive-mid));
  color: var(--olive-deep);
  content: "0" counter(step);
  counter-increment: step;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.3), 0 8px 18px rgba(0, 0, 0, 0.3);
}
.steps strong { display: block; margin-bottom: 4px; color: var(--snow); font-size: 16px; font-weight: 700; }

/* ---------- CONTACT ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  border-top: 1px solid var(--line-on-dark);
}
.contact-copy { max-width: 720px; }
.contact-copy p { color: rgba(255, 253, 247, 0.78); }
.contact-copy a { color: var(--snow); font-weight: 700; border-bottom: 1px solid var(--olive-bright); }
.contact-copy a:hover { color: var(--olive-bright); }
.transparency {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 2px solid var(--olive-bright);
  background: rgba(255, 253, 247, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: rgba(255, 253, 247, 0.7);
  font-size: 13.5px;
  line-height: 1.55;
}
.payment-card {
  padding: 26px 26px 22px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.05), rgba(255, 253, 247, 0.02));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--snow);
  box-shadow: var(--shadow-lift);
}
.payment-card h3 { color: var(--snow); }
.payment-card p { color: rgba(255, 253, 247, 0.7); font-size: 14px; line-height: 1.55; }
.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.payment-options figure {
  margin: 0;
}
.payment-options img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--snow);
}
.payment-options figcaption {
  margin-top: 8px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

/* ---------- FOOTER ---------- */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line-on-dark);
  background: var(--olive-shadow);
  color: rgba(255, 253, 247, 0.6);
  font-size: 13px;
}
footer .mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-on-dark);
  font-weight: 600;
}
footer .mark::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive-bright);
  content: "";
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .hero-panel { justify-self: stretch; width: 100%; }
  .mogul-field {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 280px;
    margin-top: 8px;
    order: 3;
    mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 100%);
  }
  .split, .proof, .process, .contact { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .site-header { padding: 12px 18px; }
  nav { gap: 14px; }
  nav a:not(.nav-cta) { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .hero-actions, footer { flex-direction: column; align-items: stretch; }
  .payment-options { grid-template-columns: 1fr; }
  footer { text-align: center; }
  .button { width: 100%; }
  h1 { font-size: 42px; }
  .hero-meta { gap: 18px 22px; }
}

/* ---------- SAMPLES PAGE ---------- */
.samples-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 150px) clamp(20px, 6vw, 88px);
  background:
    radial-gradient(700px 320px at 84% 10%, rgba(255, 253, 247, 0.14), transparent 62%),
    radial-gradient(900px 420px at 8% 0%, rgba(126, 147, 87, 0.2), transparent 58%);
}
.samples-hero::after {
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  bottom: -58px;
  width: clamp(220px, 28vw, 420px);
  height: clamp(120px, 16vw, 240px);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 26%, rgba(255, 253, 247, 0.9), rgba(255, 253, 247, 0.26) 54%, transparent 70%);
  content: "";
  pointer-events: none;
}
.samples-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.samples-grid-section {
  border-top: 1px solid var(--line);
}
.sample-bump-grid {
  display: grid;
  gap: 16px;
}
.sample-bump-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 52px -34px rgba(20, 24, 14, 0.34);
  overflow: hidden;
}
.sample-bump-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(126, 147, 87, 0.12), rgba(255, 253, 247, 0));
}
.sample-bump-top span {
  color: var(--olive-mid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sample-bump-top strong {
  color: var(--olive-deep);
  font-size: 18px;
}
.sample-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sample-columns > div {
  padding: 24px;
}
.sample-columns > div + div {
  border-left: 1px solid var(--line);
  background: rgba(126, 147, 87, 0.08);
}
.sample-columns h3 {
  color: var(--ink);
}
.sample-columns p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}
.sample-workflow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.sample-workflow > div {
  max-width: 760px;
}
.sample-workflow p {
  color: rgba(255, 253, 247, 0.74);
}
@media (max-width: 760px) {
  .sample-columns { grid-template-columns: 1fr; }
  .sample-columns > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .sample-workflow { align-items: stretch; flex-direction: column; }
}
