﻿.home-reference {
  --ref-bg: #ffffff;
  --ref-ink: #000000;
  --ref-muted: #4a4a4a;
  --ref-accent: #63f44c;
  --ref-card: #ffffff;
  --ref-border: #dedede;
  --ref-soft: #f6f6f6;
  --ref-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
  background: var(--ref-bg);
  color: var(--ref-ink);
  font-family: "Inter", sans-serif;
}

.home-reference .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ref-ink);
  color: #fff;
  padding: 12px 16px;
  z-index: 2000;
}

.home-reference .skip-link:focus {
  left: 12px;
  top: 12px;
}

.home-reference .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.home-reference .navbar.scrolled {
  padding: 0;
  border-color: rgba(99, 244, 76, 0.28);
  background: rgba(0, 0, 0, 0.98);
}

.home-reference .nav-inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 24px;
  min-height: 58px;
  max-width: none;
  padding: 0 20px;
}

.home-reference .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-reference .logo-box {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ref-accent);
  background: rgba(99, 244, 76, 0.16);
}

.home-reference .logo-text {
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
}

.home-reference .logo-accent {
  background: var(--ref-accent);
  border-radius: 4px;
  color: var(--ref-ink);
  padding: 1px 4px;
}

.home-reference .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  justify-self: center;
}

.home-reference .nav-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
  position: relative;
}

.home-reference .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ref-accent);
  transition: transform 0.2s ease;
}

.home-reference .nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-reference a:focus-visible,
.home-reference button:focus-visible {
  outline: 2px solid var(--ref-accent);
  outline-offset: 4px;
}

.home-reference .nav-meta-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.home-reference .nav-meta-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 600;
}

.home-reference .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ref-accent);
  color: var(--ref-ink);
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.24s ease, background 0.24s ease;
}

.home-reference .nav-cta:hover {
  background: #ffffff;
  color: var(--ref-ink);
  transform: translateY(-1px);
}

.home-reference .hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(99, 244, 76, 0.36);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.home-reference .hamburger span {
  width: 16px;
  height: 1.5px;
  background: #ffffff;
}

.home-reference .mobile-menu {
  position: fixed;
  top: 66px;
  left: 16px;
  right: 16px;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--ref-shadow);
  padding: 16px;
  transform-origin: top;
  opacity: 0;
  transform: translateY(-12px) scaleY(0.94);
  pointer-events: none;
  transition: 0.22s ease;
  z-index: 900;
}

.home-reference .mobile-menu.open {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}

.home-reference .mobile-nav {
  display: grid;
  gap: 8px;
}

.home-reference .mobile-link {
  min-height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ref-ink);
  font-weight: 600;
}

.home-reference .mobile-btn {
  margin-top: 6px;
  justify-content: center;
  background: var(--ref-ink);
  color: #fff;
}

.home-reference .mobile-btn:hover {
  background: var(--ref-accent);
  color: var(--ref-ink);
}

.home-reference main {
  position: relative;
}

.home-reference .anchor-target {
  position: relative;
  display: block;
  top: -96px;
  height: 0;
  visibility: hidden;
}

.home-reference .reference-hero {
  min-height: 620px;
  padding: 112px 0 78px;
  border-bottom: 1px solid var(--ref-border);
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px;
}

.home-reference .reference-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.home-reference .hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-reference .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--ref-border);
  color: var(--ref-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
  background: #ffffff;
}

.home-reference .eyebrow-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ref-accent);
  color: #000000;
}

.home-reference .eyebrow-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-reference h1,
.home-reference h2,
.home-reference h3 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ref-ink);
}

.home-reference .hero-copy h1 {
  margin-top: 20px;
  max-width: 17ch;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 850;
}

