/* ==========================================================================
   Dynasort v2 design system (July 2026)
   Shared by page-home-v2.php and the v2 interior templates via
   template-parts/v2/shell-top.php. Fonts: Schibsted Grotesk (headings),
   Instrument Sans (copy). Corner signature: soft radius everywhere except a
   sharp bottom-left corner ("snapped to the grid").
   ========================================================================== */

:root {
  --v2-ink: #14122b;
  --v2-ink-soft: #4b4868;
  --v2-indigo: #4F46E5;
  --v2-indigo-deep: #2E2A9D;
  --v2-violet: #7C3AED;
  --v2-paper: #ffffff;
  --v2-mist: #f6f5ff;
  --v2-line: #e6e4f2;
  --v2-good: #0F6E56;
  --v2-r-card: 18px 18px 18px 3px;
  --v2-r-ui: 10px 10px 10px 2px;
  --v2-font-head: 'Schibsted Grotesk', 'Instrument Sans', Arial, sans-serif;
  --v2-font-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
}
body.v2-body { margin: 0; color: var(--v2-ink); background: var(--v2-paper); font-family: var(--v2-font-body); -webkit-font-smoothing: antialiased; }
/* Theme sets overflow-x:hidden on body and #page, which breaks position:sticky.
   clip prevents horizontal scroll without creating a scroll container. */
