/* =========================================================
   HOME PAGE V4
   Learning Rewired Lab
   Cinematic product/platform homepage
   Header and footer are injected by shared JS
   ========================================================= */

.home-page-v4 {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(49, 89, 245, 0.08), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(20, 184, 166, 0.08), transparent 30%),
    #ffffff;
  color: #080b12;
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-page-v4 *,
.home-page-v4 *::before,
.home-page-v4 *::after {
  box-sizing: border-box;
}

.home-cinematic-section,
.home-motion-section,
.home-positioning-section,
.home-navigator-section,
.home-philosophy-section,
.home-featured-section,
.home-receipts-section,
.home-final-cta-section {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.home-cinematic-inner,
.home-motion-inner,
.home-positioning-card,
.home-philosophy-shell,
.home-featured-grid,
.home-receipts-inner,
.home-final-cta-card {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.home-navigator-grid,
.home-section-header {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.home-eyebrow,
.home-section-kicker,
.home-card-label {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3159f5;
}


/* Buttons */

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.home-btn:hover {
  transform: translateY(-2px);
}

.home-btn-primary {
  color: #ffffff;
  background: linear-gradient(100deg, #1d4cff 0%, #6845ff 56%, #00a99d 120%);
  box-shadow: 0 18px 44px rgba(29, 76, 255, 0.24);
}

.home-btn-secondary {
  color: #101827;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 24, 39, 0.13);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}


/* Cinematic opening */

.home-cinematic-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(76px, 8vw, 130px);
  padding-bottom: clamp(84px, 9vw, 146px);
  background:
    radial-gradient(circle at 14% 10%, rgba(49, 89, 245, 0.10), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(20, 184, 166, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 52%, #ffffff 100%);
}

.home-cinematic-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-cinematic-bg::before {
  content: "";
  position: absolute;
  inset: 9% 7%;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 56% 42%, black, transparent 72%);
}

.home-cinematic-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.7;
}

.home-cinematic-orb.one {
  width: min(46vw, 680px);
  aspect-ratio: 1;
  right: -10%;
  top: 4%;
  background:
    radial-gradient(circle, rgba(49, 89, 245, 0.18), transparent 58%),
    radial-gradient(circle at 72% 30%, rgba(20, 184, 166, 0.16), transparent 42%);
}

.home-cinematic-orb.two {
  width: min(34vw, 460px);
  aspect-ratio: 1;
  left: -12%;
  bottom: 2%;
  background:
    radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 58%),
    radial-gradient(circle at 40% 70%, rgba(37, 99, 235, 0.10), transparent 46%);
}

.home-cinematic-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 89, 245, 0.36), rgba(20, 184, 166, 0.30), transparent);
}

.home-cinematic-line.line-one {
  width: 68%;
  right: 6%;
  top: 28%;
  transform: rotate(-7deg);
}

.home-cinematic-line.line-two {
  width: 54%;
  left: 7%;
  bottom: 22%;
  transform: rotate(8deg);
}

.home-cinematic-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.home-cinematic-mark-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.home-cinematic-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.home-cinematic-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #07111f;
  font-size: clamp(4rem, 7.15vw, 7.15rem);
  line-height: 0.96;
  letter-spacing: -0.074em;
  padding-bottom: 0.22em;
  overflow: visible;
}

.home-cinematic-copy h1 span {
  display: block;
  max-width: 820px;
  padding-bottom: 0.1em;
  background: linear-gradient(100deg, #1c4cff 0%, #6c3cff 48%, #00a99d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-cinematic-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: #4e5a6d;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.72;
}

.home-cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.home-cinematic-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-cinematic-signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(49, 89, 245, 0.14);
  color: #344154;
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}


/* Lab OS visual */

.home-lab-os {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  padding: 14px;
  background:
    linear-gradient(145deg, #07111f 0%, #111827 54%, #172554 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 34px 92px rgba(12, 20, 38, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.home-lab-os::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    radial-gradient(circle at 16% 10%, rgba(49, 89, 245, 0.38), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(20, 184, 166, 0.28), transparent 30%);
  pointer-events: none;
}

.home-lab-os-topbar {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.70);
}

.home-lab-os-dots {
  display: flex;
  gap: 7px;
}

.home-lab-os-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.home-lab-os-topbar p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-lab-os-screen {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(22px, 4vw, 30px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 8%, rgba(74, 111, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 255, 0.94));
}

.home-lab-os-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 78%);
  pointer-events: none;
}

.home-lab-os-primary,
.home-lab-os-grid,
.home-lab-os-footer {
  position: relative;
  z-index: 1;
}

.home-lab-os-primary {
  padding: 24px;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #101827, #1d4cff 58%, #00a99d 125%);
  box-shadow: 0 22px 54px rgba(29, 76, 255, 0.22);
}

.home-lab-os-primary p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-lab-os-primary h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 2.55vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-lab-os-primary h2 span {
  display: block;
}