.home-reference .hero-copy .lead {
  margin-top: 20px;
  max-width: 720px;
  color: var(--ref-muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.home-reference .hero-actions {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.home-reference .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--ref-ink);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-reference .hero-cta:hover {
  background: var(--ref-accent);
  color: var(--ref-ink);
}

.home-reference .hero-link {
  color: var(--ref-ink);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-reference .hero-link:hover {
  color: var(--ref-ink);
  text-decoration: underline;
  text-decoration-color: var(--ref-accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.home-reference .hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.home-reference .hero-proof-row span {
  border: 1px solid #000000;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  padding: 7px 11px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-reference .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 24px;
}

.home-reference .hero-metrics div {
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  animation: metric-float 5.4s ease-in-out infinite;
}

.home-reference .hero-metrics div:nth-child(2) {
  animation-delay: 0.25s;
}

.home-reference .hero-metrics div:nth-child(3) {
  animation-delay: 0.5s;
}

.home-reference .hero-metrics div:hover {
  transform: translateY(-5px);
  border-color: #000000;
  box-shadow: 8px 8px 0 var(--ref-accent);
}

.home-reference .metric-icon,
.home-reference .process-icon,
.home-reference .portfolio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.home-reference .metric-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  background: #000000;
  color: var(--ref-accent);
  animation: metric-icon-pulse 3.6s ease-in-out infinite;
}

.home-reference .hero-metrics div:nth-child(2) .metric-icon {
  animation-delay: 0.25s;
}

.home-reference .hero-metrics div:nth-child(3) .metric-icon {
  animation-delay: 0.5s;
}

.home-reference .metric-icon svg,
.home-reference .process-icon svg,
.home-reference .portfolio-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-reference .hero-metrics dt {
  color: var(--ref-ink);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.home-reference .hero-metrics dd {
  margin-top: 7px;
  color: var(--ref-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.home-reference .storefront-panel {
  position: relative;
  overflow: hidden;
  width: min(1040px, 100%);
  min-height: 330px;
  margin: 0 auto;
  border: 1px solid #000000;
  border-radius: 8px;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #000000;
  background-size: 38px 38px;
  box-shadow: 16px 16px 0 var(--ref-accent);
  padding: 22px;
  animation: panel-lift 6s ease-in-out infinite;
}

.home-reference .panel-topbar {
  display: flex;
  gap: 7px;
}

.home-reference .panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  animation: panel-dot 2.8s ease-in-out infinite;
}

.home-reference .panel-topbar span:first-child {
  background: var(--ref-accent);
}

.home-reference .panel-topbar span:nth-child(2) {
  animation-delay: 0.18s;
}

.home-reference .panel-topbar span:nth-child(3) {
  animation-delay: 0.36s;
}

.home-reference .panel-hero-line {
  position: relative;
  overflow: hidden;
  width: 54%;
  height: 34px;
  margin-top: 62px;
  border-radius: 8px;
  background: #ffffff;
}

.home-reference .panel-hero-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(99, 244, 76, 0.58), transparent);
  animation: panel-scan 3.4s ease-in-out infinite;
}

.home-reference .panel-hero-line--short {
  width: 34%;
  height: 18px;
  margin-top: 14px;
  background: var(--ref-accent);
}

.home-reference .panel-hero-line--short::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation-delay: 0.55s;
}

.home-reference .panel-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 58%;
  margin-top: 32px;
}

.home-reference .panel-products span {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  animation: panel-card 4.6s ease-in-out infinite;
}

.home-reference .panel-products span:nth-child(2) {
  animation-delay: 0.3s;
}

.home-reference .panel-products span:nth-child(3) {
  animation-delay: 0.6s;
}

.home-reference .panel-checklist {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(99, 244, 76, 0.7);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.86);
  padding: 18px;
}

.home-reference .panel-checklist h2 {
  color: #ffffff;
  font-size: 1.25rem;
}

.home-reference .panel-checklist ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.home-reference .panel-checklist li {
  border-radius: 999px;
  background: var(--ref-accent);
  color: #000000;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  animation: panel-chip 4.2s ease-in-out infinite;
}

.home-reference .panel-checklist li:nth-child(2) {
  animation-delay: 0.22s;
}

.home-reference .panel-checklist li:nth-child(3) {
  animation-delay: 0.44s;
}

.home-reference .reference-brands,
.home-reference .commerce-system,
.home-reference .reference-process,
.home-reference .reference-portfolio,
.home-reference .reference-testimonials,
.home-reference .reference-faq,
.home-reference .reference-cta {
  padding: 72px 0;
}

.home-reference .reference-brands h2,
.home-reference .commerce-system h2,
.home-reference .reference-process h2,
.home-reference .reference-portfolio h2,
.home-reference .reference-testimonials h2,
.home-reference .reference-faq h2,
.home-reference .reference-cta h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.home-reference .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.68fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.home-reference .section-heading h2 {
  max-width: 15ch;
}

.home-reference .section-heading p:last-child {
  color: var(--ref-muted);
  line-height: 1.78;
}

.home-reference .section-label {
  grid-column: 1 / -1;
  width: fit-content;
  border: 1px solid #000000;
  border-radius: 999px;
  background: var(--ref-accent);
  color: #000000;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  font-weight: 900;
}

.home-reference .reference-process {
  border-bottom: 1px solid var(--ref-border);
}

.home-reference .reference-process .section-heading {
  align-items: start;
}

.home-reference .reference-process .section-heading p:last-child {
  padding-top: 28px;
}

.home-reference .reference-process .section-heading h2 {
  max-width: 22ch;
}

.home-reference .commerce-system {
  border-bottom: 1px solid var(--ref-border);
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px;
}

.home-reference .commerce-system .section-heading h2 {
  max-width: 20ch;
}

.home-reference .system-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 18px;
  align-items: stretch;
}

