﻿/* =========================================================
   Artisan Genius â€” Landing Page Styles
   ========================================================= */

:root {
  /* Official brand palette */
  --blue: #4954e6;
  --blue-light: #edeefd;
  --dark-blue: #1f2361;
  --grey-01: #989ca3;
  --grey-02: #282246;
  --grey-03: #75708c;
  --black: #000000;
  --white: #ffffff;

  /* Semantic tokens */
  --blue-deep: var(--dark-blue);
  --blue-soft: var(--blue);
  --blue-wash: var(--blue-light);
  --blue-mist: rgba(73, 84, 230, 0.1);
  --ink: var(--black);
  --ink-soft: var(--grey-02);
  --muted: var(--grey-03);
  --line: rgba(73, 84, 230, 0.35);
  --paper: var(--white);
  --danger: #c62828;
  --ok: var(--blue);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --header-h: 72px;
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  inset: unset;
  inset-inline: 0;
  z-index: 300;
  height: var(--header-h);
  background: var(--white);
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  --header-h: 60px;
  background: var(--white);
  backdrop-filter: none;
  border-bottom-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.site-header .brand-logo {
  transition: transform 0.35s var(--ease);
}

.site-header.is-scrolled .brand-logo {
  transform: scale(0.92);
}

.header-inner {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 58vw);
  aspect-ratio: 440 / 149;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.brand-footer .brand-mark {
  width: 32px;
  height: 32px;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.brand-wordmark span:last-child {
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(73, 84, 230, 0.35);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 42%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 70%
  );
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
  z-index: -1;
}

.btn-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(73, 84, 230, 0.42);
}

.btn-primary:hover::after {
  transform: translateX(320%) skewX(-18deg);
}

.btn-magnetic {
  will-change: transform;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(73, 84, 230, 0.35);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
}

.btn-nav {
  min-height: 42px;
  padding: 0.55rem 1rem;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(73, 84, 230, 0.28);
  transition:
    background 0.25s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.btn-nav:hover {
  background: var(--blue-deep);
  color: var(--white) !important;
}

.btn-nav-label-scroll {
  display: none;
}

.site-header.is-scrolled .btn-nav {
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  box-shadow: 0 10px 28px rgba(73, 84, 230, 0.4);
}

.site-header.is-scrolled .btn-nav-label {
  display: none;
}

.site-header.is-scrolled .btn-nav-label-scroll {
  display: inline;
}

.btn-wide {
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding-top: 0;
  overflow: clip;
  isolation: isolate;
  background: var(--white);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 42vw, 520px);
  aspect-ratio: 21 / 9;
  background:
    url("assets/bg-hero-blueprint.png?v=feedback40") center center / cover no-repeat;
  z-index: 0;
}

.hero-visual::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: calc(100% - 2.5rem);
  max-width: none;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  box-sizing: border-box;
}

.hero-brand {
  display: none;
}

.hero h1,
.hero #hero-title {
  font-size: clamp(2.75rem, 8.5vw, 6.5rem);
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: none !important;
  width: 100%;
  line-height: 1.02;
  text-wrap: pretty;
  text-align: center;
}

.hero-sub {
  margin-inline: auto;
  max-width: 42rem;
  text-align: center;
}

.hero-actions {
  justify-content: center;
}

.hero-note {
  text-align: center;
}

.accent-word {
  position: relative;
  display: inline-block;
}

.accent-word::after {
  display: none;
}

.accent-scribble {
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: -0.02em;
  width: 104%;
  height: calc(0.37em + 2px);
  pointer-events: none;
  transform: rotate(-1.2deg) translateY(calc(0.06em + 4px));
  animation: scribble-draw 0.95s var(--ease) 0.85s both;
}

@keyframes scribble-draw {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.5;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn-label-short {
  display: none;
}

.scroll-cue,
.scroll-cue span {
  display: none !important;
}

/* ---------- Sections shared ---------- */

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
}

.section-bg {
  display: none;
}

.section-bg-measure,
.section-bg-pillars {
  display: none;
}

/* Full-bleed visual bands â€” images fully visible, no baked text */
.visual-band {
  width: 100%;
  min-height: clamp(220px, 38vw, 420px);
  background-color: var(--blue-wash);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-block: 1px solid var(--line);
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
}

.visual-pillars {
  display: none;
}

.visual-workers {
  display: none;
}

/* ---------- Problem background ---------- */

.problem {
  isolation: isolate;
}

.problem-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(73, 84, 230, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 84, 230, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 70% 55%, rgba(73, 84, 230, 0.06), transparent 70%);
  background-size: 38px 38px, 38px 38px, auto;
  background-color: transparent;
  opacity: 1;
  pointer-events: none;
}

.problem-figure {
  display: block;
  width: 100vw;
  margin: 1.75rem 0 2.25rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(240px, 40vw, 420px);
  background:
    url("assets/bg-problem-blueprint.png") center center / contain no-repeat;
  background-color: transparent;
  border: 0;
}

.section > .container,
.section > .visual-band {
  position: relative;
  z-index: 1;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(1.85rem, 4.5vw, 3.6rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.section-intro p:not(.eyebrow):not(.lede) {
  color: var(--muted);
  max-width: 38rem;
}

/* Quiet alternating surfaces â€” no blueprint grid */
.problem,
.pillar-details,
.platform {
  background-color: var(--white);
  background-image: none;
}

.pillars,
.framework,
.founder {
  background-color: var(--paper);
  background-image: none;
}

/* ---------- Problem / Compare ---------- */

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.compare-panel {
  padding: 0.25rem 0 0.5rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 3px solid transparent;
  backdrop-filter: none;
  transition: none;
}

.compare-panel:hover {
  transform: none;
  box-shadow: none;
}

.compare-motion .compare-low,
.compare-motion .compare-high {
  transition:
    opacity 0.7s var(--ease),
    transform 0.75s var(--ease);
}

.compare-motion:not(.is-visible) .compare-low {
  opacity: 0;
  transform: translateX(-28px);
}

.compare-motion:not(.is-visible) .compare-high {
  opacity: 0;
  transform: translateX(28px);
}

.compare-motion.is-visible .compare-low,
.compare-motion.is-visible .compare-high {
  opacity: 1;
  transform: none;
}

.compare-motion.is-visible .compare-high {
  transition-delay: 0.1s;
}

.compare-low {
  border-top-color: rgba(198, 40, 40, 0.55);
  padding-top: 1rem;
}

.compare-high {
  border-top-color: var(--blue);
  padding-top: 1rem;
}

.compare-panel h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.compare-low h3 {
  color: var(--danger);
}

.compare-high h3 {
  color: var(--blue);
}

.compare-panel ul {
  display: grid;
  gap: 0.55rem;
}

.compare-panel li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.compare-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 1px;
  background: currentColor;
  opacity: 0.7;
}

.compare-low li {
  color: #8a2a2a;
}

.compare-high li {
  color: var(--blue-deep);
}

.pull-quote {
  margin: 2rem 0 2.5rem;
  padding: 0.5rem 0 0.5rem 1.25rem;
  background: transparent;
  border-left: 4px solid var(--blue);
  border-radius: 0;
  box-shadow: none;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue);
  line-height: 1.25;
}

.fix-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 34rem;
  margin: 2.75rem auto 0;
  padding: 0.5rem 0 0.5rem;
  list-style: none;
}

.fix-step {
  display: flex;
  align-items: stretch;
  width: min(100%, 22rem);
  background: var(--white);
  border: 1.5px solid rgba(73, 84, 230, 0.35);
  border-radius: 10px;
  box-shadow: none;
  transform-origin: center center;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}