.home-lab-os-meter {
  height: 8px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.home-lab-os-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, rgba(112, 224, 212, 0.95));
}

.home-lab-os-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.home-lab-os-card {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 24, 39, 0.09);
  color: #111827;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.home-lab-os-card:hover {
  transform: translateY(-3px);
  border-color: rgba(49, 89, 245, 0.24);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.10);
}

.home-lab-os-card.active {
  background:
    radial-gradient(circle at 14% 12%, rgba(49, 89, 245, 0.13), transparent 34%),
    #ffffff;
}

.home-lab-os-card span {
  color: #3159f5;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.home-lab-os-card strong {
  color: #111827;
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.home-lab-os-card p {
  margin: 0;
  color: #667085;
  font-size: 0.84rem;
  line-height: 1.42;
  font-weight: 680;
}

.home-lab-os-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.home-lab-os-footer div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(16, 24, 39, 0.055);
  border: 1px solid rgba(16, 24, 39, 0.08);
}

.home-lab-os-footer strong,
.home-lab-os-footer span {
  display: block;
}

.home-lab-os-footer strong {
  color: #111827;
  font-size: 0.92rem;
  letter-spacing: -0.025em;
}

.home-lab-os-footer span {
  margin-top: 6px;
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 700;
}


/* Lab in Motion */

.home-motion-section {
  position: relative;
}

.home-motion-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.home-motion-copy h2 {
  margin: 0;
  color: #07111f;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.home-motion-copy h2 span {
  display: block;
  padding-bottom: 0.06em;
  background: linear-gradient(100deg, #1c4cff 0%, #6c3cff 46%, #00a99d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-motion-copy p:not(.home-section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #526074;
  font-size: 1.05rem;
  line-height: 1.72;
}

.home-motion-reel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 10%, rgba(49, 89, 245, 0.16), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(20, 184, 166, 0.15), transparent 32%),
    linear-gradient(145deg, #07111f, #111827 58%, #172554);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 32px 90px rgba(12, 20, 38, 0.22);
}

.home-motion-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 74%);
  pointer-events: none;
}

.home-motion-reel::after {
  content: "";
  position: absolute;
  inset: auto 10% 18% 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 224, 212, 0.72), transparent);
  opacity: 0.8;
}

.home-motion-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-motion-panel {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.home-motion-panel:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(112, 224, 212, 0.32);
}

.home-motion-panel p {
  margin: 0 0 auto;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.home-motion-panel h3 {
  margin: 30px 0 8px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-motion-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 760;
}

.home-signal-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-signal-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 850;
}


/* Shared sections */

