/* Daryng Retail Labels public experience v4.31.0 */
:root {
  --marketing-canvas: #eff1ef;
  --marketing-surface: #ffffff;
  --marketing-ink: #10212d;
  --marketing-muted: #5b6971;
  --marketing-line: rgba(16,33,45,.13);
  --marketing-accent: #0f8e8c;
  --marketing-accent-dark: #0a6f72;
  --marketing-dark: #10232f;
  --marketing-width: 1460px;
  --marketing-gutter: clamp(20px, 3.4vw, 56px);
  --marketing-ease: cubic-bezier(.16,1,.3,1);
}

body.public-body.marketing-body {
  overflow-x: clip;
  background: var(--marketing-canvas);
  color: var(--marketing-ink);
  font-family: "Geist", "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.008em;
}
.marketing-main { overflow: clip; }

/* ---------- Floating navigation ---------- */
.brand-header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 12px clamp(10px, 1.4vw, 22px) 0;
  pointer-events: none;
}
.brand-header {
  width: min(var(--marketing-width), 100%);
  min-height: 58px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 6px 7px 6px 13px;
  border: 1px solid rgba(16,33,45,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 34px rgba(16,33,45,.07);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  pointer-events: auto;
  transition: transform 320ms var(--marketing-ease), box-shadow 320ms var(--marketing-ease), background-color 320ms var(--marketing-ease);
}
.brand-header-shell.is-condensed .brand-header {
  transform: translateY(-3px);
  background: rgba(255,255,255,.97);
  box-shadow: 0 14px 40px rgba(16,33,45,.1);
}
.brand-header .brand-logo { min-width: 0; }
.brand-header .daryng-lockup { --mark-size: 38px; gap: 9px; }
.brand-header .daryng-lockup-copy strong { font-size: 18px; }
.brand-header .daryng-lockup-copy small { font-size: 6.5px; }
.brand-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}
.brand-nav a,
.brand-sign-in {
  position: relative;
  color: #273640;
  font-size: 12px;
  font-weight: 610;
  text-decoration: none;
  transition: color 180ms var(--marketing-ease);
}
.brand-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--marketing-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--marketing-ease);
}
.brand-nav a:hover,
.brand-nav a[aria-current="page"],
.brand-sign-in:hover { color: var(--marketing-accent-dark); }
.brand-nav a:hover::after,
.brand-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.brand-header-actions { display: flex; align-items: center; gap: 13px; }
.brand-availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #647179;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.brand-availability i { width: 7px; height: 7px; border-radius: 50%; background: #2d9b66; box-shadow: 0 0 0 4px rgba(45,155,102,.11); }

.brand-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 8px 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  font-size: 12px;
  font-weight: 660;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--marketing-ease), background-color 220ms var(--marketing-ease), color 220ms var(--marketing-ease), border-color 220ms var(--marketing-ease), box-shadow 220ms var(--marketing-ease);
}
.brand-button:hover { transform: translateY(-1px); }
.brand-button:active { transform: translateY(0) scale(.985); }
.brand-button-primary { background: var(--marketing-dark); color: #fff; box-shadow: 0 8px 18px rgba(16,35,47,.14); }
.brand-button-primary:hover { background: #173342; box-shadow: 0 12px 24px rgba(16,35,47,.18); }
.brand-button-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--marketing-dark);
}
.brand-button-icon i { transition: transform 420ms var(--marketing-ease); }
.brand-button:hover .brand-button-icon i { transform: rotate(45deg); }
.brand-roll { height: 17px; overflow: hidden; display: grid; }
.brand-roll > span { height: 17px; display: flex; align-items: center; transition: transform 440ms var(--marketing-ease); }
.brand-roll > span:nth-child(2) { transform: translateY(0); }
.brand-button:hover .brand-roll > span { transform: translateY(-17px); }

.brand-mobile-menu { display: none; }