.fix-step--1 {
  transform: rotate(1.5deg) translateX(-0.85rem);
}

.fix-step--2 {
  transform: rotate(3.5deg) translateX(1.75rem);
  width: min(100%, 23rem);
}

.fix-step--3 {
  transform: rotate(-1deg) translateX(-0.25rem);
}

.fix-step:hover {
  box-shadow: none;
  border-color: var(--blue);
}

.fix-step--1:hover {
  transform: rotate(1.5deg) translateX(-0.85rem) scale(1.015);
}

.fix-step--2:hover {
  transform: rotate(3.5deg) translateX(1.75rem) scale(1.015);
}

.fix-step--3:hover {
  transform: rotate(-1deg) translateX(-0.25rem) scale(1.015);
}

.step-num {
  display: grid;
  place-items: center;
  flex: 0 0 3.25rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue);
  border-right: 1.5px solid var(--blue);
  padding: 0.55rem 0.4rem;
}

.step-label {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0.62rem 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  line-height: 1.1;
}

/* ---------- Pillars overview ---------- */

.pillars {
  padding-bottom: 0;
}

.pillars-stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  min-height: clamp(280px, 42vw, 520px);
  display: grid;
  align-items: start;
  isolation: isolate;
  overflow: hidden;
}

.pillars-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  margin: 0;
  min-height: 100%;
  background:
    url("assets/bg-pillars-blueprint.png") 28% center / cover no-repeat;
  background-color: #edeefd;
  border: 0;
}

.pillars-stage-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  padding: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.pillars-intro {
  max-width: 36rem;
  margin-bottom: 0;
  margin-left: clamp(0rem, 6vw, 4.5rem);
  padding: 0.75rem 0.35rem 0.9rem;
}

.pillar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  backdrop-filter: none;
}

.align-settle .pillar-tile {
  transition:
    opacity 0.65s var(--ease),
    transform 0.7s var(--ease),
    color 0.25s ease;
}

.align-settle:not(.is-settled) .pillar-tile {
  opacity: 0;
  transform: translateY(18px) rotate(calc((var(--i, 0) - 1.5) * 1.4deg));
}

.align-settle.is-settled .pillar-tile {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * 0.09s);
}

.pillar-tile {
  padding: 0.35rem 0.15rem 0.75rem;
  border-right: 0;
  border-top: 3px solid var(--blue);
  transition: color 0.25s ease;
}

.pillar-tile:last-child {
  border-right: 0;
}

.pillar-tile:hover {
  background: transparent;
}

.pillar-tile:hover h3 {
  color: var(--blue);
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}

.pillar-tile h3,
.outcome h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.25;
  color: var(--ink);
}

.pillar-tile p,
.outcome p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.clarity-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding: clamp(1.75rem, 4vw, 2.4rem) 0;
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  border-radius: 0;
  box-shadow: none;
}

.clarity-banner .container {
  width: min(100% - 2.5rem, var(--max));
}

.clarity-banner p + p {
  margin-top: 0.45rem;
}

.clarity-strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- Pillar details ---------- */

.pillar-details {
  padding-bottom: 0;
}

.detail-stack {
  display: grid;
  gap: 0;
}

.detail-block {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(440px, 56vw, 660px);
  display: grid;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.detail-block:hover {
  border-color: transparent;
  box-shadow: none;
}

.detail-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-height: 0;
  border-radius: 0;
  border: 0;
  background-color: #edeefd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.28) 38%,
    rgba(255, 255, 255, 0.08) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.detail-block--flip .detail-visual::after {
  background: linear-gradient(
    260deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.28) 38%,
    rgba(255, 255, 255, 0.08) 68%,
    rgba(255, 255, 255, 0) 100%
  );
}

.detail-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
}

/* Soft fuzzy blur under text â€” no card, no hard edges */
.soft-read,
.detail-copy {
  position: relative;
  z-index: 1;
}

.soft-read::before,
.detail-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2rem -3rem -2.25rem -2.5rem;
  background:
    radial-gradient(
      ellipse 78% 74% at 40% 45%,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 80%
    );
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-mask-image: radial-gradient(
    ellipse 76% 72% at 42% 45%,
    #000 0%,
    #000 48%,
    transparent 84%
  );
  mask-image: radial-gradient(
    ellipse 76% 72% at 42% 45%,
    #000 0%,
    #000 48%,
    transparent 84%
  );
  pointer-events: none;
}

.detail-copy {
  max-width: 38rem;
  padding: 0.85rem 0.5rem 0.85rem 0.25rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.detail-block--flip .detail-copy {
  margin-left: auto;
}

.detail-block--flip .detail-copy::before,
.detail-block--flip .soft-read::before {
  background:
    radial-gradient(
      ellipse 78% 74% at 60% 45%,
      rgba(255, 255, 255, 0.74) 0%,
      rgba(255, 255, 255, 0.32) 50%,
      rgba(255, 255, 255, 0) 80%
    );
  -webkit-mask-image: radial-gradient(
    ellipse 76% 72% at 58% 45%,
    #000 0%,
    #000 48%,
    transparent 84%
  );
  mask-image: radial-gradient(
    ellipse 76% 72% at 58% 45%,
    #000 0%,
    #000 48%,
    transparent 84%
  );
}

.detail-visual--policy {
  background-image: url("assets/detail-policy-blueprint.png");
  background-position: 70% center;
}

.detail-visual--culture {
  background-image: url("assets/detail-culture-blueprint.png");
  background-position: center center;
  background-size: cover;
  transform: scaleX(-1);
}

.detail-visual--skills {
  background-image: url("assets/detail-skills-blueprint.png");
  background-position: 72% center;
}

.detail-visual--production {
  background-image: url("assets/detail-production-blueprint.png");
  background-position: 28% center;
}

.detail-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.detail-head .pillar-num,
.outcome .pillar-num {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0;
  line-height: 1;
}

.detail-head h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.detail-means {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 48rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: -0.35rem 0 1.25rem;
}

.skill-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 0;
  border-bottom: 2px solid rgba(73, 84, 230, 0.35);
}

.detail-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.detail-box {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.detail-box-why {
  background: transparent;
  border-color: transparent;
  padding-left: 0;
  border-left: 0;
}

.detail-box h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.detail-box ul {
  display: grid;
  gap: 0.45rem;
}

.detail-box li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.detail-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--blue);
  border-radius: 1px;
}

.detail-box-why p {
  color: var(--ink-soft);
}

/* ---------- Framework ---------- */

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.outcome {
  padding: 0.35rem 0.1rem 0.5rem;
  background: transparent;
  border-top: 3px solid var(--blue);
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.outcome:hover {
  transform: none;
}

.framework-banner {
  padding: 1.75rem 0 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(18, 20, 28, 0.1);
}

.framework-banner .framework-lead {
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.45;
  color: var(--ink);
}

.framework-banner p + p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.framework-banner .note {
  margin-top: 1rem;
  opacity: 1;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--blue);
}

.account-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.framework-stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(2.75rem, 6vw, 4rem);
  min-height: clamp(400px, 52vw, 620px);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.framework-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.5) 100%),
    url("assets/bg-framework-blueprint.png") center center / cover no-repeat;
  background-color: #edeefd;
}

.framework-stage-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.account-panel {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1rem 1.25rem;
  background: transparent;
  border: 0;
  border-top: 3px solid var(--blue);
  border-radius: 0;
  box-shadow: none;
}