.home-reference .system-showcase {
  position: sticky;
  top: 86px;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid #000000;
  border-radius: 8px;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #000000;
  background-size: 38px 38px;
  color: #ffffff;
  padding: 26px;
  box-shadow: 14px 14px 0 var(--ref-accent);
}

.home-reference .system-showcase::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(99, 244, 76, 0.55);
  border-radius: 50%;
}

.home-reference .system-showcase::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ref-accent);
  opacity: 0.16;
  animation: showcase-pulse 4.2s ease-in-out infinite;
}

.home-reference .showcase-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  background: var(--ref-accent);
  color: #000000;
  padding: 5px 9px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-reference .system-showcase h3 {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
  font-weight: 800;
}

.home-reference .showcase-stack {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 10px;
  z-index: 1;
}

.home-reference .showcase-stack span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  padding: 13px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-reference .system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.home-reference .system-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  align-items: start;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-reference .system-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--ref-accent);
  transform: scaleX(0.16);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.home-reference .system-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -58px;
  bottom: -58px;
  border-radius: 50%;
  background: var(--ref-accent);
  opacity: 0.28;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.home-reference .system-card:hover {
  transform: translateY(-4px);
  border-color: #000000;
  box-shadow: 10px 10px 0 var(--ref-accent);
}

.home-reference .system-card:hover::before {
  transform: scaleX(1);
}

.home-reference .system-card:hover::after {
  opacity: 0.72;
  transform: scale(1.08);
}

.home-reference .system-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  border-radius: 8px;
  background: #000000;
  color: var(--ref-accent);
  font-weight: 900;
}

.home-reference .system-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 0;
  font-size: 1.28rem;
}

.home-reference .system-card p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin-top: 12px;
  color: var(--ref-muted);
  line-height: 1.72;
}

.home-reference .process-steps {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-reference .process-step {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-reference .process-step::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 116px;
  right: -48px;
  top: -48px;
  border-radius: 50%;
  background: var(--ref-accent);
  opacity: 0.88;
}

.home-reference .process-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
}

.home-reference .process-step:hover {
  transform: translateY(-4px);
  border-color: #000000;
  box-shadow: 10px 10px 0 var(--ref-accent);
}

.home-reference .step-number {
  position: relative;
  z-index: 1;
  color: #000000;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.88;
  font-weight: 900;
}

.home-reference .process-step h3 {
  margin-top: auto;
  font-size: 1.35rem;
}

.home-reference .process-step p {
  margin-top: 12px;
  color: var(--ref-muted);
  line-height: 1.72;
}

.home-reference .reference-brands h2 {
  max-width: 18ch;
}

