:root {
  --ink: #0b1f33;
  --graphite: #253241;
  --muted: #637283;
  --line: #d7e4ee;
  --white: #ffffff;
  --ice: #f6fbff;
  --sky: #e8f5ff;
  --blue: #2368e8;
  --cyan: #20c7d9;
  --green: #12a66a;
  --warm: #c99a48;
  --shadow: 0 24px 70px rgba(11, 31, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background:
    linear-gradient(180deg, rgba(246, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 36%),
    var(--ice);
  letter-spacing: 0;
}

body::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.ambient-map {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef9fa 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 0;
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.proof-strip,
.hero-actions,
.booking-notes,
.credential-list,
.workshop-tags {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand img {
  display: block;
  width: 236px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(35, 104, 232, 0.28);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(32, 199, 217, 0.85), rgba(35, 104, 232, 0.95)),
    var(--blue);
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(35, 104, 232, 0.24);
}

.desktop-nav {
  gap: 22px;
  color: rgba(11, 31, 51, 0.74);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 14px 38px rgba(11, 31, 51, 0.08);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 82px 0 66px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  z-index: -1;
  height: 62%;
  background:
    radial-gradient(circle at 18% 42%, rgba(32, 199, 217, 0.18), transparent 34%),
    radial-gradient(circle at 78% 28%, rgba(35, 104, 232, 0.16), transparent 31%);
  filter: blur(18px);
}

.hero-grid,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: center;
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.98;
  font-weight: 820;
}

h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 800;
}

h3 {
  font-size: 19px;
  line-height: 1.22;
  font-weight: 780;
}

.hero-lede {
  max-width: 690px;
  margin-top: 28px;
  color: var(--graphite);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 780;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.nav-cta:hover,
.package-card a:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #168bc8);
  box-shadow: 0 18px 42px rgba(35, 104, 232, 0.28);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(11, 31, 51, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(11, 31, 51, 0.07);
}

.proof-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-strip span,
.workshop-tags span,
.booking-notes span,
.credential-list span {
  border: 1px solid rgba(35, 104, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(11, 31, 51, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip span {
  padding: 7px 11px;
}

.hero-panel {
  position: relative;
  min-height: 430px;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(35, 104, 232, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.34);
}

.hero-panel::before {
  inset: 28px 0 70px 42px;
}

.hero-panel::after {
  inset: 74px 46px 22px 0;
}

.workflow-visual {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.workflow-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  font-size: 14px;
  font-weight: 780;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(18, 166, 106, 0.12);
}

.workflow-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.signal-card {
  padding: 18px;
  border: 1px solid rgba(215, 228, 238, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f9fcff);
}

.signal-card.active {
  color: var(--white);
  border-color: rgba(35, 104, 232, 0);
  background: linear-gradient(135deg, #0b1f33, #2368e8);
}

.signal-label {
  display: block;
  margin-bottom: 6px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.78;
}

.signal-card strong {
  font-size: 27px;
  line-height: 1;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.flow-line span {
  padding: 13px 10px;
  background: rgba(246, 251, 255, 0.9);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 780;
  text-align: center;
}

.section {
  padding: 92px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: start;
}

.rich-text {
  color: var(--graphite);
  font-size: 19px;
}

.rich-text p + p {
  margin-top: 18px;
}

.pain-grid,
.services-grid,
.package-grid,
.use-case-grid,
.comparison-grid,
.tool-grid {
  display: grid;
  gap: 16px;
}

.pain-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
}

.pain-grid article,
.service-card,
.package-card,
.use-case-grid article,
.comparison-card,
.roi-tool,
.readiness-tool,
.booking-form,
.faq-list details {
  border: 1px solid rgba(215, 228, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(11, 31, 51, 0.06);
}

.pain-grid article,
.service-card,
.package-card,
.use-case-grid article,
.comparison-card,
.roi-tool,
.readiness-tool {
  padding: 24px;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--sky);
  font-size: 12px;
  font-weight: 820;
}

.pain-grid p,
.service-card p,
.package-card p,
.package-card li,
.use-case-grid p,
.comparison-card p,
.roi-tool p,
.readiness-tool p,
.booking-copy p,
.workshop-panel p,
.expertise-card p {
  color: var(--muted);
}

.pain-grid h3,
.service-card h3,
.package-card h3,
.use-case-grid h3,
.comparison-card h3 {
  margin-bottom: 9px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 780;
}

.service-card a:hover {
  color: var(--ink);
}

.section-inline-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.compact-founder-card {
  align-items: center;
}

.compact-founder-card .button {
  margin-top: 24px;
}

.solution-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 58px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.96), rgba(19, 75, 114, 0.94)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.solution-band .eyebrow,
.solution-band p {
  color: rgba(255, 255, 255, 0.78);
}

.solution-content p {
  max-width: 680px;
  margin-top: 22px;
  font-size: 19px;
}

.solution-metrics {
  display: grid;
  gap: 12px;
}

.solution-metrics div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.solution-metrics strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.solution-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.trust-grid,
.department-grid,
.safe-ai-list,
.why-grid,
.audience-grid {
  display: grid;
  gap: 16px;
}

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

.trust-grid article,
.department-card,
.safe-ai-list article,
.self-audit-list article,
.why-grid article,
.audience-grid article {
  border: 1px solid rgba(215, 228, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(11, 31, 51, 0.06);
}

.trust-grid article,
.department-card,
.safe-ai-list article {
  padding: 24px;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.why-grid article {
  min-height: 230px;
  padding: 28px;
}

.audience-grid article {
  min-height: 220px;
  padding: 24px;
}

.trust-grid article {
  min-height: 260px;
}

.trust-grid p,
.department-card p,
.safe-ai-list p,
.self-audit-list p,
.meeting-output li,
.why-grid p,
.audience-grid p {
  color: var(--muted);
}

.trust-grid h3,
.department-card h3,
.safe-ai-list h3,
.why-grid h3,
.audience-grid h3 {
  margin-bottom: 10px;
}

.free-value-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: start;
  padding: 54px;
  border: 1px solid rgba(35, 104, 232, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 245, 255, 0.9), rgba(255, 255, 255, 0.95)),
    #ffffff;
  box-shadow: 0 18px 52px rgba(11, 31, 51, 0.06);
}

.free-value-panel p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.self-audit-list {
  display: grid;
  gap: 10px;
}

.self-audit-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
}

.self-audit-list span,
.department-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

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

.department-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  color: var(--white);
  background: linear-gradient(145deg, #0b1f33, #2368e8);
}

.department-card.featured p,
.department-card.featured span,
.department-card.featured .department-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.department-kicker {
  margin-bottom: 20px;
}

.playbook-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.playbook-list div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.playbook-list strong,
.playbook-list span {
  display: block;
}

.playbook-list strong {
  margin-bottom: 6px;
  color: var(--white);
}

.safe-ai-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: start;
}

.safe-ai-list {
  grid-template-columns: repeat(2, 1fr);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading.left {
  margin-bottom: 0;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 216px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 104, 232, 0.34);
  box-shadow: 0 24px 70px rgba(35, 104, 232, 0.12);
}

.icon-node {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border: 1px solid rgba(32, 199, 217, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 46%, rgba(35, 104, 232, 0.42) 47%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(32, 199, 217, 0.45) 47%, transparent 54%),
    #f2fbff;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(11, 31, 51, 0.06);
}

.process-track article {
  min-height: 236px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-track article:last-child {
  border-right: 0;
}

.process-track span,
.package-kicker,
.comparison-card span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.process-track p {
  margin-top: 10px;
  color: var(--muted);
}

.workshop-proof-section {
  padding-top: 48px;
}

.workshop-proof-grid,
.tool-stack-grid,
.founder-card {
  display: grid;
  gap: 44px;
  align-items: center;
}

.workshop-proof-grid {
  grid-template-columns: 0.86fr 1.14fr;
}

.workshop-copy p,
.tool-stack-grid p,
.founder-intro p,
.adoption-section .section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.workshop-copy p + p,
.founder-intro p + p {
  margin-top: 16px;
}

.workshop-media {
  position: relative;
  min-height: 560px;
}

.main-workshop-photo,
.floating-workshop-photo,
.founder-photo-card {
  margin: 0;
  border: 1px solid rgba(215, 228, 238, 0.95);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.main-workshop-photo {
  position: absolute;
  inset: 0 70px 72px 0;
}

.main-workshop-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 31, 51, 0.72));
}

.main-workshop-photo img,
.floating-workshop-photo img,
.founder-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-workshop-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 720;
}

.floating-workshop-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 300px);
  height: 220px;
}