.account-panel.soft-read::before {
  inset: -1.25rem -1.5rem -1.5rem -1.35rem;
  background:
    radial-gradient(
      ellipse 86% 78% at 50% 42%,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.4) 48%,
      rgba(255, 255, 255, 0) 78%
    );
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  -webkit-mask-image: radial-gradient(
    ellipse 84% 76% at 50% 42%,
    #000 0%,
    #000 52%,
    transparent 86%
  );
  mask-image: radial-gradient(
    ellipse 84% 76% at 50% 42%,
    #000 0%,
    #000 52%,
    transparent 86%
  );
}

.account-panel h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.account-panel p {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.account-panel ul {
  display: grid;
  gap: 0.5rem;
}

.account-panel li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}

.account-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--blue);
}

/* ---------- Platform ---------- */

.platform {
  padding-bottom: 0;
}

.platform-info {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: 0.85rem 0.5rem 1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.platform-info h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.45rem;
}

.platform-info p {
  color: var(--ink-soft);
  margin: 0;
}

.score-meter {
  margin-top: 1.15rem;
}

.score-meter-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(73, 84, 230, 0.12);
  overflow: hidden;
  border: 1px solid rgba(73, 84, 230, 0.18);
}

.score-meter-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-soft) 100%);
  transition: width 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.score-meter.is-filled .score-meter-fill {
  width: calc(var(--score, 92) * 1%);
}

.score-meter-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.score-meter-label {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.score-meter-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1;
}

.platform-stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  isolation: isolate;
  overflow: hidden;
}

.platform-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.22) 45%, rgba(255, 255, 255, 0.4) 100%),
    url("assets/bg-platform-blueprint.png") center 40% / cover no-repeat;
}

.platform-card.soft-read::before {
  inset: -0.85rem -0.75rem -1rem -0.7rem;
  background:
    radial-gradient(
      ellipse 88% 80% at 40% 40%,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.36) 52%,
      rgba(255, 255, 255, 0) 80%
    );
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: end;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: center;
  transition: transform 0.25s var(--ease);
}

.platform-item:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: none;
}

.platform-item--1 { transform: translateY(1.6rem); }
.platform-item--2 { transform: translateY(0.35rem); }
.platform-item--3 { transform: translateY(1.1rem); }
.platform-item--4 { transform: translateY(0); }

.platform-item--1:hover { transform: translateY(calc(1.6rem - 8px)); }
.platform-item--2:hover { transform: translateY(calc(0.35rem - 8px)); }
.platform-item--3:hover { transform: translateY(calc(1.1rem - 8px)); }
.platform-item--4:hover { transform: translateY(-8px); }

.platform-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1rem 0.85rem 1.15rem;
  background: transparent;
  border: 0;
  border-top: 3px solid var(--blue);
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  text-align: left;
}

.platform-card .pillar-num {
  margin-bottom: 0.35rem;
}

.platform-icon-img,
.platform-column,
.platform-column-wrap,
.platform-icon {
  display: none;
}

.column-rise .platform-card {
  transition:
    opacity 0.55s var(--ease),
    transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.column-rise:not(.is-risen) .platform-card {
  opacity: 0;
  transform: translateY(16px);
}

.column-rise.is-risen .platform-card {
  opacity: 1;
  transform: none;
}

.platform-item {
  align-items: stretch;
  text-align: left;
}

.platform-item h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.25;
  color: var(--ink);
}

.platform-item p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ---------- Founder ---------- */

.founder {
  isolation: isolate;
}

.founder-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(237, 238, 253, 0.82) 0%, rgba(237, 238, 253, 0.7) 100%),
    url("assets/bg-founder-blueprint.png") center / cover no-repeat;
  pointer-events: none;
  opacity: 1;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.founder-question h2 {
  margin-bottom: 0.75rem;
}

.founder-sub {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.founder-quote {
  margin: 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  background: transparent;
  border-radius: 0;
  border: 0;
  border-left: 4px solid var(--blue);
  box-shadow: none;
}

.founder-quote p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.founder-quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.founder-quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.founder-quote span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  isolation: isolate;
  background: var(--paper);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url("assets/bg-cta-blueprint.png") center 40% / cover no-repeat;
  z-index: -2;
  opacity: 0.85;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(237, 238, 253, 0.45), rgba(237, 238, 253, 0.72));
  z-index: -1;
}

.cta-panel {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.25rem);
  background: #000000;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
  color: var(--white);
}

.cta-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.cta-brand img {
  width: 56px;
  height: 56px;
}

.cta-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-align: left;
  font-size: 1.05rem;
}

.cta-wordmark strong {
  font-weight: 800;
  color: var(--white);
}

.cta-panel h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin-bottom: 0.85rem;
  color: var(--white);
}

.cta-panel > p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.85rem;
}

.cta-audience {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62) !important;
  margin-bottom: 1.5rem !important;
}