body.v2-body, body.v2-body #page { overflow-x: clip; }
.v2-body h1, .v2-body h2, .v2-body h3 { font-family: var(--v2-font-head); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; }
.v2-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.v2-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--v2-indigo); margin-bottom: 12px; }
.v2-sub { color: var(--v2-ink-soft); font-size: 19px; line-height: 1.6; }
.v2-btn { display: inline-block; padding: 14px 26px; border-radius: var(--v2-r-ui); font-family: var(--v2-font-body); font-weight: 600; font-size: 16px; text-decoration: none; transition: transform .15s ease, background .15s ease, border-color .15s ease; }
.v2-btn:hover { transform: translateY(-1px); }
.v2-btn--primary { background: var(--v2-indigo); color: #fff; }
.v2-btn--primary:hover { background: var(--v2-indigo-deep); color: #fff; }
.v2-btn--ghost { border: 1.5px solid rgba(255,255,255,.55); color: #fff; }
.v2-btn--ghost:hover { border-color: #fff; color: #fff; }
.v2-btn--outline { border: 1.5px solid var(--v2-indigo); color: var(--v2-indigo); }
.v2-btn--outline:hover { background: var(--v2-mist); color: var(--v2-indigo-deep); }

/* Nav */
.v2-nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--v2-line); }
.v2-nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.v2-nav-inner img { height: 40px; width: auto; }
.v2-nav-links { display: flex; gap: 22px; margin-left: 8px; }
.v2-nav-links a { color: var(--v2-ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
.v2-nav-links a:hover { color: var(--v2-indigo); }
.v2-nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.v2-nav-cta .v2-btn { padding: 9px 18px; font-size: 14px; }
@media (max-width: 900px) { .v2-nav-links { display: none; } }
.v2-dd { position: relative; }
.v2-dd > a::after { content: "\25BE"; font-size: 10px; margin-left: 5px; vertical-align: 1px; color: currentColor; }
.v2-dd-menu { position: absolute; top: 100%; left: -16px; padding-top: 12px; display: none; z-index: 60; }
.v2-dd:hover .v2-dd-menu, .v2-dd:focus-within .v2-dd-menu { display: block; }
.v2-dd-panel { background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); box-shadow: 0 18px 44px rgba(20,18,43,.13); padding: 10px; min-width: 280px; }
.v2-dd-panel a { display: block; padding: 10px 14px; border-radius: var(--v2-r-ui); text-decoration: none; }
.v2-dd-panel a:hover { background: var(--v2-mist); }
.v2-dd-panel .t { display: block; font-weight: 600; font-size: 15px; color: var(--v2-ink); }
.v2-dd-panel .d { display: block; font-size: 13px; color: var(--v2-ink-soft); margin-top: 1px; }

/* Hero (home) */
.v2-hero { position: relative; overflow: hidden; background: var(--v2-indigo-deep); color: #fff; }
.v2-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.v2-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 90% at 25% 30%, rgba(46,42,157,.15), rgba(20,18,43,.72)); }
.v2-hero-inner { position: relative; z-index: 2; padding: 110px 0 96px; max-width: 780px; }
.v2-hero h1 { font-size: clamp(42px, 6vw, 68px); margin: 0 0 20px; }
.v2-hero .v2-sub { color: rgba(255,255,255,.85); max-width: 620px; }
.v2-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.v2-hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; font-size: 14px; color: rgba(255,255,255,.8); }
.v2-hero-trust img { height: 30px; width: auto; }
.v2-rating { position: relative; display: inline-block; line-height: 1; letter-spacing: 2px; vertical-align: -1px; }
.v2-rating .bg { color: rgba(255,255,255,.32); }
.v2-rating .fg { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; color: #FFC453; }

/* Interior hero */
.v2i-hero { background: var(--v2-mist); padding: 84px 0 76px; }
.v2i-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .v2i-hero-grid { grid-template-columns: 1fr; } }
.v2i-hero h1 { font-size: clamp(36px, 4.6vw, 54px); margin: 0 0 18px; }
.v2i-hero .v2-sub { max-width: 560px; }
.v2i-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.v2i-hero-note { font-size: 14px; color: var(--v2-ink-soft); margin-top: 16px; }
.v2i-panel { background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 22px; }

/* Generic sections */
.v2-section { padding: 84px 0; }
.v2-section--mist { background: var(--v2-mist); }
.v2-section--ink { background: var(--v2-ink); color: #fff; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.5px); background-size: 26px 26px; }
.v2-section--ink .v2-eyebrow { color: #a5b4fc; }
.v2-section h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 14px; }
.v2-section-head { max-width: 660px; margin-bottom: 38px; }
.v2-section--ink .v2-sub { color: rgba(255,255,255,.78); }
.v2-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v2-feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) { .v2-feature-grid, .v2-feature-grid--2 { grid-template-columns: 1fr; } }
.v2-feature { background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 24px; }
.v2-feature h3 { font-size: 18px; margin: 0 0 8px; }
.v2-feature p { color: var(--v2-ink-soft); margin: 0; font-size: 15px; line-height: 1.6; }
.v2-section--ink .v2-feature { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.v2-section--ink .v2-feature h3 { color: #fff; }
.v2-section--ink .v2-feature p { color: rgba(255,255,255,.75); }
.v2-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .v2-paths { grid-template-columns: 1fr; } }
.v2-pill { display: inline-block; padding: 6px 12px; border: 1px solid var(--v2-line); border-radius: 8px 8px 8px 2px; font-size: 13px; font-weight: 600; background: #fff; }
.v2-pill--hot { border-color: var(--v2-indigo); color: var(--v2-indigo); }
.v2-pill--dim { color: #b3b0c9; }

/* Proof band */
.v2-proof { background: var(--v2-paper); padding: 72px 0 56px; border-bottom: 1px solid var(--v2-line); }
.v2-proof h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 8px; }
.v2-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
@media (max-width: 900px) { .v2-tiles { grid-template-columns: repeat(2, 1fr); } }
.v2-tile { background: var(--v2-mist); border-radius: var(--v2-r-card); padding: 22px 20px; }
.v2-tile-label { font-size: 13px; font-weight: 600; color: var(--v2-ink-soft); margin-bottom: 10px; }
.v2-tile-big { font-size: 34px; font-weight: 700; color: var(--v2-indigo-deep); line-height: 1; font-variant-numeric: tabular-nums; }
.v2-tile-vs { font-size: 14px; color: var(--v2-ink-soft); margin-top: 8px; }
.v2-proof-note { font-size: 14px; color: var(--v2-ink-soft); margin-top: 18px; }
.v2-proof-note a { color: var(--v2-indigo); }
.v2-section--ink .v2-tile { background: rgba(255,255,255,.06); }
.v2-section--ink .v2-tile-big { color: #c7d2fe; }
.v2-section--ink .v2-tile-label, .v2-section--ink .v2-tile-vs { color: rgba(255,255,255,.7); }
.v2-logostrip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; margin-top: 44px; }
.v2-logostrip img { height: 26px; width: auto; max-width: 110px; object-fit: contain; }
.v2-logostrip img, .v2-wall img { filter: brightness(0) opacity(.5); transition: filter .25s ease; }
.v2-logostrip img:hover, .v2-wall img:hover { filter: none; }

/* Problem / heat visual */
.v2-problem { background: var(--v2-ink); color: #fff; padding: 88px 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.5px); background-size: 26px 26px; }
.v2-problem .v2-eyebrow { color: #a5b4fc; }
.v2-problem h2 { font-size: clamp(30px, 4vw, 46px); max-width: 640px; margin: 0 0 18px; }
.v2-problem p { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.65; max-width: 560px; }
.v2-problem-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .v2-problem-grid { grid-template-columns: 1fr; } }
.v2-heat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--v2-r-card); padding: 22px; backdrop-filter: blur(2px); }
.v2-heat-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.v2-heat-row { display: flex; align-items: center; gap: 12px; margin: 9px 0; font-size: 13px; color: rgba(255,255,255,.75); }
.v2-heat-pos { width: 62px; flex: none; }
.v2-heat-bar { height: 16px; border-radius: 4px 4px 4px 1px; background: linear-gradient(90deg, #6a5cff, #7C3AED); width: 0; transition: width 1.1s cubic-bezier(.22,1,.36,1); }
.v2-heat-pct { width: 52px; flex: none; text-align: right; font-variant-numeric: tabular-nums; }
.v2-heat-callout { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; color: #c7d2fe; }

/* Surfaces / cards */
.v2-surfaces { padding: 88px 0; background: var(--v2-paper); }
.v2-surfaces h2 { font-size: clamp(30px, 4vw, 44px); max-width: 720px; margin: 0 0 40px; }
.v2-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 800px) { .v2-cards { grid-template-columns: 1fr; } }
.v2-cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .v2-cards--3 { grid-template-columns: 1fr; } }
.v2-card { border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 28px; background: #fff; display: flex; flex-direction: column; gap: 12px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.v2-card:hover { transform: translateY(-3px); border-color: #b9b3f2; box-shadow: 0 14px 34px rgba(46,42,157,.09); }
.v2-card h3 { font-size: 23px; margin: 0; }
.v2-card p { color: var(--v2-ink-soft); margin: 0; line-height: 1.6; }
.v2-card a { color: var(--v2-indigo); font-weight: 600; text-decoration: none; margin-top: auto; }
.v2-card a:hover { text-decoration: underline; }
.v2-card h3 a { color: inherit; }

/* Mini demos */
.v2-demo { border-radius: var(--v2-r-ui); background: var(--v2-mist); padding: 14px; min-height: 96px; }
.v2-demo--paper { background: #fff; }
.v2-demo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.v2-demo-sq { aspect-ratio: 1; border-radius: 6px 6px 6px 1px; background: #cfcbf4; position: relative; }
.v2-demo-sq.hot { background: var(--v2-indigo); }
.v2-demo-sq.dead { background: #dedce9; }
.v2-demo-sq.dead::after { content: ""; position: absolute; inset: 40% 20%; border-top: 2px solid #b3b0c9; transform: rotate(-8deg); }
.v2-demo-swatches { display: flex; gap: 10px; align-items: center; }
.v2-demo-swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--v2-line); }
.v2-demo-search { background: #fff; border: 1px solid var(--v2-line); border-radius: 6px 6px 6px 1px; padding: 8px 12px; font-size: 13px; color: var(--v2-ink-soft); margin-bottom: 10px; white-space: nowrap; overflow: hidden; }
.v2-demo-search .q::after { content: ""; display: inline-block; width: 1px; height: 12px; background: var(--v2-ink); margin-left: 2px; animation: v2blink 1s steps(1) infinite; vertical-align: -2px; }
@keyframes v2blink { 50% { opacity: 0; } }
.v2-demo-line { display: flex; align-items: center; gap: 8px; margin: 6px 0; }
.v2-demo-line .th { width: 22px; height: 22px; border-radius: 5px 5px 5px 1px; background: #cfcbf4; flex: none; }
.v2-demo-line .tx { height: 8px; border-radius: 4px; background: #dedce9; flex: 1; }
.v2-demo-line.hot .th { background: var(--v2-indigo); }
.v2-demo-line.hot .tx { background: #b9b3f2; }

/* How it works */
.v2-how { background: var(--v2-mist); padding: 88px 0; }
.v2-how h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 40px; }
.v2-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .v2-steps { grid-template-columns: 1fr; } }
.v2-step { background: #fff; border-radius: var(--v2-r-card); border: 1px solid var(--v2-line); padding: 26px; }
.v2-step-num { width: 34px; height: 34px; border-radius: 10px 10px 10px 2px; background: var(--v2-indigo); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-family: var(--v2-font-body); }
.v2-step h3 { font-size: 20px; margin: 0 0 8px; }
.v2-step p { color: var(--v2-ink-soft); margin: 0; line-height: 1.6; font-size: 15.5px; }
.v2-pen { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: 30px; background: #fff; border: 1px solid var(--v2-line); border-left: 3px solid var(--v2-indigo); border-radius: 0 18px 18px 0; padding: 20px 26px; }
.v2-pen strong { font-size: 16px; }
.v2-pen span { color: var(--v2-ink-soft); font-size: 15px; }
.v2-derisk { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 26px; color: var(--v2-ink-soft); font-size: 14.5px; font-weight: 500; padding-left: 0; }
.v2-derisk li { list-style: none; }
.v2-derisk li::before { content: "\2713\0020"; color: var(--v2-good); font-weight: 700; }

/* Human / quotes */
.v2-human { padding: 88px 0; }
.v2-human-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .v2-human-grid { grid-template-columns: 1fr; } }
.v2-human h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 16px; }
.v2-portrait { border-radius: var(--v2-r-card); background: linear-gradient(160deg, #ece9ff, #f8f7ff); border: 1px dashed #c4bff0; min-height: 380px; display: flex; align-items: center; justify-content: center; color: var(--v2-ink-soft); font-size: 14px; text-align: center; padding: 24px; }
.v2-quote { border-left: 3px solid var(--v2-indigo); padding: 4px 0 4px 18px; margin: 22px 0 0; }
.v2-quote p { font-size: 16.5px; line-height: 1.6; margin: 0 0 6px; color: var(--v2-ink); }
.v2-quote cite { font-style: normal; font-size: 14px; color: var(--v2-ink-soft); }
.v2-section--ink .v2-quote p { color: #e0e7ff; }
.v2-section--ink .v2-quote cite { color: rgba(255,255,255,.7); }

/* Wall of love */
.v2-love { background: var(--v2-mist); padding: 88px 0; }
.v2-love h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 36px; }
.v2-love-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 800px) { .v2-love-grid { grid-template-columns: 1fr; } }
.v2-review { background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 26px; transition: transform .2s ease, border-color .2s ease; }
.v2-review:hover { transform: translateY(-2px); border-color: #b9b3f2; }
.v2-review .v2-stars { color: #FFC453; letter-spacing: 2px; font-size: 14px; }
.v2-review-tag { display: inline-block; font-size: 12px; font-weight: 600; color: var(--v2-indigo); background: var(--v2-mist); border-radius: 999px; padding: 3px 12px; margin-left: 10px; vertical-align: 2px; }
.v2-review p { font-size: 16px; line-height: 1.65; margin: 14px 0 10px; }
.v2-review cite { font-style: normal; font-size: 14px; color: var(--v2-ink-soft); }
.v2-wall { display: grid; grid-template-columns: repeat(8, 1fr); gap: 22px; align-items: center; margin-top: 48px; }
@media (max-width: 900px) { .v2-wall { grid-template-columns: repeat(4, 1fr); } }
.v2-wall img { width: 100%; height: 30px; object-fit: contain; }

/* Scale */
.v2-scale { padding: 88px 0; background: var(--v2-indigo-deep); color: #fff; }
.v2-scale h2 { font-size: clamp(30px, 4vw, 44px); max-width: 700px; margin: 0 0 30px; }
.v2-bigquote { font-family: var(--v2-font-head); font-size: clamp(21px, 2.7vw, 29px); line-height: 1.45; font-weight: 500; max-width: 880px; margin: 0 0 14px; color: #e0e7ff; }
.v2-bigquote-cite { color: rgba(255,255,255,.7); font-size: 15px; }
.v2-scale-stats { display: flex; flex-wrap: wrap; gap: 48px; margin-top: 44px; }
.v2-scale-stat .n { font-size: 40px; font-weight: 700; font-variant-numeric: tabular-nums; }
.v2-scale-stat .l { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 4px; }
.v2-scale-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.85); font-size: 15.5px; }
.v2-scale-foot img { height: 32px; width: auto; }

/* Pricing */
.v2-pricing { padding: 88px 0; }
.v2-pricing-head { max-width: 640px; margin-bottom: 40px; }
.v2-pricing h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 0 0 12px; }
.v2-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .v2-plans { grid-template-columns: 1fr; } }
.v2-plan { border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 28px; background: #fff; position: relative; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.v2-plan:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(46,42,157,.09); }
.v2-plan--featured { border: 2px solid var(--v2-indigo); }
.v2-plan-chip { position: absolute; top: -12px; left: 24px; background: var(--v2-indigo); color: #fff; font-size: 12px; font-weight: 600; padding: 3px 12px; border-radius: 999px; }
.v2-plan-name { font-size: 15px; font-weight: 600; color: var(--v2-ink-soft); }
.v2-plan-price { font-family: var(--v2-font-head); font-size: 38px; font-weight: 600; margin: 6px 0 16px; }
.v2-plan ul { list-style: none; margin: 0; padding: 0; }
.v2-plan li { padding: 7px 0; font-size: 15px; color: var(--v2-ink-soft); border-top: 1px solid var(--v2-line); }
.v2-plan li strong { color: var(--v2-ink); font-weight: 600; }
.v2-pricing-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.v2-pricing-foot .note { color: var(--v2-ink-soft); font-size: 14.5px; }

/* Final CTA band */
.v2-final { background: var(--v2-ink); color: #fff; padding: 96px 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.5px); background-size: 26px 26px; }
.v2-final-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .v2-final-grid { grid-template-columns: 1fr; } }
.v2-final h2 { font-size: clamp(32px, 4.4vw, 50px); margin: 0 0 14px; }
.v2-final .v2-sub { color: rgba(255,255,255,.8); }
.v2-final-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.v2-final-badge { height: 34px; margin-top: 34px; display: block; }
.v2-final-badge img { height: 34px; }
.v2-final-demo { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--v2-r-card); padding: 20px; }
.v2-final-demo .v2-demo-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.v2-final-demo .v2-demo-sq { background: rgba(255,255,255,.22); }
.v2-final-demo .v2-demo-sq.hot { background: #6a5cff; }
.v2-final-demo .v2-demo-sq.dead { background: rgba(255,255,255,.10); }
.v2-final-demo .v2-demo-sq.dead::after { border-top-color: rgba(255,255,255,.35); }
.v2-final-demo-cap { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  .v2-heat-bar, .v2-demo-sq, .v2-btn, .v2-card, .v2-review, .v2-plan { transition: none !important; }
}

/* Hero evidence stack (Why Dynasort) and review stack (Customers) */
.v2-evidence { display: flex; flex-direction: column; gap: 12px; }
.v2-evidence-item { background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-ui); padding: 14px 18px; display: flex; align-items: center; gap: 14px; box-shadow: 0 6px 18px rgba(46,42,157,.06); }
.v2-evidence-item .lbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--v2-indigo); width: 74px; flex: none; }
.v2-evidence-item .val { font-size: 15px; color: var(--v2-ink); font-weight: 500; }
.v2-evidence-item .val .big { font-size: 22px; font-weight: 700; color: var(--v2-indigo-deep); margin-right: 6px; font-variant-numeric: tabular-nums; }
.v2-evidence-item img { height: 26px; width: auto; }
.v2-stack { position: relative; min-height: 340px; }
.v2-stack .v2-review { position: absolute; left: 0; right: 40px; box-shadow: 0 14px 34px rgba(46,42,157,.10); }
.v2-stack .v2-review:nth-child(1) { top: 0; transform: rotate(-1.6deg); }
.v2-stack .v2-review:nth-child(2) { top: 110px; left: 32px; right: 8px; transform: rotate(1.2deg); }
.v2-stack .v2-review:nth-child(3) { top: 224px; left: 12px; right: 26px; transform: rotate(-0.7deg); }
@media (max-width: 900px) { .v2-stack { min-height: 360px; } }

/* Dark accent card (Resources support card) */
.v2-card--ink { background: var(--v2-indigo-deep); border-color: var(--v2-indigo-deep); }
.v2-card--ink h3, .v2-card--ink p { color: #fff; }
.v2-card--ink p { color: rgba(255,255,255,.82); }
.v2-card--ink a { color: #c7d2fe; }
.v2-card--ink:hover { border-color: var(--v2-indigo); }

/* Flat-fee assurance strip (Pricing) */
.v2-flatfee { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 28px; background: #fff; border: 1px solid var(--v2-line); border-left: 3px solid var(--v2-good); border-radius: 0 18px 18px 0; padding: 18px 26px; margin-bottom: 34px; }
.v2-flatfee strong { font-size: 16px; }
.v2-flatfee span { color: var(--v2-ink-soft); font-size: 15px; }

/* Illustrative results timeline (Why Dynasort + Insights heroes).
   Four metric lines, vertical change-event hairlines, bubbles on the events.
   Deliberately number-free: shape and cause, not claims. */
.v2-timeline { position: relative; background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 18px 18px 12px; }
.v2-timeline-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.v2-timeline-head .t { font-size: 13px; font-weight: 600; color: var(--v2-ink-soft); }
.v2-timeline-head .live { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--v2-ink-soft); }
.v2-timeline-head .live i { width: 8px; height: 8px; border-radius: 50%; background: var(--v2-good); animation: v2pulse 2.4s ease-in-out infinite; }
@keyframes v2pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.v2-timeline svg { display: block; width: 100%; height: auto; }
.v2-timeline .evline { stroke: #c9c5e8; stroke-width: 1; stroke-dasharray: 3 5; opacity: 0; transition: opacity .5s; }
.v2-timeline .metric { fill: none; stroke-linecap: round; }
.v2-timeline .lbl { font-size: 10px; fill: #8a87a6; font-family: inherit; }
.v2-timeline-bubble { position: absolute; opacity: 0; transform: translate(-50%, 8px); transition: opacity .5s, transform .5s; background: var(--v2-mist); border: 1px solid #c9c5e8; color: var(--v2-indigo-deep); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.v2-timeline-bubble.on, .v2-timeline .evline.on { opacity: 1; }
.v2-timeline-bubble.on { transform: translate(-50%, 0); }
.v2-timeline-foot { font-size: 12px; color: var(--v2-ink-soft); margin-top: 8px; }

/* Dark hero with the timeline as a full-bleed background layer */
.v2i-hero--dark { background: var(--v2-ink); position: relative; overflow: hidden; }
.v2i-hero--dark .v2-eyebrow { color: #a5b4fc; }
.v2i-hero--dark h1 { color: #fff; }
.v2i-hero--dark .v2-sub, .v2i-hero--dark .v2i-hero-note { color: rgba(255,255,255,.82); }
.v2i-hero--dark .v2-wrap { position: relative; z-index: 2; }
.v2i-hero--dark::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(20,18,43,.94) 0%, rgba(20,18,43,.62) 45%, rgba(20,18,43,.12) 100%); }
.v2i-hero-bg { position: absolute; inset: 0; z-index: 0; opacity: .7; }
.v2i-hero-bg .v2-timeline { background: transparent; border: none; border-radius: 0; padding: 0; height: 100%; }
.v2i-hero-bg .v2-timeline > div { height: 100%; }
.v2i-hero-bg svg { height: 100%; }
.v2i-hero-bg svg > line:not(.evline) { stroke: rgba(255,255,255,.07); }
.v2i-hero-bg .evline { stroke: rgba(255,255,255,.32); }
.v2i-hero-bg path[data-metric="cvr"] { stroke: #8f86ff; }
.v2i-hero-bg path[data-metric="atc"] { stroke: rgba(143,134,255,.62); }
.v2i-hero-bg path[data-metric="bounce"] { stroke: rgba(255,255,255,.22); }
.v2i-hero-bg path[data-metric="exit"] { stroke: rgba(255,255,255,.17); }
.v2i-hero-bg .lbl { fill: rgba(255,255,255,.56); }
.v2i-hero-bg .tip { fill: #8f86ff; }
.v2i-hero-bg .v2-timeline-bubble { background: rgba(20,18,43,.72); border-color: rgba(255,255,255,.42); color: #dbe2ff; backdrop-filter: blur(2px); }

/* Comparison pages */
.v2-cmp-wrap { overflow-x: auto; border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); }
.v2-cmp { width: 100%; min-width: 560px; border-collapse: collapse; background: #fff; }
.v2-cmp th, .v2-cmp td { padding: 14px 18px; text-align: left; font-size: 15px; border-top: 1px solid var(--v2-line); vertical-align: top; }
.v2-cmp thead th { border-top: none; font-size: 13px; font-weight: 600; color: var(--v2-ink-soft); text-transform: uppercase; letter-spacing: .06em; background: var(--v2-mist); }
.v2-cmp td:first-child { font-weight: 600; color: var(--v2-ink); width: 30%; }
.v2-cmp td { color: var(--v2-ink-soft); }
.v2-cmp .yes { color: var(--v2-good); font-weight: 600; }
.v2-cmp .no { color: #a32d2d; font-weight: 600; }

/* Mobile navigation */
.v2-burger { display: none; margin-left: auto; background: none; border: 1px solid var(--v2-line); border-radius: var(--v2-r-ui); padding: 9px 10px; cursor: pointer; }
.v2-burger span { display: block; width: 20px; height: 2px; background: var(--v2-ink); margin: 4px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }
.v2-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.v2-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.v2-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.v2-mnav { display: none; background: #fff; border-bottom: 1px solid var(--v2-line); box-shadow: 0 18px 34px rgba(20,18,43,.10); }
.v2-mnav.open { display: block; }
.v2-mnav-inner { padding: 10px 24px 20px; }
.v2-mnav-group { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--v2-indigo); margin: 16px 0 4px; }
.v2-mnav a { display: block; padding: 9px 0; color: var(--v2-ink); text-decoration: none; font-size: 16px; font-weight: 500; border-bottom: 0.5px solid var(--v2-line); }
.v2-mnav a:last-of-type { border-bottom: none; }
.v2-mnav .v2-mnav-ctas { display: flex; gap: 10px; margin-top: 16px; }
.v2-mnav .v2-mnav-ctas .v2-btn { flex: 1; text-align: center; padding: 12px 10px; font-size: 15px; }

/* Responsive pass */
@media (max-width: 900px) {
  .v2-burger { display: block; margin-left: 12px; }
  .v2-nav-cta { margin-left: auto; }
  .v2-nav-inner { gap: 16px; }
  .v2-wrap { padding: 0 20px; }
  .v2-section, .v2-surfaces, .v2-how, .v2-human, .v2-love, .v2-scale, .v2-pricing, .v2-problem { padding: 60px 0; }
  .v2-hero-inner { padding: 72px 0 64px; }
  .v2i-hero { padding: 60px 0 56px; }
  .v2-final { padding: 68px 0; }
  .v2i-hero--dark::after { background: rgba(20,18,43,.82); }
  .v2-scale-stats { gap: 24px 36px; }
  .v2-scale-stat .n { font-size: 32px; }
  .v2-logostrip { justify-content: center; gap: 20px 26px; }
  .v2-stack { margin-top: 8px; }
}
@media (max-width: 560px) {
  .v2-nav-cta .v2-btn--outline { display: none; }
  .v2-nav-cta .v2-btn { padding: 8px 14px; font-size: 13.5px; }
  .v2-nav-inner img { height: 34px; }
  .v2-hero h1 { font-size: clamp(34px, 9vw, 42px); }
  .v2i-hero h1 { font-size: clamp(30px, 8vw, 38px); }
  .v2-sub { font-size: 17px; }
  .v2-tiles { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v2-tile { padding: 16px 14px; }
  .v2-tile-big { font-size: 26px; }
  .v2-btn { padding: 12px 20px; font-size: 15px; }
  .v2-hero-trust { gap: 12px; }
  .v2-wall { grid-template-columns: repeat(3, 1fr); }
  .v2-final-demo { display: none; }
  .v2-pen { border-radius: 0 12px 12px 0; }
}

/* Get-your-week-back visual (replaces the retired merchandiser portrait):
   the endless manual to-do list vs the one-decision list. */
.v2-week { display: flex; flex-direction: column; gap: 18px; min-height: 380px; justify-content: center; }
.v2-week-card { background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 20px 22px; box-shadow: 0 10px 28px rgba(20,18,43,.07); }
.v2-week-before { transform: rotate(-.6deg); }
.v2-week-after { transform: rotate(.5deg); border-color: #cfeade; }
.v2-week-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--v2-font-head); font-weight: 600; font-size: 16px; margin-bottom: 12px; }
.v2-week-badge { font-family: var(--v2-font-body); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 8px 8px 8px 2px; white-space: nowrap; }
.v2-week-badge--grind { background: #fdf0ec; color: #a4432c; }
.v2-week-badge--calm { background: #e9f6f0; color: var(--v2-good); }
.v2-week-list { list-style: none; margin: 0; padding: 0; }
.v2-week-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--v2-ink-soft); padding: 7px 0; border-bottom: 1px dashed var(--v2-line); }
.v2-week-list li:last-child { border-bottom: 0; }
.v2-week-list em { font-style: italic; color: var(--v2-ink); }
.v2-week-list s { text-decoration-color: rgba(15,110,86,.55); }
.v2-week-box { flex: 0 0 auto; width: 17px; height: 17px; border: 1.5px solid #c4bff0; border-radius: 5px 5px 5px 1px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.v2-week-box--done { background: var(--v2-good); border-color: var(--v2-good); color: #fff; }
.v2-week-time { margin-left: auto; font-size: 12.5px; font-weight: 600; color: var(--v2-ink-soft); background: var(--v2-mist); padding: 2px 8px; border-radius: 6px 6px 6px 2px; white-space: nowrap; }
.v2-week-foot { margin-top: 12px; font-size: 13px; color: #a4432c; font-weight: 500; }
.v2-week-foot--calm { color: var(--v2-good); }

/* Mobile menu fixes (Jul 15): .v2-mnav a (0,1,1) outranks .v2-btn--* (0,1,0),
   which painted both CTAs ink and gave them list borders; and the open panel
   had no viewport limit, so its tail clipped below the fold. */
.v2-mnav .v2-mnav-ctas a { border-bottom: none; }
.v2-mnav .v2-mnav-ctas a.v2-btn--outline { color: var(--v2-indigo); }
.v2-mnav .v2-mnav-ctas a.v2-btn--outline:hover { color: var(--v2-indigo-deep); }
.v2-mnav .v2-mnav-ctas a.v2-btn--primary { color: #fff; }
.v2-mnav.open { max-height: calc(100dvh - 64px); overflow-y: auto; }

/* Blog-post inline graphics (launch post, Jul 2026). Self-contained, token-
   driven, no images. Scoped under .v2bp- to never touch post typography. */
.v2bp-surfaces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
@media (max-width: 720px) { .v2bp-surfaces { grid-template-columns: 1fr; } }
.v2bp-card { background: var(--v2-mist); border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 18px; }
.v2bp-card-head { font-family: var(--v2-font-head); font-weight: 600; font-size: 15px; color: var(--v2-ink); margin-bottom: 12px; }
.v2bp-searchbar { background: #fff; border: 1.5px solid var(--v2-indigo); border-radius: var(--v2-r-ui); padding: 7px 12px; font-size: 13px; color: var(--v2-ink); margin-bottom: 10px; }
.v2bp-searchbar::after { content: ""; display: inline-block; width: 2px; height: 12px; background: var(--v2-indigo); margin-left: 2px; vertical-align: middle; animation: v2bp-blink 1.1s steps(1) infinite; }
@keyframes v2bp-blink { 50% { opacity: 0; } }
.v2bp-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.v2bp-sq { width: 22px; height: 22px; border-radius: 6px 6px 6px 1px; background: #cbc7ee; flex: 0 0 auto; }
.v2bp-sq.hot { background: var(--v2-indigo); }
.v2bp-bar { height: 8px; border-radius: 4px; background: #dcd9f2; }
.v2bp-up { font-size: 11px; font-weight: 700; color: var(--v2-good); margin-left: auto; white-space: nowrap; }
.v2bp-tiles { display: flex; gap: 8px; margin-bottom: 4px; }
.v2bp-tile { flex: 1; background: #fff; border: 1px solid var(--v2-line); border-radius: 8px 8px 8px 2px; padding: 6px; }
.v2bp-tile .img { height: 34px; border-radius: 5px; background: #cbc7ee; margin-bottom: 5px; }
.v2bp-tile.hot .img { background: var(--v2-indigo); }
.v2bp-tile .ln { height: 5px; border-radius: 3px; background: #e3e1f4; margin-top: 4px; }
.v2bp-confirm { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #cfeade; border-radius: var(--v2-r-ui); padding: 8px 12px; font-size: 13px; color: var(--v2-good); font-weight: 600; margin-bottom: 10px; }
.v2bp-check { width: 18px; height: 18px; border-radius: 50%; background: var(--v2-good); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex: 0 0 auto; }
.v2bp-offerbtn { display: inline-block; margin-top: 6px; background: var(--v2-indigo); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px 6px 6px 1px; }
.v2bp-cap { font-size: 12px; color: var(--v2-ink-soft); margin-top: 10px; }
.v2bp-clicks { background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 22px; margin: 28px 0; box-shadow: 0 10px 28px rgba(20,18,43,.06); }
.v2bp-clicks-title { font-family: var(--v2-font-head); font-weight: 600; font-size: 17px; margin-bottom: 16px; color: var(--v2-ink); }
.v2bp-cbar { margin: 10px 0; }
.v2bp-cbar-label { display: flex; justify-content: space-between; font-size: 13px; color: var(--v2-ink-soft); margin-bottom: 4px; }
.v2bp-cbar-label strong { color: var(--v2-ink); }
.v2bp-cbar-track { height: 22px; border-radius: 6px 6px 6px 2px; background: var(--v2-mist); overflow: hidden; }
.v2bp-cbar-fill { height: 100%; border-radius: 6px 0 0 2px; background: #a5a0e0; }
.v2bp-cbar-fill.deep { background: var(--v2-indigo); }
.v2bp-cbar-fill.alert { background: #c05a3e; }
.v2bp-funnel { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; background: var(--v2-mist); border: 1px solid var(--v2-line); border-radius: var(--v2-r-card); padding: 18px 20px; margin: 28px 0; }
.v2bp-funnel-step { background: #fff; border: 1px solid var(--v2-line); border-radius: var(--v2-r-ui); padding: 8px 14px; font-size: 13.5px; font-weight: 600; color: var(--v2-ink); }
.v2bp-funnel-arrow { color: var(--v2-ink-soft); font-size: 14px; }
.v2bp-funnel-cap { flex-basis: 100%; font-size: 12.5px; color: var(--v2-ink-soft); margin-top: 6px; }

/* Blog/archive pages, v2 alignment pass (Jul 15):
   1. Bootstrap's .container runs 1320px+ at wide viewports while the v2 nav
      grid is 1140+48, so page content sat left of the logo. Match them.
   2. Breadcrumb loses the gray pill bar and reads as a quiet v2 utility line.
   3. Category chips take the v2 pill look. */
body:not(.v2-body) #content.container { max-width: 1140px; padding-left: 24px; padding-right: 24px; }
nav[aria-label="breadcrumb"] { background: transparent !important; border-radius: 0; padding-left: 0 !important; padding-right: 0 !important; margin-top: 36px; }
nav[aria-label="breadcrumb"] .breadcrumb { font-size: 13.5px; }
nav[aria-label="breadcrumb"] .breadcrumb-item a { color: var(--v2-ink-soft); text-decoration: none; }
nav[aria-label="breadcrumb"] .breadcrumb-item a:hover { color: var(--v2-indigo); }
nav[aria-label="breadcrumb"] .breadcrumb-item.active { color: var(--v2-ink-soft); }
.category-badge .badge { background: var(--v2-mist) !important; color: var(--v2-indigo) !important; border: 1px solid var(--v2-line); border-radius: 8px 8px 8px 2px; font-weight: 600; }