.home-reference .logo-wall {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-reference .logo-wall span {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ref-muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-reference .logo-wall span:hover {
  border-color: #000000;
  background: var(--ref-accent);
  color: #000000;
}

.home-reference .portfolio-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-reference .portfolio-card {
  background: var(--ref-card);
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--ref-shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-reference .portfolio-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  background: var(--ref-accent);
  color: #000000;
}

.home-reference .portfolio-card:hover {
  transform: translateY(-4px);
  border-color: #000000;
  box-shadow: 10px 10px 0 var(--ref-accent);
}

.home-reference .portfolio-kicker {
  display: inline-flex;
  width: fit-content;
  margin-top: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--ref-accent);
  color: var(--ref-ink);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.home-reference .portfolio-card h3 {
  margin-top: 10px;
  font-size: 1.48rem;
}

.home-reference .portfolio-card p {
  margin-top: 10px;
  color: var(--ref-muted);
  line-height: 1.72;
}

.home-reference .card-action {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  border-bottom: 3px solid var(--ref-accent);
  color: #000000;
  font-size: 0.88rem;
  font-weight: 800;
}

.home-reference .card-action:hover {
  border-color: #000000;
  color: #000000;
}

.home-reference .quotes-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-reference .quote-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-reference .quote-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--ref-accent);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.home-reference .quote-card:hover {
  transform: translateY(-5px);
  border-color: #000000;
  box-shadow: 10px 10px 0 var(--ref-accent);
}

.home-reference .quote-card:hover::before {
  transform: scaleX(1);
}

.home-reference .quote-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #000000;
  color: var(--ref-accent);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 22px;
}

.home-reference .quote-card blockquote {
  color: var(--ref-ink);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
  font-weight: 500;
}

.home-reference .quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  font-weight: 800;
}

.home-reference .quote-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ref-accent);
  color: #000000;
  font-size: 0.78rem;
  font-weight: 900;
}

.home-reference .qualification-section {
  border-top: 1px solid var(--ref-border);
  border-bottom: 1px solid var(--ref-border);
  background: #ffffff;
}

.home-reference .qualification-section .section-heading h2 {
  max-width: 21ch;
}

.home-reference .qualification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.home-reference .qualification-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-reference .qualification-card::before {
  content: "";
  position: absolute;
  left: -72%;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(99, 244, 76, 0.22), transparent);
  transform: skewX(-14deg);
  pointer-events: none;
}

.home-reference.reveal-ready .qualification-card.is-visible::before {
  animation: qualification-shine 2.5s ease both;
}

.home-reference.reveal-ready .qualification-card.is-visible:nth-child(2)::before {
  animation-delay: 0.16s;
}

.home-reference.reveal-ready .qualification-card.is-visible:nth-child(3)::before {
  animation-delay: 0.32s;
}

.home-reference.reveal-ready .qualification-card.is-visible:nth-child(4)::before {
  animation-delay: 0.48s;
}

.home-reference .qualification-card:hover {
  transform: translateY(-4px);
  border-color: #000000;
  box-shadow: 10px 10px 0 var(--ref-accent);
}

.home-reference .qualification-card strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ref-accent);
  color: #000000;
  font-size: 0.85rem;
  font-weight: 900;
}

.home-reference .qualification-card h3 {
  margin-top: 28px;
  font-size: 1.1rem;
}

.home-reference .qualification-card p {
  margin-top: 10px;
  color: var(--ref-muted);
  line-height: 1.68;
}

.home-reference .reference-faq {
  border-top: 1px solid var(--ref-border);
  border-bottom: 1px solid var(--ref-border);
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px;
}

.home-reference .reference-faq .section-heading {
  align-items: center;
}

.home-reference .faq-list {
  max-width: 940px;
  margin: 8px auto 0;
  border-top: 1px solid #cfcfcf;
}

.home-reference .faq-item {
  border-bottom: 1px solid #cfcfcf;
}

.home-reference .faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: var(--ref-ink);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  transition: color 0.2s ease;
}

.home-reference .faq-question:hover {
  color: #000000;
}

.home-reference .faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #666666;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.home-reference .faq-question:hover .faq-toggle,
.home-reference .faq-question[aria-expanded="true"] .faq-toggle {
  color: var(--ref-accent);
}

.home-reference .faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.home-reference .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.home-reference .faq-answer.open {
  max-height: 180px;
  padding-bottom: 22px;
}

.home-reference .faq-answer p {
  max-width: 760px;
  color: var(--ref-muted);
  line-height: 1.75;
}

.home-reference .cta-shell {
  border: 1px solid #000000;
  background: #000000;
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 14px 14px 0 var(--ref-accent);
}

.home-reference .cta-shell h2 {
  color: #ffffff;
}

.home-reference .cta-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--ref-accent);
  color: #000000;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-reference .cta-shell p {
  margin-top: 12px;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.78;
}