.home-motion-section,
.home-positioning-section,
.home-navigator-section,
.home-philosophy-section,
.home-featured-section,
.home-receipts-section,
.home-final-cta-section {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.home-section-header {
  max-width: 780px;
  margin-bottom: clamp(36px, 4vw, 56px);
  text-align: center;
}

.home-section-header h2,
.home-positioning-card h2,
.home-philosophy-copy h2,
.home-receipts-copy h2,
.home-final-cta-card h2 {
  margin: 0;
  color: #07111f;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.home-section-header h2 span,
.home-positioning-card h2 span,
.home-philosophy-copy h2 span,
.home-receipts-copy h2 span,
.home-final-cta-card h2 span {
  display: block;
  padding-bottom: 0.06em;
  background: linear-gradient(100deg, #1c4cff 0%, #6c3cff 46%, #00a99d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-section-header p,
.home-positioning-card p,
.home-philosophy-copy p,
.home-receipts-copy p,
.home-final-cta-card p {
  margin: 22px auto 0;
  color: #526074;
  font-size: 1.05rem;
  line-height: 1.72;
}


/* Positioning */

.home-positioning-card {
  max-width: 980px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 16% 12%, rgba(49, 89, 245, 0.13), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(0, 169, 157, 0.12), transparent 30%),
    linear-gradient(145deg, #f8faff, #ffffff);
  border: 1px solid rgba(16, 24, 39, 0.09);
  box-shadow: 0 28px 84px rgba(15, 23, 42, 0.10);
}

.home-positioning-card p {
  max-width: 780px;
  margin-left: 0;
}


/* Navigator */

.home-navigator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-navigator-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(16, 24, 39, 0.09);
  color: #111827;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.home-navigator-card::before {
  content: "";
  width: 42px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(100deg, #1d4cff 0%, #6845ff 56%, #00a99d 120%);
  opacity: 0.85;
}

.home-navigator-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 89, 245, 0.22);
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.10);
}

.home-navigator-card.featured {
  background:
    radial-gradient(circle at 16% 10%, rgba(49, 89, 245, 0.10), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(20, 184, 166, 0.10), transparent 30%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(49, 89, 245, 0.16);
  box-shadow: 0 22px 60px rgba(49, 89, 245, 0.10);
}

.home-navigator-card h3 {
  margin: 0;
  color: #111827;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-navigator-card p:not(.home-card-label) {
  margin: 14px 0 0;
  color: #5b6678;
  font-size: 0.96rem;
  line-height: 1.6;
}

.home-navigator-card > span {
  margin-top: auto;
  padding-top: 24px;
  color: #3159f5;
  font-size: 0.84rem;
  font-weight: 900;
}


/* Philosophy */

.home-philosophy-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.home-philosophy-copy p {
  max-width: 720px;
  margin-left: 0;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-proof-card {
  min-height: 190px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(16, 24, 39, 0.09);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.home-proof-card.large {
  grid-row: span 2;
  min-height: 396px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(145deg, #101827, #1d4cff 58%, #00a99d 125%);
}

.home-proof-card p {
  margin: 0 0 18px;
  color: #3159f5;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.home-proof-card.large p {
  color: rgba(255, 255, 255, 0.78);
}

.home-proof-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-proof-card.large h3 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.1rem);
}


/* Featured */

.home-featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.home-feature-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(16, 24, 39, 0.09);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.home-feature-card.featured-resource {
  background:
    radial-gradient(circle at 12% 10%, rgba(49, 89, 245, 0.12), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.12), transparent 30%),
    #ffffff;
}

.home-feature-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-feature-card p:not(.home-card-label) {
  margin: 16px 0 0;
  color: #5b6678;
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.home-feature-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(49, 89, 245, 0.08);
  color: #3159f5;
  font-size: 0.83rem;
  font-weight: 850;
  text-decoration: none;
}


/* Receipts */

.home-receipts-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.home-receipts-copy p {
  max-width: 700px;
  margin-left: 0;
}

.home-receipts-list {
  display: grid;
  gap: 14px;
}

.home-receipts-list article {
  display: grid;
  gap: 7px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(16, 24, 39, 0.09);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.home-receipts-list strong {
  color: #111827;
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}

.home-receipts-list span {
  color: #5b6678;
  font-size: 0.96rem;
  line-height: 1.55;
}


/* Final CTA */

.home-final-cta-card {
  padding: clamp(34px, 5vw, 64px);
  border-radius: 42px;
  text-align: center;
  background:
    radial-gradient(circle at 16% 12%, rgba(49, 89, 245, 0.16), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(0, 169, 157, 0.16), transparent 30%),
    linear-gradient(145deg, #f8faff, #ffffff);
  border: 1px solid rgba(16, 24, 39, 0.09);
  box-shadow: 0 28px 84px rgba(15, 23, 42, 0.10);
}

.home-final-cta-card h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.home-final-cta-card p {
  max-width: 760px;
}

.home-final-actions {
  justify-content: center;
}


/* Responsive */

@media (max-width: 1080px) {
  .home-cinematic-inner,
  .home-motion-inner,
  .home-philosophy-shell,
  .home-receipts-inner {
    grid-template-columns: 1fr;
  }

  .home-cinematic-copy,
  .home-motion-copy,
  .home-philosophy-copy,
  .home-receipts-copy {
    text-align: center;
  }

  .home-cinematic-intro,
  .home-motion-copy p:not(.home-section-kicker),
  .home-philosophy-copy p,
  .home-receipts-copy p,
  .home-positioning-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .home-cinematic-actions,
  .home-cinematic-signal-row,
  .home-hero-actions {
    justify-content: center;
  }

  .home-cinematic-mark-row {
    justify-content: center;
  }

  .home-lab-os {
    max-width: 620px;
    margin: 0 auto;
  }

  .home-featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-navigator-grid {
    grid-template-columns: 1fr;
  }

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

  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-card.large {
    grid-row: auto;
    min-height: 240px;
  }
}

@media (max-width: 680px) {
  .home-cinematic-section,
  .home-motion-section,
  .home-positioning-section,
  .home-navigator-section,
  .home-philosophy-section,
  .home-featured-section,
  .home-receipts-section,
  .home-final-cta-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-cinematic-section {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .home-cinematic-logo {
    width: 42px;
    height: 42px;
  }

  .home-cinematic-copy h1 {
    font-size: clamp(3.25rem, 15.5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.068em;
    padding-bottom: 0.22em;
  }

  .home-cinematic-actions,
  .home-final-actions {
    flex-direction: column;
  }

  .home-btn {
    width: 100%;
  }

  .home-lab-os {
    border-radius: 30px;
  }

  .home-lab-os-screen {
    border-radius: 24px;
  }

  .home-lab-os-grid,
  .home-lab-os-footer {
    grid-template-columns: 1fr;
  }

  .home-section-header h2,
  .home-positioning-card h2,
  .home-motion-copy h2,
  .home-philosophy-copy h2,
  .home-receipts-copy h2,
  .home-final-cta-card h2 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
    letter-spacing: -0.06em;
    line-height: 1.04;
  }

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

  .home-motion-panel {
    min-height: 150px;
  }

  .home-lab-os,
  .home-motion-reel,
  .home-positioning-card,
  .home-final-cta-card,
  .home-navigator-card,
  .home-feature-card,
  .home-proof-card {
    border-radius: 26px;
  }
}