.cta-panel--book {
  width: min(100%, 720px);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.calendly-wrap {
  width: 100%;
  margin: 0.5rem 0 0;
  overflow: hidden;
  border-radius: 14px;
  background: #000000;
}

.calendly-label {
  margin: 0;
  padding: 0.95rem 1.1rem 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.calendly-wrap .calendly-inline-widget {
  min-width: 320px;
  width: 100%;
}

.calendly-wrap--light {
  background: var(--white);
  border: 1px solid rgba(18, 20, 28, 0.08);
  box-shadow: 0 18px 50px rgba(18, 20, 28, 0.08);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-hero-actions .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(18, 20, 28, 0.18);
}

.page-hero-actions .btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.calendly-panel {
  width: min(100%, 780px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #000000;
  box-shadow: 0 18px 50px rgba(18, 20, 28, 0.12);
}

.calendly-panel .calendly-inline-widget {
  min-width: 320px;
  width: 100%;
}

.cta-contact {
  margin-top: 1.15rem !important;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55) !important;
}

.cta-contact a {
  color: var(--blue-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.brand-footer .brand-wordmark {
  color: var(--white);
  font-size: 0.85rem;
}

.brand-footer .brand-wordmark span:last-child {
  color: var(--blue-soft);
}

.footer-tag {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 40rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--blue-soft);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.88rem;
  opacity: 0.65;
}

/* ---------- Blueprint wake (disabled for clarity) ---------- */

.blueprint-wake {
  position: relative;
  isolation: isolate;
}

.blueprint-wake::before {
  content: none;
}

.blueprint-wake > * {
  position: relative;
  z-index: 1;
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.pillar-tile.reveal,
.outcome.reveal,
.platform-item.reveal {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

/* Hero reveals on load */
.hero .reveal {
  opacity: 1;
  transform: none;
  animation: fade-up 0.85s var(--ease) both;
}

.hero .reveal-delay-1 {
  animation-delay: 0.12s;
}

.hero .reveal-delay-2 {
  animation-delay: 0.24s;
}

.hero .reveal-delay-3 {
  animation-delay: 0.36s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes underline-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes grid-shift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 48px 48px, 48px 48px;
  }
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero .reveal,
  .hero-bg,
  .hero-grid,
  .scroll-cue span,
  .accent-word::after,
  .accent-scribble {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .accent-word::after {
    transform: scaleX(1) !important;
  }

  .blueprint-wake::before,
  .compare-motion .compare-low,
  .compare-motion .compare-high,
  .align-settle .pillar-tile,
  .column-rise .platform-card,
  .platform-column-wrap,
  .score-meter-fill,
  .btn-magnetic {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .score-meter-fill {
    width: calc(var(--score, 92) * 1%) !important;
  }

  .site-header,
  .site-header .brand-logo,
  .site-header .brand-mark,
  .site-header .brand-wordmark {
    transition: none !important;
  }
}

/* ---------- Responsive ---------- */

/* Large / ultrawide: keep art present, give type room */
@media (min-width: 1400px) {
  .hero-visual {
    background-position: 58% center;
  }

  .pillars-visual {
    background-position: 32% center;
  }

  .platform-grid {
    gap: 1.15rem;
  }

  .platform-card.soft-read::before {
    inset: -1rem -0.9rem -1.15rem -0.85rem;
  }
}

/* Tablet / small desktop: 2×2 platform, tighter hero */
@media (max-width: 1100px) {
  .hero-content {
    padding: 3rem 0 3.5rem;
  }

  .hero-visual {
    background-position: 62% center;
  }

  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
  }

  .platform-item--1,
  .platform-item--2,
  .platform-item--3,
  .platform-item--4 {
    transform: none;
  }

  .platform-item--1:hover,
  .platform-item--2:hover,
  .platform-item--3:hover,
  .platform-item--4:hover {
    transform: translateY(-6px);
  }

  .detail-block {
    min-height: clamp(400px, 58vw, 560px);
  }

  .framework-stage {
    min-height: clamp(360px, 50vw, 520px);
  }
}

/* Stack pillar detail sections; keep overlay blur on framework/platform */
@media (max-width: 960px) {
  .pillar-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-block,
  .detail-block:nth-child(even) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 0 0 clamp(2rem, 5vw, 3rem);
    overflow: visible;
  }

  .detail-visual {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    min-height: clamp(200px, 42vw, 300px);
    background-size: cover !important;
    background-color: #edeefd;
    transform: none !important;
  }

  .detail-visual--policy {
    background-position: 60% center !important;
  }

  .detail-visual--culture {
    background-position: 70% center !important;
  }

  .detail-visual--skills {
    background-position: 65% center !important;
  }

  .detail-visual--production {
    background-position: 40% center !important;
  }

  .detail-visual::after,
  .detail-block--flip .detail-visual::after {
    display: none;
  }

  .detail-inner {
    width: min(100% - 2rem, var(--max));
    margin-top: 0.35rem;
    padding-top: 0.5rem;
  }

  .detail-copy {
    max-width: none;
    margin-left: 0;
    background: transparent;
    padding: 0.25rem 0;
  }

  /* Text is no longer over art — drop blur */
  .detail-copy::before,
  .detail-block--flip .detail-copy::before {
    display: none;
  }

  .detail-block--flip .detail-copy {
    margin-left: 0;
  }

  .pillar-tile:nth-child(2) {
    border-right: 0;
  }

  .pillar-tile:nth-child(1),
  .pillar-tile:nth-child(2) {
    border-bottom: 0;
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .pillars-stage {
    min-height: clamp(260px, 48vw, 420px);
  }

  .pillars-visual {
    background-position: 40% center;
  }

  .pillars-intro {
    margin-left: 0;
    max-width: 32rem;
  }
}

/* Phone / small tablet: nav, stacked hero, image bands */
@media (max-width: 780px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.25rem;
    min-height: 44px;
    border-bottom: 1px solid rgba(18, 20, 28, 0.06);
  }

  .site-nav .btn-nav {
    margin-top: 0.75rem;
    text-align: center;
    border-bottom: 0;
    justify-content: center;
  }

  .site-nav .btn-nav-label {
    display: none;
  }

  .site-nav .btn-nav-label-scroll {
    display: inline;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 0;
    overflow: visible;
  }

  .hero-content {
    grid-area: auto;
    position: relative;
    z-index: 1;
    width: min(100% - 1.25rem, 96vw);
    margin: 0 auto;
    max-width: none;
    padding: 1.5rem 0 1.1rem;
    text-align: center;
  }

  .hero-brand {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    margin-bottom: 1rem;
    max-width: none;
    width: 100%;
  }

  .hero-sub {
    color: var(--ink-soft);
    margin-bottom: 1.35rem;
    font-size: 1.05rem;
  }

  .hero-visual {
    grid-area: auto;
    position: relative;
    width: 100%;
    min-height: clamp(200px, 52vw, 300px);
    aspect-ratio: 16 / 10;
    background-image: url("assets/bg-hero-blueprint.png?v=feedback40");
    background-position: center center;
    background-size: cover;
    flex-shrink: 0;
  }

  .hero-visual::before {
    display: none;
  }

  .btn-label-full {
    display: none;
  }

  .btn-label-short {
    display: inline;
  }

  .hero-actions .btn {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-cta .btn,
  .pricing-card .btn,
  .how .btn {
    width: 100%;
    max-width: 28rem;
    justify-content: center;
  }

  .visual-band {
    min-height: 200px;
  }

  .pillars-stage {
    min-height: clamp(240px, 62vw, 360px);
    align-items: start;
  }

  .pillars-visual {
    min-height: 100%;
    background-size: cover;
    background-position: center 30%;
  }

  .pillars-stage-inner {
    padding: 0.85rem 0 1.25rem;
  }

  .pillars-intro {
    padding: 0.5rem 0.15rem 0.65rem;
  }

  .problem-figure {
    min-height: clamp(180px, 55vw, 300px);
    background-size: cover;
    background-position: center center;
  }

  .framework-stage,
  .platform-stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    margin-top: clamp(1.25rem, 3.5vw, 2rem);
  }

  .framework-stage {
    min-height: 0;
  }

  .framework-bg,
  .platform-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    min-height: clamp(160px, 42vw, 240px);
    background-size: cover;
    background-position: center center;
  }

  .framework-bg {
    background-color: #edeefd;
    background:
      url("assets/bg-framework-blueprint.png") center 30% / cover no-repeat;
  }

  .platform-bg {
    background:
      url("assets/bg-platform-blueprint.png") center 35% / cover no-repeat;
  }

  .framework-stage-inner,
  .platform-stage > .container {
    position: relative;
    z-index: 1;
    padding: 1.25rem 0 1.75rem;
    background: var(--paper);
  }

  .platform-stage > .container {
    background: var(--white);
  }

  /* Text now sits on solid panels — drop overlay blur */
  .account-panel.soft-read::before,
  .platform-info.soft-read::before,
  .platform-card.soft-read::before {
    display: none;
  }

  .cta {
    display: flex;
    flex-direction: column;
    padding: clamp(1.75rem, 5vw, 2.75rem) 0 clamp(2.25rem, 7vw, 3.5rem);
  }

  .cta-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    min-height: clamp(140px, 36vw, 200px);
    opacity: 1;
    background: url("assets/bg-cta-blueprint.png") center center / cover no-repeat;
    order: -1;
  }

  .cta-overlay {
    display: none;
  }

  .cta .container {
    position: relative;
    z-index: 1;
  }

  .compare,
  .detail-cols,
  .account-panels {
    grid-template-columns: 1fr;
  }

  .fix-steps {
    gap: 1rem;
    padding-inline: 0.75rem;
  }

  .fix-step {
    width: min(100%, 20rem);
  }

  .fix-step--1 {
    transform: rotate(2deg) translateX(-0.5rem);
  }

  .fix-step--2 {
    transform: rotate(4deg) translateX(1.25rem);
    width: min(100%, 20.5rem);
  }

  .fix-step--3 {
    transform: rotate(-1.2deg) translateX(0);
  }

  .fix-step--1:hover {
    transform: rotate(2deg) translateX(-0.5rem) scale(1.02);
  }

  .fix-step--2:hover {
    transform: rotate(4deg) translateX(1.25rem) scale(1.02);
  }

  .fix-step--3:hover {
    transform: rotate(-1.2deg) translateX(0) scale(1.02);
  }
}

/* Narrow phones: single column grids, full-width CTAs */
@media (max-width: 700px) {
  .pillar-grid,
  .outcome-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-cta .btn,
  .pricing-card .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .cta-brand img {
    width: 48px;
    height: 48px;
  }

  .pillar-tile {
    border-right: 0;
    border-bottom: 0;
    padding-bottom: 1rem;
  }

  .pillar-tile:last-child {
    border-bottom: 0;
  }

  .pillar-tile:nth-child(1),
  .pillar-tile:nth-child(2) {
    border-bottom: 0;
  }

  .detail-visual {
    min-height: clamp(180px, 48vw, 260px);
  }

  .pillars-stage {
    min-height: clamp(220px, 68vw, 320px);
  }
}

/* ---------- Interior pages (Blog / Contact) ---------- */

.page .site-header,
.site-header--sticky {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.page-hero--contact {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 0.85rem;
  border-bottom: 0;
}

.page-hero--contact h1 {
  margin-bottom: 0;
}

.page-hero-inner {
  max-width: 40rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1rem;
}

.section-alt {
  background: var(--paper);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.resource-card {
  padding: 1.35rem 1.25rem 1.5rem;
  border-top: 3px solid var(--blue);
  background: transparent;
}

.section-alt .resource-card {
  background: var(--white);
  padding: 1.5rem 1.35rem 1.65rem;
}

.resource-meta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.65rem;
}

.resource-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.resource-card p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.resource-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-wash);
}

.text-link {
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--blue-deep);
}