.home-reference .cta-links {
  margin-top: 20px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-reference .cta-links a {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.home-reference .cta-links a:hover {
  background: var(--ref-accent);
  border-color: var(--ref-accent);
  color: var(--ref-ink);
}

.home-reference .footer {
  border-top: 1px solid #000000;
  background: #000000;
  padding: 20px 0 18px;
  margin-top: 0;
}

.home-reference .footer-inner {
  display: block;
}

.home-reference .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-reference .footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.home-reference .footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.home-reference .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 600;
}

.home-reference .footer-bottom-links a:hover {
  color: var(--ref-accent);
  text-decoration: underline;
  text-decoration-color: var(--ref-accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.home-reference [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-reference.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes panel-lift {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 16px 16px 0 var(--ref-accent);
  }

  50% {
    transform: translateY(-6px);
    box-shadow: 20px 22px 0 var(--ref-accent);
  }
}

@keyframes panel-dot {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes panel-scan {
  0% {
    transform: translateX(-110%);
  }

  46%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes panel-card {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.24);
  }

  50% {
    transform: translateY(-8px);
    border-color: rgba(99, 244, 76, 0.7);
  }
}

@keyframes panel-chip {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes metric-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: none;
  }

  50% {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }
}

@keyframes metric-icon-pulse {
  0%,
  100% {
    transform: scale(1);
    color: var(--ref-accent);
  }

  50% {
    transform: scale(1.08);
    color: #ffffff;
  }
}

@keyframes showcase-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.16;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0.28;
  }
}