/* ---------- Hero ---------- */
.brand-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-content: end;
  padding: clamp(118px, 13vh, 154px) var(--marketing-gutter) 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(15,142,140,.13), transparent 34rem),
    radial-gradient(circle at 5% 86%, rgba(255,255,255,.9), transparent 32rem),
    #eef0ee;
}
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(16,33,45,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,33,45,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 25%, #000 78%, transparent 100%);
}
.brand-hero-ambient { position: absolute; inset: 0; pointer-events: none; }
.brand-hero-ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .45;
  animation: ambientFloat 13s var(--marketing-ease) infinite alternate;
}
.brand-hero-ambient span:nth-child(1) { width: 26rem; height: 26rem; right: -8rem; top: 12%; background: radial-gradient(circle, rgba(40,182,173,.18), transparent 68%); }
.brand-hero-ambient span:nth-child(2) { width: 18rem; height: 18rem; left: 35%; top: -6rem; background: radial-gradient(circle, rgba(255,255,255,.88), transparent 68%); animation-delay: -4s; }
.brand-hero-ambient span:nth-child(3) { width: 22rem; height: 22rem; left: -8rem; bottom: -7rem; background: radial-gradient(circle, rgba(15,142,140,.08), transparent 70%); animation-delay: -8s; }
@keyframes ambientFloat { from { transform: translate3d(0,0,0) scale(.96); } to { transform: translate3d(16px,-12px,0) scale(1.04); } }
.brand-hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--marketing-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(580px, 1.28fr);
  align-items: end;
  gap: clamp(38px, 5.5vw, 90px);
}
.brand-hero-copy { padding-bottom: clamp(28px, 4vw, 58px); }
.brand-kicker {
  margin: 0 0 20px;
  color: var(--marketing-accent-dark);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand-hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--marketing-ink);
  font-size: clamp(52px, 5.1vw, 80px);
  font-weight: 720;
  letter-spacing: -.065em;
  line-height: .96;
  text-wrap: balance;
}
.brand-hero-lead {
  max-width: 55ch;
  margin: 26px 0 0;
  color: #4f5e66;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
}
.brand-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: 32px; }
.brand-hero-actions .brand-button-primary { min-height: 48px; background: var(--marketing-accent); box-shadow: 0 10px 22px rgba(15,142,140,.18); }
.brand-hero-actions .brand-button-primary:hover { background: var(--marketing-accent-dark); }
.brand-button-quiet { padding: 0 15px; border-color: rgba(16,33,45,.15); background: rgba(255,255,255,.56); color: var(--marketing-ink); }
.brand-button-quiet:hover { border-color: rgba(16,33,45,.25); background: #fff; }
.brand-hero-proof {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0,1fr));
  gap: 0;
  margin: 44px 0 0;
  border-top: 1px solid rgba(16,33,45,.14);
}
.brand-hero-proof > div { min-width: 0; padding: 16px 18px 0 0; }
.brand-hero-proof > div + div { padding-left: 18px; border-left: 1px solid rgba(16,33,45,.12); }
.brand-hero-proof dt { color: #263842; font-size: 11px; font-weight: 680; }
.brand-hero-proof dd { margin: 5px 0 0; color: #6b777d; font-size: 10px; line-height: 1.48; }

.brand-hero-theatre { min-width: 0; margin: 0; transform: translateY(8px); }
.brand-hero-window,
.brand-product-window {
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(16,33,45,.095);
  border-radius: 22px;
  background: rgba(255,255,255,.5);
  box-shadow: 0 32px 80px rgba(16,33,45,.13);
}
.brand-hero-window::before,
.brand-product-window::before { content: ""; position: absolute; inset: 7px; border-radius: 15px; box-shadow: inset 0 1px rgba(255,255,255,.7); pointer-events: none; z-index: 2; }
.brand-hero-window { position: relative; }
.brand-window-bar {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid var(--marketing-line);
  border-radius: 15px 15px 0 0;
  background: #fff;
}
.brand-window-dots { display: flex; gap: 6px; }
.brand-window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d2d8d5; }
.brand-window-dots i:nth-child(1) { background: #e35f55; }
.brand-window-dots i:nth-child(2) { background: #e6b74a; }
.brand-window-dots i:nth-child(3) { background: #4dab69; }
.brand-window-title { color: #30404a; font-size: 10px; font-weight: 690; }
.brand-window-status { justify-self: end; display: inline-flex; align-items: center; gap: 6px; color: #718087; font-size: 9px; font-weight: 610; }
.brand-window-status i { width: 6px; height: 6px; border-radius: 50%; background: #2d9b66; }
.brand-hero-scenes {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f5f7f6;
}
.brand-hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: scale(.985);
  transition: opacity 520ms var(--marketing-ease), transform 720ms var(--marketing-ease);
}
.brand-hero-scene.is-active { opacity: 1; transform: scale(1); }
.brand-hero-reel-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  padding: 7px;
  border-top: 1px solid var(--marketing-line);
  border-radius: 0 0 15px 15px;
  background: #fff;
}
.brand-hero-reel-controls button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #6f7b81;
  font: inherit;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 180ms var(--marketing-ease), color 180ms var(--marketing-ease);
}
.brand-hero-reel-controls button span { color: #9ba5a9; font-family: "Geist Mono", "Cascadia Mono", monospace; font-size: 8px; }
.brand-hero-reel-controls button:hover { background: #f5f7f6; color: var(--marketing-ink); }
.brand-hero-reel-controls button.is-active { background: var(--marketing-accent); color: #fff; }
.brand-hero-reel-controls button.is-active span { color: rgba(255,255,255,.7); }
.brand-hero-theatre figcaption {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  margin-top: 13px;
  color: #65737a;
  font-size: 9px;
  font-weight: 610;
}
.brand-hero-theatre figcaption span { display: inline-flex; align-items: center; gap: 6px; }
.brand-hero-theatre figcaption i { color: var(--marketing-accent); font-size: 14px; }
.brand-sector-strip {
  position: relative;
  z-index: 2;
  width: min(var(--marketing-width), 100%);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.5vw, 54px);
  overflow-x: auto;
  padding: 15px 2px 0;
  border-top: 1px solid rgba(16,33,45,.12);
  color: #778389;
  font-size: 9px;
  white-space: nowrap;
  scrollbar-width: none;
}
.brand-sector-strip::-webkit-scrollbar { display: none; }
.brand-sector-strip strong { color: #34434c; font-weight: 680; }

/* ---------- Editorial sections ---------- */
.brand-intro,
.brand-cases,
.brand-pricing-preview {
  padding: clamp(96px, 11vw, 168px) var(--marketing-gutter);
  background: #fff;
}
.brand-editorial-heading,
.brand-intro-grid,
.brand-case-grid,
.brand-pricing-preview > * {
  width: min(var(--marketing-width), 100%);
  margin-inline: auto;
}
.brand-editorial-heading {
  display: grid;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(56px, 7vw, 104px);
}
.brand-section-label { display: flex; align-items: center; gap: 11px; padding-top: 7px; color: #5b6971; }
.brand-section-label span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--marketing-dark); color: #fff; font-family: "Geist Mono", monospace; font-size: 9px; }
.brand-section-label strong { color: #4d5d65; font-size: 10px; font-weight: 660; }
.brand-editorial-heading h2 {
  max-width: 980px;
  margin: 0;
  color: var(--marketing-ink);
  font-size: clamp(40px, 4.7vw, 72px);
  font-weight: 700;
  letter-spacing: -.058em;
  line-height: 1.01;
  text-wrap: balance;
}
.brand-intro-grid {
  display: grid;
  grid-template-columns: minmax(210px, .52fr) minmax(260px, .72fr) minmax(480px, 1.5fr);
  align-items: end;
  gap: clamp(22px, 3vw, 46px);
}
.brand-intro figure { margin: 0; overflow: hidden; border: 1px solid var(--marketing-line); border-radius: 14px; background: #f5f7f6; }
.brand-intro figure img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; transition: transform 900ms var(--marketing-ease); }
.brand-intro figure:hover img { transform: scale(1.018); }
.brand-intro-small { aspect-ratio: 3 / 4; }
.brand-intro-large { aspect-ratio: 16 / 10; }
.brand-intro-copy { align-self: center; padding: 0 clamp(0px, 1vw, 14px); }
.brand-intro-copy > p { margin: 0; color: #4e5e66; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.7; }
.brand-text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--marketing-ink); font-size: 12px; font-weight: 680; text-decoration: none; }
.brand-text-link i { transition: transform 260ms var(--marketing-ease); }
.brand-text-link:hover i { transform: translateX(4px); }
.brand-intro-copy ul { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--marketing-line); }
.brand-intro-copy li { padding: 12px 0; border-bottom: 1px solid var(--marketing-line); color: #66747b; font-size: 10px; font-weight: 610; }

/* ---------- Pillars ---------- */
.brand-pillars {
  padding: clamp(96px, 10vw, 156px) var(--marketing-gutter);
  background: #fff;
}
.brand-pillars > * {
  width: min(var(--marketing-width), 100%);
  margin-inline: auto;
}
.brand-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.brand-pillar {
  padding: 24px 24px 26px;
  border: 1px solid var(--marketing-line);
  border-radius: 18px;
  background: #f8faf9;
  box-shadow: 0 10px 26px rgba(16,33,45,.04);
}
.brand-pillar span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(15,142,140,.1);
  color: var(--marketing-accent-dark);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 700;
}
.brand-pillar h3 {
  margin: 0;
  color: var(--marketing-ink);
  font-size: clamp(21px, 1.9vw, 28px);
  font-weight: 675;
  letter-spacing: -.035em;
}
.brand-pillar p {
  margin: 10px 0 0;
  color: #627077;
  font-size: 12px;
  line-height: 1.65;
}

/* ---------- Workflow ---------- */
.brand-workflow {
  padding: clamp(100px, 11vw, 170px) var(--marketing-gutter);
  background:
    radial-gradient(circle at 12% 20%, rgba(42,176,168,.14), transparent 28rem),
    #10232f;
  color: #fff;
}
.brand-workflow .brand-editorial-heading,
.brand-workflow-grid { width: min(var(--marketing-width), 100%); margin-inline: auto; }
.brand-editorial-heading-light h2 { color: #f7faf9; }
.brand-editorial-heading-light .brand-section-label { color: rgba(237,247,244,.58); }
.brand-editorial-heading-light .brand-section-label span { background: #fff; color: #10232f; }
.brand-editorial-heading-light .brand-section-label strong { color: rgba(237,247,244,.62); }
.brand-workflow-grid { display: grid; grid-template-columns: minmax(480px, 1.12fr) minmax(370px, .78fr); gap: clamp(44px, 7vw, 110px); align-items: start; }
.brand-workflow-media { position: sticky; top: 105px; margin: 0; }
.brand-product-window { position: relative; padding: 7px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.13); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.brand-window-bar-light { grid-template-columns: auto 1fr auto; background: #fff; }
.brand-window-mark { width: 26px; height: 26px; display: grid; place-items: center; }
.brand-window-mark img { width: 24px; height: 24px; object-fit: contain; }
.brand-window-bar-light small { color: #263741; font-size: 10px; font-weight: 680; }
.brand-window-bar-light > span:last-child { color: #859196; font-family: "Geist Mono", monospace; font-size: 9px; }
.brand-product-window > img { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: contain; object-position: center; background: #f4f6f5; transition: opacity 260ms var(--marketing-ease), transform 520ms var(--marketing-ease); }
.brand-workflow-media figcaption { margin-top: 15px; color: rgba(236,247,244,.52); font-size: 10px; }
.brand-workflow-steps { border-top: 1px solid rgba(255,255,255,.14); }
.brand-workflow-step {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(236,247,244,.48);
  cursor: pointer;
  transition: color 220ms var(--marketing-ease), padding-left 320ms var(--marketing-ease);
}
.brand-workflow-step > span { padding-top: 5px; font-family: "Geist Mono", monospace; font-size: 9px; }
.brand-workflow-step h3 { margin: 0; color: currentColor; font-size: clamp(22px, 2.2vw, 34px); font-weight: 650; letter-spacing: -.04em; }
.brand-workflow-step p { max-width: 55ch; margin: 8px 0 0; color: rgba(236,247,244,.48); font-size: 12px; line-height: 1.6; }
.brand-workflow-step:hover,
.brand-workflow-step.is-active { padding-left: 12px; color: #fff; }
.brand-workflow-step.is-active p { color: rgba(236,247,244,.72); }

/* ---------- Cases, outcome and pricing ---------- */
.brand-cases { background: #f4f6f5; }
.brand-case-grid { display: grid; grid-template-columns: minmax(0, 1.36fr) minmax(330px, .64fr); gap: 22px; align-items: start; }
.brand-case { min-width: 0; }
.brand-case figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--marketing-line);
  border-radius: 14px;
  background: #fff;
}
.brand-case-wide figure { aspect-ratio: 16 / 10; }
.brand-case figure img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; transition: transform 800ms var(--marketing-ease); }
.brand-case:hover figure img { transform: scale(1.018); }
.brand-case > div { padding: 20px 2px 0; }
.brand-case > div p { margin: 0 0 8px; color: var(--marketing-accent-dark); font-size: 9px; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.brand-case h3 { max-width: 720px; margin: 0; color: var(--marketing-ink); font-size: clamp(24px, 2.4vw, 38px); font-weight: 680; letter-spacing: -.04em; line-height: 1.08; }
.brand-case > div span { display: block; max-width: 58ch; margin-top: 10px; color: #65737a; font-size: 11px; line-height: 1.55; }

.brand-outcome {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  padding: clamp(100px, 11vw, 166px) var(--marketing-gutter);
  background: #fff;
}
.brand-outcome > * { min-width: 0; }
.brand-outcome-copy { justify-self: end; max-width: 620px; }
.brand-outcome h2 { margin: 0; color: var(--marketing-ink); font-size: clamp(42px, 4.5vw, 68px); font-weight: 700; letter-spacing: -.058em; line-height: 1; }
.brand-outcome-copy > p:not(.brand-kicker) { max-width: 54ch; margin: 24px 0 0; color: #5d6c73; font-size: 15px; line-height: 1.7; }
.brand-outcome dl { display: grid; margin: 34px 0 0; border-top: 1px solid var(--marketing-line); }
.brand-outcome dl div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--marketing-line); }
.brand-outcome dt { color: #293a44; font-size: 10px; font-weight: 680; }
.brand-outcome dd { margin: 0; color: #6b777d; font-size: 10px; }
.brand-outcome figure { margin: 0; overflow: hidden; border: 1px solid var(--marketing-line); border-radius: 14px; background: #f5f7f6; }
.brand-outcome figure img { width: 100%; height: auto; aspect-ratio: 16 / 10; display: block; object-fit: contain; object-position: center; }

.brand-pricing-preview { background: #eef1ef; }
.brand-pricing-preview > header { display: grid; grid-template-columns: minmax(360px, .8fr) minmax(320px, .6fr); gap: 80px; align-items: end; }
.brand-pricing-preview h2 { margin: 0; color: var(--marketing-ink); font-size: clamp(44px, 4.7vw, 72px); font-weight: 700; letter-spacing: -.06em; line-height: .99; }
.brand-pricing-preview header > p:last-child { max-width: 54ch; margin: 0; color: #5f6e75; font-size: 14px; line-height: 1.65; }
.brand-pricing-preview-rows { margin-top: 58px; border-top: 1px solid var(--marketing-line); }
.brand-pricing-preview-rows a {
  display: grid;
  grid-template-columns: minmax(210px, .65fr) minmax(190px, .45fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--marketing-line);
  color: inherit;
  text-decoration: none;
  transition: padding-inline 280ms var(--marketing-ease), background-color 200ms var(--marketing-ease);
}
.brand-pricing-preview-rows a:hover { padding-inline: 14px; background: rgba(255,255,255,.48); }
.brand-pricing-preview-rows span { color: #2f414b; font-size: 15px; font-weight: 660; }
.brand-pricing-preview-rows strong { color: var(--marketing-ink); font-family: "Geist Mono", "Cascadia Mono", monospace; font-size: 24px; font-weight: 650; letter-spacing: -.04em; }
.brand-pricing-preview-rows strong small { color: #778389; font-size: 9px; font-weight: 560; }
.brand-pricing-preview-rows em { color: #6b787e; font-size: 11px; font-style: normal; }

.brand-final {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(330px, .55fr);
  align-items: end;
  gap: 80px;
  padding: clamp(90px, 9vw, 140px) var(--marketing-gutter);
  background:
    radial-gradient(circle at 88% 14%, rgba(64,201,191,.2), transparent 30rem),
    #10232f;
  color: #fff;
}
.brand-final > * { width: 100%; max-width: 880px; }
.brand-final h2 { margin: 0; color: #fff; font-size: clamp(48px, 5.8vw, 86px); font-weight: 700; letter-spacing: -.065em; line-height: .95; }
.brand-final-actions { justify-self: end; max-width: 500px; }
.brand-final-actions p { margin: 0 0 26px; color: rgba(236,247,244,.65); font-size: 14px; line-height: 1.65; }
.brand-button-light { min-height: 48px; padding-inline: 20px; background: #fff; color: #10232f; }
.brand-button-light:hover { background: #e8f4f1; }

/* ---------- Footer ---------- */
.brand-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1.3fr) minmax(150px, .35fr) minmax(150px, .35fr);
  gap: 50px;
  padding: 64px var(--marketing-gutter) 28px;
  border-top: 1px solid rgba(16,33,45,.1);
  background: #fff;
}
.brand-footer-intro { max-width: 500px; }
.brand-footer-intro p { max-width: 48ch; margin: 22px 0 0; color: #647279; font-size: 11px; line-height: 1.6; }
.brand-footer nav { display: grid; align-content: start; gap: 9px; }
.brand-footer nav strong { margin-bottom: 6px; color: #273942; font-size: 10px; font-weight: 700; }
.brand-footer nav a { color: #6a777d; font-size: 10px; text-decoration: none; }
.brand-footer nav a:hover { color: var(--marketing-accent-dark); }
.brand-footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--marketing-line); color: #8b9599; font-size: 9px; }
.brand-footer-meta small { max-width: 70ch; text-align: right; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .brand-header { grid-template-columns: auto 1fr auto; }
  .brand-availability { display: none; }
  .brand-hero-grid { grid-template-columns: minmax(320px,.72fr) minmax(500px,1.15fr); gap: 40px; }
  .brand-hero h1 { font-size: clamp(48px, 5.6vw, 68px); }
  .brand-intro-grid { grid-template-columns: minmax(180px,.45fr) minmax(240px,.65fr) minmax(400px,1.25fr); }
}

@media (max-width: 960px) {
  .brand-header { grid-template-columns: 1fr auto; border-radius: 18px; }
  .brand-nav,
  .brand-header-actions { display: none; }
  .brand-mobile-menu { display: block; }
  .brand-mobile-menu > summary { min-height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 0 14px; border-radius: 999px; background: var(--marketing-dark); color: #fff; font-size: 11px; font-weight: 650; list-style: none; cursor: pointer; }
  .brand-mobile-menu > summary::-webkit-details-marker { display: none; }
  .brand-mobile-backdrop { position: fixed; inset: 0; z-index: 60; background: rgba(7,19,26,.56); }
  .brand-mobile-panel { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 61; padding: 22px; border-radius: 18px; background: #fff; box-shadow: 0 28px 80px rgba(7,19,26,.24); animation: mobilePanelIn 420ms var(--marketing-ease) both; }
  @keyframes mobilePanelIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  .brand-mobile-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--marketing-line); color: #7b878c; font-size: 9px; }
  .brand-mobile-panel nav { display: grid; padding: 18px 0; }
  .brand-mobile-panel nav a { padding: 10px 0; color: var(--marketing-ink); font-size: 26px; font-weight: 650; letter-spacing: -.04em; text-decoration: none; }
  .brand-mobile-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--marketing-line); }
  .brand-mobile-actions > a:first-child { color: var(--marketing-ink); font-size: 12px; font-weight: 650; text-decoration: none; }
  .brand-hero { min-height: auto; padding-top: 118px; }
  .brand-hero-grid { grid-template-columns: 1fr; align-items: start; }
  .brand-hero-copy { padding-bottom: 0; }
  .brand-hero h1 { max-width: 850px; font-size: clamp(52px, 9vw, 78px); }
  .brand-hero-theatre { transform: none; }
  .brand-intro-grid { grid-template-columns: .72fr 1.28fr; }
  .brand-pillars-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .brand-intro-copy { grid-column: 1 / -1; grid-row: 1; max-width: 720px; padding: 0 0 20px; }
  .brand-intro-small { grid-column: 1; }
  .brand-intro-large { grid-column: 2; }
  .brand-workflow-grid { grid-template-columns: 1fr; }
  .brand-workflow-media { position: relative; top: auto; }
  .brand-case-grid { grid-template-columns: 1fr; }
  .brand-outcome { grid-template-columns: 1fr; }
  .brand-outcome-copy { justify-self: start; }
  .brand-pricing-preview > header { grid-template-columns: 1fr; gap: 24px; }
  .brand-final { grid-template-columns: 1fr; min-height: 560px; }
  .brand-final-actions { justify-self: start; }
}

@media (max-width: 720px) {
  .brand-header-shell { padding: 8px 8px 0; }
  .brand-header { min-height: 56px; padding-left: 10px; border-radius: 14px; }
  .brand-header .daryng-lockup-copy small { display: none; }
  .brand-hero { padding: 102px 16px 24px; }
  .brand-hero h1 { font-size: clamp(43px, 13vw, 62px); line-height: .98; }
  .brand-hero-lead { margin-top: 20px; font-size: 15px; }
  .brand-hero-actions { align-items: stretch; flex-direction: column; }
  .brand-hero-actions .brand-button { width: 100%; }
  .brand-hero-proof { grid-template-columns: 1fr; margin-top: 32px; }
  .brand-hero-proof > div { padding: 13px 0; border-bottom: 1px solid rgba(16,33,45,.11); }
  .brand-hero-proof > div + div { padding-left: 0; border-left: 0; }
  .brand-hero-window { padding: 4px; border-radius: 14px; }
  .brand-window-bar { min-height: 40px; grid-template-columns: 1fr auto; padding: 0 10px; }
  .brand-window-status { display: none; }
  .brand-hero-reel-controls { padding: 4px; }
  .brand-hero-reel-controls button { min-height: 38px; font-size: 9px; }
  .brand-hero-theatre figcaption { justify-content: flex-start; flex-wrap: wrap; gap: 10px 18px; }
  .brand-sector-strip { margin-top: 18px; }
  .brand-intro,
  .brand-cases,
  .brand-pricing-preview,
  .brand-workflow,
  .brand-outcome,
  .brand-final { padding-inline: 16px; }
  .brand-editorial-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
  .brand-editorial-heading h2 { font-size: clamp(38px, 11vw, 54px); }
  .brand-intro-grid { grid-template-columns: 1fr; }
  .brand-pillars-grid { grid-template-columns: 1fr; }
  .brand-intro-copy,
  .brand-intro-small,
  .brand-intro-large { grid-column: 1; }
  .brand-intro-small { aspect-ratio: 16 / 10; }
  .brand-workflow-step { grid-template-columns: 30px 1fr; gap: 12px; }
  .brand-outcome h2,
  .brand-pricing-preview h2 { font-size: clamp(40px, 12vw, 56px); }
  .brand-pricing-preview-rows a { grid-template-columns: 1fr auto; gap: 8px 16px; min-height: 84px; }
  .brand-pricing-preview-rows em { grid-column: 1 / -1; }
  .brand-final h2 { font-size: clamp(44px, 13vw, 64px); }
  .brand-footer { grid-template-columns: 1fr 1fr; padding-inline: 20px; }
  .brand-footer-intro { grid-column: 1 / -1; }
  .brand-footer-meta { align-items: flex-start; flex-direction: column; }
  .brand-footer-meta small { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero-ambient span { animation: none !important; }
  .brand-hero-scene,
  .brand-case figure img,
  .brand-intro figure img,
  .brand-button,
  .brand-header { transition: none !important; }
}

/* ========================================================================== 
   Pricing page — v4.28.1 repair and professional layout system
   ========================================================================== */
.pricing-page .marketing-main { background: #eef1ef; }
.pricing-page .brand-header-shell { z-index: 80; }

.pricing-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: clamp(126px, 15vh, 172px) var(--marketing-gutter) clamp(74px, 8vw, 118px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 14%, rgba(15,142,140,.13), transparent 34rem),
    radial-gradient(circle at 6% 92%, rgba(255,255,255,.95), transparent 35rem),
    #eef1ef;
}
.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(16,33,45,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,33,45,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
}
.pricing-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--marketing-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .72fr);
  align-items: end;
  gap: clamp(58px, 7vw, 116px);
}
.pricing-hero-copy { min-width: 0; }
.pricing-hero-copy h1 {
  max-width: 850px;
  margin: 0;
  color: var(--marketing-ink);
  font-size: clamp(58px, 6.2vw, 94px);
  font-weight: 720;
  letter-spacing: -.068em;
  line-height: .94;
  text-wrap: balance;
}
.pricing-hero-copy > p:not(.brand-kicker) {
  max-width: 68ch;
  margin: 30px 0 0;
  color: #526168;
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.68;
}
.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
}
.brand-button-secondary {
  min-height: 46px;
  padding-inline: 18px;
  border-color: rgba(16,33,45,.16);
  background: #fff;
  color: var(--marketing-ink);
  box-shadow: 0 8px 22px rgba(16,33,45,.055);
}
.brand-button-secondary:hover {
  border-color: rgba(16,33,45,.28);
  background: #f8faf9;
  box-shadow: 0 12px 26px rgba(16,33,45,.085);
}
.brand-button-dark-quiet {
  min-height: 46px;
  padding-inline: 17px;
  border-color: transparent;
  background: transparent;
  color: #2d3d46;
}
.brand-button-dark-quiet:hover { background: rgba(255,255,255,.58); }
.pricing-hero-actions .brand-button-primary { min-height: 48px; padding-inline: 19px; }
.pricing-proof {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid rgba(16,33,45,.14);
  list-style: none;
}
.pricing-proof li {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0,1fr);
  gap: 11px;
  align-items: start;
  padding: 18px 20px 0 0;
}
.pricing-proof li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(16,33,45,.12);
}
.pricing-proof i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(15,142,140,.1);
  color: var(--marketing-accent-dark);
  font-size: 16px;
}
.pricing-proof span { min-width: 0; display: grid; gap: 4px; }
.pricing-proof strong { color: #2e4049; font-size: 11px; font-weight: 700; line-height: 1.25; }
.pricing-proof small { color: #768187; font-size: 9.5px; line-height: 1.45; }

.pricing-principles {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.2vw, 46px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(61,193,184,.2), transparent 20rem),
    #10232f;
  color: #fff;
  box-shadow: 0 34px 78px rgba(16,35,47,.19);
}
.pricing-principles::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 21px;
  pointer-events: none;
}
.pricing-principles > p {
  position: relative;
  z-index: 1;
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 680;
  letter-spacing: -.05em;
  line-height: 1.02;
}
.pricing-principles ol {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.pricing-principles li {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  gap: 15px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.11);
}
.pricing-principles li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.085);
  color: #7bd5ce;
  font-size: 17px;
}
.pricing-principles li div { min-width: 0; display: grid; gap: 6px; }
.pricing-principles strong { color: #fff; font-size: 12px; font-weight: 670; }
.pricing-principles small { color: rgba(226,240,238,.6); font-size: 10px; line-height: 1.55; }

.pricing-plans {
  padding: clamp(94px, 9vw, 144px) var(--marketing-gutter);
  background: #fff;
}
.pricing-plans > * {
  width: min(var(--marketing-width), 100%);
  margin-inline: auto;
}
.pricing-plans-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .54fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
}
.pricing-plans-header h2 {
  max-width: 950px;
  margin: 0;
  color: var(--marketing-ink);
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 700;
  letter-spacing: -.062em;
  line-height: .98;
  text-wrap: balance;
}
.pricing-plans-header > p {
  max-width: 58ch;
  margin: 0;
  color: #617077;
  font-size: 14px;
  line-height: 1.68;
}
.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 64px;
}
.pricing-card {
  grid-column: span 5;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 38px);
  border: 1px solid rgba(16,33,45,.12);
  border-radius: 22px;
  background: #f6f8f7;
  color: var(--marketing-ink);
  box-shadow: 0 18px 48px rgba(16,33,45,.045);
}
.pricing-card:nth-child(2),
.pricing-card:nth-child(3) { grid-column: span 7; }
.pricing-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16,33,45,.12);
}
.pricing-card header div { min-width: 0; }
.pricing-card header p {
  margin: 0 0 8px;
  color: #69777e;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .04em;
}
.pricing-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}
.pricing-card header > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,33,45,.12);
  border-radius: 50%;
  color: #6e7b81;
  font-family: "Geist Mono", "Cascadia Mono", monospace;
  font-size: 9px;
}
.pricing-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-top: 30px;
}
.pricing-card-price strong {
  color: inherit;
  font-family: "Geist Mono", "Cascadia Mono", monospace;
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: 1;
}
.pricing-card-price > span { color: #68757b; font-size: 11px; font-weight: 600; }
.pricing-card-price small {
  flex-basis: 100%;
  margin-top: 2px;
  color: #8a9498;
  font-size: 9.5px;
}
.pricing-card-summary {
  max-width: 60ch;
  margin: 28px 0 0;
  color: #56656c;
  font-size: 13px;
  line-height: 1.65;
}
.pricing-card > ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 25px 0 0;
  border-top: 1px solid rgba(16,33,45,.1);
  list-style: none;
}
.pricing-card > ul li {
  position: relative;
  padding-left: 22px;
  color: #35464f;
  font-size: 11px;
  line-height: 1.48;
}
.pricing-card > ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 7px;
  height: 7px;
  border: 2px solid var(--marketing-accent);
  border-radius: 50%;
}
.pricing-card > .brand-button { width: 100%; margin-top: auto; }
.pricing-card-featured {
  background:
    radial-gradient(circle at 95% 4%, rgba(72,196,187,.22), transparent 24rem),
    #10232f;
  color: #fff;
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 30px 70px rgba(16,35,47,.16);
}
.pricing-card-featured header,
.pricing-card-featured > ul { border-color: rgba(255,255,255,.11); }
.pricing-card-featured header p,
.pricing-card-featured .pricing-card-price > span,
.pricing-card-featured .pricing-card-price small,
.pricing-card-featured .pricing-card-summary,
.pricing-card-featured > ul li { color: rgba(230,241,239,.68); }
.pricing-card-featured header > span { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.62); }
.pricing-card-featured > ul li::before { border-color: #6ed4cc; }
.pricing-card-enterprise { background: #eef3f1; }
.pricing-branch-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -10px 0 26px;
  padding: 15px 16px;
  border: 1px solid rgba(15,142,140,.2);
  border-radius: 12px;
  background: rgba(15,142,140,.075);
}
.pricing-branch-addon span { display: inline-flex; align-items: center; gap: 8px; color: #34525a; font-size: 10px; font-weight: 650; }
.pricing-branch-addon strong { color: var(--marketing-accent-dark); font-family: "Geist Mono", monospace; font-size: 17px; }
.pricing-branch-addon strong small { color: #748287; font-size: 8px; }
.pricing-assurance {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 24px;
  border-top: 1px solid var(--marketing-line);
  border-bottom: 1px solid var(--marketing-line);
}
.pricing-assurance > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(15,142,140,.1);
  color: var(--marketing-accent-dark);
  font-size: 21px;
}
.pricing-assurance p { margin: 0; color: #647179; font-size: 11px; line-height: 1.62; }
.pricing-assurance strong { color: #233640; }

.pricing-branch-section,
.pricing-boundary,
.pricing-final {
  padding-inline: var(--marketing-gutter);
}
.pricing-branch-section {
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(520px,1.12fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
  padding-top: clamp(94px, 9vw, 146px);
  padding-bottom: clamp(94px, 9vw, 146px);
  background: #eef1ef;
}
.pricing-branch-section > * { width: 100%; max-width: 760px; }
.pricing-branch-heading h2,
.pricing-boundary h2,
.pricing-final h2 {
  margin: 0;
  color: var(--marketing-ink);
  font-size: clamp(43px, 4.8vw, 72px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .98;
}
.pricing-branch-heading > p:not(.brand-kicker) {
  max-width: 52ch;
  margin: 26px 0 0;
  color: #627078;
  font-size: 14px;
  line-height: 1.68;
}
.pricing-branch-calculation {
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(16,33,45,.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(16,33,45,.055);
}
.pricing-branch-calculation > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 22px;
  align-items: end;
  padding: 18px 0;
  border-bottom: 1px solid var(--marketing-line);
}
.pricing-branch-calculation > div:first-child { padding-top: 0; }
.pricing-branch-calculation > div span { color: #506169; font-size: 11px; font-weight: 650; }
.pricing-branch-calculation > div strong { grid-row: 1 / span 2; grid-column: 2; color: var(--marketing-ink); font-family: "Geist Mono", monospace; font-size: 30px; font-weight: 650; letter-spacing: -.05em; }
.pricing-branch-calculation > div small { color: #889296; font-size: 9px; }
.pricing-branch-calculation > b { display: block; padding: 13px 0 0; color: var(--marketing-accent); font-size: 22px; font-weight: 400; }
.pricing-branch-calculation table { width: 100%; margin-top: 30px; border-collapse: collapse; }
.pricing-branch-calculation th,
.pricing-branch-calculation td { padding: 12px 4px; border-bottom: 1px solid var(--marketing-line); text-align: left; font-size: 10px; }
.pricing-branch-calculation th { color: #899398; font-weight: 600; }
.pricing-branch-calculation td { color: #2d414a; }
.pricing-branch-calculation th:last-child,
.pricing-branch-calculation td:last-child { text-align: right; font-family: "Geist Mono", monospace; }
.pricing-branch-calculation > p { margin: 18px 0 0; color: #788489; font-size: 9px; }

.pricing-boundary {
  padding-top: clamp(94px, 9vw, 140px);
  padding-bottom: clamp(94px, 9vw, 140px);
  background: #fff;
}
.pricing-boundary > * { width: min(var(--marketing-width), 100%); margin-inline: auto; }
.pricing-boundary > header {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  max-width: 1050px;
}
.pricing-boundary-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--marketing-line);
  border-bottom: 1px solid var(--marketing-line);
}
.pricing-boundary-grid article { min-width: 0; padding: 32px 30px 34px 0; }
.pricing-boundary-grid article + article { padding-left: 30px; border-left: 1px solid var(--marketing-line); }
.pricing-boundary-grid span { color: var(--marketing-accent-dark); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.pricing-boundary-grid h3 { margin: 14px 0 0; color: var(--marketing-ink); font-size: 22px; font-weight: 680; letter-spacing: -.035em; }
.pricing-boundary-grid p { margin: 18px 0 0; color: #68767c; font-size: 11px; line-height: 1.65; }

.pricing-final {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(330px,.52fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: end;
  padding-top: clamp(98px, 10vw, 160px);
  padding-bottom: clamp(98px, 10vw, 160px);
  background:
    radial-gradient(circle at 90% 10%, rgba(70,200,190,.2), transparent 30rem),
    #10232f;
  color: #fff;
}
.pricing-final > * { width: 100%; max-width: 860px; }
.pricing-final h2 { color: #fff; }
.pricing-final > div:last-child { justify-self: end; max-width: 470px; }
.pricing-final > div:last-child p { margin: 0 0 28px; color: rgba(229,242,239,.65); font-size: 14px; line-height: 1.7; }

@media (max-width: 1100px) {
  .pricing-hero-inner { grid-template-columns: minmax(0,1fr) minmax(360px,.74fr); gap: 46px; }
  .pricing-card { min-height: 540px; }
  .pricing-branch-section { grid-template-columns: minmax(0,.8fr) minmax(450px,1fr); gap: 52px; }
}

@media (max-width: 960px) {
  .pricing-hero { min-height: auto; padding-top: 124px; }
  .pricing-hero-inner { grid-template-columns: 1fr; align-items: start; }
  .pricing-hero-copy h1 { max-width: 900px; font-size: clamp(56px, 10vw, 82px); }
  .pricing-principles { max-width: 760px; }
  .pricing-plans-header { grid-template-columns: 1fr; gap: 24px; }
  .pricing-card { grid-column: span 6 !important; }
  .pricing-branch-section { grid-template-columns: 1fr; }
  .pricing-branch-section > * { max-width: none; }
  .pricing-boundary-grid { grid-template-columns: 1fr; }
  .pricing-boundary-grid article { padding: 26px 0; }
  .pricing-boundary-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--marketing-line); }
  .pricing-final { grid-template-columns: 1fr; min-height: 520px; }
  .pricing-final > div:last-child { justify-self: start; }
}

@media (max-width: 720px) {
  .pricing-hero,
  .pricing-plans,
  .pricing-branch-section,
  .pricing-boundary,
  .pricing-final { padding-left: 16px; padding-right: 16px; }
  .pricing-hero { padding-top: 106px; padding-bottom: 66px; }
  .pricing-hero-copy h1 { font-size: clamp(46px, 14vw, 66px); line-height: .96; }
  .pricing-hero-copy > p:not(.brand-kicker) { margin-top: 22px; font-size: 14px; }
  .pricing-hero-actions { align-items: stretch; flex-direction: column; margin-top: 27px; }
  .pricing-hero-actions .brand-button { width: 100%; }
  .pricing-proof { grid-template-columns: 1fr; margin-top: 34px; }
  .pricing-proof li { padding: 14px 0; border-bottom: 1px solid rgba(16,33,45,.11); }
  .pricing-proof li + li { padding-left: 0; border-left: 0; }
  .pricing-principles { padding: 25px; border-radius: 20px; }
  .pricing-principles > p { font-size: 31px; }
  .pricing-plans { padding-top: 78px; padding-bottom: 78px; }
  .pricing-plans-header h2,
  .pricing-branch-heading h2,
  .pricing-boundary h2,
  .pricing-final h2 { font-size: clamp(40px, 12vw, 56px); }
  .pricing-card-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 42px; }
  .pricing-card { grid-column: 1 !important; min-height: auto; padding: 25px; border-radius: 18px; }
  .pricing-card-price strong { font-size: 38px; }
  .pricing-card > .brand-button { margin-top: 6px; }
  .pricing-assurance { grid-template-columns: 1fr; padding-inline: 0; }
  .pricing-branch-section { padding-top: 78px; padding-bottom: 78px; }
  .pricing-branch-calculation { padding: 24px; border-radius: 18px; }
  .pricing-boundary { padding-top: 78px; padding-bottom: 78px; }
  .pricing-boundary-grid { margin-top: 42px; }
  .pricing-final { min-height: 520px; padding-top: 86px; padding-bottom: 86px; }
}

/* ---------- v4.29.0 showcase refresh ---------- */
.brand-hero-window,
.brand-product-window,
.brand-case figure,
.brand-intro-small,
.brand-intro-large,
.brand-outcome figure {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}
.brand-hero-scene,
.brand-intro-grid img,
.brand-workflow-media img,
.brand-case img,
.brand-outcome figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.brand-intro-small,
.brand-intro-large,
.brand-case figure,
.brand-outcome figure {
  border-radius: 24px;
  overflow: hidden;
}
.brand-hero-copy,
.brand-intro-copy,
.brand-outcome-copy {
  max-width: 62ch;
}
.brand-hero-proof div {
  min-height: 110px;
}
.brand-workflow-step p,
.brand-case span,
.brand-intro-copy p,
.brand-outcome-copy p {
  text-wrap: pretty;
}