.page-cta-band {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.page-cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.page-cta-band p {
  color: var(--ink-soft);
  margin-bottom: 1.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-aside h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.contact-list a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-list a:hover {
  color: var(--blue);
}

.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 22rem;
}

.contact-main {
  min-width: 0;
}

.contact-main .hs-form-frame {
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.35rem 1.65rem;
  background: var(--paper);
  border-top: 3px solid var(--blue);
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(18, 20, 28, 0.14);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(73, 84, 230, 0.35);
  outline-offset: 1px;
  border-color: var(--blue);
}

.form-hint {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .cta-panel--book {
    width: min(100%, 560px);
  }

  .calendly-wrap .calendly-inline-widget,
  .calendly-inline-widget {
    height: 560px !important;
  }

  .calendly-label {
    font-size: 0.95rem;
    padding: 0.85rem 0.85rem 0.25rem;
  }
}

/* =========================================================
   Product homepage — problem / solution / features / how / pricing
   ========================================================= */

.hero-note {
  margin-top: 1.15rem;
  margin-inline: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(18, 20, 28, 0.1);
  max-width: 26rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-align: center;
}

.problem-modern {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  background: #000000;
  color: #ffffff;
}

.problem-clarity-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.problem-clarity-shell {
  position: relative;
  z-index: 1;
}

.problem-clarity-title {
  position: relative;
  z-index: 3;
}

.problem-modern[data-problem-clarity] .problem-clarity-content {
  position: relative;
  z-index: 1;
  filter: blur(var(--problem-blur, 14px));
  transition: filter 0.4s ease;
  will-change: filter;
  transform: translateZ(0);
}

.problem-clarity-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: rgba(0, 0, 0, var(--problem-veil, 0.4));
  transition: background-color 0.4s ease, opacity 0.4s ease;
  opacity: 1;
  /* Keep the title readable — veil starts below the intro */
  clip-path: inset(var(--problem-veil-top, 7.5rem) 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .problem-modern[data-problem-clarity] .problem-clarity-content {
    filter: none !important;
    transition: none;
    will-change: auto;
  }

  .problem-clarity-veil {
    opacity: 0 !important;
    transition: none;
  }
}

.problem-modern .section-intro h2,
.problem-modern .eyebrow,
.problem-modern .idea-card--problem h3,
.problem-modern .idea-card--problem p {
  color: #ffffff;
}

.problem-modern .eyebrow {
  color: var(--blue);
}

.problem-modern .idea-card {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: var(--blue);
}

.problem-modern .idea-num {
  color: var(--blue);
}

.solution-modern {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  background: #ffffff;
  color: #000000;
}

.solution-modern .idea-card--accent {
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.solution-modern .idea-card {
  border: 0;
  border-top: 0;
}

.solution-modern .idea-grid--4 {
  gap: 0;
}

.solution-modern .idea-grid--4 > .idea-card {
  border-radius: 0;
  border-left: 1px solid var(--blue);
  box-shadow: none;
  padding-block: 1.55rem;
  padding-inline: clamp(1.15rem, 2.2vw, 1.75rem);
}

.solution-modern .idea-grid--4 > .idea-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.solution-modern .idea-grid--4 > .idea-card:last-child {
  padding-right: 0;
}

.solution-modern .idea-grid--4 > .idea-card:hover {
  transform: none;
  box-shadow: none;
}

.solution-modern .idea-grid--4 > .idea-card.reveal:not(.is-visible):hover {
  transform: translateY(28px);
  box-shadow: none;
}

.idea-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.idea-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.idea-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.idea-card {
  padding: 1.55rem 1.4rem 1.65rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
}

.idea-card--accent {
  background: #ffffff;
}

.idea-card.reveal {
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    box-shadow 0.45s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.idea-card.reveal.is-visible {
  transition-delay: 0s;
}

.idea-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.idea-card.reveal:not(.is-visible):hover {
  transform: translateY(28px);
  box-shadow: none;
}

.idea-num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.idea-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  margin-bottom: 0.45rem;
}

.idea-outcome {
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.01em;
}

.idea-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.idea-card p.idea-outcome {
  color: var(--blue);
}

.solution-closer,
.features-closer {
  margin-top: 2.5rem;
  max-width: 42rem;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 500;
  color: var(--ink-soft);
  text-wrap: balance;
  line-height: 1.45;
}

.features {
  background: #ffffff;
}

.features-lede {
  display: inline-block;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--blue);
}

.feature-carousel {
  margin-top: 2.25rem;
}

.carousel-progress {
  height: 3px;
  margin-bottom: 0;
  background: rgba(73, 84, 230, 0.14);
  overflow: hidden;
}

.carousel-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  transform-origin: left center;
}

.feature-carousel.is-paused .carousel-progress-bar {
  animation-play-state: paused !important;
}

.feature-carousel:not(.is-autoplaying) .carousel-progress-bar {
  width: 0;
}

@keyframes carousel-progress-fill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.feature-carousel-viewport {
  overflow: hidden;
  border: 1px solid rgba(73, 84, 230, 0.2);
  border-top: 0;
  background: var(--white);
  box-shadow:
    0 22px 50px rgba(18, 20, 28, 0.1),
    0 2px 0 rgba(73, 84, 230, 0.12);
}

.feature-carousel-track {
  position: relative;
}

.feature-slide {
  display: none;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: clamp(320px, 42vw, 460px);
}

.feature-slide.is-active {
  display: grid;
  animation: feature-in 0.45s var(--ease) both;
}

@keyframes feature-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.feature-slide-media {
  min-height: 260px;
  background-color: var(--blue-wash);
  background-size: cover;
  background-position: center;
  border-right: 1px solid rgba(73, 84, 230, 0.12);
}

.feature-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: linear-gradient(180deg, #fff 0%, #fafaff 100%);
}

.feature-kicker {
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.feature-slide-copy h3 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin-bottom: 0.85rem;
}