@keyframes qualification-shine {
  0% {
    left: -72%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  58%,
  100% {
    left: 124%;
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .home-reference .container {
    padding: 0 26px;
  }

  .home-reference .nav-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .home-reference .nav-meta-links {
    display: none;
  }

  .home-reference .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-reference .qualification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-reference .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .home-reference .nav-links,
  .home-reference .nav-cta {
    display: none;
  }

  .home-reference .logo {
    grid-column: 1;
    justify-self: start;
  }

  .home-reference .hamburger {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
  }

  .home-reference .reference-hero {
    padding-top: 104px;
    min-height: auto;
  }

  .home-reference .reference-hero__inner,
  .home-reference .section-heading,
  .home-reference .system-grid,
  .home-reference .process-steps,
  .home-reference .portfolio-grid,
  .home-reference .qualification-grid,
  .home-reference .quotes-grid,
  .home-reference .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .home-reference .footer-bottom-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .home-reference .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-reference .storefront-panel {
    min-height: 390px;
    box-shadow: 10px 10px 0 var(--ref-accent);
  }

  .home-reference .system-layout {
    grid-template-columns: 1fr;
  }

  .home-reference .system-showcase {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .home-reference .hero-metrics {
    grid-template-columns: 1fr;
  }

  .home-reference .process-step {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .home-reference .container {
    padding: 0 18px;
  }

  .home-reference .logo-text {
    letter-spacing: 0;
    font-size: 0.75rem;
  }

  .home-reference .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.67;
  }

  .home-reference .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.45rem, 12vw, 3.8rem);
    line-height: 1;
  }

  .home-reference .panel-products,
  .home-reference .panel-hero-line,
  .home-reference .panel-hero-line--short {
    width: 100%;
  }

  .home-reference .system-card {
    grid-template-columns: 1fr;
  }

  .home-reference .system-card p {
    grid-column: auto;
  }

  .home-reference .logo-wall {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-reference .storefront-panel,
  .home-reference .hero-metrics div,
  .home-reference .metric-icon,
  .home-reference .panel-topbar span,
  .home-reference .panel-hero-line::after,
  .home-reference .panel-products span,
  .home-reference .panel-checklist li,
  .home-reference.reveal-ready .qualification-card.is-visible::before,
  .home-reference .system-showcase::after {
    animation: none;
  }

  .home-reference [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Blueprint-inspired home rebuild */
.home-reference .blueprint-home {
  background: #ffffff;
  color: #000000;
}

.home-reference .blueprint-home .container {
  max-width: 1200px;
}

.home-reference .blueprint-hero {
  min-height: 0;
  padding: 118px 0 80px;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px;
}

.home-reference .blueprint-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.home-reference .blueprint-hero__copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-reference .blueprint-kicker,
.home-reference .blueprint-heading p,
.home-reference .blueprint-plans article > span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--ref-accent);
  color: #000000;
  padding: 6px 11px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-reference .blueprint-hero h1 {
  max-width: none;
  margin-top: 24px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  hyphens: none;
  overflow-wrap: normal;
}

.home-reference .blueprint-lead {
  max-width: 610px;
  margin-top: 24px;
  color: #333333;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.58;
  font-weight: 600;
}

.home-reference .blueprint-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  padding: 0 22px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.home-reference .blueprint-primary:hover {
  background: var(--ref-accent);
  color: #000000;
  box-shadow: 6px 6px 0 #000000;
  transform: translateY(-2px);
}

.home-reference .blueprint-rating {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-reference .blueprint-rating span {
  color: #21bd18;
  letter-spacing: 1px;
}

.home-reference .blueprint-hero__visual {
  position: relative;
  min-height: 560px;
}

.home-reference .blueprint-window {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid #000000;
  border-radius: 8px;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #050505;
  background-size: 48px 48px;
  box-shadow: 16px 16px 0 var(--ref-accent);
  color: #ffffff;
  padding: 30px;
}

.home-reference .blueprint-window > span {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.75;
}

.home-reference .blueprint-window > span:first-child {
  background: var(--ref-accent);
  opacity: 1;
}

.home-reference .blueprint-window strong {
  display: block;
  margin-top: 118px;
  color: var(--ref-accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-reference .blueprint-window p {
  max-width: 9ch;
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 0.88;
  font-weight: 900;
}

.home-reference .blueprint-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid #000000;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 7px 7px 0 var(--ref-accent);
  padding: 0 14px;
  color: #000000;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-reference .blueprint-card--one {
  top: 78px;
  right: -16px;
}

.home-reference .blueprint-card--two {
  left: -22px;
  bottom: 126px;
}

.home-reference .blueprint-card--three {
  right: 24px;
  bottom: 48px;
}

.home-reference .blueprint-logos,
.home-reference .blueprint-pillars,
.home-reference .blueprint-proof,
.home-reference .blueprint-process,
.home-reference .blueprint-why,
.home-reference .blueprint-plans,
.home-reference .blueprint-founder {
  padding: 78px 0;
  border-top: 1px solid var(--ref-border);
}

.home-reference .blueprint-logos__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ref-muted);
  margin-bottom: 20px;
}

.home-reference .blueprint-logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.home-reference .blueprint-logo-row span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 104px;
  padding: 22px 16px;
  border: 1px solid var(--ref-border);
  border-radius: 12px;
  background: var(--ref-soft);
  color: #000000;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.home-reference .blueprint-logo-row span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ref-accent);
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.home-reference .blueprint-logo-row span:hover {
  border-color: var(--ref-accent);
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(99, 244, 76, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.home-reference .blueprint-logo-row span:hover::before {
  transform: scaleX(1);
}

.home-reference .blueprint-logo-row__icon {
  opacity: 0.4;
  transition: opacity 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.home-reference .blueprint-logo-row span:hover .blueprint-logo-row__icon {
  opacity: 1;
  color: var(--ref-accent);
}

.home-reference .blueprint-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.home-reference .blueprint-pillars .blueprint-heading h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
}

.home-reference .blueprint-process .blueprint-heading h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
}

.home-reference .blueprint-why .blueprint-heading h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
}

.home-reference .blueprint-heading h2,
.home-reference .blueprint-proof h2,
.home-reference .blueprint-founder h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.02;
  font-weight: 800;
}

.home-reference .blueprint-pillars__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.home-reference .blueprint-pillar-map {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 12px;
  border: 1px solid #000000;
  border-radius: 8px;
  background: #000000;
  box-shadow: 14px 14px 0 var(--ref-accent);
  padding: 28px;
}

.home-reference .blueprint-pillar-map span {
  display: flex;
  min-height: 74px;
  align-items: center;
  border: 1px solid rgba(99, 244, 76, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 0 18px;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-reference .blueprint-pillar-list,
.home-reference .blueprint-steps,
.home-reference .blueprint-why__grid,
.home-reference .blueprint-plan-grid {
  display: grid;
  gap: 14px;
}

.home-reference .blueprint-pillar-list article,
.home-reference .blueprint-steps article,
.home-reference .blueprint-why__grid article,
.home-reference .blueprint-plan-grid article {
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(20px, 3vw, 30px);
}

.home-reference .blueprint-pillar-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.74fr) minmax(240px, 1fr);
  gap: 20px;
  align-items: start;
}

.home-reference .blueprint-pillar-list article span,
.home-reference .blueprint-steps article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--ref-accent);
  color: #000000;
  font-weight: 900;
}