.adoption-grid,
.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.adoption-grid article,
.trust-card-grid article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(215, 228, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(11, 31, 51, 0.06);
}

.adoption-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
}

.adoption-grid p,
.trust-card-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.founder-section {
  padding-top: 60px;
}

.founder-card {
  grid-template-columns: minmax(0, 1fr) 430px;
  padding: 54px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 245, 255, 0.92), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.founder-proof {
  display: grid;
  gap: 16px;
}

.founder-photo-card {
  aspect-ratio: 4 / 3;
}

.founder-credentials {
  align-items: flex-start;
}

.trust-card-grid {
  margin-top: 16px;
}

.tool-stack-grid {
  grid-template-columns: 0.92fr 1.08fr;
  padding: 52px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b1f33, #12496b);
  color: var(--white);
  box-shadow: var(--shadow);
}

.tool-stack-grid .eyebrow,
.tool-stack-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.tool-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tool-chip-grid span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 740;
}

.ai-diagram {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: center;
}

.diagram-node {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.diagram-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 1;
  width: 10px;
  height: 1px;
  background: rgba(32, 199, 217, 0.72);
}

.diagram-node.focus {
  min-height: 132px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(35, 104, 232, 0.95), rgba(32, 199, 217, 0.7));
  box-shadow: 0 20px 48px rgba(32, 199, 217, 0.18);
}

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

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.package-card.highlighted {
  color: var(--white);
  border-color: rgba(35, 104, 232, 0);
  background: linear-gradient(145deg, #0b1f33, #246bdc);
}

.package-card.highlighted p,
.package-card.highlighted li,
.package-card.highlighted .price-note,
.package-card.highlighted .package-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0 0 0 18px;
}