.feature-slide-copy p:last-child {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 28rem;
}

.feature-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.carousel-btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  outline: none;
}

.carousel-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  align-items: center;
  max-width: 100%;
}

.carousel-tab {
  min-height: 44px;
  padding: 0.5rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.carousel-tab:hover {
  color: var(--blue);
  background: var(--blue-wash);
}

.carousel-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 6px 16px rgba(73, 84, 230, 0.28);
}

.carousel-tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.how {
  background: var(--white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  counter-reset: none;
}

.how-steps--vertical {
  position: relative;
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin-inline: auto;
  gap: 0;
  padding-left: 0;
}

.how-steps--vertical::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 1.1rem;
  bottom: auto;
  width: 3px;
  height: var(--how-line-length, calc(100% - 2.2rem));
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  z-index: 0;
}

.how-steps--vertical::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 1.1rem;
  bottom: auto;
  width: 3px;
  height: calc(var(--how-line-length, 0px) * var(--how-progress-ratio, 0));
  max-height: var(--how-line-length, none);
  background: var(--blue);
  border-radius: 999px;
  z-index: 0;
  transition: height 0.2s linear;
}

.how-steps--vertical .how-step {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  grid-template-areas:
    "num who"
    "num body";
  column-gap: 1.15rem;
  row-gap: 0.35rem;
  padding: 1.15rem 0 1.35rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
  opacity: 1;
}

.how-steps--vertical .how-step:hover {
  transform: none;
  box-shadow: none;
}

.how-steps--vertical .how-step:not(:last-child)::after,
.how-steps--vertical .how-step:not(:last-child)::before {
  display: none;
}

.how-steps--vertical .how-step-num {
  grid-area: num;
  margin: 0;
  box-shadow: 0 0 0 4px var(--white);
}

.how-steps--vertical .how-who {
  grid-area: who;
  align-self: center;
}

.how-steps--vertical .how-step-body {
  grid-area: body;
}

.how-steps--vertical .how-step-body h3 {
  margin: 0 0 0.45rem;
}

.how-steps--vertical .how-step-body p {
  margin: 0;
}

.how-step {
  position: relative;
  padding: 1.6rem 1.4rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  transform: translateY(18px);
  opacity: 0.55;
  transition:
    transform 0.7s var(--ease),
    opacity 0.7s var(--ease),
    box-shadow 0.45s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
  z-index: 1;
}

.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.55rem;
  left: calc(50% + 1.35rem);
  width: calc(100% - 0.85rem);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(73, 84, 230, 0.55),
    rgba(73, 84, 230, 0.12)
  );
  pointer-events: none;
  z-index: 0;
}

.align-settle.is-settled .how-step,
.how-step.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.how-step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 0 0 4px var(--white);
}

.how-step-num--success {
  background: #22c55e;
  color: #fff;
  overflow: visible;
}

.how-steps--vertical .how-step--success {
  grid-template-areas:
    "num who";
  grid-template-columns: 2.1rem minmax(0, 1fr);
  align-items: center;
  padding: 0.85rem 0 0.35rem;
}

.how-check {
  display: block;
  width: 2.85rem;
  height: 2.85rem;
  overflow: visible;
  transform: translate(5px, -6px);
}

.how-check-outline,
.how-check-mark {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-check-outline {
  stroke: #ffffff;
  stroke-width: 5.2;
}

.how-check-mark {
  stroke: #16a34a;
  stroke-width: 2.6;
}

.how-who--success {
  color: #16a34a;
  font-weight: 700;
}


.how-step h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  margin-bottom: 0.65rem;
}

.how-step p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.section-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.pricing {
  padding-top: clamp(4.5rem, 9vw, 7rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
  background: #f4f4ec;
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
  padding: clamp(1.35rem, 3.5vw, 2.35rem);
  background: #f7f7f2;
  border-radius: 32px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.07);
}

.pricing-aside {
  padding: 0.35rem 0.25rem 0.5rem;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: #555;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.pricing-aside h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  line-height: 1.12;
  color: #111;
  max-width: 16ch;
  text-wrap: balance;
}

.pricing-aside h2 strong {
  font-weight: 800;
}

.pricing-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 30rem;
}