.home-reference .blueprint-pillar-list h3 {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.22;
  font-weight: 700;
}

.home-reference .blueprint-why__grid h3,
.home-reference .blueprint-plan-grid h3 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.08;
  font-weight: 900;
}

.home-reference .blueprint-steps h3 {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.08;
  font-weight: 900;
}

.home-reference .blueprint-pillar-list p,
.home-reference .blueprint-steps p,
.home-reference .blueprint-why__grid p,
.home-reference .blueprint-plan-grid p,
.home-reference .blueprint-proof__copy p,
.home-reference .blueprint-founder p {
  color: var(--ref-muted);
  line-height: 1.72;
}

.home-reference .blueprint-proof {
  background: #000000;
  color: #ffffff;
  padding: 96px 0;
}

.home-reference .blueprint-proof h2 {
  margin-top: 22px;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
}

.home-reference .blueprint-proof__grid,
.home-reference .blueprint-founder__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.home-reference .blueprint-proof__copy {
  display: grid;
  gap: 24px;
}

.home-reference .blueprint-proof__copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.8;
}

.home-reference .blueprint-steps {
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.home-reference .blueprint-steps article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 12px;
  min-height: auto;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.home-reference .blueprint-steps article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ref-accent);
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.home-reference .blueprint-steps article:hover {
  border-color: var(--ref-accent);
  box-shadow: 0 6px 24px rgba(99, 244, 76, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.home-reference .blueprint-steps article:hover::before {
  transform: scaleX(1);
}

.home-reference .blueprint-steps article span {
  width: 32px;
  height: 32px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.home-reference .blueprint-steps h3 {
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
}

.home-reference .blueprint-steps p {
  font-size: 0.85rem;
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

.home-reference .blueprint-why__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-reference .blueprint-why__grid article {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.home-reference .blueprint-why__grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ref-accent);
  border-radius: 14px 14px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.home-reference .blueprint-why__grid article:hover {
  border-color: var(--ref-accent);
  box-shadow: 0 6px 24px rgba(99, 244, 76, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.home-reference .blueprint-why__grid article:hover::before {
  transform: scaleX(1);
}

.home-reference .blueprint-why__grid h3 {
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-reference .blueprint-why__grid p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--ref-muted);
}

.home-reference .blueprint-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-reference .blueprint-plans .blueprint-heading h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.home-reference .blueprint-plan-grid article {
  display: grid;
  gap: 16px;
  align-content: start;
  border-color: #000000;
}

.home-reference .blueprint-plan-grid article:nth-child(2) {
  background: #000000;
  color: #ffffff;
  box-shadow: 12px 12px 0 var(--ref-accent);
}

.home-reference .blueprint-plan-grid article:nth-child(2) h3,
.home-reference .blueprint-plan-grid article:nth-child(2) p {
  color: #ffffff;
}

.home-reference .blueprint-plan-grid h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.18;
  font-weight: 800;
}

.home-reference .blueprint-plan-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  min-height: 44px;
  border: 1px solid #000000;
  border-radius: 999px;
  background: var(--ref-accent);
  color: #000000;
  padding: 0 16px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-reference .blueprint-founder {
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.032) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px;
}

.home-reference .blueprint-founder h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.14;
  font-weight: 700;
}

.home-reference .blueprint-founder p {
  font-size: 1rem;
  line-height: 1.78;
}

.home-reference .blueprint-founder .cta-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-reference .blueprint-founder .cta-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border: 1px solid #000000;
  border-radius: 999px;
  background: transparent;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.home-reference .blueprint-founder .cta-links a:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

@media (max-width: 1080px) {
  .home-reference .blueprint-hero__inner,
  .home-reference .blueprint-pillars__grid,
  .home-reference .blueprint-proof__grid,
  .home-reference .blueprint-founder__grid {
    grid-template-columns: 1fr;
  }

  .home-reference .blueprint-hero__visual,
  .home-reference .blueprint-window {
    min-height: 430px;
  }

  .home-reference .blueprint-pillar-map {
    position: relative;
    top: auto;
  }

  .home-reference .blueprint-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-reference .blueprint-steps,
  .home-reference .blueprint-why__grid,
  .home-reference .blueprint-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  /* Hero */
  .home-reference .blueprint-hero {
    min-height: auto;
    padding: 88px 0 48px;
  }

  .home-reference .blueprint-hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
    line-height: 1.1;
  }

  .home-reference .blueprint-lead {
    font-size: 0.98rem;
    margin-top: 16px;
  }

  .home-reference .blueprint-primary {
    width: 100%;
    margin-top: 20px;
  }

  /* Section paddings */
  .home-reference .blueprint-logos,
  .home-reference .blueprint-pillars,
  .home-reference .blueprint-proof,
  .home-reference .blueprint-process,
  .home-reference .blueprint-why,
  .home-reference .blueprint-plans,
  .home-reference .blueprint-founder {
    padding: 48px 0;
  }

  .home-reference .blueprint-heading {
    gap: 12px;
    margin-bottom: 24px;
  }

  /* Headings */
  .home-reference .blueprint-heading h2,
  .home-reference .blueprint-proof h2,
  .home-reference .blueprint-founder h2 {
    max-width: none;
    font-size: clamp(1.65rem, 7vw, 2.4rem);
    line-height: 1.1;
  }

  /* Specialty cards: 2×3 grid */
  .home-reference .blueprint-logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-reference .blueprint-logo-row span {
    min-height: 80px;
    padding: 16px 12px;
    gap: 8px;
    font-size: 0.72rem;
  }

  /* Hide decorative pillar map on mobile */
  .home-reference .blueprint-pillar-map {
    display: none;
  }

  /* Pillar list: number + title inline, description full-width below */
  .home-reference .blueprint-pillar-list article {
    grid-template-columns: 40px 1fr;
    gap: 8px 14px;
  }

  .home-reference .blueprint-pillar-list article p {
    grid-column: 1 / -1;
  }

  /* Steps: 1 col, remove fixed height */
  .home-reference .blueprint-steps {
    grid-template-columns: 1fr;
  }

  .home-reference .blueprint-steps article {
    min-height: auto;
  }

  /* Why + Plans: 1 col */
  .home-reference .blueprint-why__grid,
  .home-reference .blueprint-plan-grid {
    grid-template-columns: 1fr;
  }

  .home-reference .blueprint-plan-grid article {
    min-height: auto;
  }

  /* Proof + Founder grids */
  .home-reference .blueprint-proof__grid,
  .home-reference .blueprint-founder__grid {
    gap: 28px;
  }

  /* CTA links: stack vertically */
  .home-reference .cta-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .home-reference .cta-links a {
    text-align: center;
    justify-content: center;
  }

  /* Visual window */
  .home-reference .blueprint-hero__visual {
    min-height: 360px;
  }

  .home-reference .blueprint-window {
    min-height: 320px;
    padding: 20px;
    box-shadow: 8px 8px 0 var(--ref-accent);
  }

  .home-reference .blueprint-window strong {
    margin-top: 60px;
  }

  .home-reference .blueprint-window p {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .home-reference .blueprint-card {
    position: static;
    margin-top: 10px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .home-reference .container {
    padding: 0 16px;
  }

  .home-reference .blueprint-hero {
    padding: 76px 0 40px;
  }

  .home-reference .blueprint-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .home-reference .blueprint-lead {
    font-size: 0.94rem;
  }

  .home-reference .blueprint-kicker,
  .home-reference .blueprint-heading p,
  .home-reference .blueprint-plans article > span {
    font-size: 0.68rem;
    padding: 5px 10px;
  }

  .home-reference .blueprint-logos,
  .home-reference .blueprint-pillars,
  .home-reference .blueprint-proof,
  .home-reference .blueprint-process,
  .home-reference .blueprint-why,
  .home-reference .blueprint-plans,
  .home-reference .blueprint-founder {
    padding: 40px 0;
  }

  .home-reference .blueprint-logo-row span {
    min-height: 72px;
    font-size: 0.68rem;
  }

  .home-reference .blueprint-plan-grid article:nth-child(2) {
    box-shadow: 8px 8px 0 var(--ref-accent);
  }
}