.package-card li::marker {
  color: var(--cyan);
}

.price-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-range {
  display: block;
  margin-top: auto;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.package-card.highlighted .price-range {
  color: var(--white);
}

.package-card a {
  margin-top: 18px;
  color: var(--blue);
  font-weight: 820;
  transition: transform 180ms ease;
}

.package-card.highlighted a {
  color: var(--white);
}

.expertise-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 44px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(215, 228, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.portrait-visual {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(35, 104, 232, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(35, 104, 232, 0.12), transparent 38%),
    linear-gradient(40deg, rgba(32, 199, 217, 0.18), transparent 46%),
    #f5fbff;
}

.portrait-visual::before {
  content: "";
  position: absolute;
  inset: 46px 38px;
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: 50% 50% 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(232, 245, 255, 0.82)),
    #eaf6ff;
}

.portrait-visual::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  height: 84px;
  border: 1px solid rgba(35, 104, 232, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(11, 31, 51, 0.08);
}

.portrait-visual span {
  position: absolute;
  right: 70px;
  bottom: 63px;
  left: 70px;
  z-index: 1;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.expertise-card p {
  margin-top: 22px;
  font-size: 18px;
}

.credential-list {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.credential-list span,
.workshop-tags span,
.booking-notes span {
  padding: 8px 11px;
}

.use-case-grid {
  grid-template-columns: repeat(4, 1fr);
}

.use-case-grid article {
  min-height: 190px;
}

.interactive-section {
  padding-top: 28px;
}

.before-after {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 18px;
}

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

.comparison-card {
  min-height: 270px;
}

.comparison-card.muted {
  background: rgba(246, 251, 255, 0.82);
}

.comparison-card strong {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: 24px;
}

.transparency-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.tool-grid {
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 18px;
}

.roi-tool,
.readiness-tool {
  display: grid;
  gap: 22px;
}

.calculator,
.question-list {
  display: grid;
  gap: 12px;
}

label {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 760;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  outline: none;
}

input {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

input:focus,
textarea:focus {
  border-color: rgba(35, 104, 232, 0.58);
  box-shadow: 0 0 0 4px rgba(35, 104, 232, 0.12);
}

input[type="range"] {
  min-height: auto;
  padding: 0;
  accent-color: var(--blue);
}

.roi-result,
.readiness-result {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.roi-result span,
.roi-result small,
.readiness-result p {
  color: rgba(255, 255, 255, 0.74);
}

.roi-result strong,
.readiness-result span {
  display: block;
  margin: 6px 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 820;
}

.question-list label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.question-list input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.workshop-panel {
  padding: 56px;
  border: 1px solid rgba(35, 104, 232, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 245, 255, 0.92), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.workshop-panel p {
  max-width: 760px;
  margin-top: 22px;
  font-size: 18px;
}

.workshop-tags {
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  padding: 0 0 20px;
  color: var(--muted);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 38px;
  align-items: start;
  padding-bottom: 78px;
}

.booking-copy {
  position: sticky;
  top: 104px;
}

.booking-copy p {
  margin-top: 18px;
  font-size: 19px;
}

.booking-notes {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.meeting-output {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(215, 228, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.meeting-output h3 {
  font-size: 16px;
}

.meeting-output ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.error-message {
  display: none;
  margin-top: 6px;
  color: #b42318;
  font-size: 13px;
}

label.invalid input,
label.invalid textarea {
  border-color: #d92d20;
}

label.invalid .error-message {
  display: block;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.success-message {
  display: none;
  margin: 0;
  padding: 14px;
  border-radius: var(--radius);
  color: #065f46;
  background: #dcfce7;
  font-weight: 760;
}

.success-message.visible {
  display: block;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
}

.site-footer p {
  margin-top: 4px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 520px;
}

.footer-contact span {
  padding: 7px 10px;
  border: 1px solid rgba(35, 104, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.mobile-sticky-cta {
  display: none;
}

.desktop-nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-main {
  padding-bottom: 24px;
}

.landing-hero {
  position: relative;
  padding: 86px 0 74px;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  z-index: -1;
  height: 62%;
  background:
    radial-gradient(circle at 20% 35%, rgba(32, 199, 217, 0.16), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(35, 104, 232, 0.14), transparent 31%);
  filter: blur(18px);
}

.landing-hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.landing-signal-card {
  padding: 19px;
  border: 1px solid rgba(215, 228, 238, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f9fcff);
}

.landing-signal-card.active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #0b1f33, #2368e8);
}

.landing-signal-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 760;
  opacity: 0.72;
}

.landing-signal-card strong {
  display: block;
  font-size: 25px;
  line-height: 1.08;
}

.landing-card-grid {
  margin-top: 36px;
}

.landing-process-band {
  margin-top: 20px;
}

.landing-use-case-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.seo-link-section {
  padding-top: 34px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.seo-link-grid a,
.cta-card {
  border: 1px solid rgba(215, 228, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(11, 31, 51, 0.06);
}

.seo-link-grid a {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  color: var(--ink);
  font-weight: 760;
}

.seo-link-grid a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.cta-card {
  display: grid;
  gap: 14px;
  align-content: center;
}

.default-page {
  min-height: 56vh;
}

.default-page h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 62px);
}

@media (max-width: 1040px) {
  .hero-grid,
  .section-grid,
  .solution-band,
  .expertise-card,
  .workshop-proof-grid,
  .founder-card,
  .tool-stack-grid,
  .before-after,
  .tool-grid,
  .landing-use-case-grid,
  .seo-link-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-panel::before,
  .hero-panel::after {
    display: none;
  }

  .workflow-visual {
    margin-top: 0;
  }

  .pain-grid,
  .services-grid,
  .package-grid,
  .use-case-grid,
  .adoption-grid,
  .trust-card-grid,
  .trust-grid,
  .department-grid,
  .safe-ai-list,
  .why-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .free-value-panel,
  .safe-ai-grid {
    grid-template-columns: 1fr;
  }

  .department-card.featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .workshop-media {
    min-height: 500px;
  }

  .founder-card,
  .tool-stack-grid {
    padding: 34px;
  }

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

  .ai-diagram {
    grid-template-columns: 1fr;
  }

  .diagram-node:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -9px;
    width: 1px;
    height: 10px;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-track article:last-child {
    border-bottom: 0;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero-grid,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 64px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .brand img {
    width: 176px;
  }

  .hero-section {
    min-height: auto;
    padding: 54px 0 48px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-lede,
  .rich-text,
  .section-heading p,
  .solution-content p,
  .expertise-card p,
  .workshop-panel p,
  .booking-copy p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .pain-grid,
  .services-grid,
  .package-grid,
  .use-case-grid,
  .comparison-grid,
  .adoption-grid,
  .trust-card-grid,
  .trust-grid,
  .department-grid,
  .safe-ai-list,
  .why-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .department-card.featured {
    grid-column: auto;
  }

  .solution-band,
  .workshop-panel,
  .founder-card,
  .tool-stack-grid,
  .free-value-panel,
  .landing-hero-panel {
    padding: 28px;
  }

  .workshop-media {
    min-height: 420px;
  }

  .main-workshop-photo {
    inset: 0 0 92px 0;
  }

  .floating-workshop-photo {
    width: 62%;
    height: 160px;
  }

  .adoption-grid article,
  .trust-card-grid article {
    min-height: auto;
  }

  .tool-chip-grid span {
    font-size: 12px;
  }

  .expertise-card {
    padding: 22px;
  }

  .portrait-visual {
    min-height: 280px;
  }

  .package-card {
    min-height: auto;
  }

  .roi-result strong,
  .readiness-result span {
    font-size: 29px;
  }

  .booking-form {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 96px;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #168bc8);
    box-shadow: 0 18px 42px rgba(35, 104, 232, 0.3);
    font-weight: 820;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