.pricing-card {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.pricing-card__body {
  padding: clamp(1.35rem, 3vw, 1.85rem);
}

.pricing-card__name {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.pricing-card__bolt {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0 0 0.35rem;
  flex-wrap: wrap;
}

.pricing-card__old {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--danger);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: #111;
}

.pricing-card__period {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card__was {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.pricing-card .btn-wide {
  width: 100%;
  justify-content: center;
}

.pricing-card__summary {
  margin: 0.95rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  text-wrap: balance;
}

.pricing-card__features {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card__features-label {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #111;
}

.pricing-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0;
  text-align: left;
}

.pricing-perks li {
  position: relative;
  padding-left: 1.55rem;
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.pricing-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 0.65rem no-repeat,
    #111;
}

.pricing-card__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
}

.pricing-card__note-icon {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pricing-shell {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .pricing-aside h2 {
    max-width: none;
  }

  .pricing-perks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .idea-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-modern .idea-grid--4 > .idea-card {
    border-left: 0;
  }

  .solution-modern .idea-grid--4 > .idea-card:nth-child(2n) {
    border-left: 1px solid var(--blue);
  }

  .solution-modern .idea-grid--4 > .idea-card:nth-child(n + 3) {
    border-top: 1px solid var(--blue);
  }

  .solution-modern .idea-grid--4 > .idea-card:first-child,
  .solution-modern .idea-grid--4 > .idea-card:nth-child(3) {
    padding-left: 0;
  }

  .feature-slide.is-active {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-slide-media {
    min-height: clamp(200px, 42vw, 280px);
    border-right: 0;
    border-bottom: 1px solid rgba(73, 84, 230, 0.12);
  }
}

@media (max-width: 860px) {
  .idea-grid--3,
  .how-steps {
    grid-template-columns: 1fr;
  }

  .idea-grid--4 {
    grid-template-columns: 1fr;
  }

  .solution-modern .idea-grid--4 > .idea-card,
  .solution-modern .idea-grid--4 > .idea-card:nth-child(2n) {
    border-left: 0;
    padding-inline: 0;
  }

  .solution-modern .idea-grid--4 > .idea-card {
    border-top: 1px solid var(--blue);
  }

  .solution-modern .idea-grid--4 > .idea-card:first-child {
    border-top: 0;
  }

  .how-step:not(:last-child)::after {
    display: none;
  }

  .how-step:not(:last-child)::before {
    display: none;
  }

  .how-steps--vertical .how-step:not(:last-child)::before {
    display: none;
  }

  .carousel-tabs {
    order: 3;
    width: 100%;
    margin-top: 0.35rem;
  }

  .feature-carousel-controls {
    gap: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-slide.is-active {
    animation: none;
  }

  .carousel-progress,
  .carousel-progress-bar {
    display: none;
  }

  .how-step {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .idea-card:hover {
    transform: none;
  }
}

/* =========================================================
   Attention guidance — hierarchy, totem, trust, effort cues
   ========================================================= */

.btn-magnet {
  animation: magnet-in 0.85s var(--ease) 0.35s both;
  box-shadow: 0 14px 36px rgba(73, 84, 230, 0.42);
}

.btn-secondary-quiet {
  opacity: 0.82;
  box-shadow: none;
}

.btn-secondary-quiet:hover {
  opacity: 1;
}

@keyframes magnet-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.site-header.is-scrolled .site-nav > a:not(.btn-nav) {
  color: var(--muted);
  font-weight: 500;
}

.site-header.is-scrolled .site-nav > a:not(.btn-nav):hover {
  color: var(--blue);
  font-weight: 600;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
  max-width: 34rem;
}

.trust-strip li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.trust-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--blue);
}

.trust-strip--pricing {
  justify-content: center;
  max-width: none;
  margin: 1.5rem auto 0;
}

.problem-modern .idea-card--problem {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: var(--blue);
  box-shadow: none;
}

.problem-modern .idea-card--problem h3 {
  color: #ffffff;
}

.problem-modern .idea-card--problem p {
  color: rgba(255, 255, 255, 0.88);
}

.score-totem {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  margin: 2.5rem auto 1.25rem;
  padding: 0;
  max-width: 40rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.score-totem-ring,
.score-totem-value,
.score-totem-unit,
.score-totem-label {
  display: none;
}

.score-totem-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.05;
}

.score-totem-heading::after {
  content: "";
  display: block;
  width: min(12rem, 70%);
  height: 4px;
  margin: 0.75rem auto 0;
  background: var(--blue);
  border-radius: 999px;
}

.score-totem-copy {
  margin: 0;
  color: var(--ink-soft);
  max-width: 34rem;
  line-height: 1.55;
  font-size: 1.05rem;
}

.idea-card--lead {
  box-shadow: 0 18px 44px rgba(73, 84, 230, 0.16);
  border-color: rgba(73, 84, 230, 0.35);
  background: #fff;
  padding: 1.75rem 1.5rem 1.85rem;
}

.idea-card--lead.reveal.is-visible {
  transform: translateY(-2px);
}

.idea-card--lead.reveal:not(.is-visible) {
  transform: translateY(28px);
}

.idea-card--lead.is-visible:hover {
  transform: translateY(-5px);
}

.carousel-hint {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
  min-height: 1.4em;
}

.how-who {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.65rem;
  background: var(--blue-wash);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.how-who--together {
  background: rgba(18, 20, 28, 0.06);
  color: var(--ink-soft);
}

.how-step--we {
  border-top: 3px solid var(--blue);
}

.how-step--together {
  border-top: 3px solid rgba(18, 20, 28, 0.2);
  background: #edeefd;
}

.how-step--we .how-step-num {
  box-shadow: 0 0 0 6px var(--white), 0 8px 18px rgba(73, 84, 230, 0.25);
}

.pricing-card .btn-magnet {
  box-shadow: 0 14px 36px rgba(73, 84, 230, 0.4);
}

.calendly-frame {
  margin: 0;
  padding: 0 1.1rem 0.85rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

@media (max-width: 700px) {
  .score-totem {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .trust-strip {
    flex-direction: column;
    gap: 0.45rem;
  }

  .trust-strip--pricing {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-magnet {
    animation: none;
  }
}

/* =========================================================
   Feedback round — CTA short, blog cards, PDF cards, form
   ========================================================= */

.cta--compact {
  min-height: auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.cta--light {
  background: #fff;
}

.cta--light .cta-bg,
.cta--light .cta-overlay {
  display: none;
}

.cta-panel--light {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.cta-panel--light .cta-brand,
.cta-panel--light .cta-wordmark,
.cta-panel--light .cta-wordmark strong,
.cta-panel--light h2 {
  color: #000;
}

.cta-panel--light > p {
  color: var(--ink-soft);
}

.cta-panel--short {
  width: min(100%, 520px);
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-panel--short .cta-brand {
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-panel--short h2 {
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  margin-bottom: 0.75rem;
}

.cta-panel--short > p {
  margin-bottom: 1.35rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 0;
  background: transparent;
  overflow: visible;
  border-radius: 0;
}

.blog-card-media-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  background: #fff;
}

.blog-card-media-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.blog-card-media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background: #000 center / cover no-repeat;
  transition: transform 0.45s var(--ease);
}

.blog-card:hover .blog-card-media {
  transform: scale(1.04);
}

/* Signature bottom-right notch + arrow button */
.blog-card-notch {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 96px;
  height: 96px;
  background: #fff;
  border-top-left-radius: 50%;
  pointer-events: none;
}

.blog-card-notch-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: #fff 5px 5px 0 5px;
  pointer-events: none;
}

.blog-card-notch-corner--left {
  bottom: 6px;
  left: -24px;
}

.blog-card-notch-corner--top {
  top: -24px;
  right: 6px;
}

.blog-card-arrow {
  position: absolute;
  inset: 9.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.blog-card-arrow:hover,
.blog-card:hover .blog-card-arrow {
  transform: scale(1.06);
  background: var(--blue-deep);
}

.blog-card-arrow:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.blog-card-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 15px 10px 0;
  flex: 1;
}

.blog-card-body h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #0d0d0d;
}

.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card-body h3 a:hover {
  color: var(--blue);
}

.blog-card-body > p {
  margin: 10px 0 20px;
  color: rgba(13, 13, 13, 0.65);
  font-size: 0.94rem;
  line-height: 1.5;
  flex: 1;
}

.blog-card-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-card-tags li {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: #282828;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

/* legacy meta/cta classes kept harmless if referenced elsewhere */
.blog-card-meta,
.blog-card-tag,
.blog-card-time,
.blog-card-cta {
  display: none;
}

.blog-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.pdf-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2rem;
}

.pdf-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  overflow: hidden;
  border-radius: 16px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.pdf-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 18px 40px rgba(73, 84, 230, 0.14);
}

.pdf-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #000 center / cover no-repeat;
}

.pdf-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdf-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem 1.2rem 1.4rem;
  flex: 1;
}

.pdf-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
}

.pdf-card-body p {
  margin: 0;
  color: #000;
  line-height: 1.5;
  flex: 1;
}

.pdf-dl-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
  align-self: stretch;
}

.pdf-dl-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  min-width: 3.35rem;
  min-height: 3.35rem;
  padding: 0;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff !important;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  /* Framer PDF-downloader hard offset + glow, remapped to AG blue */
  box-shadow:
    2px 2px 0 0 var(--dark-blue),
    0 0 12px 2px rgba(255, 255, 255, 0.22),
    2px 2px 8px 2px rgba(73, 84, 230, 0.35);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.2s ease;
}

.pdf-dl-btn:hover {
  filter: brightness(1.06);
  transform: translate(1px, 1px);
  box-shadow:
    1px 1px 0 0 var(--dark-blue),
    0 0 14px 2px rgba(255, 255, 255, 0.28),
    1px 1px 10px 2px rgba(73, 84, 230, 0.42);
  color: #fff !important;
}

.pdf-dl-btn:active {
  transform: translate(2px, 2px);
  box-shadow:
    0 0 0 0 var(--dark-blue),
    0 0 10px 2px rgba(255, 255, 255, 0.18),
    0 0 8px 2px rgba(73, 84, 230, 0.28);
}

.pdf-dl-btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.pdf-dl-icon {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.contact-layout--simple {
  align-items: start;
  gap: 2rem;
}

.contact-layout--hubspot {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.contact-schedule {
  min-width: 0;
  position: sticky;
  top: 5.5rem;
}

.contact-schedule .calendly-wrap {
  margin: 0;
}

.contact-side {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.section--contact {
  padding-top: 1.25rem;
}

.contact-aside--direct {
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: #ffffff;
}

.contact-aside--direct h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
}

.contact-aside--direct .contact-list {
  margin-bottom: 0;
}

.prospect-form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: #ffffff;
}

.prospect-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

.prospect-field {
  display: grid;
  gap: 0.4rem;
}

.prospect-field--full {
  grid-column: 1 / -1;
}

.prospect-field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
}

.prospect-field input,
.prospect-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: #000;
  background: #fff;
}

.prospect-field input:focus,
.prospect-field textarea:focus {
  outline: 2px solid rgba(73, 84, 230, 0.35);
  border-color: var(--blue);
}

.prospect-form-submit {
  width: 100%;
  min-height: 52px;
  background: var(--blue);
  color: #fff !important;
  font-size: 1.05rem;
}

.prospect-form-submit:hover {
  background: var(--blue-deep);
}

.prospect-form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.92rem;
  color: var(--blue);
}

.prospect-form-status.is-error {
  color: var(--danger);
}

.resource-badge {
  background: #ffffff;
  border: 1px solid var(--blue);
}

.section-alt {
  background: #ffffff;
}

.features {
  background: #ffffff;
}

@media (max-width: 900px) {
  .blog-card-grid,
  .pdf-download-grid {
    grid-template-columns: 1fr;
  }

  .prospect-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout--simple,
  .contact-layout--hubspot {
    grid-template-columns: 1fr;
  }

  .contact-schedule {
    position: static;
  }

  .contact-aside--direct {
    order: 0;
  }
}

/* =========================================================
   Focus Slice Carousel (features)
   ========================================================= */

.focus-slice {
  --slice-gap: 0.65rem;
  --slice-collapsed: calc(7.35rem - 15px);
  /* Half the collapsed width → capsule ends (half-circles) */
  --slice-radius: calc(var(--slice-collapsed) / 2);
  --slice-duration: 1s;
  display: flex;
  gap: var(--slice-gap);
  height: clamp(22rem, 58vh, 32rem);
  margin-top: 2.25rem;
  width: 100%;
}

.focus-slice-panel {
  position: relative;
  flex: 0 0 var(--slice-collapsed);
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--slice-radius);
  overflow: hidden;
  background: #000;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  isolation: isolate;
  transition:
    flex-basis var(--slice-duration) cubic-bezier(0.22, 1, 0.36, 1),
    flex-grow var(--slice-duration) cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s var(--ease);
}

.focus-slice-panel.is-active {
  flex: 1 1 auto;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  cursor: default;
}

.focus-slice-media {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--slice-media-width, 100%);
  height: 100%;
  background-color: #000;
  background-position: top left;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transform: none;
  transition: filter 0.6s var(--ease);
  filter: none;
  pointer-events: none;
}

.focus-slice-panel.is-active .focus-slice-media {
  transform: none;
  filter: none;
}

/* Collapsed shade — full dim so rail labels stay readable; fades away on open */
.focus-slice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
  transition: opacity var(--slice-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

.focus-slice-panel.is-active::before {
  opacity: 0;
}

.focus-slice-panel:not(.is-active):hover::before {
  opacity: 0.42;
}

/* Bottom-third veil on open + closed slices; top 2/3 stays clear when expanded */
.focus-slice-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 64%,
    rgba(0, 0, 0, 0.35) 76%,
    rgba(0, 0, 0, 0.78) 90%,
    rgba(0, 0, 0, 0.94) 100%
  );
}

.focus-slice-rail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0.4rem 50px;
  writing-mode: horizontal-tb;
  transform: none;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
  line-height: 1.15;
  hyphens: none;
}

.focus-slice-panel.is-active .focus-slice-rail {
  opacity: 0;
}

.focus-slice-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem 1.4rem 1.45rem;
  background: transparent;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.45s ease 0.35s,
    transform 0.55s var(--ease) 0.3s;
}

.focus-slice-panel.is-active .focus-slice-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.focus-slice-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.focus-slice-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}

.focus-slice-content > p:not(.focus-slice-kicker) {
  margin: 0;
  max-width: 34rem;
  color: #fff;
  line-height: 1.45;
  font-size: 0.98rem;
}

.focus-slice-cta {
  justify-self: start;
  margin-top: 0.35rem;
  min-height: 44px;
  background: var(--blue);
  color: #fff !important;
}

.focus-slice-cta:hover {
  background: var(--blue-deep);
}

.features-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.features-cta .btn-primary {
  min-height: 48px;
  padding-inline: 1.6rem;
}

.focus-slice-panel:not(.is-active):hover .focus-slice-media {
  filter: none;
}

.focus-slice-panel:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .focus-slice {
    flex-direction: column;
    --slice-collapsed: 3.35rem;
    height: auto;
    min-height: 28rem;
    gap: 0.45rem;
  }

  .focus-slice-panel {
    flex: 0 0 var(--slice-collapsed);
    min-height: var(--slice-collapsed);
    transition:
      flex-basis var(--slice-duration) cubic-bezier(0.22, 1, 0.36, 1),
      min-height var(--slice-duration) cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.5s var(--ease);
  }

  .focus-slice-panel.is-active {
    flex: 1 1 auto;
    min-height: 18rem;
  }

  .focus-slice-rail {
    writing-mode: horizontal-tb;
    transform: none;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1rem;
    font-size: 0.88rem;
    text-align: left;
  }

  .focus-slice-content {
    padding: 1rem 1rem 1.15rem;
  }

  .focus-slice-content > p:not(.focus-slice-kicker) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .focus-slice {
    --slice-collapsed: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .focus-slice-panel,
  .focus-slice-panel::before,
  .focus-slice-media,
  .focus-slice-content,
  .focus-slice-rail {
    transition: none;
  }
}

/* =========================================================
   Image Tiles reveal (Framer Tiles — 2 Images)
   ========================================================= */

.tiles-section {
  background: #fff;
  color: #000;
  padding-block: 0;
}

.image-tiles {
  --tiles-radius: 0;
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  background: #000 center / cover no-repeat;
  background-image: var(--tiles-front);
  touch-action: none;
  cursor: crosshair;
  user-select: none;
  perspective: 1000px;
  box-shadow: none;
}

.image-tiles-cell {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  pointer-events: none;
}

.image-tiles-face {
  position: absolute;
  /* 1px bleed covers subpixel grid seams between columns/rows */
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: center center;
  will-change: transform, opacity;
  transition:
    opacity 0.38s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-tiles-face.is-revealed {
  opacity: 1;
  transform: scale(1);
}

.image-tiles-hint {
  margin: 0.85rem auto 0;
  max-width: 52rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .image-tiles {
    --tiles-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-tiles-face {
    transition: none;
  }
}

/* =========================================================
   FAQ accordion — Framer FAQ Accordian style
   https://rational-functions-848261.framer.app/
   ========================================================= */

.faq-section {
  background: transparent;
  color: #000;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 720px);
  margin: 2rem auto 0;
  border-top: 0;
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--blue);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 24px 8px 24px 0;
  border: 0;
  background: transparent;
  color: #121212;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-trigger:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-question {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 500px;
  padding-right: 16px;
  font-family: var(--font-body);
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: #000;
}

.faq-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--blue);
}

.faq-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.faq-icon-v {
  transform-origin: center;
  transition: transform 0.55s var(--ease), opacity 0.35s ease;
}

.faq-item.is-open .faq-icon-v {
  transform: scaleY(0);
  opacity: 0;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-panel-inner p {
  margin: 0;
  padding: 0 65px 24px 0;
  max-width: 36rem;
  color: #525252;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .faq-trigger {
    padding: 18px 4px 18px 0;
  }

  .faq-question {
    font-size: 1.05rem;
    padding-right: 8px;
  }

  .faq-panel-inner p {
    padding: 0 8px 18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel,
  .faq-icon-v {
    transition: none;
  }
}





