/* ShopSailor runtime CSS bundle. Source files live in assets/css/. Generated in Phase 5. */

/* === 01-foundation-navigation-footer.css === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #071a2e;
  background: #ffffff;
  overflow-x: hidden;
}

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

:root {
  --ink: #071a2e;
  --ink-soft: #102b49;
  --muted: #62758b;
  --muted-light: #8090a2;
  --line: rgba(7, 26, 46, .10);
  --line-strong: rgba(7, 26, 46, .15);
  --orange: #ff6b1a;
  --orange-2: #ff963a;
  --orange-3: #ffd37d;
  --soft: #f5f8fb;
  --soft-2: #edf3f7;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(7, 26, 46, .10);
  --soft-shadow: 0 12px 34px rgba(7, 26, 46, .06);
}

/* Announcement */
.top-note {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  background: #e9eeff;
  border-bottom: 1px solid rgba(7, 26, 46, .07);
  color: rgba(7, 26, 46, .72);
  font-size: 12px;
  font-weight: 600;
}

.top-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 100;
  background: transparent;
}

.nav-shell {
  width: min(var(--max), calc(100% - 44px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
}

.brand {
  width: 158px;
  flex: 0 0 158px;
  display: inline-flex;
  align-items: center;
}

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

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 13px 11px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(7, 26, 46, .045);
}

.has-menu > .nav-link::after {
  content: "⌄";
  font-size: 11px;
  color: rgba(7, 26, 46, .55);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-search {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: rgba(7, 26, 46, .55);
  border-radius: 999px;
  font-size: 22px;
}

.nav-search:hover {
  background: rgba(7, 26, 46, .05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(7, 26, 46, .16);
}

.btn-dark:hover {
  background: #102943;
}

.btn-light {
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  border: 1px solid rgba(7, 26, 46, .12);
  box-shadow: 0 9px 20px rgba(7, 26, 46, .04);
}

.btn-light:hover {
  background: rgba(255, 255, 255, .95);
  border-color: rgba(7, 26, 46, .18);
}

.mega {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 640px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 24px;
  border: 1px solid rgba(7, 26, 46, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 28px 70px rgba(7, 26, 46, .14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 200;
}

.mega.small {
  width: 560px;
}

.has-menu:hover .mega,
.has-menu:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  transition: background .15s ease, transform .15s ease;
}

.mega a:hover {
  background: rgba(7, 26, 46, .045);
  transform: translateY(-1px);
}

.mega-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-3));
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(255, 107, 26, .18);
}

.mega strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  margin-bottom: 4px;
}

.mega small {
  display: block;
  color: rgba(7, 26, 46, .58);
  font-size: 13px;
  line-height: 1.35;
}

/* Hero */
.hero {
  position: relative;
  padding: 0 0 32px;
  background: #fff;
}

.hero-shell {
  position: relative;
  width: 100%;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 8%, rgba(255, 255, 255, .72), transparent 22%),
    radial-gradient(circle at 48% 100%, rgba(255, 156, 40, .14), transparent 34%),
    linear-gradient(90deg, #a5adbe 0%, #c7d0dc 19%, #ebf1f6 55%, #f5fdff 100%);
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: -8% -5% -12%;
  background:
    radial-gradient(circle at 66% 14%, rgba(255, 196, 87, .20), transparent 24%),
    radial-gradient(circle at 84% 50%, rgba(255, 165, 40, .20), transparent 18%),
    radial-gradient(circle at 54% 84%, rgba(255, 210, 123, .16), transparent 30%);
  filter: blur(8px);
  pointer-events: none;
}

#heroWaveCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: .82;
}

.hero-fade-left {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(239, 243, 248, 1) 0%,
      rgba(239, 243, 248, .98) 27%,
      rgba(239, 243, 248, .84) 42%,
      rgba(239, 243, 248, .34) 60%,
      rgba(239, 243, 248, 0) 78%);
}

.hero-bottom-glow {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -42px;
  height: 150px;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(255, 186, 70, .32) 0%, rgba(255, 220, 118, .16) 40%, rgba(255, 220, 118, 0) 72%);
  filter: blur(10px);
}

.hero-grid {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  padding: 112px 0 74px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 48px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 26, .18);
  background: rgba(255, 107, 26, .08);
  color: #df5a12;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 740px;
  color: var(--ink);
  font-size: clamp(48px, 5.25vw, 74px);
  line-height: .98;
  letter-spacing: -.063em;
  font-weight: 650;
}

.hero h1 em {
  color: var(--ink);
  font-style: normal;
}

.hero-lead {
  margin: 0 0 28px;
  max-width: 670px;
  color: rgba(7, 26, 46, .76);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.48;
  font-weight: 530;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons .btn {
  padding: 16px 26px;
  border-radius: 17px;
}

.hero-note {
  margin-top: 18px;
  max-width: 630px;
  color: rgba(7, 26, 46, .50);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 560;
}

.hero-proof {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(430px, 100%);
  z-index: 5;
}

.proof-card {
  border: 1px solid rgba(7, 26, 46, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 18px;
}

.proof-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.proof-pill {
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 107, 26, .10);
  color: #cc5412;
  font-size: 12px;
  font-weight: 700;
}

.proof-pill.dark {
  background: rgba(7, 26, 46, .08);
  color: var(--ink);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.score {
  border: 1px solid rgba(7, 26, 46, .07);
  border-radius: 16px;
  background: rgba(255, 255, 255, .66);
  padding: 13px;
}

.score strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.05em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 5px;
}

.score span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 560;
}

.mini-chart {
  border: 1px solid rgba(7, 26, 46, .07);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, .58);
}

.bars {
  height: 110px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.bars i {
  flex: 1;
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--orange), #ffd4a1);
  opacity: .62;
  animation: pulseBar 3s ease-in-out infinite;
  transform-origin: bottom;
}

.bars i:nth-child(2n) { opacity: .34; }
.bars i:nth-child(3n) { opacity: .84; }
.bars i:nth-child(1) { height: 38%; animation-delay: .1s; }
.bars i:nth-child(2) { height: 52%; animation-delay: .2s; }
.bars i:nth-child(3) { height: 44%; animation-delay: .3s; }
.bars i:nth-child(4) { height: 68%; animation-delay: .4s; }
.bars i:nth-child(5) { height: 61%; animation-delay: .5s; }
.bars i:nth-child(6) { height: 82%; animation-delay: .6s; }
.bars i:nth-child(7) { height: 76%; animation-delay: .7s; }
.bars i:nth-child(8) { height: 92%; animation-delay: .8s; }

@keyframes pulseBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.05); }
}

.chart-label {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(7, 26, 46, .58);
  font-size: 12px;
  font-weight: 600;
}

/* Stack strip */
.stack-strip {
  overflow: hidden;
  border-top: 1px solid rgba(7, 26, 46, .06);
  border-bottom: 1px solid rgba(7, 26, 46, .06);
  background: #fff;
}

.stack-track {
  display: flex;
  gap: 56px;
  width: max-content;
  padding: 18px 0;
  color: rgba(7, 26, 46, .52);
  font-size: 13px;
  font-weight: 650;
  animation: scrollLeft 34s linear infinite;
}

@keyframes scrollLeft {
  to { transform: translateX(-50%); }
}

/* Shared sections */
section {
  padding: 92px 48px;
}

.inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-label {
  color: #df5a12;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 13px;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -.052em;
  font-weight: 650;
}

.section-sub {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Animated cards */
.intro-cards {
  padding: 78px 0 74px;
  background: #fff;
}

.cards-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.cards-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  --mx: 50%;
  --my: 50%;
  --tx: 0px;
  --ty: 0px;
  min-height: 292px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 46, .06);
  border-radius: 20px;
  background: #f6f8ff;
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  isolation: isolate;
}

.feature-card:hover {
  border-color: rgba(7, 26, 46, .08);
  box-shadow: 0 12px 30px rgba(7, 26, 46, .06), inset 0 1px 0 rgba(255, 255, 255, .85);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 34%);
  opacity: 0;
  transition: opacity .25s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card__motion,
.feature-card__bg,
.feature-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-card__motion {
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.feature-card__bg,
.feature-card__overlay {
  inset: -8%;
  transition: transform .18s ease;
}

.feature-card__bg {
  z-index: 1;
  transform: translate3d(calc(var(--tx) * 1.15), calc(var(--ty) * 1.15), 0) scale(1.11);
}

.feature-card__overlay {
  z-index: 2;
  opacity: .90;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--tx) * -.9), calc(var(--ty) * -.9), 0) scale(1.12);
}

.feature-card__content {
  position: relative;
  z-index: 4;
  max-width: 92%;
}

.feature-card h3 {
  margin: 0 0 15px;
  color: #102743;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 680;
}

.feature-card p {
  margin: 0;
  color: rgba(16, 39, 67, .78);
  font-size: 15px;
  line-height: 1.43;
}

.feature-card--lilac { background: linear-gradient(180deg, #e8e9f7, #e4e5f7); }
.feature-card--orange { background: linear-gradient(145deg, #f1ad39, #f1b440 28%, #f5c15a 54%, #f6dfa0); }
.feature-card--cyan { background: linear-gradient(180deg, #ecf5f7, #e8f1f4); }
.feature-card--grey { background: linear-gradient(180deg, #ededee, #e6e7e9); }

.feature-card--lilac .feature-card__bg {
  background:
    linear-gradient(-36deg, transparent 0 14%, rgba(255, 255, 255, .58) 14% 18%, rgba(255, 255, 255, .14) 18% 22%, transparent 22% 28%, rgba(255, 255, 255, .44) 28% 32%, transparent 32% 42%, rgba(255, 255, 255, .24) 42% 46%, transparent 46% 100%),
    linear-gradient(180deg, #dfe2f6, #eaebfa);
  background-size: 140% 140%, 100% 100%;
  animation: lilacDrift 2.8s linear infinite;
}

@keyframes lilacDrift {
  0%, 100% { background-position: 0% 0%, 0 0; transform: translate3d(calc(var(--tx) * .95), calc(var(--ty) * .95), 0) scale(1.09); }
  50% { background-position: 100% 100%, 0 0; transform: translate3d(calc(var(--tx) * .72), calc(var(--ty) * 1.18), 0) scale(1.15); }
}

.feature-card--orange .feature-card__bg {
  background:
    radial-gradient(circle at 38% 72%, rgba(255, 255, 255, .92) 0 8%, transparent 11%),
    radial-gradient(circle at 36% 74%, rgba(255, 255, 255, .82) 0 16%, transparent 30%),
    conic-gradient(from 138deg at 36% 76%, rgba(255, 255, 255, .78) 0deg, transparent 18deg, rgba(255, 255, 255, .66) 28deg, transparent 52deg, rgba(255, 255, 255, .46) 74deg, transparent 360deg),
    linear-gradient(145deg, #f1b13a, #f0b538 28%, #f2c255 54%, #f4e88f);
  animation: orangePulse 1.7s linear infinite;
}

@keyframes orangePulse {
  0%, 100% { transform: translate3d(calc(var(--tx) * 1.05), calc(var(--ty) * 1.05), 0) scale(1.10) rotate(0deg); }
  50% { transform: translate3d(calc(var(--tx) * .54), calc(var(--ty) * 1.34), 0) scale(1.20) rotate(2deg); }
}

.feature-card--cyan .feature-card__bg {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, .54), transparent 16%),
    repeating-linear-gradient(28deg, rgba(214, 229, 233, .72) 0 10px, transparent 10px 52px),
    repeating-linear-gradient(-34deg, rgba(214, 229, 233, .58) 0 9px, transparent 9px 48px),
    linear-gradient(180deg, #ecf5f7, #e6f0f3);
  background-size: 100% 100%, 130% 130%, 130% 130%, 100% 100%;
  animation: cyanSweep 2.6s linear infinite;
}

@keyframes cyanSweep {
  0%, 100% { background-position: 0 0, 0 0, 0 0, 0 0; transform: translate3d(calc(var(--tx) * .95), calc(var(--ty) * .95), 0) scale(1.10); }
  50% { background-position: 0 0, 20px -14px, -12px 16px, 0 0; transform: translate3d(calc(var(--tx) * 1.1), calc(var(--ty) * .72), 0) scale(1.15); }
}

.feature-card--grey .feature-card__bg {
  background: linear-gradient(180deg, #ececed, #e3e4e6);
}

.feature-card--grey .feature-card__overlay {
  background: radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .16), transparent 24%);
}

/* Services */
.services-section {
  padding-top: 32px;
  background: var(--soft);
}

.services-grid,
.control-grid,
.usecase-grid,
.metrics-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 44px auto 0;
  display: grid;
  gap: 18px;
}

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

.service-card,
.control-card,
.usecase-card {
  background: #fff;
  border: 1px solid rgba(7, 26, 46, .08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--soft-shadow);
}

.service-card:hover,
.control-card:hover,
.usecase-card:hover {
  border-color: rgba(255, 107, 26, .22);
  transform: translateY(-2px);
  transition: transform .18s ease, border-color .18s ease;
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 107, 26, .08);
  color: #db6118;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-card h3,
.control-card h3,
.usecase-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.service-card p,
.control-card p,
.usecase-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-card a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 650;
}

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

.control-section {
  background: #fff;
}

.control-card {
  position: relative;
  overflow: hidden;
}

.control-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

/* Dashboard */
.dashboard-section {
  background: #fff;
}

.dashboard-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.dashboard-copy .section-sub {
  margin-bottom: 28px;
}

.dashboard-mockup {
  border: 1px solid rgba(7, 26, 46, .08);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #f4f7fa;
  border-bottom: 1px solid rgba(7, 26, 46, .08);
}

.mock-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-bar i:nth-child(1) { background: #ff5f57; }
.mock-bar i:nth-child(2) { background: #febc2e; }
.mock-bar i:nth-child(3) { background: #28c840; }

.mock-body {
  padding: 24px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.mock-stat {
  border: 1px solid rgba(7, 26, 46, .08);
  border-radius: 16px;
  padding: 15px;
  background: #fbfcfd;
}

.mock-stat strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.045em;
}

.mock-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
}

.mock-chart {
  height: 164px;
  border: 1px solid rgba(7, 26, 46, .08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: end;
  gap: 8px;
  background:
    linear-gradient(rgba(7, 26, 46, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 46, .04) 1px, transparent 1px),
    #fbfcfd;
  background-size: 100% 40px, 56px 100%, auto;
}

.mock-chart i {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--orange), #ffcf9b);
  opacity: .55;
  animation: pulseBar 3.2s ease-in-out infinite;
  transform-origin: bottom;
}

.mock-chart i:nth-child(1) { height: 34%; }
.mock-chart i:nth-child(2) { height: 42%; animation-delay: .1s; }
.mock-chart i:nth-child(3) { height: 58%; animation-delay: .2s; }
.mock-chart i:nth-child(4) { height: 49%; animation-delay: .3s; }
.mock-chart i:nth-child(5) { height: 72%; animation-delay: .4s; opacity: .85; }
.mock-chart i:nth-child(6) { height: 63%; animation-delay: .5s; }
.mock-chart i:nth-child(7) { height: 83%; animation-delay: .6s; opacity: .9; }
.mock-chart i:nth-child(8) { height: 92%; animation-delay: .7s; opacity: 1; }

/* Metrics */
.performance-section {
  background: #fff;
  border-top: 1px solid rgba(7, 26, 46, .06);
  border-bottom: 1px solid rgba(7, 26, 46, .06);
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(7, 26, 46, .08);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(7, 26, 46, .08);
}

.metric {
  background: #fff;
  padding: 28px;
  text-align: center;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 32px;
  letter-spacing: -.04em;
  line-height: 1;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Use cases */
.usecases-section {
  background: var(--soft);
}

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

.usecase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.usecase-list li {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.usecase-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 7px;
  margin-top: 7px;
}

/* CTA + Footer */
.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse 64% 70% at 50% 100%, rgba(255, 107, 26, .12) 0%, transparent 70%),
    #fff;
}

.cta-section .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

footer {
  border-top: 1px solid rgba(7, 26, 46, .08);
  padding: 52px 48px 34px;
  background: #fff;
}

.footer-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 330px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: rgba(7, 26, 46, .46);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 26, 46, .08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(7, 26, 46, .50);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .cards-grid,
  .services-grid,
  .control-grid,
  .usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .top-note {
    display: none;
  }

  .site-nav {
    position: sticky;
    top: 0;
    height: 66px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(7, 26, 46, .08);
  }

  .nav-shell {
    width: calc(100% - 28px);
    height: 66px;
  }

  .nav-links,
  .nav-search,
  .nav-actions .btn-light {
    display: none;
  }

  .brand,
  .brand img {
    width: 138px;
  }

  .hero-grid {
    width: calc(100% - 28px);
    min-height: 540px;
    padding: 76px 0 56px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-fade-left {
    background: linear-gradient(180deg, rgba(239, 243, 248, .92) 0%, rgba(239, 243, 248, .62) 48%, rgba(239, 243, 248, .14) 100%);
  }

  .inner,
  .services-grid,
  .control-grid,
  .usecase-grid,
  .metrics-grid,
  .dashboard-grid,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 28px);
  }

  section {
    padding: 72px 0;
  }

  .cards-grid,
  .services-grid,
  .control-grid,
  .usecase-grid,
  .metrics-grid,
  .mock-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 248px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* === 02-homepage-evolution.css === */
/* v7 polish */
.stack-strip {
  padding: 28px 0;
}

.stack-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.stack-title {
  color: rgba(7,26,46,.58);
  font-size: 13px;
  font-weight: 700;
}

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.stack-pills span {
  padding: 8px 11px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 999px;
  background: #fff;
  color: rgba(7,26,46,.62);
  font-size: 12px;
  font-weight: 650;
}

.service-card {
  position: relative;
  min-height: 255px;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,107,26,.12), rgba(255,211,125,.30));
  color: #db6118;
  font-size: 20px;
  font-weight: 800;
}

.service-card .badge {
  margin-bottom: 14px;
}

.decision-panel {
  padding: 20px;
}

.decision-product {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(7,26,46,.07);
  background: rgba(255,255,255,.64);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
}

.decision-product strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -.02em;
}

.decision-product b {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,107,26,.12);
  color: #db6118;
  font-size: 12px;
}

.mini-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.decision-rows {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.decision-row {
  display: grid;
  grid-template-columns: 120px 1fr 58px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(7,26,46,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.56);
}

.decision-row span {
  color: rgba(7,26,46,.62);
  font-size: 12px;
  font-weight: 650;
}

.decision-row strong {
  color: var(--ink);
  font-size: 12px;
  text-align: right;
}

.signal-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(7,26,46,.07);
  overflow: hidden;
}

.signal-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-3));
}

.decision-dashboard .mock-bar {
  justify-content: flex-start;
}

.decision-dashboard .mock-bar span {
  margin-left: auto;
  color: rgba(7,26,46,.54);
  font-size: 12px;
  font-weight: 700;
}

.decision-table {
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 18px;
  background: #fbfcfd;
  overflow: hidden;
  margin-bottom: 18px;
}

.decision-table-head,
.decision-table-row {
  display: grid;
  grid-template-columns: 1fr 80px 90px;
  align-items: center;
  gap: 12px;
}

.decision-table-head {
  padding: 11px 14px;
  background: #f3f6fa;
  color: rgba(7,26,46,.45);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.decision-table-row {
  padding: 12px 14px;
  border-top: 1px solid rgba(7,26,46,.06);
  color: rgba(7,26,46,.68);
  font-size: 13px;
  font-weight: 600;
}

.decision-table-row strong {
  color: var(--ink);
  font-size: 13px;
}

.decision-table-row b {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.decision-table-row .ok,
.decision-table-row .scale {
  background: rgba(255,107,26,.12);
  color: #db6118;
}

.decision-table-row .hold {
  background: rgba(7,26,46,.08);
  color: rgba(7,26,46,.68);
}

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

.metric {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric strong {
  font-size: 24px;
  line-height: 1.05;
}

.cta-section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.cta-section .section-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .decision-row {
    grid-template-columns: 100px 1fr 54px;
  }
}

@media (max-width: 780px) {
  .stack-inner {
    width: calc(100% - 28px);
    justify-content: flex-start;
  }

  .decision-table-head,
  .decision-table-row {
    grid-template-columns: 1fr 64px 76px;
  }

  .decision-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .decision-row strong {
    text-align: left;
  }
}


/* v8 human/polish pass */
.hero-proof {
  width: min(470px, 100%);
}

.proof-card {
  padding: 22px;
}

.decision-product {
  padding: 16px;
}

.decision-product strong {
  font-size: 17px;
}

.decision-row {
  padding: 10px 12px;
}

.mini-chart {
  padding: 16px;
}

.bars {
  height: 118px;
}

.feature-card {
  min-height: 312px;
  padding: 24px;
}

.feature-card h3 {
  font-size: 25px;
  margin-bottom: 18px;
}

.feature-card p {
  max-width: 88%;
}

.operator-section {
  padding: 92px 48px;
  background: #fff;
}

.operator-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 58px;
  align-items: center;
}

.operator-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  border: 1px solid rgba(7, 26, 46, .08);
  box-shadow: 0 24px 70px rgba(7, 26, 46, .10);
  background: #eef3f7;
}

.operator-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.operator-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 46, .08), rgba(7, 26, 46, 0) 45%),
    radial-gradient(circle at 82% 28%, rgba(255, 107, 26, .16), transparent 28%);
  pointer-events: none;
}

.operator-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .54);
  backdrop-filter: blur(14px);
  color: #071a2e;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(7, 26, 46, .12);
}

.operator-copy .section-sub {
  margin-bottom: 26px;
}

.operator-points {
  display: grid;
  gap: 12px;
}

.operator-points div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(7, 26, 46, .08);
  border-radius: 18px;
  background: #fbfcfd;
  box-shadow: 0 8px 22px rgba(7, 26, 46, .04);
}

.operator-points strong {
  color: #071a2e;
  font-size: 14px;
  font-weight: 700;
}

.operator-points span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.dashboard-section {
  padding-top: 104px;
}

.dashboard-grid {
  gap: 82px;
}

.cta-section {
  background:
    radial-gradient(ellipse 56% 65% at 50% 100%, rgba(255, 107, 26, .14) 0%, transparent 72%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.footer-grid {
  padding-top: 8px;
}

@media (max-width: 1100px) {
  .operator-grid {
    grid-template-columns: 1fr;
  }
  .operator-copy {
    order: -1;
  }
}

@media (max-width: 780px) {
  .operator-section {
    padding: 72px 0;
  }
  .operator-grid {
    width: calc(100% - 28px);
    gap: 28px;
  }
  .operator-visual,
  .operator-visual img {
    min-height: 320px;
  }
  .operator-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


/* v9 interaction polish */
.nav-item.has-menu {
  padding-bottom: 26px;
  margin-bottom: -26px;
}

.nav-item.has-menu::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 38px;
  height: 36px;
  z-index: 190;
}

.has-menu:hover > .nav-link {
  background: rgba(7, 26, 46, .045);
}

.mega {
  top: 48px;
  z-index: 250;
}

.feature-card {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-card__content {
  transition: transform .18s ease;
}

.feature-card:hover .feature-card__content {
  transform: translateY(-1px);
}

.feature-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 107, 26, .45);
  box-shadow: 0 0 0 7px rgba(255, 107, 26, .08);
  opacity: .68;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--lilac::before { background: rgba(114, 126, 230, .42); box-shadow: 0 0 0 7px rgba(114, 126, 230, .08); }
.feature-card--cyan::before { background: rgba(82, 169, 184, .42); box-shadow: 0 0 0 7px rgba(82, 169, 184, .08); }
.feature-card--grey::before { background: rgba(7, 26, 46, .24); box-shadow: 0 0 0 7px rgba(7, 26, 46, .05); }

.operator-visual img {
  filter: saturate(.92) contrast(.98);
}

.service-card,
.control-card,
.usecase-card {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-card:hover,
.control-card:hover,
.usecase-card:hover {
  box-shadow: 0 18px 42px rgba(7, 26, 46, .075);
}

@media (max-width: 780px) {
  .nav-item.has-menu {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-item.has-menu::before {
    display: none;
  }
}


/* v10 conversion/proof polish */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 700px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  color: rgba(7,26,46,.62);
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,26,.10);
}

.how-section {
  padding: 84px 48px;
  background: #fff;
  border-top: 1px solid rgba(7,26,46,.06);
}

.how-header {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.how-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.flow-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  position: relative;
  min-height: 228px;
  padding: 24px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,26,.08), transparent 30%),
    #fff;
  box-shadow: 0 10px 28px rgba(7,26,46,.045);
}

.flow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 13px;
  font-weight: 800;
}

.flow-step h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checks-card {
  margin: 26px 0 28px;
  padding: 20px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 20px;
  background: #fbfcfd;
  box-shadow: 0 8px 24px rgba(7,26,46,.04);
}

.checks-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -.025em;
}

.checks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checks-list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(7,26,46,.08);
  color: rgba(7,26,46,.66);
  font-size: 12px;
  font-weight: 650;
}

.scenario-section {
  padding: 96px 48px;
  background:
    radial-gradient(ellipse 50% 60% at 75% 100%, rgba(255,107,26,.10), transparent 68%),
    #fff;
  border-top: 1px solid rgba(7,26,46,.06);
}

.scenario-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.scenario-card {
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(7,26,46,.09);
  padding: 24px;
}

.scenario-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.scenario-top span {
  color: rgba(7,26,46,.58);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.scenario-top b {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
}

.scenario-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.scenario-metrics div {
  padding: 16px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 18px;
  background: #fbfcfd;
}

.scenario-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 7px;
}

.scenario-metrics span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  display: block;
}

.scenario-actions {
  display: grid;
  gap: 10px;
}

.scenario-actions div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(7,26,46,.07);
  border-radius: 16px;
  background: #fff;
}

.scenario-actions span {
  color: rgba(7,26,46,.52);
  font-size: 12px;
  font-weight: 700;
}

.scenario-actions strong {
  color: var(--ink);
  font-size: 13px;
}

.footer-legal {
  display: inline-flex;
  gap: 16px;
}

.footer-legal a {
  color: rgba(7,26,46,.50);
}

.footer-legal a:hover {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .flow-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-grid {
    gap: 34px;
  }
}

@media (max-width: 780px) {
  .how-section,
  .scenario-section {
    padding: 72px 0;
  }

  .flow-grid,
  .scenario-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .scenario-metrics {
    grid-template-columns: 1fr;
  }

  .scenario-actions div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-legal {
    order: 3;
    flex-wrap: wrap;
  }
}


/* v11 compression and weight pass */
.hero-trust span {
  padding: 9px 11px;
  font-size: 12.5px;
}

.how-section {
  padding: 96px 48px 88px;
}

.how-header {
  max-width: 920px;
  margin-bottom: 44px;
}

.flow-grid {
  gap: 18px;
}

.flow-step {
  min-height: 260px;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,26,.10), transparent 30%),
    linear-gradient(180deg, #fff, #fbfcfd);
}

.flow-step h3 {
  font-size: 21px;
}

.flow-step p {
  font-size: 15px;
}

.flow-index {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.scenario-feature {
  padding: 92px 48px;
  background:
    radial-gradient(ellipse 50% 60% at 78% 100%, rgba(255,107,26,.11), transparent 68%),
    #fff;
  border-top: 1px solid rgba(7,26,46,.06);
}

.scenario-feature .scenario-grid {
  grid-template-columns: .92fr 1.08fr;
}

.scenario-copy .section-title {
  max-width: 650px;
}

.scenario-card {
  transform: translateY(0);
}

.services-section {
  padding-top: 82px;
}

.control-room-section {
  padding: 104px 48px;
  background:
    radial-gradient(circle at 70% 100%, rgba(255,107,26,.08), transparent 34%),
    #fff;
}

.control-room-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 78px;
  align-items: center;
}

.control-room-copy .section-sub {
  margin-bottom: 0;
}

.compact-control-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 26px;
}

.compact-control-grid article {
  padding: 14px 16px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7,26,46,.035);
}

.compact-control-grid h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -.02em;
}

.compact-control-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.control-section,
.dashboard-section {
  display: none !important;
}

.operating-principles {
  padding: 74px 48px;
  background: #fff;
}

.principle-inner {
  display: grid;
  grid-template-columns: .48fr 1fr;
  gap: 34px;
  align-items: center;
}

.principle-inner .section-title {
  font-size: clamp(28px, 3vw, 42px);
}

.principle-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.principle-row span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  background: #fff;
}

.principle-row strong {
  display: block;
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 4px;
}

.usecases-section {
  padding-top: 86px;
}

footer {
  padding-top: 66px;
  padding-bottom: 42px;
}

.footer-grid {
  margin-bottom: 52px;
}

.footer-brand img {
  width: 164px;
}

.footer-bottom {
  padding-top: 26px;
}

@media (max-width: 1100px) {
  .control-room-grid,
  .scenario-feature .scenario-grid,
  .principle-inner {
    grid-template-columns: 1fr;
  }

  .principle-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .how-section,
  .scenario-feature,
  .control-room-section,
  .operating-principles {
    padding: 72px 0;
  }

  .control-room-grid,
  .scenario-feature .scenario-grid {
    width: calc(100% - 28px);
    gap: 34px;
  }

  .principle-row {
    grid-template-columns: 1fr;
  }
}


/* v12 final polish: compact, weighted, stronger key sections */
.site-nav {
  height: 76px;
}

.nav-shell {
  height: 76px;
}

.brand,
.brand img {
  width: 170px;
}

.nav-link {
  font-size: 14.5px;
  padding: 14px 12px;
}

.hero-trust {
  gap: 10px;
  margin-top: 20px;
}

.hero-trust span {
  padding: 9px 12px;
  font-size: 12.5px;
  background: rgba(255,255,255,.58);
}

.how-section {
  padding: 98px 48px 88px;
}

.how-header {
  max-width: 920px;
  margin-bottom: 44px;
}

.flow-grid {
  gap: 18px;
}

.flow-step {
  min-height: 260px;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,26,.10), transparent 30%),
    linear-gradient(180deg, #fff, #fbfcfd);
}

.flow-step h3 {
  font-size: 21px;
}

.flow-step p {
  font-size: 15px;
}

.flow-index {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.scenario-feature {
  padding: 92px 48px;
  background:
    radial-gradient(ellipse 50% 60% at 78% 100%, rgba(255,107,26,.11), transparent 68%),
    #fff;
  border-top: 1px solid rgba(7,26,46,.06);
}

.scenario-feature .scenario-grid {
  grid-template-columns: .92fr 1.08fr;
}

.scenario-copy .section-title {
  max-width: 650px;
}

.services-section {
  padding-top: 82px;
}

.control-room-section {
  padding: 104px 48px;
  background:
    radial-gradient(circle at 70% 100%, rgba(255,107,26,.08), transparent 34%),
    #fff;
}

.control-room-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 78px;
  align-items: center;
}

.control-room-copy .section-sub {
  margin-bottom: 0;
}

.compact-control-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 26px;
}

.compact-control-grid article {
  padding: 14px 16px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7,26,46,.035);
}

.compact-control-grid h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -.02em;
}

.compact-control-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.control-section,
.dashboard-section {
  display: none !important;
}

.operating-principles {
  padding: 74px 48px;
  background: #fff;
}

.principle-inner {
  display: grid;
  grid-template-columns: .48fr 1fr;
  gap: 34px;
  align-items: center;
}

.principle-inner .section-title {
  font-size: clamp(28px, 3vw, 42px);
}

.principle-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.principle-row span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  background: #fff;
}

.principle-row strong {
  display: block;
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 4px;
}

.usecases-section {
  padding-top: 86px;
}

.usecase-card p {
  min-height: 44px;
}

footer {
  padding-top: 66px;
  padding-bottom: 42px;
}

.footer-grid {
  margin-bottom: 52px;
}

.footer-brand img {
  width: 164px;
}

.footer-bottom {
  padding-top: 26px;
}

@media (max-width: 1100px) {
  .control-room-grid,
  .scenario-feature .scenario-grid,
  .principle-inner {
    grid-template-columns: 1fr;
  }

  .principle-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-nav,
  .nav-shell {
    height: 68px;
  }

  .brand,
  .brand img {
    width: 142px;
  }

  .how-section,
  .scenario-feature,
  .control-room-section,
  .operating-principles {
    padding: 72px 0;
  }

  .control-room-grid,
  .scenario-feature .scenario-grid {
    width: calc(100% - 28px);
    gap: 34px;
  }

  .principle-row {
    grid-template-columns: 1fr;
  }
}



/* v13 enhancement patch: calmer visuals + more AI-like motion */
.nav-item.has-menu {
  padding-bottom: 22px;
  margin-bottom: -22px;
}

.nav-item.has-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
}

.has-menu.is-open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,.22) 45%, transparent 72%);
  transform: translateX(-140%);
  transition: transform .55s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(140%);
}

.feature-card {
  will-change: transform, opacity;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  z-index: 5;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 0 rgba(255,107,26,.28);
  animation: aiPulseDot 2.4s ease-in-out infinite;
}

@keyframes aiPulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,26,.18); }
  55% { transform: scale(1.06); box-shadow: 0 0 0 11px rgba(255,107,26,0); }
}

.feature-card__content {
  transition: transform .22s ease;
}

.feature-card:hover .feature-card__content {
  transform: translateY(-2px);
}

.flow-step,
.service-card,
.usecase-card,
.scenario-card,
.operator-visual,
.operator-copy,
.dashboard-mockup,
.control-room-copy,
.visual-tile,
.principle-row span {
  position: relative;
  overflow: hidden;
}

.flow-step::after,
.service-card::after,
.usecase-card::after,
.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255,255,255,.55) 50%, transparent 78%);
  transform: translateX(-140%);
  opacity: .55;
  pointer-events: none;
}

.flow-step:hover::after,
.service-card:hover::after,
.usecase-card:hover::after,
.visual-tile:hover::after {
  transform: translateX(140%);
  transition: transform .8s ease;
}

.flow-step {
  border: 1px solid rgba(255,107,26,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,249,246,.92));
}

.flow-step::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,107,26,.95), rgba(255,210,140,.18));
  transform-origin: left center;
  transform: scaleX(.38);
  transition: transform .35s ease;
}

.flow-step:hover::before {
  transform: scaleX(1);
}

.scenario-card,
.dashboard-mockup,
.hero-proof,
.visual-tile,
.operator-visual {
  box-shadow: 0 18px 48px rgba(7,26,46,.08);
}

.scenario-card::before,
.dashboard-mockup::before,
.operator-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,150,58,.45), rgba(255,255,255,0) 35%, rgba(77,167,255,.12) 68%, rgba(255,150,58,.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.visual-lab-section {
  padding-top: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.visual-lab-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 30px;
  align-items: center;
}

.visual-lab-copy .section-sub {
  max-width: 620px;
}

.visual-lab-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.visual-lab-list div {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.visual-lab-list div::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 7px;
  background: linear-gradient(135deg, var(--orange), #ffbf6e);
  box-shadow: 0 0 0 5px rgba(255,107,26,.09);
}

.visual-lab-cards {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
}

.visual-tile {
  min-height: 228px;
  border-radius: 24px;
  border: 1px solid rgba(7,26,46,.08);
  background: #fff;
  padding: 16px;
  overflow: hidden;
}

.visual-tile--photo {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.clone-photo {
  flex: 1 1 auto;
  min-height: 300px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef3f8, #dfe7ef);
  background-size: cover;
  background-position: center;
  position: relative;
}

.clone-photo::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(7,26,46,0), rgba(7,26,46,.14));
}

.visual-tile--orbit {
  background: radial-gradient(circle at 30% 30%, rgba(255,190,120,.24), transparent 34%), linear-gradient(180deg, #f9fbfd, #f0f7fb);
}

.orbit-stage {
  position: relative;
  height: 150px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(243,249,252,.96));
  overflow: hidden;
}

.orbit-core,
.orbit-ring,
.orbit-node,
.orbit-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-core {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 34%, #fff, #ffb76e 58%, #ff7d22 100%);
  box-shadow: 0 0 30px rgba(255,138,46,.45);
}

.orbit-ring {
  border-radius: 50%;
  border: 1px solid rgba(255,138,46,.22);
  animation: orbitSpin 12s linear infinite;
}

.orbit-ring.r1 { width: 86px; height: 86px; }
.orbit-ring.r2 { width: 130px; height: 130px; animation-duration: 16s; animation-direction: reverse; }
.orbit-ring.r3 { width: 170px; height: 170px; animation-duration: 20s; }

.orbit-node {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.10);
}

.orbit-node.n1 { transform: translate(42px, -43px); }
.orbit-node.n2 { transform: translate(-58px, 26px); }
.orbit-node.n3 { transform: translate(0px, 84px); }

.orbit-beam {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,107,26,0) 0deg, rgba(255,107,26,.24) 55deg, rgba(255,107,26,0) 110deg);
  filter: blur(3px);
  animation: orbitSpin 6s linear infinite;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.visual-tile--mini {
  background: linear-gradient(180deg, #fffaf6, #fff);
}

.mini-screen {
  height: 150px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  border: 1px solid rgba(7,26,46,.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-lines {
  display: grid;
  gap: 9px;
}

.mini-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,126,39,.22), rgba(255,190,138,.62));
  animation: linePulse 2.8s ease-in-out infinite;
}

.mini-lines span:nth-child(2) { width: 84%; animation-delay: .25s; }
.mini-lines span:nth-child(3) { width: 68%; animation-delay: .5s; }
.mini-lines span:nth-child(1) { width: 92%; }

@keyframes linePulse {
  0%,100% { opacity: .6; transform: scaleX(.96); }
  50% { opacity: 1; transform: scaleX(1); }
}

.mini-bars {
  height: 56px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.mini-bars i {
  flex: 1 1 auto;
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(255,137,43,.35), rgba(255,107,26,.88));
  animation: barRise 3.2s ease-in-out infinite;
}

.mini-bars i:nth-child(1) { height: 24px; }
.mini-bars i:nth-child(2) { height: 34px; animation-delay: .15s; }
.mini-bars i:nth-child(3) { height: 30px; animation-delay: .35s; }
.mini-bars i:nth-child(4) { height: 44px; animation-delay: .5s; }
.mini-bars i:nth-child(5) { height: 50px; animation-delay: .7s; }

@keyframes barRise {
  0%, 100% { transform: scaleY(.88); opacity: .82; }
  50% { transform: scaleY(1.02); opacity: 1; }
}

.visual-tile-caption {
  display: grid;
  gap: 4px;
}

.visual-tile-caption strong {
  font-size: 16px;
  color: var(--ink);
}

.visual-tile-caption span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-proof {
  transition: transform .22s ease, box-shadow .22s ease;
}

.hero-proof:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(7,26,46,.12);
}

.hero-proof .mock-chart i,
.decision-dashboard .mock-chart i {
  animation: liveBars 2.8s ease-in-out infinite;
  transform-origin: bottom center;
}
.hero-proof .mock-chart i:nth-child(2),
.decision-dashboard .mock-chart i:nth-child(2) { animation-delay: .12s; }
.hero-proof .mock-chart i:nth-child(3),
.decision-dashboard .mock-chart i:nth-child(3) { animation-delay: .24s; }
.hero-proof .mock-chart i:nth-child(4),
.decision-dashboard .mock-chart i:nth-child(4) { animation-delay: .36s; }
.hero-proof .mock-chart i:nth-child(5),
.decision-dashboard .mock-chart i:nth-child(5) { animation-delay: .48s; }
.hero-proof .mock-chart i:nth-child(6),
.decision-dashboard .mock-chart i:nth-child(6) { animation-delay: .60s; }
.hero-proof .mock-chart i:nth-child(7),
.decision-dashboard .mock-chart i:nth-child(7) { animation-delay: .72s; }
.hero-proof .mock-chart i:nth-child(8),
.decision-dashboard .mock-chart i:nth-child(8) { animation-delay: .84s; }

@keyframes liveBars {
  0%,100% { transform: scaleY(.88); filter: saturate(.92); }
  40% { transform: scaleY(1.06); }
  60% { transform: scaleY(.98); filter: saturate(1.04); }
}

@media (max-width: 1040px) {
  .visual-lab-grid {
    grid-template-columns: 1fr;
  }

  .visual-lab-cards {
    grid-template-columns: 1fr 1fr;
  }

  .visual-tile--photo {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .visual-lab-cards {
    grid-template-columns: 1fr;
  }

  .visual-tile--photo {
    grid-column: auto;
  }

  .clone-photo {
    min-height: 220px;
  }
}


/* v14 merge: human + AI visuals in one focused section */
.visual-lab-section,
.operator-section,
.performance-section {
  display: none !important;
}

.human-ai-section {
  padding: 98px 48px;
  background:
    radial-gradient(ellipse 50% 60% at 78% 20%, rgba(255,107,26,.08), transparent 65%),
    linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.human-ai-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center;
}

.human-ai-visual {
  position: relative;
  min-height: 560px;
}

.human-photo {
  position: absolute;
  inset: 56px 88px 32px 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(7,26,46,.08);
  background: #eef3f7;
  box-shadow: 0 24px 70px rgba(7,26,46,.10);
}

.human-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.92) contrast(.98);
}

.human-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,26,46,.10), rgba(7,26,46,0) 45%),
    radial-gradient(circle at 82% 28%, rgba(255,107,26,.16), transparent 28%);
  pointer-events: none;
}

.human-photo-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.54);
  backdrop-filter: blur(14px);
  color: #071a2e;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(7,26,46,.12);
}

.floating-ai-card {
  position: absolute;
  z-index: 4;
  width: 250px;
  border-radius: 24px;
  border: 1px solid rgba(7,26,46,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 60px rgba(7,26,46,.10);
  backdrop-filter: blur(18px);
  padding: 16px;
  overflow: hidden;
}

.floating-ai-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,150,58,.48), rgba(255,255,255,0) 36%, rgba(116,185,255,.16) 70%, rgba(255,150,58,.34));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.floating-ai-card--mesh {
  right: 0;
  top: 0;
}

.floating-ai-card--rhythm {
  right: 28px;
  bottom: 0;
}

.floating-ai-card strong {
  display: block;
  margin: 12px 0 5px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -.02em;
}

.floating-ai-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.compact-orbit {
  height: 138px;
}

.compact-mini {
  height: 132px;
}

.human-ai-copy .section-title {
  max-width: 640px;
}

.human-ai-copy .section-sub {
  margin-bottom: 28px;
}

.human-ai-points {
  display: grid;
  gap: 12px;
}

.human-ai-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7,26,46,.035);
}

.human-ai-points article > span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
  font-weight: 800;
}

.human-ai-points strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 5px;
}

.human-ai-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.control-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 26px;
}

.control-principles span {
  display: block;
  padding: 13px 15px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.control-principles strong {
  display: block;
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 4px;
}

.floating-ai-card,
.human-photo,
.control-principles span {
  transition: transform .24s ease, box-shadow .24s ease;
}

.floating-ai-card:hover,
.human-photo:hover,
.control-principles span:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(7,26,46,.11);
}

@media (max-width: 1100px) {
  .human-ai-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .human-ai-visual {
    min-height: 560px;
  }

  .human-ai-copy {
    order: -1;
  }
}

@media (max-width: 780px) {
  .human-ai-section {
    padding: 72px 0;
  }

  .human-ai-grid {
    width: calc(100% - 28px);
  }

  .human-ai-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .human-photo,
  .floating-ai-card {
    position: relative;
    inset: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .human-photo {
    min-height: 320px;
  }

  .control-principles {
    grid-template-columns: 1fr;
  }
}


/* v15 final polish */
.site-nav {
  height: 78px;
}

.nav-shell {
  height: 78px;
}

.brand,
.brand img {
  width: 172px;
}

.nav-link {
  font-size: 14.7px;
}

.hero-fade-left {
  background:
    linear-gradient(90deg,
      rgba(239, 243, 248, 1) 0%,
      rgba(239, 243, 248, 1) 32%,
      rgba(239, 243, 248, .92) 46%,
      rgba(239, 243, 248, .48) 62%,
      rgba(239, 243, 248, 0) 80%);
}

.hero h1 {
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
}

.hero-proof {
  transform: translateY(-4px);
}

.hero-proof:hover {
  transform: translateY(-7px);
}

.human-ai-visual {
  min-height: 575px;
}

.human-photo {
  inset: 54px 150px 38px 0;
}

.floating-ai-card {
  width: 232px;
  padding: 15px;
}

.floating-ai-card--mesh {
  right: 8px;
  top: 42px;
}

.floating-ai-card--rhythm {
  right: 0;
  bottom: 42px;
}

.compact-orbit {
  height: 126px;
}

.compact-mini {
  height: 120px;
}

.service-card {
  min-height: 285px;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 74px;
  height: 38px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255,107,26,.00), rgba(255,107,26,.18), rgba(255,107,26,.00)),
    repeating-linear-gradient(0deg, rgba(255,107,26,.18) 0 2px, transparent 2px 8px);
  opacity: .52;
  transform: translateY(0);
  animation: serviceSignal 3.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

@keyframes serviceSignal {
  0%, 100% {
    opacity: .36;
    transform: translateY(0) scaleX(.95);
  }
  50% {
    opacity: .72;
    transform: translateY(-2px) scaleX(1);
  }
}

.service-icon {
  box-shadow: 0 10px 22px rgba(255,107,26,.12);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 16px 32px rgba(255,107,26,.18);
}

.decision-table-row,
.checks-list span,
.compact-control-grid article,
.control-principles span {
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.decision-table-row:hover,
.checks-list span:hover,
.compact-control-grid article:hover,
.control-principles span:hover {
  transform: translateX(2px);
  border-color: rgba(255,107,26,.18);
  background: #fffaf6;
}

.usecase-card p {
  color: rgba(7,26,46,.66);
}

.usecase-list li {
  font-weight: 560;
}

.cta-section {
  padding-top: 116px;
  padding-bottom: 118px;
}

.cta-actions .btn {
  padding: 15px 24px;
}

footer {
  padding-top: 76px;
  padding-bottom: 52px;
}

.footer-grid {
  margin-bottom: 60px;
}

.footer-brand img {
  width: 172px;
}

.footer-bottom {
  padding-top: 28px;
}

@media (max-width: 1100px) {
  .human-photo {
    inset: 54px 130px 38px 0;
  }
}

@media (max-width: 780px) {
  .site-nav,
  .nav-shell {
    height: 68px;
  }

  .brand,
  .brand img {
    width: 144px;
  }

  .human-ai-visual {
    min-height: auto;
  }

  .human-photo {
    inset: auto;
  }

  .floating-ai-card {
    width: 100%;
  }

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

  .service-card::before {
    right: 18px;
    top: 18px;
    width: 62px;
    height: 32px;
  }

  .cta-section {
    padding-top: 86px;
    padding-bottom: 88px;
  }

  footer {
    padding-top: 56px;
    padding-bottom: 42px;
  }
}


/* v16 commercial trust pass */
.hero h1 {
  max-width: 815px;
}

.hero-lead {
  max-width: 720px;
}

.proof-pill:first-child {
  color: #b84b10;
}

.merchant-safe-section {
  padding: 92px 48px;
  background:
    radial-gradient(ellipse 56% 70% at 70% 100%, rgba(255,107,26,.09), transparent 72%),
    #fff;
  border-top: 1px solid rgba(7,26,46,.06);
}

.merchant-safe-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 62px;
  align-items: center;
}

.merchant-safe-copy .section-title {
  max-width: 590px;
}

.merchant-safe-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.merchant-safe-cards article {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 17px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 28px rgba(7,26,46,.045);
}

.merchant-safe-cards article:last-child {
  grid-column: 1 / -1;
}

.merchant-safe-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255,255,255,.55) 50%, transparent 78%);
  transform: translateX(-140%);
  opacity: .55;
  pointer-events: none;
}

.merchant-safe-cards article:hover::after {
  transform: translateX(140%);
  transition: transform .8s ease;
}

.merchant-safe-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 13px;
  border-radius: 10px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
  font-weight: 800;
}

.merchant-safe-cards strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -.02em;
}

.merchant-safe-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-card h3 {
  letter-spacing: -.035em;
}

.footer-col a {
  line-height: 1.35;
}

.footer-legal a {
  color: rgba(7,26,46,.54);
}

@media (max-width: 1100px) {
  .merchant-safe-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 780px) {
  .merchant-safe-section {
    padding: 72px 0;
  }

  .merchant-safe-grid {
    width: calc(100% - 28px);
  }

  .merchant-safe-cards {
    grid-template-columns: 1fr;
  }

  .merchant-safe-cards article:last-child {
    grid-column: auto;
  }
}


/* v17 premium signal-flow and final UI polish */
.hero h1 {
  max-width: 880px;
}

.hero h1 em {
  color: #071a2e;
}

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

.signal-flow-section {
  padding: 30px 48px;
  background: #fff;
  border-top: 1px solid rgba(7,26,46,.06);
  border-bottom: 1px solid rgba(7,26,46,.06);
}

.signal-flow-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
}

.signal-flow-copy {
  display: grid;
  gap: 6px;
}

.signal-flow-label {
  color: #df5a12;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal-flow-copy strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.signal-flow-track {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: stretch;
  gap: 8px;
}

.signal-node {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 14px 14px 13px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,26,.08), transparent 38%),
    #fff;
  box-shadow: 0 8px 22px rgba(7,26,46,.04);
}

.signal-node::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.68) 50%, transparent 78%);
  transform: translateX(-140%);
  animation: signalShimmer 5.8s ease-in-out infinite;
}

.signal-node:nth-child(3)::after { animation-delay: .35s; }
.signal-node:nth-child(5)::after { animation-delay: .7s; }
.signal-node:nth-child(7)::after { animation-delay: 1.05s; }
.signal-node:nth-child(9)::after { animation-delay: 1.4s; }

@keyframes signalShimmer {
  0%, 55%, 100% { transform: translateX(-140%); }
  72% { transform: translateX(140%); }
}

.signal-node span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 9px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 11px;
  font-weight: 800;
}

.signal-node strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.signal-node small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.signal-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signal-connector i {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(7,26,46,.08);
  overflow: hidden;
}

.signal-connector i::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,107,26,0), rgba(255,107,26,.95), rgba(255,107,26,0));
  animation: signalTravel 2.8s ease-in-out infinite;
}

.signal-connector:nth-of-type(2) i::after { animation-delay: .22s; }
.signal-connector:nth-of-type(3) i::after { animation-delay: .44s; }
.signal-connector:nth-of-type(4) i::after { animation-delay: .66s; }

@keyframes signalTravel {
  from { transform: translateX(-110%); }
  to { transform: translateX(260%); }
}

.hero-trust span {
  background: rgba(255,255,255,.68);
}

.feature-card {
  min-height: 305px;
}

.how-section {
  border-top: 1px solid rgba(7,26,46,.06);
}

.service-card,
.merchant-safe-cards article,
.usecase-card {
  transform: translateZ(0);
}

.cta-section .section-title {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .signal-flow-inner {
    grid-template-columns: 1fr;
  }

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

  .signal-connector {
    height: 18px;
  }

  .signal-connector i {
    width: 2px;
    height: 100%;
  }

  .signal-connector i::after {
    width: 100%;
    height: 42%;
    animation: signalTravelVertical 2.8s ease-in-out infinite;
  }

  @keyframes signalTravelVertical {
    from { transform: translateY(-110%); }
    to { transform: translateY(260%); }
  }
}

@media (max-width: 780px) {
  .signal-flow-section {
    padding: 26px 0;
  }

  .signal-flow-inner {
    width: calc(100% - 28px);
  }
}


/* v18 hero copy + logo polish */
.brand,
.brand img {
  width: 188px;
}

.footer-brand img {
  width: 184px;
}

.hero-grid {
  grid-template-columns: minmax(0, 650px) 1fr;
  gap: 64px;
}

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

.hero h1 {
  max-width: 660px;
  font-size: clamp(42px, 4.65vw, 64px);
  line-height: 1.01;
  letter-spacing: -.058em;
  margin-bottom: 18px;
}

.hero-lead {
  max-width: 620px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.52;
  margin-bottom: 24px;
}

.hero-note {
  max-width: 560px;
  margin-top: 15px;
  font-size: 12.5px;
}

.hero-trust {
  margin-top: 16px;
  gap: 8px;
}

.hero-trust span {
  padding: 8px 10px;
  font-size: 12px;
}

.eyebrow {
  letter-spacing: .12em;
}

.hero-proof {
  width: min(410px, 100%);
}

@media (max-width: 1100px) {
  .brand,
  .brand img {
    width: 166px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero h1 {
    max-width: 720px;
  }
}

@media (max-width: 780px) {
  .brand,
  .brand img {
    width: 148px;
  }

  .footer-brand img {
    width: 160px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }
}


/* v19: cleaner human + AI visual stack with supporting imagery */
.human-ai-visual {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 236px;
  gap: 20px;
  align-items: stretch;
}

.human-photo {
  position: relative;
  inset: auto;
  min-height: 520px;
}

.human-side-stack {
  display: grid;
  gap: 18px;
  align-self: center;
}

.human-side-card {
  display: flex;
  flex-direction: column;
  min-height: 248px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(7,26,46,.08);
  background: rgba(255,255,255,.86);
  box-shadow: 0 20px 56px rgba(7,26,46,.10);
  backdrop-filter: blur(16px);
  transition: transform .24s ease, box-shadow .24s ease;
}

.human-side-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(7,26,46,.12);
}

.human-side-card__image {
  height: 146px;
  overflow: hidden;
  background: #eef3f7;
}

.human-side-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.human-side-card__copy {
  padding: 16px 17px 18px;
}

.human-side-card__copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -.02em;
}

.human-side-card__copy span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.floating-ai-card {
  display: none !important;
}

@media (max-width: 1100px) {
  .human-ai-visual {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .human-photo {
    min-height: 420px;
  }

  .human-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: stretch;
  }
}

@media (max-width: 780px) {
  .human-photo {
    min-height: 320px;
  }

  .human-side-stack {
    grid-template-columns: 1fr;
  }

  .human-side-card {
    min-height: 0;
  }
}


/* v20 final UI/UX polish */
.brand,
.brand img {
  width: 178px;
}

.footer-brand img {
  width: 176px;
}

.hero-grid {
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: 72px;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(42px, 4.45vw, 62px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 610px;
  font-size: clamp(16px, 1.18vw, 18px);
}

.hero-note {
  max-width: 560px;
}

.hero-trust span {
  padding: 8px 11px;
  background: rgba(255,255,255,.72);
  border-color: rgba(7,26,46,.09);
}

.hero-proof {
  width: min(400px, 100%);
}

.signal-flow-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.signal-node {
  min-height: 98px;
  border-color: rgba(255,107,26,.10);
}

.signal-node strong {
  font-size: 14.5px;
}

.signal-node small {
  font-size: 12.2px;
}

.cards-header .section-title,
.how-header .section-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card h3 {
  font-size: 23px;
}

.feature-card p {
  font-size: 14.4px;
}

.scenario-feature .scenario-card,
.merchant-safe-cards article,
.service-card,
.usecase-card {
  border-color: rgba(7,26,46,.075);
}

.human-ai-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.human-ai-grid {
  gap: 82px;
}

.human-photo {
  min-height: 535px;
  border-radius: 28px;
}

.human-side-card {
  border-radius: 24px;
  min-height: 238px;
}

.human-side-card__image {
  height: 136px;
}

.human-side-card__image img {
  filter: saturate(.9) contrast(.98);
}

.human-side-card__copy {
  padding: 15px 16px 17px;
}

.human-side-card__copy strong {
  font-size: 14.8px;
}

.human-side-card__copy span {
  font-size: 12.8px;
}

.human-ai-points article {
  border-color: rgba(7,26,46,.075);
}

.control-room-section {
  padding-top: 104px;
}

.decision-dashboard {
  transform: translateY(-4px);
}

.cta-section .section-title {
  max-width: 820px;
}

.cta-actions .btn-dark {
  box-shadow: 0 16px 34px rgba(7,26,46,.18);
}

footer {
  background:
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.footer-grid {
  align-items: start;
}

.footer-col a {
  padding: 6px 0;
}

@media (max-width: 1100px) {
  .brand,
  .brand img {
    width: 160px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .human-ai-grid {
    gap: 44px;
  }

  .human-photo {
    min-height: 430px;
  }
}

@media (max-width: 780px) {
  .brand,
  .brand img {
    width: 142px;
  }

  .footer-brand img {
    width: 154px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.8vw, 52px);
  }

  .human-ai-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .human-photo {
    min-height: 310px;
  }
}


/* v21 final trust polish */
.signal-flow-section {
  padding-top: 40px;
  padding-bottom: 38px;
}

.signal-flow-inner {
  grid-template-columns: 292px 1fr;
  gap: 34px;
}

.signal-flow-copy strong {
  font-size: 18.5px;
}

.signal-flow-track {
  grid-template-columns: 1.08fr 48px 1.08fr 48px 1.08fr 48px 1.08fr 48px 1.08fr;
  gap: 10px;
}

.signal-node {
  min-height: 112px;
  padding: 16px 16px 15px;
}

.signal-node span {
  width: 30px;
  height: 28px;
  margin-bottom: 12px;
}

.signal-node strong {
  font-size: 15.3px;
}

.signal-node small {
  font-size: 12.8px;
}

.credential-strip {
  padding: 22px 48px;
  background: #fff;
  border-bottom: 1px solid rgba(7,26,46,.06);
}

.credential-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.credential-label {
  color: rgba(7,26,46,.55);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.credential-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.credential-pills span {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(7,26,46,.08);
  background: linear-gradient(180deg, #fff, #fbfcfd);
  color: rgba(7,26,46,.66);
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 6px 16px rgba(7,26,46,.035);
}

.scenario-card {
  position: relative;
}

.scenario-card::after {
  content: "decision report";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(7,26,46,.28);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.merchant-safe-section {
  background:
    radial-gradient(ellipse 56% 70% at 70% 100%, rgba(255,107,26,.11), transparent 72%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.merchant-safe-cards article {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.merchant-safe-cards article:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,26,.18);
  box-shadow: 0 16px 38px rgba(7,26,46,.065);
}

.cta-section {
  padding-top: 124px;
  padding-bottom: 126px;
}

.cta-actions {
  gap: 16px;
}

.btn-cta-primary {
  padding: 17px 28px;
  min-width: 172px;
  box-shadow: 0 18px 38px rgba(7,26,46,.20);
}

.btn-cta-secondary {
  padding: 17px 25px;
}

.footer-trust-row {
  width: min(var(--max), calc(100% - 48px));
  margin: -26px auto 38px;
  padding: 16px 18px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  box-shadow: 0 10px 28px rgba(7,26,46,.04);
}

.footer-trust-row span {
  color: rgba(7,26,46,.62);
  font-size: 12px;
  font-weight: 650;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(7,26,46,.06);
}

footer {
  padding-top: 84px;
}

@media (max-width: 1100px) {
  .signal-flow-inner {
    grid-template-columns: 1fr;
  }

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

  .signal-node {
    min-height: 92px;
  }

  .credential-inner {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .signal-flow-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .credential-strip {
    padding: 20px 0;
  }

  .credential-inner {
    width: calc(100% - 28px);
  }

  .footer-trust-row {
    width: calc(100% - 28px);
    margin-top: -16px;
  }

  .cta-section {
    padding-top: 90px;
    padding-bottom: 92px;
  }
}



/* v22 refinements */
.brand,
.brand img {
  width: 198px !important;
}

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

.hero-lead {
  max-width: 720px;
}

.hero-note {
  max-width: 700px;
}

.feature-card--orange {
  background: linear-gradient(145deg, #fe5d12, #fe7120 28%, #fe8d2f 58%, #ffd1b4) !important;
}

.feature-card--orange .feature-card__bg {
  background:
    radial-gradient(circle at 36% 78%, rgba(255,255,255,.86) 0 10%, transparent 13%),
    radial-gradient(circle at 34% 76%, rgba(255,255,255,.34) 0 22%, transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, #fe560c, #fe7720 28%, #fe9534 56%, #ffd2bb 100%) !important;
  animation: brandOrangePulse 2.4s ease-in-out infinite !important;
}

@keyframes brandOrangePulse {
  0%,100% { transform: translate3d(calc(var(--tx) * 1.02), calc(var(--ty) * 1.02), 0) scale(1.08); }
  50% { transform: translate3d(calc(var(--tx) * .48), calc(var(--ty) * 1.18), 0) scale(1.16); }
}

.human-ai-section {
  background:
    radial-gradient(ellipse 58% 56% at 80% 22%, rgba(254, 86, 12, .08), transparent 68%),
    linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.human-ai-visual {
  min-height: 540px;
}

.human-photo {
  inset: 42px 124px 36px 0;
}

.floating-ai-card {
  width: 236px;
  padding: 16px;
}

.floating-ai-card--mesh {
  right: 8px;
  top: 18px;
}

.floating-ai-card--rhythm {
  right: 16px;
  bottom: 12px;
}

.ai-orbit-visual,
.ai-rhythm-visual {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(7,26,46,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,249,252,.95));
}

.ai-orbit-visual {
  height: 128px;
}

.orbit-ring,
.orbit-core,
.orbit-node {
  position: absolute;
  border-radius: 999px;
}

.orbit-ring {
  border: 1px solid rgba(254, 117, 34, .24);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: orbitPulse 4.8s ease-in-out infinite;
}

.orbit-ring--1 { width: 54px; height: 54px; }
.orbit-ring--2 { width: 90px; height: 90px; animation-delay: .4s; }
.orbit-ring--3 { width: 126px; height: 126px; animation-delay: .8s; }

.orbit-core {
  width: 28px; height: 28px;
  left: calc(50% - 14px); top: calc(50% - 14px);
  background: radial-gradient(circle at 35% 35%, #fff6eb 0%, #fecc8f 28%, #fe8c2d 72%, #fe560c 100%);
  box-shadow: 0 0 0 10px rgba(254, 86, 12, .08), 0 14px 24px rgba(254, 86, 12, .18);
}

.orbit-node {
  width: 8px; height: 8px; background: rgba(255,255,255,.95); box-shadow: 0 0 0 3px rgba(254,86,12,.10);
}

.orbit-node--a { left: 35px; top: 62px; }
.orbit-node--b { right: 36px; top: 36px; }
.orbit-node--c { right: 54px; bottom: 26px; }

@keyframes orbitPulse {
  0%,100% { opacity: .85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}

.ai-rhythm-visual {
  height: 122px;
  padding: 18px 16px 14px;
}

.rhythm-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.rhythm-lines i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(254,86,12,.16), rgba(254,153,49,.36));
}

.rhythm-lines i:nth-child(1) { width: 88%; }
.rhythm-lines i:nth-child(2) { width: 72%; }
.rhythm-lines i:nth-child(3) { width: 54%; }

.rhythm-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 42px;
}

.rhythm-bars i {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #ffd8bd, #fe8b30);
  opacity: .98;
  animation: rhythmBounce 2.8s ease-in-out infinite;
}

.rhythm-bars i:nth-child(1) { height: 22px; }
.rhythm-bars i:nth-child(2) { height: 30px; animation-delay: .12s; }
.rhythm-bars i:nth-child(3) { height: 28px; animation-delay: .24s; }
.rhythm-bars i:nth-child(4) { height: 38px; animation-delay: .36s; }
.rhythm-bars i:nth-child(5) { height: 44px; animation-delay: .48s; }

@keyframes rhythmBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.control-room-section {
  padding: 96px 48px 102px;
  background:
    radial-gradient(circle at 70% 100%, rgba(254,86,12,.06), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fdfdfd 100%);
}

.control-room-grid--v2 {
  gap: 54px;
  align-items: stretch;
}

.control-room-copy .section-title {
  max-width: 690px;
}

.control-room-copy .section-sub {
  max-width: 630px;
  margin-bottom: 22px;
}

.control-switcher {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(7,26,46,.04);
  border: 1px solid rgba(7,26,46,.06);
  margin-bottom: 18px;
}

.control-switcher button {
  border: 0;
  background: transparent;
  color: rgba(7,26,46,.58);
  font-size: 13px;
  font-weight: 760;
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}

.control-switcher button.is-active,
.control-switcher button:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(7,26,46,.08);
}

.control-panels {
  position: relative;
  min-height: 210px;
  margin-bottom: 22px;
}

.control-panel {
  display: none;
  padding: 22px 22px 16px;
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fcfcfd);
  box-shadow: 0 16px 40px rgba(7,26,46,.05);
}

.control-panel.is-active { display: block; }
.control-panel strong { display:block; font-size: 18px; color: var(--ink); margin-bottom: 12px; letter-spacing:-.02em; }
.control-panel ul { margin: 0; padding-left: 18px; display: grid; gap: 10px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.dashboard-mockup--interactive {
  padding: 0;
  overflow: hidden;
}

.dashboard-view {
  display: none;
  padding: 0 22px 22px;
}

.dashboard-view.is-active { display: block; }

.guardrail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 22px 0 16px;
}

.guardrail-grid article,
.action-summary article,
.action-card {
  border: 1px solid rgba(7,26,46,.08);
  border-radius: 18px;
  background: #fff;
}

.guardrail-grid article {
  padding: 16px;
}
.guardrail-grid strong,
.action-summary strong { display:block; color:var(--ink); font-size:16px; margin-bottom:6px; }
.guardrail-grid span,
.action-summary span,
.action-card small { color:var(--muted); font-size:13px; line-height:1.45; display:block; }

.guardrail-meter-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.guardrail-meter-list div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px 14px 24px;
  border-radius: 18px;
  background: rgba(7,26,46,.03);
}

.guardrail-meter-list i {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd6bf, #fe6b1a);
}

.guardrail-meter-list span,
.guardrail-meter-list b { position: relative; z-index: 2; }
.guardrail-meter-list span { color: var(--muted); font-size: 13px; }
.guardrail-meter-list b { color: var(--ink); font-size: 13px; }

.action-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 22px 0 16px;
}

.action-summary article {
  padding: 18px 16px;
}

.action-summary strong {
  font-size: 26px;
  letter-spacing: -.03em;
}

.action-cards {
  display: grid;
  gap: 12px;
}

.action-card {
  padding: 15px 16px;
  display: grid;
  gap: 4px;
}

.action-card span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(254,86,12,.10);
  color: #d35e17;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.action-card strong { color: var(--ink); font-size: 16px; }
.action-card--hold span { background: rgba(126,133,146,.14); color: #667085; }
.action-card--expand span { background: rgba(254,153,49,.14); color: #d46b12; }

.footer-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 48px 24px;
  background: linear-gradient(180deg, #fff7f1 0%, #fff 100%);
  border-bottom: 1px solid rgba(7,26,46,.06);
}

.footer-hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: end;
}

.footer-hero-copy h2 {
  margin: 8px 0 14px;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: .97;
  letter-spacing: -.055em;
}

.footer-hero-copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.footer-mega-brand-wrap {
  display: flex;
  justify-content: flex-end;
}

.footer-mega-brand-surface {
  position: relative;
  width: 100%;
  min-height: 300px;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(7,26,46,.06);
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.06) 38%),
    linear-gradient(120deg, #fff4ea 0%, #ffe1c9 26%, #ffd4bc 48%, #fff0df 72%, #fff8f2 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 24px 60px rgba(7,26,46,.08);
}

.footer-mega-brand-surface::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(254,86,12,.22), rgba(254,153,49,.10) 18%, rgba(255,255,255,0) 38%);
  transition: opacity .2s ease;
  opacity: .9;
  pointer-events: none;
}

.footer-mega-brand-surface::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 20%;
  height: 70%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.28), rgba(255,255,255,0) 70%);
  transform: rotate(-6deg);
  pointer-events: none;
}

.footer-mega-brand {
  position: absolute;
  left: 6%;
  right: 3%;
  bottom: 8%;
  width: 91%;
  max-width: none;
  opacity: .98;
  filter: drop-shadow(0 16px 24px rgba(255,255,255,.3));
}

footer {
  padding: 0 48px 34px;
  background: linear-gradient(180deg, #fff 0%, #fdfdfd 100%);
}

.footer-grid {
  padding-top: 42px;
}

.footer-brand img {
  width: 188px !important;
}

.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--ink); }

@media (max-width: 1100px) {
  .brand,
  .brand img { width: 182px !important; }
  .footer-hero-inner,
  .control-room-grid--v2 { grid-template-columns: 1fr; }
  .footer-mega-brand-wrap { justify-content: stretch; }
  .guardrail-grid,
  .action-summary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .brand,
  .brand img { width: 150px !important; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .human-ai-visual { min-height: 540px; }
  .human-photo { inset: 72px 0 132px 0; }
  .floating-ai-card--mesh { right: 12px; top: 0; }
  .floating-ai-card--rhythm { right: 0; bottom: 0; }
  .floating-ai-card { width: 210px; }
  .control-room-section { padding: 76px 0 82px; }
  .control-panels { min-height: 240px; }
  .guardrail-grid,
  .action-summary { grid-template-columns: 1fr; }
  .footer-hero { padding: 34px 0 20px; }
  .footer-hero-inner { width: calc(100% - 28px); }
  .footer-mega-brand-surface { min-height: 190px; border-radius: 26px; }
  .footer-mega-brand { left: 4%; width: 94%; bottom: 10%; }
  footer { padding: 0 0 28px; }
}


/* v23 visible-final polish */
.hero h1 {
  font-size: clamp(44px, 4.9vw, 70px) !important;
  max-width: 840px !important;
}

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

.hero-lead {
  max-width: 700px !important;
  font-size: clamp(16.5px, 1.28vw, 19px) !important;
}

.hero-proof {
  transform: translateY(-8px) scale(1.035) !important;
}

.signal-flow-section {
  padding-top: 54px !important;
  padding-bottom: 52px !important;
  background:
    radial-gradient(circle at 80% 10%, rgba(254,86,12,.07), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%) !important;
}

.signal-flow-inner {
  grid-template-columns: 320px 1fr !important;
}

.signal-flow-copy strong {
  font-size: 22px !important;
}

.signal-node {
  min-height: 128px !important;
  padding: 20px 18px !important;
  border-radius: 22px !important;
}

.signal-node strong {
  font-size: 16px !important;
}

.signal-node small {
  font-size: 13.2px !important;
}

.feature-card--orange {
  background: linear-gradient(145deg, #fe560c 0%, #fe6d1b 38%, #ff8f35 68%, #ffd0b0 100%) !important;
  border-color: rgba(254,86,12,.34) !important;
}

.human-ai-section {
  padding-top: 118px !important;
  padding-bottom: 118px !important;
}

.human-ai-grid {
  grid-template-columns: .98fr 1.02fr !important;
  gap: 92px !important;
}

.human-ai-visual {
  min-height: 590px !important;
}

.human-photo {
  inset: 58px 150px 58px 0 !important;
  border-radius: 34px !important;
}

.floating-ai-card {
  width: 255px !important;
  border-radius: 28px !important;
  box-shadow: 0 28px 78px rgba(7,26,46,.14) !important;
}

.floating-ai-card--mesh {
  right: 0 !important;
  top: 0 !important;
}

.floating-ai-card--rhythm {
  right: 4px !important;
  bottom: 0 !important;
}

.control-room-section {
  background:
    radial-gradient(circle at 72% 88%, rgba(254,86,12,.10), transparent 36%),
    linear-gradient(180deg, #fff 0%, #fff8f2 100%) !important;
}

.control-switcher {
  transform: scale(1.04);
  transform-origin: left center;
}

.dashboard-mockup--interactive {
  box-shadow: 0 30px 92px rgba(7,26,46,.13) !important;
  transform: translateY(-8px) !important;
}

.footer-hero {
  padding-top: 72px !important;
  padding-bottom: 0 !important;
  background:
    radial-gradient(circle at 74% 16%, rgba(254,86,12,.20), transparent 32%),
    linear-gradient(135deg, #fff2e8 0%, #ffd9bf 42%, #fff8ef 100%) !important;
}

.footer-hero-inner {
  grid-template-columns: .62fr 1.38fr !important;
  align-items: end !important;
}

.footer-hero-copy h2 {
  font-size: clamp(40px, 4.8vw, 74px) !important;
  max-width: 680px !important;
}

.footer-mega-brand-surface {
  min-height: 430px !important;
  border-radius: 52px 52px 0 0 !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.45), rgba(255,255,255,0) 34%),
    linear-gradient(120deg, #ff6b1a 0%, #ff8d2c 30%, #ffd0aa 62%, #fff4e8 100%) !important;
}

.footer-mega-brand {
  width: 98% !important;
  left: 1% !important;
  bottom: 7% !important;
  opacity: .98 !important;
  filter: drop-shadow(0 16px 26px rgba(255,255,255,.45)) !important;
}

.footer-grid {
  padding-top: 62px !important;
}

@media (max-width: 1100px) {
  .signal-flow-inner,
  .human-ai-grid,
  .footer-hero-inner {
    grid-template-columns: 1fr !important;
  }

  .human-photo {
    inset: 70px 150px 70px 0 !important;
  }
}

@media (max-width: 780px) {
  .hero h1 {
    font-size: clamp(38px, 11vw, 56px) !important;
  }

  .human-photo {
    inset: 84px 0 150px 0 !important;
  }

  .floating-ai-card {
    width: 215px !important;
  }

  .footer-mega-brand-surface {
    min-height: 240px !important;
    border-radius: 32px 32px 0 0 !important;
  }
}


/* v24 balance pass: v23 hero/control + calmer footer + stronger human-AI section */
.hero-shell {
  min-height: 705px !important;
}

.hero-grid {
  min-height: 705px !important;
  padding-top: 132px !important;
  padding-bottom: 88px !important;
}

.hero h1 {
  font-size: clamp(42px, 4.65vw, 66px) !important;
  max-width: 780px !important;
  line-height: 1.01 !important;
}

.hero-lead {
  max-width: 690px !important;
}

.hero-proof {
  transform: translateY(-2px) scale(1.01) !important;
}

.feature-card--orange {
  background: linear-gradient(145deg, #fe6518 0%, #fe7924 36%, #ff9b45 68%, #ffd7bd 100%) !important;
  border-color: rgba(254, 86, 12, .22) !important;
}

.feature-card--orange .feature-card__bg {
  background:
    radial-gradient(circle at 36% 78%, rgba(255,255,255,.78) 0 10%, transparent 14%),
    radial-gradient(circle at 34% 76%, rgba(255,255,255,.24) 0 22%, transparent 39%),
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, #fe6518, #fe7d25 30%, #ff9a43 58%, #ffd8c2 100%) !important;
}

.human-ai-section {
  padding-top: 108px !important;
  padding-bottom: 112px !important;
}

.human-ai-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 74px !important;
  align-items: center !important;
}

.human-ai-visual {
  min-height: 570px !important;
}

.human-photo {
  inset: 34px 190px 34px 0 !important;
  border-radius: 32px !important;
}

.human-photo img {
  object-position: center center !important;
}

.floating-ai-card {
  width: 270px !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.86) !important;
  box-shadow: 0 26px 74px rgba(7,26,46,.12) !important;
}

.floating-ai-card--mesh {
  right: 0 !important;
  top: 34px !important;
}

.floating-ai-card--rhythm {
  right: 20px !important;
  bottom: 34px !important;
}

.ai-orbit-visual {
  height: 136px !important;
}

.ai-rhythm-visual {
  height: 130px !important;
}

.human-ai-copy .section-title {
  max-width: 720px !important;
  font-size: clamp(36px, 3.9vw, 58px) !important;
}

.human-ai-copy .section-sub {
  max-width: 690px !important;
}

.human-ai-points article {
  padding: 18px 18px !important;
  border-radius: 20px !important;
}

.control-room-section {
  padding-top: 102px !important;
  padding-bottom: 108px !important;
}

.control-room-grid--v2 {
  gap: 64px !important;
}

.control-panels {
  min-height: 204px !important;
}

.control-panel {
  animation: controlPanelIn .24s ease both;
}

.dashboard-view {
  animation: dashboardPanelIn .28s ease both;
}

@keyframes controlPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dashboardPanelIn {
  from { opacity: 0; transform: translateY(8px) scale(.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.footer-hero {
  padding-top: 58px !important;
  background:
    radial-gradient(circle at 78% 20%, rgba(254,86,12,.14), transparent 32%),
    linear-gradient(135deg, #fff8f2 0%, #ffe0c8 46%, #fff8f2 100%) !important;
}

.footer-hero-inner {
  grid-template-columns: .72fr 1.28fr !important;
  gap: 38px !important;
}

.footer-hero-copy h2 {
  font-size: clamp(34px, 4.05vw, 62px) !important;
  max-width: 620px !important;
}

.footer-hero-copy p {
  max-width: 560px !important;
}

.footer-mega-brand-surface {
  min-height: 340px !important;
  border-radius: 44px 44px 0 0 !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.48), rgba(255,255,255,0) 36%),
    linear-gradient(120deg, #ff7a23 0%, #ff9b43 34%, #ffd2b2 66%, #fff5ea 100%) !important;
}

.footer-mega-brand {
  width: 94% !important;
  left: 3% !important;
  bottom: 9% !important;
}

@media (max-width: 1100px) {
  .human-ai-grid,
  .footer-hero-inner {
    grid-template-columns: 1fr !important;
  }

  .human-ai-visual {
    min-height: 560px !important;
  }

  .human-photo {
    inset: 50px 210px 50px 0 !important;
  }
}

@media (max-width: 780px) {
  .hero-shell,
  .hero-grid {
    min-height: auto !important;
  }

  .hero-grid {
    padding-top: 86px !important;
    padding-bottom: 64px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 10.8vw, 54px) !important;
  }

  .human-ai-section {
    padding-top: 80px !important;
    padding-bottom: 84px !important;
  }

  .human-ai-visual {
    min-height: 560px !important;
  }

  .human-photo {
    inset: 84px 0 148px 0 !important;
  }

  .floating-ai-card {
    width: min(230px, 82vw) !important;
  }

  .floating-ai-card--mesh {
    right: 8px !important;
    top: 0 !important;
  }

  .floating-ai-card--rhythm {
    right: 0 !important;
    bottom: 0 !important;
  }

  .footer-hero {
    padding-top: 42px !important;
  }

  .footer-mega-brand-surface {
    min-height: 220px !important;
    border-radius: 30px 30px 0 0 !important;
  }
}


/* v25: restore AI interaction cards + move mega footer logo to the bottom */
.floating-ai-card {
  display: block !important;
}

.human-ai-section {
  padding-top: 112px !important;
  padding-bottom: 112px !important;
}

.human-ai-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 76px !important;
  align-items: center !important;
}

.human-ai-visual {
  min-height: 590px !important;
}

.human-photo {
  inset: 42px 190px 42px 0 !important;
  border-radius: 34px !important;
}

.floating-ai-card {
  width: 272px !important;
  padding: 16px !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.88) !important;
  border: 1px solid rgba(7,26,46,.08) !important;
  box-shadow: 0 28px 78px rgba(7,26,46,.14) !important;
  backdrop-filter: blur(18px) !important;
  z-index: 10 !important;
}

.floating-ai-card--mesh {
  right: 0 !important;
  top: 28px !important;
}

.floating-ai-card--rhythm {
  right: 18px !important;
  bottom: 28px !important;
}

.ai-orbit-visual {
  height: 136px !important;
  border-radius: 18px !important;
}

.ai-rhythm-visual {
  height: 128px !important;
  border-radius: 18px !important;
}

.floating-ai-card:hover {
  transform: translateY(-4px) !important;
}

/* Put footer navigation first and the big brand mark at the very bottom */
footer {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%) !important;
}

.footer-grid {
  order: 1 !important;
  padding-top: 74px !important;
  padding-bottom: 52px !important;
}

.footer-bottom {
  order: 2 !important;
  padding-top: 28px !important;
  padding-bottom: 30px !important;
}

.footer-hero {
  order: 3 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  border-top: 1px solid rgba(7,26,46,.06) !important;
  border-bottom: 0 !important;
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 35%), rgba(254,86,12,.22), transparent 34%),
    linear-gradient(135deg, #fff1e7 0%, #ffd3b4 34%, #ffd9bf 56%, #fff6ef 100%) !important;
}

.footer-hero-inner {
  width: min(var(--max), calc(100% - 48px)) !important;
  min-height: 360px !important;
  display: block !important;
  position: relative !important;
  margin: 0 auto !important;
}

.footer-hero-copy {
  display: none !important;
}

.footer-mega-brand-wrap {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.footer-mega-brand-surface {
  position: absolute !important;
  inset: 0 !important;
  min-height: 360px !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
}

.footer-mega-brand-surface::before {
  content: "" !important;
  position: absolute !important;
  inset: -22% -12% -10% -12% !important;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 42%, rgba(255,255,255,0) 62%),
    radial-gradient(circle at var(--mx, 62%) var(--my, 42%), rgba(255,255,255,.42), rgba(255,255,255,0) 30%) !important;
  transform: translateX(-18%) rotate(-2deg) !important;
  transition: transform .45s ease, opacity .3s ease !important;
  opacity: .72 !important;
  pointer-events: none !important;
}

.footer-mega-brand-surface:hover::before {
  transform: translateX(10%) rotate(-2deg) !important;
  opacity: .95 !important;
}

.footer-mega-brand-surface::after {
  content: "" !important;
  position: absolute !important;
  inset: auto -8% -28% 8% !important;
  height: 58% !important;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.28), rgba(255,255,255,0) 70%) !important;
  pointer-events: none !important;
}

.footer-mega-brand {
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  bottom: 18px !important;
  width: 100% !important;
  max-width: none !important;
  opacity: .98 !important;
  filter: drop-shadow(0 16px 22px rgba(255,255,255,.35)) !important;
}

@media (max-width: 1100px) {
  .human-ai-grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  .human-ai-copy {
    order: -1 !important;
  }

  .human-ai-visual {
    min-height: 570px !important;
  }

  .human-photo {
    inset: 58px 220px 58px 0 !important;
  }

  .footer-hero-inner,
  .footer-mega-brand-surface {
    min-height: 290px !important;
  }
}

@media (max-width: 780px) {
  .human-ai-section {
    padding-top: 78px !important;
    padding-bottom: 82px !important;
  }

  .human-ai-visual {
    min-height: 565px !important;
  }

  .human-photo {
    inset: 88px 0 154px 0 !important;
  }

  .floating-ai-card {
    width: min(230px, 82vw) !important;
  }

  .floating-ai-card--mesh {
    right: 8px !important;
    top: 0 !important;
  }

  .floating-ai-card--rhythm {
    right: 0 !important;
    bottom: 0 !important;
  }

  .footer-grid {
    padding-top: 54px !important;
    padding-bottom: 34px !important;
  }

  .footer-bottom {
    padding-bottom: 24px !important;
  }

  .footer-hero-inner,
  .footer-mega-brand-surface {
    width: calc(100% - 28px) !important;
    min-height: 190px !important;
  }

  .footer-mega-brand {
    bottom: 22px !important;
  }
}


/* v26: footer logo becomes footer background + stronger AI card motion */

/* FOOTER AS ONE NEBIUS-LIKE BACKGROUND */
footer {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  min-height: 720px !important;
  padding: 0 !important;
  border-top: 1px solid rgba(7,26,46,.06) !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.42), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 18% 94%, rgba(254,86,12,.17), rgba(254,86,12,0) 34%),
    linear-gradient(135deg, #fff2e8 0%, #ffd1b2 38%, #ffdfc9 62%, #fff7ef 100%) !important;
}

.footer-hero {
  position: absolute !important;
  inset: 0 !important;
  order: initial !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 0 !important;
  pointer-events: auto !important;
  border: 0 !important;
  background:
    radial-gradient(circle at var(--mx, 68%) var(--my, 42%), rgba(255,255,255,.44), rgba(255,255,255,0) 34%),
    linear-gradient(110deg, rgba(255,255,255,.28), rgba(255,255,255,0) 44%) !important;
}

.footer-hero-inner {
  position: absolute !important;
  inset: 0 !important;
  width: min(var(--max), calc(100% - 48px)) !important;
  min-height: 100% !important;
  margin: 0 auto !important;
  display: block !important;
}

.footer-hero-copy {
  display: none !important;
}

.footer-mega-brand-wrap {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -8px !important;
  height: 360px !important;
  display: block !important;
  z-index: 0 !important;
  pointer-events: auto !important;
}

.footer-mega-brand-surface {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.footer-mega-brand-surface::before {
  content: "" !important;
  position: absolute !important;
  inset: -45% -20% -10% -20% !important;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,.38) 42%, rgba(255,255,255,0) 62%),
    radial-gradient(circle at var(--mx, 60%) var(--my, 45%), rgba(255,255,255,.50), rgba(255,255,255,0) 31%) !important;
  transform: translateX(-22%) rotate(-2deg) !important;
  opacity: .75 !important;
  pointer-events: none !important;
  transition: transform .45s ease, opacity .3s ease !important;
}

.footer-hero:hover .footer-mega-brand-surface::before {
  transform: translateX(10%) rotate(-2deg) !important;
  opacity: 1 !important;
}

.footer-mega-brand-surface::after {
  content: "" !important;
  position: absolute !important;
  left: -10% !important;
  right: -10% !important;
  bottom: -32% !important;
  height: 78% !important;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.30), rgba(255,255,255,0) 72%) !important;
  pointer-events: none !important;
}

.footer-mega-brand {
  position: absolute !important;
  left: 50% !important;
  bottom: 32px !important;
  width: min(1120px, 94vw) !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
  opacity: .50 !important;
  filter: drop-shadow(0 18px 28px rgba(255,255,255,.28)) !important;
}

.footer-grid,
.footer-bottom {
  position: relative !important;
  z-index: 2 !important;
}

.footer-grid {
  width: min(var(--max), calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding-top: 104px !important;
  padding-bottom: 112px !important;
  align-items: start !important;
}

.footer-brand p,
.footer-col a,
.footer-bottom {
  color: rgba(7,26,46,.70) !important;
}

.footer-col h4 {
  color: rgba(7,26,46,.46) !important;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding-top: 26px !important;
  padding-bottom: 42px !important;
  border-top: 1px solid rgba(7,26,46,.10) !important;
}

/* AI CARDS: VISIBLE + OBVIOUSLY MOVING */
.floating-ai-card {
  display: block !important;
  will-change: transform !important;
  animation: aiCardFloat 5.2s ease-in-out infinite !important;
}

.floating-ai-card--rhythm {
  animation-delay: .7s !important;
}

@keyframes aiCardFloat {
  0%, 100% { transform: translate3d(var(--card-x,0px), var(--card-y,0px), 0) !important; }
  50% { transform: translate3d(var(--card-x,0px), calc(var(--card-y,0px) - 8px), 0) !important; }
}

.ai-orbit-visual,
.ai-rhythm-visual {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.ai-orbit-visual::before {
  content: "" !important;
  position: absolute !important;
  inset: -34% !important;
  z-index: 0 !important;
  background:
    conic-gradient(from 0deg,
      rgba(254,86,12,0) 0deg,
      rgba(254,86,12,.30) 48deg,
      rgba(255,255,255,.45) 74deg,
      rgba(254,86,12,0) 128deg,
      rgba(254,86,12,.18) 220deg,
      rgba(254,86,12,0) 360deg) !important;
  filter: blur(3px) !important;
  animation: aiOrbitSpin 7s linear infinite !important;
}

.ai-orbit-visual::after {
  content: "" !important;
  position: absolute !important;
  inset: 18px !important;
  border-radius: 999px !important;
  border: 1px dashed rgba(254,86,12,.22) !important;
  z-index: 1 !important;
  animation: aiOrbitCounter 10s linear infinite !important;
}

@keyframes aiOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes aiOrbitCounter {
  from { transform: rotate(360deg) scale(1); }
  to { transform: rotate(0deg) scale(1.02); }
}

.orbit-ring,
.orbit-core,
.orbit-node {
  z-index: 2 !important;
}

.orbit-ring--1 {
  animation: aiRingPulse1 3.4s ease-in-out infinite !important;
}
.orbit-ring--2 {
  animation: aiRingPulse2 4.2s ease-in-out infinite !important;
}
.orbit-ring--3 {
  animation: aiRingPulse3 5s ease-in-out infinite !important;
}

@keyframes aiRingPulse1 {
  0%,100% { opacity: .45; transform: translate(-50%,-50%) scale(.92); }
  50% { opacity: .95; transform: translate(-50%,-50%) scale(1.08); }
}
@keyframes aiRingPulse2 {
  0%,100% { opacity: .35; transform: translate(-50%,-50%) scale(.94); }
  50% { opacity: .88; transform: translate(-50%,-50%) scale(1.06); }
}
@keyframes aiRingPulse3 {
  0%,100% { opacity: .28; transform: translate(-50%,-50%) scale(.96); }
  50% { opacity: .76; transform: translate(-50%,-50%) scale(1.04); }
}

.orbit-core {
  animation: aiCorePulse 2.4s ease-in-out infinite !important;
}

@keyframes aiCorePulse {
  0%,100% { box-shadow: 0 0 0 8px rgba(254,86,12,.08), 0 14px 24px rgba(254,86,12,.18); transform: scale(1); }
  50% { box-shadow: 0 0 0 16px rgba(254,86,12,.03), 0 20px 38px rgba(254,86,12,.24); transform: scale(1.08); }
}

.orbit-node--a { animation: orbitNodeA 4.8s ease-in-out infinite !important; }
.orbit-node--b { animation: orbitNodeB 5.4s ease-in-out infinite !important; }
.orbit-node--c { animation: orbitNodeC 4.2s ease-in-out infinite !important; }

@keyframes orbitNodeA {
  0%,100% { transform: translate3d(0,0,0); opacity: .65; }
  50% { transform: translate3d(12px,-8px,0); opacity: 1; }
}
@keyframes orbitNodeB {
  0%,100% { transform: translate3d(0,0,0); opacity: .65; }
  50% { transform: translate3d(-10px,12px,0); opacity: 1; }
}
@keyframes orbitNodeC {
  0%,100% { transform: translate3d(0,0,0); opacity: .65; }
  50% { transform: translate3d(-14px,-6px,0); opacity: 1; }
}

.ai-rhythm-visual::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.72) 42%, transparent 62%) !important;
  transform: translateX(-120%) !important;
  animation: rhythmSweep 3.6s ease-in-out infinite !important;
}

@keyframes rhythmSweep {
  0%, 30% { transform: translateX(-120%); opacity: .2; }
  56% { transform: translateX(120%); opacity: .9; }
  100% { transform: translateX(120%); opacity: .2; }
}

.rhythm-lines,
.rhythm-bars {
  position: relative !important;
  z-index: 1 !important;
}

.rhythm-lines i {
  animation: rhythmLineGrow 2.4s ease-in-out infinite !important;
  transform-origin: left center !important;
}

.rhythm-lines i:nth-child(2) { animation-delay: .2s !important; }
.rhythm-lines i:nth-child(3) { animation-delay: .4s !important; }

@keyframes rhythmLineGrow {
  0%,100% { transform: scaleX(.82); opacity: .55; }
  50% { transform: scaleX(1); opacity: 1; }
}

.rhythm-bars i {
  animation: rhythmBarLive 2.2s ease-in-out infinite !important;
  transform-origin: bottom center !important;
}

.rhythm-bars i:nth-child(2) { animation-delay: .12s !important; }
.rhythm-bars i:nth-child(3) { animation-delay: .24s !important; }
.rhythm-bars i:nth-child(4) { animation-delay: .36s !important; }
.rhythm-bars i:nth-child(5) { animation-delay: .48s !important; }

@keyframes rhythmBarLive {
  0%,100% { transform: scaleY(.72); opacity: .78; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@media (max-width: 1100px) {
  footer { min-height: 690px !important; }
  .footer-grid { padding-top: 86px !important; padding-bottom: 104px !important; }
  .footer-mega-brand-wrap { height: 270px !important; }
  .footer-mega-brand { width: min(960px, 96vw) !important; bottom: 28px !important; }
}

@media (max-width: 780px) {
  footer { min-height: 760px !important; }
  .footer-grid { padding-top: 56px !important; padding-bottom: 80px !important; }
  .footer-bottom { padding-bottom: 34px !important; }
  .footer-mega-brand-wrap { height: 180px !important; }
  .footer-mega-brand { width: 104vw !important; bottom: 24px !important; opacity: .42 !important; }
}


/* v27: footer background + smoother interactive cards + softer ShopSailor orange */
:root {
  --shopsailor-orange-soft: #ff7a35;
  --shopsailor-orange-mid: #ff9258;
  --shopsailor-orange-pale: #ffd8c4;
}

/* softer Feed Intelligence card */
.feature-card--orange {
  background: linear-gradient(145deg, #ff7430 0%, #ff8f55 38%, #ffad7c 68%, #ffd9c5 100%) !important;
  border-color: rgba(254, 86, 12, .18) !important;
}

.feature-card--orange .feature-card__bg {
  background:
    radial-gradient(circle at 35% 78%, rgba(255,255,255,.76) 0 10%, transparent 14%),
    radial-gradient(circle at 34% 76%, rgba(255,255,255,.30) 0 22%, transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, #ff6f2c 0%, #ff8a4b 34%, #ffa86f 64%, #ffd6bf 100%) !important;
}

/* footer: one large interactive background instead of separate logo block */
footer {
  --mx: 68%;
  --my: 42%;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  min-height: 720px !important;
  padding: 0 !important;
  border-top: 1px solid rgba(7,26,46,.06) !important;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.54), rgba(255,255,255,0) 30%),
    radial-gradient(circle at 14% 90%, rgba(254,86,12,.16), rgba(254,86,12,0) 34%),
    linear-gradient(135deg, #fff2e8 0%, #ffd2b4 36%, #ffdfc9 62%, #fff8f1 100%) !important;
}

footer::before {
  content: "" !important;
  position: absolute !important;
  inset: -18% -12% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255,255,255,.34) 44%, transparent 62%),
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.32), rgba(255,255,255,0) 36%) !important;
  transform: translateX(-18%) rotate(-2deg) !important;
  opacity: .76 !important;
  transition: transform .5s ease, opacity .35s ease !important;
}

footer:hover::before {
  transform: translateX(8%) rotate(-2deg) !important;
  opacity: 1 !important;
}

.footer-hero {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  order: initial !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.footer-hero-inner {
  position: absolute !important;
  inset: 0 !important;
  width: min(var(--max), calc(100% - 48px)) !important;
  min-height: 100% !important;
  margin: 0 auto !important;
  display: block !important;
}

.footer-hero-copy {
  display: none !important;
}

.footer-mega-brand-wrap {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 420px !important;
  display: block !important;
  pointer-events: none !important;
}

.footer-mega-brand-surface {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.footer-mega-brand-surface::before,
.footer-mega-brand-surface::after {
  display: none !important;
}

.footer-mega-brand {
  position: absolute !important;
  left: 50% !important;
  bottom: 34px !important;
  width: min(1220px, 96vw) !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
  opacity: .23 !important;
  filter: drop-shadow(0 18px 28px rgba(255,255,255,.28)) !important;
}

/* footer content sits on top of the background logo */
.footer-grid,
.footer-bottom {
  position: relative !important;
  z-index: 2 !important;
}

.footer-grid {
  width: min(var(--max), calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding-top: 94px !important;
  padding-bottom: 108px !important;
  grid-template-columns: 1.25fr repeat(3, 1fr) !important;
  gap: 56px !important;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding-top: 28px !important;
  padding-bottom: 56px !important;
  border-top: 1px solid rgba(7,26,46,.12) !important;
}

/* replaces the unnecessary small logo/text */
.footer-platform-card {
  max-width: 360px;
}

.footer-platform-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #e45a14;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-platform-card strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-bottom: 14px;
}

.footer-platform-card p {
  margin: 0 0 18px;
  color: rgba(7,26,46,.66);
  font-size: 14px;
  line-height: 1.65;
}

.footer-mini-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-mini-signals i {
  font-style: normal;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(7,26,46,.08);
  color: rgba(7,26,46,.66);
  font-size: 12px;
  font-weight: 650;
}

.footer-brand {
  display: none !important;
}

/* smoother AI card return + clear motion */
.floating-ai-card {
  display: block !important;
  transform: translate3d(var(--card-x, 0px), calc(var(--card-y, 0px) + var(--float-y, 0px)), 0) !important;
  transition: --card-x .45s ease, --card-y .45s ease !important;
  will-change: transform !important;
  animation: aiCardFloatY 5.2s ease-in-out infinite !important;
}

.floating-ai-card--rhythm {
  animation-delay: .75s !important;
}

@keyframes aiCardFloatY {
  0%, 100% { --float-y: 0px; }
  50% { --float-y: -8px; }
}

.ai-orbit-visual::before {
  animation: aiOrbitSpin 7s linear infinite !important;
}

.ai-orbit-visual::after {
  animation: aiOrbitCounter 10s linear infinite !important;
}

.orbit-ring--1 { animation: aiRingPulse1 3.4s ease-in-out infinite !important; }
.orbit-ring--2 { animation: aiRingPulse2 4.2s ease-in-out infinite !important; }
.orbit-ring--3 { animation: aiRingPulse3 5s ease-in-out infinite !important; }

.orbit-core {
  animation: aiCorePulse 2.4s ease-in-out infinite !important;
}

.orbit-node--a { animation: orbitNodeA 4.8s ease-in-out infinite !important; }
.orbit-node--b { animation: orbitNodeB 5.4s ease-in-out infinite !important; }
.orbit-node--c { animation: orbitNodeC 4.2s ease-in-out infinite !important; }

.rhythm-lines i {
  animation: rhythmLineGrow 2.4s ease-in-out infinite !important;
  transform-origin: left center !important;
}

.rhythm-lines i:nth-child(2) { animation-delay: .2s !important; }
.rhythm-lines i:nth-child(3) { animation-delay: .4s !important; }

.rhythm-bars i {
  animation: rhythmBarLive 2.2s ease-in-out infinite !important;
  transform-origin: bottom center !important;
}

.rhythm-bars i:nth-child(2) { animation-delay: .12s !important; }
.rhythm-bars i:nth-child(3) { animation-delay: .24s !important; }
.rhythm-bars i:nth-child(4) { animation-delay: .36s !important; }
.rhythm-bars i:nth-child(5) { animation-delay: .48s !important; }

/* make top four cards return smoother too */
.feature-card {
  --tx: 0px;
  --ty: 0px;
}

.feature-card__bg {
  transition: transform .42s cubic-bezier(.22,1,.36,1) !important;
}

@media (max-width: 1100px) {
  footer {
    min-height: 780px !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding-top: 78px !important;
    padding-bottom: 122px !important;
  }

  .footer-mega-brand-wrap {
    height: 310px !important;
  }

  .footer-mega-brand {
    width: min(1020px, 104vw) !important;
    bottom: 28px !important;
  }
}

@media (max-width: 780px) {
  footer {
    min-height: 860px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    width: calc(100% - 28px) !important;
    gap: 26px !important;
    padding-top: 54px !important;
    padding-bottom: 98px !important;
  }

  .footer-bottom {
    width: calc(100% - 28px) !important;
    padding-bottom: 38px !important;
  }

  .footer-mega-brand-wrap {
    height: 190px !important;
  }

  .footer-mega-brand {
    width: 112vw !important;
    opacity: .20 !important;
    bottom: 30px !important;
  }

  .footer-platform-card strong {
    font-size: 22px;
  }
}


/* v28 hero + signal flow + softer interactive cards */
.hero-copy h1 {
  max-width: 780px;
  text-wrap: balance;
}

.hero-copy h1 em {
  font-style: normal;
}

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

.hero-proof {
  position: relative;
  padding-bottom: 22px;
}

.proof-float {
  position: absolute;
  z-index: 7;
  width: 210px;
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid rgba(7,26,46,.08);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(7,26,46,.08);
  animation: proofFloatY 5.4s ease-in-out infinite;
}

.proof-float span {
  display: block;
  color: #de5d14;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.proof-float strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.32;
  letter-spacing: -.02em;
}

.proof-float--safe {
  left: -92px;
  bottom: 118px;
}

.proof-float--guardrail {
  right: -62px;
  bottom: 22px;
  animation-delay: .9s;
}

@keyframes proofFloatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.signal-flow-section {
  padding: 78px 48px 72px;
  background: linear-gradient(180deg, #fffdfa 0%, #fff 100%);
}

.signal-flow-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: block;
}

.signal-flow-header {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.signal-flow-track,
.signal-flow-track--wide {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.signal-node {
  min-height: 154px;
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.signal-node strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.signal-node small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.feature-card--grey .feature-card__bg {
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.72) 0 2%, rgba(255,255,255,.18) 3%, transparent 8%),
    radial-gradient(circle at 22% 72%, rgba(255,255,255,.12) 0 1.8%, transparent 2.4%),
    radial-gradient(circle at 74% 54%, rgba(255,255,255,.11) 0 1.6%, transparent 2.4%),
    radial-gradient(circle at 36% 24%, rgba(255,255,255,.09) 0 1.4%, transparent 2.2%),
    linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,.05)),
    linear-gradient(180deg, #f2f2f4 0%, #e8e9ec 100%);
  animation: greyCardSweep 10s ease-in-out infinite;
}

.feature-card--grey .feature-card__overlay {
  background:
    radial-gradient(circle at 24% 26%, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(130deg, transparent 0%, rgba(255,255,255,.26) 45%, transparent 68%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.0) 0 18px, rgba(255,255,255,.18) 18px 20px, rgba(255,255,255,.0) 20px 42px);
  opacity: .76;
  animation: greyCardMesh 11s linear infinite;
}

@keyframes greyCardSweep {
  0%, 100% { transform: translate3d(calc(var(--tx) * 1.15), calc(var(--ty) * 1.15), 0) scale(1.11); filter: saturate(1); }
  50% { transform: translate3d(calc(var(--tx) * 1.15), calc(var(--ty) * 1.15), 0) scale(1.13); filter: saturate(1.04); }
}

@keyframes greyCardMesh {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 120px 0, 56px 56px; }
}

@media (max-width: 1180px) {
  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-float--safe {
    left: -24px;
    bottom: 106px;
  }

  .proof-float--guardrail {
    right: -18px;
  }
}

@media (max-width: 860px) {
  .signal-flow-section {
    padding: 62px 18px 58px;
  }

  .signal-flow-inner {
    width: calc(100% - 12px);
  }

  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-float {
    position: relative;
    inset: auto !important;
    width: 100%;
    margin-top: 12px;
    animation: none;
  }
}

@media (max-width: 560px) {
  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: 1fr;
  }
}


/* v29 requested color + hero/signal-flow fixes */
:root {
  --ink: #052b42 !important;
}

.top-note {
  background: #052b42 !important;
  color: rgb(247 247 247 / 72%) !important;
}

.top-note a {
  color: rgb(247 247 247 / 92%) !important;
}

.hero h1 em {
  color: #052b42 !important;
}

/* 1. remove the gap between hero and first section */
.hero {
  margin-bottom: 0 !important;
}

.hero-shell {
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.hero-grid {
  padding-bottom: 74px !important;
}

.signal-flow-section {
  margin-top: 0 !important;
  border-top: 0 !important;
  padding-top: 64px !important;
}

/* 2. restore the moving left-to-right signal line behind the five cards */
.signal-flow-track,
.signal-flow-track--wide {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.signal-flow-track::before {
  content: "" !important;
  position: absolute !important;
  left: 8% !important;
  right: 8% !important;
  top: 50% !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: rgba(5,43,66,.08) !important;
  transform: translateY(-50%) !important;
  z-index: 0 !important;
}

.signal-flow-track::after {
  content: "" !important;
  position: absolute !important;
  left: 8% !important;
  top: 50% !important;
  width: 18% !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(254,86,12,0), rgba(254,86,12,.9), rgba(255,175,118,.95), rgba(254,86,12,0)) !important;
  transform: translateY(-50%) !important;
  z-index: 1 !important;
  animation: signalTrackTravel 3.4s ease-in-out infinite !important;
}

@keyframes signalTrackTravel {
  0% {
    transform: translateX(-10%) translateY(-50%);
    opacity: .1;
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(460%) translateY(-50%);
    opacity: .1;
  }
}

.signal-node {
  position: relative !important;
  z-index: 2 !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(254,86,12,.08), transparent 38%),
    rgba(255,255,255,.94) !important;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease !important;
}

.signal-node:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(254,86,12,.18) !important;
  box-shadow: 0 18px 42px rgba(5,43,66,.075) !important;
}

/* 3. remove the square/buggy-looking bottom behind the hero decision card */
.hero-proof {
  padding-bottom: 0 !important;
  overflow: visible !important;
}

.hero-proof::before,
.hero-proof::after {
  display: none !important;
}

.proof-card,
.decision-panel {
  overflow: hidden !important;
  background: rgba(255,255,255,.84) !important;
  box-shadow: 0 24px 70px rgba(5,43,66,.12) !important;
}

.mini-chart {
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,250,246,.72)) !important;
  overflow: hidden !important;
}

.proof-float {
  background: rgba(255,255,255,.86) !important;
  box-shadow: 0 18px 44px rgba(5,43,66,.10) !important;
}

/* keep blue tone consistent after ink change */
.section-title,
.hero h1,
.feature-card h3,
.signal-node strong,
.control-room-copy .section-title,
.human-ai-copy .section-title {
  color: #052b42 !important;
}

@media (max-width: 1180px) {
  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .signal-flow-track::before,
  .signal-flow-track::after {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: 1fr !important;
  }
}



/* v30 polish: tighter hero transition, stronger signal flow, ambient background, cleaner hero proof */
.hero {
  padding-bottom: 0 !important;
}

.hero-shell {
  margin-bottom: 0 !important;
  min-height: 660px !important;
}

.hero-grid {
  padding-bottom: 28px !important;
}

.signal-flow-section {
  --ambient-x: 50%;
  --ambient-y: 50%;
  position: relative !important;
  margin-top: -18px !important;
  padding: 0 48px 46px !important;
  border-top: 0 !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(254, 126, 54, .18), rgba(254, 126, 54, 0) 24%),
    linear-gradient(90deg, rgba(255,252,249,.98) 0%, rgba(255,255,255,.985) 50%, rgba(255,249,243,.98) 100%) !important;
}

.signal-flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,.9), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(255,202,143,.18), transparent 24%),
    linear-gradient(180deg, rgba(5,43,66,.03), rgba(5,43,66,0) 12%, rgba(255,255,255,0) 100%);
}

.signal-flow-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px)) !important;
  margin: 0 auto !important;
  display: block !important;
}

.signal-flow-header {
  max-width: 980px !important;
  margin: 0 auto 22px !important;
  padding-top: 0 !important;
  text-align: center !important;
}

.signal-flow-header .section-label {
  margin-bottom: 12px !important;
}

.signal-flow-header .section-title {
  margin-top: 0 !important;
}

.signal-flow-header .section-sub {
  margin-top: 14px !important;
}

.signal-flow-track,
.signal-flow-track--wide {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
  padding-top: 8px !important;
}

/* kill the old track-level line */
.signal-flow-track::before,
.signal-flow-track::after,
.signal-flow-track--wide::before,
.signal-flow-track--wide::after {
  display: none !important;
}

.signal-node {
  position: relative !important;
  z-index: 2 !important;
  overflow: visible !important;
  min-height: 148px !important;
  padding: 18px 18px 16px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(254, 126, 54, .16) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,167,103,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)) !important;
  box-shadow: 0 14px 34px rgba(5,43,66,.055) !important;
}

.signal-node span,
.signal-node strong,
.signal-node small {
  position: relative;
  z-index: 3;
}

.signal-node:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(100% + 2px);
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(254,126,54,.10), rgba(254,126,54,.34), rgba(254,126,54,.10));
  z-index: 1;
  pointer-events: none;
}

.signal-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 33px;
  left: calc(100% - 2px);
  width: 44px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8px 50%, rgba(254,126,54,1) 0 2px, rgba(254,126,54,.72) 3px, transparent 7px),
    linear-gradient(90deg, rgba(254,126,54,0), rgba(254,126,54,.95) 24%, rgba(255,204,158,.95) 68%, rgba(254,126,54,0));
  filter: drop-shadow(0 0 8px rgba(254,126,54,.34));
  z-index: 2;
  opacity: .98;
  animation: signalConnectorRun 2.8s linear infinite;
  pointer-events: none;
}

.signal-node:nth-child(1)::after { animation-delay: 0s; }
.signal-node:nth-child(2)::after { animation-delay: .28s; }
.signal-node:nth-child(3)::after { animation-delay: .56s; }
.signal-node:nth-child(4)::after { animation-delay: .84s; }

@keyframes signalConnectorRun {
  0%, 10% {
    transform: translateX(-4px);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  84% {
    transform: translateX(18px);
    opacity: 1;
  }
  100% {
    transform: translateX(26px);
    opacity: 0;
  }
}

.hero-proof {
  position: relative !important;
  overflow: visible !important;
  isolation: isolate !important;
}

.proof-card,
.decision-panel,
.mini-chart {
  position: relative !important;
  overflow: hidden !important;
  background-clip: padding-box !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
  clip-path: inset(0 round 24px) !important;
}

.proof-card {
  backdrop-filter: none !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 24px 60px rgba(5,43,66,.12) !important;
}

.proof-card::before,
.proof-card::after,
.decision-panel::before,
.decision-panel::after,
.mini-chart::before,
.mini-chart::after {
  display: none !important;
}

@media (max-width: 1180px) {
  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .signal-node::before,
  .signal-node::after {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .signal-flow-section {
    padding: 0 18px 38px !important;
    margin-top: -8px !important;
  }

  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .signal-flow-track,
  .signal-flow-track--wide {
    grid-template-columns: 1fr !important;
  }
}


/* v31 final polish: compact signal-flow, sequential AI activation, calmer hero floats */
.hero {
  position: relative !important;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  height: 84px !important;
  z-index: 4 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,250,246,.72) 54%, rgba(255,250,246,.98) 100%) !important;
}

.hero-grid {
  padding-bottom: 50px !important;
}

.hero-trust span:nth-child(2)::before {
  background: #ff6b1a !important;
  box-shadow: 0 0 0 4px rgba(255,107,26,.12) !important;
}

.proof-float {
  width: 184px !important;
  padding: 11px 12px !important;
  border-radius: 16px !important;
  opacity: .94 !important;
  box-shadow: 0 14px 34px rgba(5,43,66,.085) !important;
}

.proof-float span {
  font-size: 10px !important;
  letter-spacing: .09em !important;
}

.proof-float strong {
  font-size: 13px !important;
  line-height: 1.28 !important;
}

.proof-float--safe {
  left: -66px !important;
  bottom: 124px !important;
}

.proof-float--guardrail {
  right: -42px !important;
  bottom: 34px !important;
}

.signal-flow-section {
  margin-top: -34px !important;
  padding-top: 54px !important;
  padding-bottom: 56px !important;
  background:
    radial-gradient(circle at var(--ambient-x, 50%) var(--ambient-y, 50%), rgba(254,126,54,.16), rgba(254,126,54,0) 24%),
    linear-gradient(180deg, rgba(255,250,246,.98) 0%, rgba(255,255,255,.98) 58%, #fff 100%) !important;
}

.signal-flow-header {
  max-width: 760px !important;
  margin-bottom: 30px !important;
}

.signal-flow-header .section-label {
  margin-bottom: 10px !important;
}

.signal-flow-header .section-title {
  font-size: clamp(32px, 3.25vw, 48px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.05em !important;
  max-width: 660px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.signal-flow-header .section-sub {
  max-width: 650px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 15px !important;
}

.signal-flow-track,
.signal-flow-track--wide {
  gap: 20px !important;
}

.signal-node {
  min-height: 142px !important;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease !important;
  animation: signalNodeActivate 7.5s ease-in-out infinite !important;
}

.signal-node:nth-child(1) { animation-delay: 0s !important; }
.signal-node:nth-child(2) { animation-delay: .75s !important; }
.signal-node:nth-child(3) { animation-delay: 1.5s !important; }
.signal-node:nth-child(4) { animation-delay: 2.25s !important; }
.signal-node:nth-child(5) { animation-delay: 3s !important; }

.signal-node span {
  transition: transform .26s ease, background .26s ease, color .26s ease, box-shadow .26s ease !important;
  animation: signalBadgeActivate 7.5s ease-in-out infinite !important;
}

.signal-node:nth-child(1) span { animation-delay: 0s !important; }
.signal-node:nth-child(2) span { animation-delay: .75s !important; }
.signal-node:nth-child(3) span { animation-delay: 1.5s !important; }
.signal-node:nth-child(4) span { animation-delay: 2.25s !important; }
.signal-node:nth-child(5) span { animation-delay: 3s !important; }

@keyframes signalNodeActivate {
  0%, 13%, 100% {
    transform: translateY(0);
    border-color: rgba(254,126,54,.16);
    box-shadow: 0 14px 34px rgba(5,43,66,.055);
    background:
      radial-gradient(circle at 100% 0%, rgba(255,167,103,.12), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  }
  5%, 9% {
    transform: translateY(-5px);
    border-color: rgba(254,86,12,.36);
    box-shadow: 0 24px 54px rgba(254,86,12,.13), 0 16px 38px rgba(5,43,66,.07);
    background:
      radial-gradient(circle at 100% 0%, rgba(254,86,12,.18), transparent 36%),
      linear-gradient(180deg, rgba(255,255,255,.99), rgba(255,250,246,.94));
  }
}

@keyframes signalBadgeActivate {
  0%, 13%, 100% {
    transform: scale(1);
    background: rgba(255,107,26,.10);
    color: #db6118;
    box-shadow: none;
  }
  5%, 9% {
    transform: scale(1.08);
    background: #ff6b1a;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(255,107,26,.10);
  }
}

/* stronger connector pulse travelling through the cards */
.signal-node:not(:last-child)::after {
  animation: signalConnectorRun 7.5s ease-in-out infinite !important;
  width: 54px !important;
  height: 14px !important;
  top: 34px !important;
}

.signal-node:nth-child(1)::after { animation-delay: .18s !important; }
.signal-node:nth-child(2)::after { animation-delay: .93s !important; }
.signal-node:nth-child(3)::after { animation-delay: 1.68s !important; }
.signal-node:nth-child(4)::after { animation-delay: 2.43s !important; }

@keyframes signalConnectorRun {
  0%, 10%, 100% {
    transform: translateX(-6px);
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  22% {
    transform: translateX(24px);
    opacity: 1;
  }
  28% {
    transform: translateX(34px);
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .proof-float--safe {
    left: -18px !important;
    bottom: 110px !important;
  }

  .proof-float--guardrail {
    right: -14px !important;
  }

  .signal-node {
    animation: none !important;
  }

  .signal-node span {
    animation: none !important;
  }
}

@media (max-width: 860px) {
  .signal-flow-section {
    margin-top: -14px !important;
    padding-top: 44px !important;
  }

  .proof-float {
    position: relative !important;
    width: 100% !important;
    inset: auto !important;
    margin-top: 10px !important;
  }
}


/* v32 final polish: spacing, hierarchy, footer contrast, header presence */

/* Header a little more premium */
.site-nav {
  height: 76px !important;
}

.nav-shell {
  height: 76px !important;
  gap: 24px !important;
}

.brand,
.brand img {
  width: 206px !important;
}

.nav-link {
  font-size: 14.4px !important;
  padding: 14px 12px !important;
}

.nav-actions .btn {
  padding: 14px 21px !important;
}

/* Hero proof supports the message instead of dominating it */
.hero-proof {
  width: min(400px, 100%) !important;
  transform: translateY(-4px) scale(.965) !important;
  opacity: .98 !important;
}

.proof-card {
  padding: 16px !important;
  border-radius: 23px !important;
  box-shadow: 0 18px 52px rgba(5,43,66,.105) !important;
}

.proof-float {
  width: 172px !important;
  padding: 10px 11px !important;
  opacity: .90 !important;
}

.proof-float--safe {
  left: -48px !important;
  bottom: 114px !important;
}

.proof-float--guardrail {
  right: -34px !important;
  bottom: 38px !important;
}

/* Signal flow: slightly bigger and more important, but not a second hero */
.signal-flow-section {
  padding-top: 58px !important;
  padding-bottom: 68px !important;
}

.signal-flow-header {
  margin-bottom: 36px !important;
}

.signal-flow-track,
.signal-flow-track--wide {
  gap: 22px !important;
}

.signal-node {
  min-height: 158px !important;
  padding: 22px 20px 19px !important;
  border-radius: 24px !important;
}

.signal-node span {
  width: 34px !important;
  height: 32px !important;
  border-radius: 11px !important;
  margin-bottom: 16px !important;
  font-size: 12px !important;
}

.signal-node strong {
  font-size: 17px !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
}

.signal-node small {
  font-size: 13.5px !important;
  line-height: 1.42 !important;
}

.signal-node:not(:last-child)::before {
  top: 48px !important;
}

.signal-node:not(:last-child)::after {
  top: 43px !important;
}

/* Fix services section clipping and give it cleaner breathing room */
.services-section {
  position: relative !important;
  padding: 112px 48px 104px !important;
  overflow: visible !important;
  background:
    linear-gradient(180deg, #f6f9fc 0%, #f3f7fa 100%) !important;
}

.services-section .inner {
  overflow: visible !important;
}

.services-section .section-label,
.services-section .section-title,
.services-section .section-sub {
  position: relative !important;
  z-index: 2 !important;
}

.services-grid {
  margin-top: 48px !important;
}

/* Keep section transitions clean around services */
.scenario-feature + .services-section,
.merchant-safe-section + .human-ai-section {
  margin-top: 0 !important;
}

/* Footer contrast and stronger background mark */
footer {
  background:
    radial-gradient(circle at var(--mx, 68%) var(--my, 42%), rgba(255,255,255,.50), rgba(255,255,255,0) 30%),
    radial-gradient(circle at 12% 90%, rgba(254,86,12,.19), rgba(254,86,12,0) 34%),
    linear-gradient(135deg, #fff0e5 0%, #ffcaa8 36%, #ffd8bf 62%, #fff5ec 100%) !important;
}

.footer-mega-brand {
  opacity: .31 !important;
  filter: drop-shadow(0 18px 30px rgba(255,255,255,.34)) !important;
}

.footer-grid {
  padding-top: 100px !important;
  padding-bottom: 116px !important;
}

.footer-platform-card strong {
  font-size: 25px !important;
}

.footer-col a {
  font-size: 14.5px !important;
  padding: 6px 0 !important;
}

/* Slightly more polish on CTA */
.cta-section {
  padding-top: 116px !important;
  padding-bottom: 118px !important;
}

.cta-actions .btn-dark {
  min-width: 170px !important;
}

@media (max-width: 1180px) {
  .brand,
  .brand img {
    width: 184px !important;
  }

  .hero-proof {
    width: min(390px, 100%) !important;
    transform: none !important;
  }

  .signal-node {
    min-height: 148px !important;
  }

  .services-section {
    padding-top: 90px !important;
    padding-bottom: 88px !important;
  }
}

@media (max-width: 860px) {
  .brand,
  .brand img {
    width: 152px !important;
  }

  .services-section {
    padding: 78px 0 82px !important;
  }

  .signal-node {
    min-height: 138px !important;
  }
}


/* v33 hero simplification pass */
.hero-copy {
  max-width: 680px !important;
}

.hero h1 {
  max-width: 720px !important;
  font-size: clamp(42px, 4.35vw, 62px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em !important;
  margin-bottom: 22px !important;
}

.hero h1 em {
  font-style: normal !important;
  color: #052b42 !important;
}

.hero-lead {
  max-width: 650px !important;
  font-size: clamp(16px, 1.16vw, 18px) !important;
  line-height: 1.58 !important;
  font-weight: 490 !important;
  color: rgba(5,43,66,.70) !important;
  margin-bottom: 30px !important;
}

.hero-buttons {
  gap: 16px !important;
  margin-bottom: 0 !important;
}

.hero-buttons .btn {
  padding: 15px 25px !important;
}

.hero-trust {
  margin-top: 20px !important;
  gap: 8px !important;
  max-width: 620px !important;
}

.hero-trust span {
  padding: 7px 10px !important;
  font-size: 11.8px !important;
  font-weight: 650 !important;
  background: rgba(255,255,255,.62) !important;
  color: rgba(5,43,66,.60) !important;
  border-color: rgba(5,43,66,.075) !important;
  box-shadow: 0 7px 18px rgba(5,43,66,.035) !important;
}

.hero-trust span::before {
  width: 5px !important;
  height: 5px !important;
  box-shadow: 0 0 0 4px rgba(255,107,26,.09) !important;
}

.hero-grid {
  grid-template-columns: minmax(0, 690px) 1fr !important;
  gap: 82px !important;
  padding-top: 126px !important;
  padding-bottom: 54px !important;
}

.hero-proof {
  width: min(420px, 100%) !important;
  transform: translateY(-2px) scale(.985) !important;
}

.proof-card {
  background: rgba(255,255,255,.88) !important;
  box-shadow: 0 24px 68px rgba(5,43,66,.12) !important;
}

.proof-float {
  width: 168px !important;
  opacity: .88 !important;
}

.proof-float--safe {
  left: -46px !important;
  bottom: 112px !important;
}

.proof-float--guardrail {
  right: -36px !important;
  bottom: 34px !important;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .hero-proof {
    justify-self: start !important;
  }
}

@media (max-width: 780px) {
  .hero h1 {
    font-size: clamp(36px, 10vw, 52px) !important;
  }

  .hero-lead {
    font-size: 16px !important;
  }

  .hero-grid {
    padding-top: 86px !important;
    padding-bottom: 50px !important;
  }
}


/* v34: stronger hero line, visible market-card effect, softer signal-flow hover background */
.hero h1 {
  max-width: 770px !important;
  font-size: clamp(42px, 4.55vw, 66px) !important;
  line-height: 1.01 !important;
  letter-spacing: -.058em !important;
}

.hero-lead {
  max-width: 670px !important;
}

/* make the Market orchestration card visibly animated instead of flat grey */
.feature-card--grey {
  background:
    linear-gradient(145deg, #f5f8fb 0%, #edf4f7 42%, #fff1e7 100%) !important;
  border-color: rgba(5,43,66,.08) !important;
}

.feature-card--grey .feature-card__bg {
  background:
    radial-gradient(circle at 88% 12%, rgba(254,86,12,.24) 0 0.8%, rgba(254,86,12,.12) 1.2%, transparent 11%),
    radial-gradient(circle at 20% 82%, rgba(254,86,12,.16), transparent 28%),
    repeating-linear-gradient(35deg, rgba(5,43,66,.065) 0 2px, transparent 2px 34px),
    repeating-linear-gradient(-32deg, rgba(254,86,12,.045) 0 2px, transparent 2px 40px),
    linear-gradient(145deg, #f8fafc 0%, #eef5f7 52%, #fff1e7 100%) !important;
  background-size: 100% 100%, 100% 100%, 140% 140%, 140% 140%, 100% 100% !important;
  animation: marketOrchestrationDrift 8s ease-in-out infinite !important;
}

.feature-card--grey .feature-card__overlay {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.48), rgba(255,255,255,0) 34%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.34) 46%, transparent 70%) !important;
  opacity: .88 !important;
  animation: marketOrchestrationSweep 6.5s linear infinite !important;
}

@keyframes marketOrchestrationDrift {
  0%, 100% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    filter: saturate(1);
  }
  50% {
    background-position: 0 0, 0 0, 34px -22px, -28px 24px, 0 0;
    filter: saturate(1.05);
  }
}

@keyframes marketOrchestrationSweep {
  0% { transform: translate3d(calc(var(--tx) * -.75), calc(var(--ty) * -.75), 0) scale(1.10); opacity: .70; }
  50% { transform: translate3d(calc(var(--tx) * -.95), calc(var(--ty) * -.95), 0) scale(1.15); opacity: .92; }
  100% { transform: translate3d(calc(var(--tx) * -.75), calc(var(--ty) * -.75), 0) scale(1.10); opacity: .70; }
}

/* remove the rectangular cutoff look in the signal-flow hover background */
.signal-flow-section {
  --ambient-x: 50%;
  --ambient-y: 50%;
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(255,250,246,.98) 0%, rgba(255,255,255,.99) 64%, #fff 100%) !important;
}

.signal-flow-section::before {
  content: "" !important;
  position: absolute !important;
  inset: -42% -18% !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(254,86,12,.24), rgba(254,126,54,.10) 18%, rgba(254,126,54,0) 42%),
    radial-gradient(circle at 82% 18%, rgba(255,203,148,.18), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.8), transparent 28%) !important;
  filter: blur(28px) !important;
  opacity: .95 !important;
  transform: translateZ(0) !important;
}

.signal-flow-section::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,0) 18%, rgba(255,255,255,0) 82%, rgba(255,255,255,.88)),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0) 34%) !important;
}

.signal-flow-inner {
  position: relative !important;
  z-index: 2 !important;
}

/* stronger visible AI pulse between steps */
.signal-node:not(:last-child)::before {
  background: linear-gradient(90deg, rgba(254,126,54,.14), rgba(254,126,54,.48), rgba(254,126,54,.14)) !important;
}

.signal-node:not(:last-child)::after {
  width: 64px !important;
  background:
    radial-gradient(circle at 8px 50%, rgba(254,86,12,1) 0 2px, rgba(254,86,12,.72) 3px, transparent 8px),
    linear-gradient(90deg, rgba(254,86,12,0), rgba(254,86,12,1) 22%, rgba(255,205,158,1) 62%, rgba(254,86,12,0)) !important;
  filter: drop-shadow(0 0 10px rgba(254,86,12,.42)) !important;
}

/* slightly more premium hero spacing after headline simplification */
.hero-buttons {
  margin-top: 2px !important;
}

@media (max-width: 780px) {
  .hero h1 {
    font-size: clamp(36px, 10vw, 52px) !important;
  }
}


/* v35: remove double seam/lines between hero and signal-flow */
.hero,
.hero-shell,
.hero-visual {
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.hero {
  padding-bottom: 0 !important;
  background: #fff !important;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -76px !important;
  height: 170px !important;
  z-index: 6 !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,250,246,.62) 34%,
      rgba(255,250,246,.98) 72%,
      rgba(255,250,246,1) 100%
    ) !important;
}

.hero-shell::after,
.hero-shell::before,
.hero-grid::after,
.hero-grid::before {
  border: 0 !important;
  box-shadow: none !important;
}

.signal-flow-section {
  margin-top: -76px !important;
  padding-top: 118px !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(circle at var(--ambient-x, 50%) var(--ambient-y, 50%), rgba(254,86,12,.16), rgba(254,126,54,.06) 22%, rgba(254,126,54,0) 48%),
    linear-gradient(180deg, rgba(255,250,246,1) 0%, rgba(255,252,249,.98) 38%, rgba(255,255,255,1) 100%) !important;
}

.signal-flow-section::before {
  inset: -55% -22% -38% -22% !important;
  background:
    radial-gradient(circle at var(--ambient-x, 50%) var(--ambient-y, 50%), rgba(254,86,12,.18), rgba(254,126,54,.08) 20%, rgba(254,126,54,0) 46%),
    radial-gradient(circle at 82% 18%, rgba(255,203,148,.13), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.78), transparent 30%) !important;
  filter: blur(34px) !important;
}

.signal-flow-section::after {
  display: none !important;
}

.signal-flow-inner {
  position: relative !important;
  z-index: 7 !important;
}

/* Remove any old 1px horizontal rule from earlier iterations */
.signal-flow-section,
.signal-flow-section .signal-flow-inner,
.signal-flow-section .signal-flow-header,
.signal-flow-section .signal-flow-track {
  outline: 0 !important;
  border-top-color: transparent !important;
}

/* keep the flow cards visually connected without a hard separator */
.signal-flow-track {
  margin-top: 2px !important;
}

@media (max-width: 860px) {
  .hero::after {
    bottom: -46px !important;
    height: 120px !important;
  }

  .signal-flow-section {
    margin-top: -46px !important;
    padding-top: 84px !important;
  }
}


/* v37: stable hero-to-signal-flow transition, no overlap bug */
.hero {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #fffaf6 !important;
  border: 0 !important;
}

.hero::after {
  display: none !important;
}

.hero-shell {
  min-height: 675px !important;
  overflow: hidden !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(circle at 62% 8%, rgba(255, 255, 255, .72), transparent 22%),
    radial-gradient(circle at 48% 100%, rgba(255, 156, 40, .14), transparent 34%),
    linear-gradient(90deg, #a5adbe 0%, #c7d0dc 19%, #ebf1f6 55%, #f5fdff 100%) !important;
}

.hero-shell::before,
.hero-shell::after,
.hero-grid::before,
.hero-grid::after {
  display: none !important;
}

.hero-grid {
  min-height: 675px !important;
  padding-top: 126px !important;
  padding-bottom: 76px !important;
}

.hero-bottom-glow {
  left: -8% !important;
  right: -8% !important;
  bottom: -18px !important;
  height: 190px !important;
  z-index: 1 !important;
  background:
    radial-gradient(ellipse at 58% 18%, rgba(255,255,255,.78), transparent 62%),
    radial-gradient(ellipse at 76% 32%, rgba(255, 205, 153, .28), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,250,246,.80) 72%, rgba(255,250,246,1) 100%) !important;
}

/* make the first section start cleanly, without negative overlap or double seam */
.signal-flow-section {
  --ambient-x: 50%;
  --ambient-y: 50%;
  position: relative !important;
  margin: 0 !important;
  padding: 66px 48px 72px !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(254,86,12,.13), rgba(254,126,54,.05) 24%, rgba(254,126,54,0) 52%),
    linear-gradient(180deg, rgba(255,250,246,1) 0%, rgba(255,252,249,.96) 44%, rgba(255,255,255,1) 100%) !important;
}

.signal-flow-section::before {
  content: "" !important;
  position: absolute !important;
  inset: -40% -20% -30% -20% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(254,86,12,.16), rgba(254,126,54,.07) 22%, rgba(254,126,54,0) 48%),
    radial-gradient(circle at 80% 14%, rgba(255,203,148,.10), transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(255,255,255,.72), transparent 34%) !important;
  filter: blur(40px) !important;
  opacity: .9 !important;
}

.signal-flow-section::after {
  display: none !important;
}

.signal-flow-inner,
.signal-flow-header,
.signal-flow-track,
.signal-flow-track--wide {
  position: relative !important;
  z-index: 2 !important;
}

.signal-flow-header {
  margin: 0 auto 34px !important;
  padding: 0 !important;
}

.signal-flow-track,
.signal-flow-track--wide {
  margin-top: 0 !important;
}

/* avoid a visible square under the hero proof card */
.hero-proof {
  overflow: visible !important;
  z-index: 9 !important;
}

.proof-card,
.decision-panel,
.mini-chart {
  overflow: hidden !important;
  background-clip: padding-box !important;
  clip-path: inset(0 round 24px) !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
}

.proof-card::before,
.proof-card::after,
.decision-panel::before,
.decision-panel::after,
.mini-chart::before,
.mini-chart::after {
  display: none !important;
}

@media (max-width: 860px) {
  .hero-shell,
  .hero-grid {
    min-height: auto !important;
  }

  .hero-grid {
    padding-top: 86px !important;
    padding-bottom: 64px !important;
  }

  .signal-flow-section {
    padding: 54px 18px 62px !important;
  }
}


/* v38: remove hero-gradient layer + sharpen hero title balance */
.hero-gradient {
  display: none !important;
}

.hero h1 {
  max-width: 760px !important;
  font-size: clamp(42px, 4.45vw, 64px) !important;
  line-height: 1.01 !important;
  letter-spacing: -.058em !important;
}

.hero-lead {
  max-width: 670px !important;
}

.hero-copy {
  max-width: 720px !important;
}


/* v39: remove requested hero backgrounds */
.hero-fade-left {
  background: none !important;
}

.hero-shell {
  background: transparent !important;
}


/* v40: remove requested hero bottom glow background */
.hero-bottom-glow {
  background: none !important;
}


/* v41: final hero title balance */
.hero h1 {
  max-width: 720px !important;
  font-size: clamp(44px, 4.65vw, 68px) !important;
  line-height: 1.01 !important;
  letter-spacing: -.058em !important;
}

.hero-lead {
  max-width: 680px !important;
}


/* v42: services section becomes an AI decision layer instead of generic service cards */
.services-section {
  padding-top: 108px !important;
  padding-bottom: 108px !important;
  background:
    radial-gradient(circle at 78% 16%, rgba(254,86,12,.07), transparent 28%),
    linear-gradient(180deg, #f6f9fc 0%, #f2f7fa 100%) !important;
}

.services-heading {
  max-width: 930px !important;
}

.services-heading .section-title {
  max-width: 980px !important;
}

.services-heading .section-sub {
  max-width: 780px !important;
}

.services-grid--decision-layer {
  margin-top: 52px !important;
  gap: 22px !important;
}

.service-card--decision {
  position: relative !important;
  overflow: hidden !important;
  min-height: 340px !important;
  padding: 30px !important;
  border-radius: 24px !important;
  border-color: rgba(5,43,66,.075) !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(254,86,12,.06), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)) !important;
  box-shadow: 0 18px 44px rgba(5,43,66,.06) !important;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease !important;
}

.service-card--decision:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(254,86,12,.20) !important;
  box-shadow: 0 26px 64px rgba(5,43,66,.085) !important;
}

.service-card--decision::before {
  content: "" !important;
  position: absolute !important;
  right: 28px !important;
  top: 28px !important;
  width: 86px !important;
  height: 42px !important;
  border-radius: 16px !important;
  background:
    linear-gradient(90deg, rgba(254,86,12,0), rgba(254,86,12,.16), rgba(254,86,12,0)),
    repeating-linear-gradient(0deg, rgba(254,86,12,.16) 0 2px, transparent 2px 8px) !important;
  opacity: .55 !important;
  animation: serviceSignalScan 3.8s ease-in-out infinite !important;
  pointer-events: none !important;
}

.service-card--decision::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.62) 50%, transparent 78%) !important;
  transform: translateX(-130%) !important;
  opacity: .48 !important;
  pointer-events: none !important;
}

.service-card--decision:hover::after {
  transform: translateX(130%) !important;
  transition: transform .85s ease !important;
}

@keyframes serviceSignalScan {
  0%, 100% {
    opacity: .36;
    transform: translateY(0) scaleX(.92);
  }
  50% {
    opacity: .78;
    transform: translateY(-2px) scaleX(1);
  }
}

.service-card--decision .service-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 30px rgba(254,86,12,.12) !important;
}

.service-card--decision .service-icon.service-icon--logo {
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(5,43,66,.07) !important;
  color: transparent !important;
  box-shadow: 0 14px 30px rgba(5,43,66,.08) !important;
}

.service-card--decision .service-icon.service-icon--logo img {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
}

.service-card--decision:nth-child(2) .service-icon.service-icon--logo img {
  width: 23px !important;
  height: 23px !important;
}

.service-card--decision h3 {
  font-size: 23px !important;
  letter-spacing: -.04em !important;
}

.service-card--decision p {
  min-height: 78px !important;
  color: rgba(5,43,66,.67) !important;
}

.service-mini-flow {
  position: relative !important;
  z-index: 3 !important;
  display: grid !important;
  grid-template-columns: 1fr 42px 1fr !important;
  gap: 10px !important;
  align-items: center !important;
  margin: 22px 0 22px !important;
  padding: 13px !important;
  border: 1px solid rgba(5,43,66,.07) !important;
  border-radius: 17px !important;
  background: rgba(248,250,252,.78) !important;
}

.service-mini-flow span,
.service-mini-flow strong {
  display: block !important;
  color: rgba(5,43,66,.64) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
}

.service-mini-flow strong {
  color: #052b42 !important;
}

.service-mini-flow i {
  position: relative !important;
  display: block !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: rgba(5,43,66,.10) !important;
  overflow: hidden !important;
}

.service-mini-flow i::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: 70% !important;
  border-radius: inherit !important;
  background: linear-gradient(90deg, rgba(254,86,12,0), rgba(254,86,12,.95), rgba(254,86,12,0)) !important;
  animation: serviceMiniPulse 2.5s ease-in-out infinite !important;
}

@keyframes serviceMiniPulse {
  from { transform: translateX(-120%); opacity: .25; }
  45% { opacity: 1; }
  to { transform: translateX(190%); opacity: .25; }
}

.service-card--decision a {
  position: relative !important;
  z-index: 4 !important;
}

@media (max-width: 980px) {
  .services-grid--decision-layer {
    grid-template-columns: 1fr !important;
  }

  .service-card--decision {
    min-height: auto !important;
  }

  .service-card--decision p {
    min-height: 0 !important;
  }
}


/* v43: scenario decision report is a real embedded video loop */
.scenario-video-card {
  position: relative;
  min-height: 410px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(5,43,66,.08);
  background:
    radial-gradient(circle at 70% 100%, rgba(254,86,12,.11), transparent 46%),
    #fff;
  box-shadow: 0 28px 80px rgba(5,43,66,.105);
  isolation: isolate;
}

.scenario-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.scenario-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.12), rgba(255,255,255,0) 34%),
    radial-gradient(circle at var(--scenario-x, 70%) var(--scenario-y, 30%), rgba(255,255,255,.24), transparent 28%);
  mix-blend-mode: screen;
  z-index: 2;
}

.scenario-video-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.62);
  color: #052b42;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(5,43,66,.10);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.scenario-grid {
  align-items: center;
}

@media (max-width: 860px) {
  .scenario-video-card,
  .scenario-video {
    min-height: 320px;
  }
}

/* === 03-inner-pages.css === */
/* ============================================================
   ShopSailor v5 — professional multi-page UX system
   Built from v43 homepage style, but each inner page has its own layout.
   ============================================================ */

body.v5 {
  color: #052b42;
  background: #fff;
}

.v5 .top-note {
  background: #052b42 !important;
  color: rgb(247 247 247 / 72%) !important;
}

.v5 .top-note a {
  color: rgb(247 247 247 / 92%) !important;
}

.v5 .site-nav {
  position: absolute;
  top: 34px;
}

.v5 .nav-link.active {
  background: rgba(5,43,66,.06);
}

.v5-main {
  overflow: hidden;
}

.x-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.x-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,107,26,.18);
  background: rgba(255,107,26,.08);
  color: #df5a12;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.x-title {
  margin: 0;
  color: #052b42;
  font-size: clamp(44px, 5.1vw, 76px);
  line-height: .98;
  letter-spacing: -.064em;
  font-weight: 680;
  text-wrap: balance;
}

.x-title.light {
  color: #fff;
}

.x-lead {
  margin: 22px 0 0;
  color: rgba(5,43,66,.72);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.56;
  font-weight: 510;
  max-width: 700px;
}

.x-lead.light {
  color: rgba(255,255,255,.74);
}

.x-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.x-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.x-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: rgba(5,43,66,.62);
  font-size: 12px;
  font-weight: 680;
}

.x-pills span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b1a;
  box-shadow: 0 0 0 4px rgba(255,107,26,.10);
}

.x-section {
  padding: 104px 48px;
}

.x-section.soft {
  background: #f4f8fb;
}

.x-section.warm {
  background:
    radial-gradient(circle at 74% 20%, rgba(254,86,12,.08), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.x-section.dark {
  background: #052b42;
  color: #fff;
}

.x-head {
  max-width: 880px;
  margin-bottom: 44px;
}

.x-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.x-card-grid {
  display: grid;
  gap: 22px;
}

.x-card-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.x-card-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.x-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(5,43,66,.055);
}

.x-card::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 76px;
  height: 38px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(254,86,12,0), rgba(254,86,12,.15), rgba(254,86,12,0)),
    repeating-linear-gradient(0deg, rgba(254,86,12,.16) 0 2px, transparent 2px 8px);
  opacity: .48;
  animation: serviceSignalScan 3.8s ease-in-out infinite;
}

.x-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.62) 50%, transparent 78%);
  transform: translateX(-130%);
  opacity: .48;
  pointer-events: none;
}

.x-card:hover::after {
  transform: translateX(130%);
  transition: transform .85s ease;
}

.x-card small,
.x-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.x-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #052b42;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.x-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.x-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 74px;
  align-items: center;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,107,26,.10);
  color: #cc5412;
  font-size: 12px;
  font-weight: 760;
}

.panel-pill.dark {
  background: rgba(5,43,66,.08);
  color: #052b42;
}

.x-glass {
  --mx: 64%;
  --my: 34%;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.82);
  box-shadow: 0 28px 80px rgba(5,43,66,.12);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.x-glass::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    conic-gradient(from 0deg at var(--mx) var(--my),
      rgba(254,86,12,0),
      rgba(254,86,12,.18),
      rgba(255,255,255,.42),
      rgba(73,164,255,.08),
      rgba(254,86,12,0));
  filter: blur(20px);
  animation: xSpin 12s linear infinite;
}

.x-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.42), transparent 32%),
    linear-gradient(120deg, rgba(255,255,255,.16), transparent 34%);
  pointer-events: none;
  z-index: 2;
}

@keyframes xSpin {
  from { transform: rotate(0deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1.08); }
}

.x-glass-inner {
  position: relative;
  z-index: 3;
  padding: 26px;
}

.metric-set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.metric-box {
  padding: 16px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}

.metric-box strong {
  display: block;
  color: #052b42;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 7px;
}

.metric-box span {
  color: rgba(5,43,66,.60);
  font-size: 12px;
  font-weight: 650;
}

.bar-list {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 145px 1fr 70px;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid rgba(5,43,66,.07);
  border-radius: 16px;
  background: rgba(255,255,255,.70);
}

.bar-row span {
  color: rgba(5,43,66,.64);
  font-size: 12px;
  font-weight: 720;
}

.bar-row strong {
  color: #052b42;
  font-size: 13px;
  text-align: right;
}

.bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5,43,66,.08);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fe560c, #ffb261);
  animation: barPulse 3s ease-in-out infinite;
}

@keyframes barPulse {
  0%,100% { transform: scaleX(.9); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

.route-map {
  display: grid;
  gap: 12px;
}

.route-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
}

.route-row b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
}

.route-row strong {
  color: #052b42;
  font-size: 15px;
}

.route-row span {
  color: var(--muted);
  font-size: 13px;
}

.report {
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 70px rgba(5,43,66,.095);
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.report-metrics div {
  padding: 18px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 18px;
  background: #fbfcfd;
}

.report-metrics strong {
  display: block;
  color: #052b42;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 7px;
}

.report-metrics span {
  color: var(--muted);
  font-size: 12px;
}

/* Platform */
.platform-hero {
  position: relative;
  min-height: 730px;
  padding: 158px 48px 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(254,86,12,.14), transparent 30%),
    linear-gradient(180deg, #eef6fb 0%, #fffaf6 72%, #fff 100%);
}

.platform-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 258px;
  width: min(1080px, 94vw);
  height: 390px;
  transform: translateX(-50%);
  border-radius: 90px;
  background: linear-gradient(115deg, rgba(255,255,255,.22), rgba(255,107,26,.08));
  filter: blur(22px);
}

.platform-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.platform-hero .x-title {
  max-width: 980px;
  margin: 0 auto;
}

.platform-hero .x-lead {
  margin-left: auto;
  margin-right: auto;
}

.platform-os {
  position: relative;
  margin: 52px auto 0;
  padding: 24px;
  border-radius: 36px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 28px 80px rgba(5,43,66,.10);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.platform-os::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 2px;
  background: rgba(5,43,66,.08);
}

.platform-node {
  position: relative;
  z-index: 2;
  min-height: 136px;
  padding: 18px;
  border-radius: 23px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  overflow: hidden;
}

.platform-node::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.7), transparent);
  transform: translateX(-130%);
  animation: nodeSweep 5.8s ease-in-out infinite;
}

.platform-node:nth-child(2)::after { animation-delay: .4s; }
.platform-node:nth-child(3)::after { animation-delay: .8s; }
.platform-node:nth-child(4)::after { animation-delay: 1.2s; }
.platform-node:nth-child(5)::after { animation-delay: 1.6s; }

@keyframes nodeSweep {
  0%,55%,100% { transform: translateX(-130%); }
  72% { transform: translateX(130%); }
}

.platform-node b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 32px;
  border-radius: 11px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  margin-bottom: 14px;
}

.platform-node strong {
  display: block;
  color: #052b42;
  margin-bottom: 7px;
}

.platform-node span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Google CSS */
.css-hero {
  position: relative;
  padding: 150px 48px 98px;
  background:
    linear-gradient(90deg, #f2f8fb 0%, #fff 55%, #fff3eb 100%);
}

.css-hero-inner {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 74px;
  align-items: center;
}

.lane-board {
  padding: 28px;
}

.lane-flow {
  display: grid;
  gap: 18px;
}

.lane {
  position: relative;
  padding: 20px 20px 20px 62px;
  border-radius: 23px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.76);
}

.lane::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#ff6b1a, #ffd2a6);
}

.lane.protected {
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 38px rgba(5,43,66,.06);
}

.lane strong {
  display: block;
  color: #052b42;
  font-size: 20px;
  margin-bottom: 7px;
  letter-spacing: -.03em;
}

.lane span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.css-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-panel {
  border-radius: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 14px 38px rgba(5,43,66,.055);
}

.compare-panel h3 {
  margin: 0 0 18px;
  color: #052b42;
  font-size: 26px;
  letter-spacing: -.05em;
}

.compare-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.compare-panel li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.compare-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  background: #ff6b1a;
  box-shadow: 0 0 0 5px rgba(255,107,26,.10);
}

/* Microsoft */
.ms-hero {
  position: relative;
  padding: 150px 48px 98px;
  background:
    radial-gradient(circle at 72% 26%, rgba(254,86,12,.12), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #fff 100%);
  overflow: hidden;
}

.ms-hero-inner {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.radar-stage {
  position: relative;
  height: 540px;
  border-radius: 44px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 30px 90px rgba(5,43,66,.10);
  overflow: hidden;
}

.radar-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(5,43,66,.14);
}

.radar-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 440px;
  height: 440px;
  transform-origin: left top;
  background: conic-gradient(from 0deg, rgba(254,86,12,.26), transparent 46deg);
  animation: radarSweep 4s linear infinite;
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-ring {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  border: 1px solid rgba(5,43,66,.08);
}

.radar-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(254,86,12,.10), 0 0 22px rgba(254,86,12,.28);
  z-index: 3;
}

.radar-dot.d1 { left: 28%; top: 44%; }
.radar-dot.d2 { right: 22%; top: 32%; }
.radar-dot.d3 { right: 34%; bottom: 26%; }

.market-table {
  display: grid;
  gap: 12px;
}

.market-row {
  display: grid;
  grid-template-columns: 72px 1fr 98px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
}

.market-row b {
  color: #db6118;
}

.market-row strong {
  color: #052b42;
}

.market-row span {
  color: var(--muted);
  font-size: 13px;
}

/* Feed page */
.feed-hero {
  padding: 146px 48px 98px;
  background:
    radial-gradient(circle at 20% 80%, rgba(254,86,12,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f4f8fb 100%);
}

.feed-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}

.feed-console {
  padding: 30px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 24px 70px rgba(5,43,66,.10);
}

.feed-row {
  display: grid;
  grid-template-columns: 1fr 105px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(5,43,66,.08);
  margin-top: 12px;
  background: #fbfcfd;
}

.feed-row b {
  display: block;
  color: #052b42;
  margin-bottom: 9px;
}

.feed-row span {
  font-size: 12px;
  font-weight: 800;
  color: #db6118;
}

.diagnostic-board {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.diagnostic-large {
  min-height: 360px;
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 86% 12%, rgba(254,86,12,.12), transparent 34%),
    #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 20px 60px rgba(5,43,66,.06);
}

.diagnostic-stack {
  display: grid;
  gap: 14px;
}

/* Merchant safe */
.safe-hero {
  padding: 148px 48px 98px;
  background:
    radial-gradient(circle at 50% 70%, rgba(254,86,12,.10), transparent 32%),
    linear-gradient(180deg, #eef6fb 0%, #fffaf6 100%);
}

.safe-inner {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 70px;
  align-items: center;
}

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

.shield-cell {
  min-height: 190px;
  padding: 23px;
  border-radius: 27px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 48px rgba(5,43,66,.06);
}

.shield-cell b {
  display: block;
  color: #db6118;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.shield-cell strong {
  font-size: 30px;
  letter-spacing: -.055em;
  color: #052b42;
  line-height: 1;
}

.shield-cell.wide {
  grid-column: 1 / -1;
  min-height: 160px;
  background: linear-gradient(110deg, #fff, #fff1e8);
}

.safety-principles {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

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

.principle-list article {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
}

/* Tracking */
.track-hero {
  padding: 150px 48px 98px;
  background: linear-gradient(90deg, #fffaf6 0%, #f7fcff 100%);
}

.track-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.tracking-timeline {
  position: relative;
  padding: 30px;
  border-radius: 36px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  box-shadow: 0 24px 70px rgba(5,43,66,.10);
}

.tracking-timeline::before {
  content: "";
  position: absolute;
  left: 51px;
  top: 54px;
  bottom: 54px;
  width: 2px;
  background: linear-gradient(#fe560c, #ffbd79);
}

.tracking-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  margin: 18px 0;
}

.tracking-step b {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff3eb;
  color: #db6118;
}

.tracking-step div {
  padding: 18px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 20px;
  background: #fbfcfd;
}

.tracking-step strong {
  display: block;
  color: #052b42;
  margin-bottom: 6px;
}

.tracking-step span {
  font-size: 13px;
  color: var(--muted);
}

.ledger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ledger-card {
  border-radius: 26px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
}

/* Retailers */
.retail-hero {
  position: relative;
  min-height: 760px;
  padding: 150px 48px 94px;
  background: #fff;
  overflow: hidden;
}

.retail-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 36%;
  height: 58%;
  background: linear-gradient(120deg, rgba(255,107,26,.08), rgba(255,255,255,0));
  clip-path: polygon(0 28%, 100% 0, 100% 82%, 0 100%);
}

.retail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.retail-simple-stage {
  position: relative;
}

.retail-simple-stage::before {
  content: "";
  position: absolute;
  inset: 46px -32px -30px 62px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,107,26,.10), rgba(255,247,240,.78));
  z-index: 0;
}

.retail-simple-frame {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 34px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 62px rgba(5,43,66,.09);
  backdrop-filter: blur(10px);
}

.retail-simple-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: #5f7285;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.retail-simple-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(5,43,66,.08);
  background: linear-gradient(180deg, #fffcfa 0%, #fff5ee 100%);
  overflow: hidden;
}

.retail-simple-board::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 76px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255,107,26,.12), transparent 68%);
  filter: blur(20px);
}

.retail-simple-current,
.retail-simple-opportunity {
  position: relative;
  z-index: 2;
  min-height: 244px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(5,43,66,.055);
}

.retail-simple-opportunity {
  border-color: rgba(254,86,12,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,244,235,.94));
  animation: retailSimpleOpportunity 5.8s ease-in-out infinite;
}

.retail-simple-current small,
.retail-simple-opportunity small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.retail-simple-current strong,
.retail-simple-opportunity strong {
  display: block;
  color: #052b42;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -.05em;
}

.retail-simple-current strong {
  max-width: 310px;
}

.retail-simple-opportunity span {
  display: block;
  margin-top: 8px;
  color: #5f7285;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.42;
}

.retail-simple-opportunity img {
  display: block;
  width: min(210px, 88%);
  margin: 4px auto 18px;
  filter: drop-shadow(0 14px 18px rgba(5,43,66,.12));
}

.retail-simple-bars {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.retail-simple-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #fe560c 0%, #f6b75d 68%, transparent 68%),
    #edf2f6;
  animation: retailSimpleBar 4.4s ease-in-out infinite;
}

.retail-simple-bars i:nth-child(2) {
  width: 88%;
  animation-delay: .2s;
}

.retail-simple-bars i:nth-child(3) {
  width: 76%;
  animation-delay: .4s;
}

.retail-simple-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.retail-simple-arrow span {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #052b42;
  box-shadow: 0 16px 30px rgba(5,43,66,.16);
  animation: retailSimpleArrowPulse 3.2s ease-in-out infinite;
}

.retail-simple-arrow span::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateX(-3px) rotate(45deg);
}

.retail-simple-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.retail-simple-status span {
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.82);
  color: #526a7f;
  font-size: 13px;
  font-weight: 780;
  text-align: center;
}

@keyframes retailSimpleOpportunity {
  0%, 100% { transform: translateX(0) scale(1); }
  45%, 58% { transform: translateX(-8px) scale(1.018); }
}

@keyframes retailSimpleArrowPulse {
  0%, 100% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
}

@keyframes retailSimpleBar {
  0%, 100% { transform: scaleX(.9); transform-origin: left center; opacity: .86; }
  50% { transform: scaleX(1); transform-origin: left center; opacity: 1; }
}

.before-after article.after {
  background: linear-gradient(180deg,#fff,#fff5ee);
  border-color: rgba(254,86,12,.18);
}

@keyframes retailPulseBar {
  0%, 100% { transform: scaleX(.94); transform-origin: left center; opacity: .9; }
  50% { transform: scaleX(1); transform-origin: left center; opacity: 1; }
}

@keyframes retailFeatureFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.before-after article {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
}

.before-after article.after {
  background: linear-gradient(180deg,#fff,#fff5ee);
  border-color: rgba(254,86,12,.18);
}

/* Agencies */
.agency-hero {
  padding: 150px 48px 98px;
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
}

.agency-inner {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.account-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.account-card {
  min-height: 174px;
  padding: 19px;
  border-radius: 23px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5,43,66,.055);
}

.account-card:nth-child(2) {
  transform: translateY(28px);
}

.account-card:nth-child(3) {
  transform: translateY(-10px);
}

.account-card b {
  display: block;
  color: #db6118;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.account-card strong {
  font-size: 22px;
  color: #052b42;
}

.account-bars {
  display: flex;
  gap: 7px;
  align-items: end;
  height: 64px;
  margin-top: 18px;
}

.account-bars i {
  flex: 1;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(#ffbd79, #fe560c);
  animation: barPulse 2.8s ease-in-out infinite;
}

.account-bars i:nth-child(1) { height: 35%; }
.account-bars i:nth-child(2) { height: 64%; }
.account-bars i:nth-child(3) { height: 48%; }
.account-bars i:nth-child(4) { height: 82%; }

.client-output {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
}

/* Networks */
.network-hero {
  padding: 150px 48px 98px;
  background:
    radial-gradient(circle at 72% 24%, rgba(254,86,12,.13), transparent 32%),
    linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.network-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.network-map {
  position: relative;
  height: 530px;
  border-radius: 44px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  box-shadow: 0 28px 80px rgba(5,43,66,.10);
  overflow: hidden;
}

.network-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.net-node {
  position: absolute;
  width: 124px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 14px 32px rgba(5,43,66,.06);
  font-size: 12px;
  font-weight: 800;
  color: #052b42;
  text-align: center;
}

.net-node.n1 {
  left: 40%;
  top: 42%;
  background: #fff1e8;
  color: #db6118;
}

.net-node.n2 { left: 12%; top: 18%; }
.net-node.n3 { right: 12%; top: 22%; }
.net-node.n4 { left: 18%; bottom: 18%; }
.net-node.n5 { right: 16%; bottom: 16%; }

.network-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Resources */
.resources-hero {
  padding: 150px 48px 104px;
  background: linear-gradient(180deg, #f4f8fb 0%, #fff 100%);
}

.resources-hero .x-title {
  max-width: 980px;
}

.resource-board {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  margin-top: 52px;
}

.resource-feature {
  min-height: 390px;
  padding: 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 12%, rgba(254,86,12,.12), transparent 34%),
    #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 24px 70px rgba(5,43,66,.08);
}

.resource-stack {
  display: grid;
  gap: 14px;
}

.guide-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Case studies */
.case-hero {
  padding: 150px 48px 98px;
  background: #fffaf6;
}

.case-inner {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.case-report {
  padding: 32px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 28px 80px rgba(5,43,66,.10);
}

.case-report .big-number {
  font-size: 92px;
  line-height: .9;
  letter-spacing: -.08em;
  color: #fe560c;
  font-weight: 700;
}

.case-report p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.case-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
}

/* Pricing */
.pricing-hero {
  padding: 150px 48px 100px;
  background:
    radial-gradient(circle at 50% 86%, rgba(254,86,12,.09), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #fffaf6 100%);
  text-align: center;
}

.pricing-hero .x-lead {
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
  text-align: left;
}

.pricing-card {
  position: relative;
  min-height: 365px;
  border-radius: 30px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 22px 60px rgba(5,43,66,.08);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #052b42, #0b3b59);
  color: #fff;
  transform: translateY(-18px);
}

.pricing-card h3 {
  margin: 0 0 12px;
  color: #052b42;
  font-size: 28px;
  letter-spacing: -.05em;
}

.pricing-card.featured h3,
.pricing-card.featured strong {
  color: #fff;
}

.pricing-card strong {
  display: block;
  color: #052b42;
  font-size: 46px;
  letter-spacing: -.07em;
  margin: 20px 0;
}

.pricing-card p {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-card.featured p {
  color: rgba(255,255,255,.72);
}

.pricing-table {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  box-shadow: 0 16px 44px rgba(5,43,66,.06);
}

.pricing-table-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(5,43,66,.07);
}

.pricing-table-row:last-child {
  border-bottom: 0;
}

.pricing-table-row > div {
  padding: 18px;
  border-right: 1px solid rgba(5,43,66,.06);
  color: var(--muted);
  font-size: 14px;
}

.pricing-table-row > div:last-child {
  border-right: 0;
}

.pricing-table-row strong {
  color: #052b42;
}

/* About */
.about-hero {
  position: relative;
  padding: 160px 48px 114px;
  background: #052b42;
  color: #fff;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 70% 25%, rgba(254,86,12,.40), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.12), transparent 28%);
  filter: blur(24px);
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.belief-grid {
  display: grid;
  gap: 14px;
}

.belief {
  padding: 24px;
  border-radius: 25px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.belief strong {
  display: block;
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}

.belief span {
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.5;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

/* Contact */
.contact-hero {
  padding: 150px 48px 104px;
  background: linear-gradient(180deg, #eef6fb 0%, #fff 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact-card {
  padding: 36px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 28px 80px rgba(5,43,66,.10);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(5,43,66,.12);
  border-radius: 16px;
  color: #052b42;
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.intake-steps {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

/* Legal */
.legal-hero {
  padding: 150px 48px 104px;
  background: linear-gradient(180deg, #f4f8fb 0%, #fff 100%);
}

.legal-board {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  margin-top: 52px;
}

/* Mobile */
@media (max-width: 1100px) {
  .v5 .site-nav {
    position: sticky;
    top: 0;
  }

  .platform-os,
  .pricing-cards,
  .guide-categories,
  .network-journey {
    grid-template-columns: 1fr;
  }

  .platform-os::before {
    display: none;
  }

  .css-hero-inner,
  .ms-hero-inner,
  .feed-grid,
  .safe-inner,
  .safety-principles,
  .track-inner,
  .retail-hero-inner,
  .agency-inner,
  .network-inner,
  .resource-board,
  .case-inner,
  .case-layout,
  .about-inner,
  .manifesto-grid,
  .contact-inner,
  .legal-board {
    grid-template-columns: 1fr;
  }

  .x-card-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 780px) {
  .platform-hero,
  .css-hero,
  .ms-hero,
  .feed-hero,
  .safe-hero,
  .track-hero,
  .retail-hero,
  .agency-hero,
  .network-hero,
  .resources-hero,
  .case-hero,
  .pricing-hero,
  .about-hero,
  .contact-hero,
  .legal-hero {
    padding: 82px 0 70px;
    min-height: auto;
  }

  .x-inner,
  .platform-hero-inner,
  .css-hero-inner,
  .ms-hero-inner,
  .feed-grid,
  .safe-inner,
  .track-inner,
  .retail-hero-inner,
  .agency-inner,
  .network-inner,
  .resources-inner,
  .case-inner,
  .pricing-inner,
  .about-inner,
  .contact-inner,
  .x-section .x-inner {
    width: calc(100% - 28px);
  }

  .x-section {
    padding: 74px 0;
  }

  .x-title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .x-card-grid.cols-3,
  .x-card-grid.cols-4,
  .metric-set,
  .shield-grid,
  .account-wall,
  .ledger-grid,
  .before-after,
  .css-compare {
    grid-template-columns: 1fr;
  }

  .bar-row,
  .feed-row,
  .market-row {
    grid-template-columns: 1fr;
  }

  .route-row {
    grid-template-columns: 38px 1fr;
  }

  .radar-stage,
  .network-map {
    height: 360px;
  }

  .retail-simple-board {
    grid-template-columns: 1fr;
  }

  .retail-simple-arrow {
    transform: rotate(90deg);
  }

  .retail-simple-current,
  .retail-simple-opportunity {
    min-height: auto;
  }

  .retail-simple-status {
    grid-template-columns: 1fr;
  }

  .retail-simple-stage::before {
    inset: 34px -10px -12px 20px;
  }
}

@media (max-width: 1100px) {
  .retail-simple-board {
    grid-template-columns: 1fr;
  }

  .retail-simple-arrow {
    transform: rotate(90deg);
  }

  .retail-simple-current,
  .retail-simple-opportunity {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .retail-simple-opportunity,
  .retail-simple-arrow span,
  .retail-simple-bars i {
    animation: none !important;
  }
}


/* ============================================================
   v7 Google CSS page — rebuilt as a premium partner page
   ============================================================ */

.google-css-page .css-hero,
.google-css-page .css-hero-inner,
.google-css-page .lane-board,
.google-css-page .lane-flow,
.google-css-page .lane {
  all: unset;
}

.gcss-hero {
  position: relative;
  min-height: 790px;
  padding: 152px 48px 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(66,133,244,.13), transparent 28%),
    radial-gradient(circle at 86% 56%, rgba(251,188,5,.12), transparent 24%),
    radial-gradient(circle at 58% 84%, rgba(254,86,12,.10), transparent 32%),
    linear-gradient(100deg, #eef7fb 0%, #ffffff 48%, #fff4ec 100%);
}

.gcss-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -9% 34%;
  height: 380px;
  background: linear-gradient(112deg, rgba(255,255,255,0), rgba(255,107,26,.11), rgba(255,255,255,.12));
  clip-path: polygon(0 28%, 100% 0, 100% 80%, 0 100%);
  pointer-events: none;
}

.gcss-hero::after {
  content: "";
  position: absolute;
  inset: -30% -16%;
  background:
    radial-gradient(circle at var(--gcss-x, 72%) var(--gcss-y, 26%), rgba(255,255,255,.52), transparent 27%),
    radial-gradient(circle at 20% 90%, rgba(255,255,255,.45), transparent 30%);
  filter: blur(34px);
  pointer-events: none;
}

.gcss-hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 78px;
  align-items: center;
}

.gcss-copy {
  max-width: 650px;
}

.gcss-badge-image {
  display: block;
  width: min(330px, 100%);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 34px rgba(5,43,66,.08));
}

.gcss-hero h1 {
  margin: 0;
  max-width: 720px;
  color: #052b42;
  font-size: clamp(46px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -.064em;
  font-weight: 700;
  text-wrap: balance;
}

.gcss-lead {
  margin: 24px 0 0;
  max-width: 670px;
  color: rgba(5,43,66,.72);
  font-size: clamp(17px, 1.38vw, 20px);
  line-height: 1.58;
  font-weight: 530;
}

.gcss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.gcss-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.gcss-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  color: rgba(5,43,66,.62);
  font-size: 12px;
  font-weight: 720;
}

.gcss-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff6b1a;
  box-shadow: 0 0 0 4px rgba(255,107,26,.10);
}

.gcss-control-card {
  --mx: 65%;
  --my: 30%;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(5,43,66,.08);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.62), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  box-shadow: 0 34px 100px rgba(5,43,66,.13);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.gcss-control-card::before {
  content: "";
  position: absolute;
  inset: -28%;
  background:
    conic-gradient(from 0deg at var(--mx) var(--my),
      rgba(66,133,244,0),
      rgba(66,133,244,.16),
      rgba(251,188,5,.14),
      rgba(52,168,83,.13),
      rgba(234,67,53,.12),
      rgba(66,133,244,0));
  filter: blur(18px);
  animation: gcssAura 14s linear infinite;
}

@keyframes gcssAura {
  from { transform: rotate(0deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1.08); }
}

.gcss-control-inner {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.gcss-control-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.gcss-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
}

.gcss-status.blue {
  background: rgba(66,133,244,.10);
  color: #276bd7;
}

.gcss-lanes {
  display: grid;
  gap: 14px;
}

.gcss-lane {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px 1fr 112px;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.80);
}

.gcss-lane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.70) 52%, transparent 78%);
  transform: translateX(-130%);
  animation: gcssLaneSweep 6s ease-in-out infinite;
}

.gcss-lane:nth-child(2)::after { animation-delay: .8s; }
.gcss-lane:nth-child(3)::after { animation-delay: 1.6s; }

@keyframes gcssLaneSweep {
  0%, 58%, 100% { transform: translateX(-130%); }
  74% { transform: translateX(130%); }
}

.gcss-lane-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-weight: 900;
}

.gcss-lane:nth-child(1) .gcss-lane-icon { background: rgba(66,133,244,.10); color:#276bd7; }
.gcss-lane:nth-child(2) .gcss-lane-icon { background: rgba(52,168,83,.10); color:#15924c; }
.gcss-lane:nth-child(3) .gcss-lane-icon { background: rgba(251,188,5,.14); color:#a96f00; }

.gcss-lane-copy {
  position: relative;
  z-index: 2;
}

.gcss-lane-copy strong {
  display: block;
  color: #052b42;
  font-size: 17px;
  letter-spacing: -.03em;
  margin-bottom: 5px;
}

.gcss-lane-copy span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.gcss-lane-action {
  position: relative;
  z-index: 2;
  justify-self: end;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(5,43,66,.06);
  color: #052b42;
  font-size: 12px;
  font-weight: 850;
}

.gcss-mini-dashboard {
  margin-top: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.74);
}

.gcss-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.gcss-mini-head strong {
  color: #052b42;
  font-size: 18px;
  letter-spacing: -.03em;
}

.gcss-market-chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.gcss-market-chips span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(5,43,66,.05);
  color: rgba(5,43,66,.66);
  font-size: 11px;
  font-weight: 800;
}

.gcss-bars {
  height: 110px;
  display: flex;
  align-items: end;
  gap: 9px;
}

.gcss-bars i {
  flex: 1;
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(180deg, #ffbd79, #fe560c);
  animation: gcssBarLive 2.8s ease-in-out infinite;
  transform-origin: bottom;
}

.gcss-bars i:nth-child(1) { height: 34%; }
.gcss-bars i:nth-child(2) { height: 52%; animation-delay: .12s; }
.gcss-bars i:nth-child(3) { height: 44%; animation-delay: .24s; }
.gcss-bars i:nth-child(4) { height: 68%; animation-delay: .36s; }
.gcss-bars i:nth-child(5) { height: 61%; animation-delay: .48s; }
.gcss-bars i:nth-child(6) { height: 82%; animation-delay: .60s; }
.gcss-bars i:nth-child(7) { height: 76%; animation-delay: .72s; }
.gcss-bars i:nth-child(8) { height: 92%; animation-delay: .84s; }

@keyframes gcssBarLive {
  0%,100% { transform: scaleY(.88); opacity:.82; }
  50% { transform: scaleY(1.06); opacity:1; }
}

.gcss-section {
  padding: 108px 48px;
}

.gcss-section.soft {
  background: #f4f8fb;
}

.gcss-section.warm {
  background:
    radial-gradient(circle at 78% 18%, rgba(254,86,12,.08), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.gcss-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.gcss-split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.gcss-head {
  max-width: 860px;
  margin-bottom: 44px;
}

.gcss-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gcss-partner-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.gcss-partner-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 34px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(5,43,66,.08);
}

.gcss-partner-card.accent {
  background:
    radial-gradient(circle at 88% 8%, rgba(66,133,244,.12), transparent 30%),
    radial-gradient(circle at 15% 90%, rgba(254,86,12,.09), transparent 30%),
    #fff;
}

.gcss-partner-card h2 {
  margin: 0;
  color: #052b42;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.gcss-partner-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.gcss-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gcss-compare-panel {
  min-height: 340px;
  border-radius: 30px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 18px 48px rgba(5,43,66,.06);
}

.gcss-compare-panel h3 {
  margin: 0 0 20px;
  color: #052b42;
  font-size: 27px;
  letter-spacing: -.05em;
}

.gcss-compare-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.gcss-compare-panel li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.gcss-compare-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: #ff6b1a;
  box-shadow: 0 0 0 5px rgba(255,107,26,.10);
}

.gcss-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gcss-flow-step {
  position: relative;
  min-height: 255px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(5,43,66,.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,26,.08), transparent 30%),
    #fff;
  box-shadow: 0 12px 34px rgba(5,43,66,.05);
  overflow: hidden;
}

.gcss-flow-step::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
}

.gcss-flow-step b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  margin-bottom: 20px;
}

.gcss-flow-step h3 {
  margin: 0 0 12px;
  color: #052b42;
  font-size: 21px;
  letter-spacing: -.035em;
}

.gcss-flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.gcss-report {
  border-radius: 34px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 24px 70px rgba(5,43,66,.095);
}

.gcss-report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.gcss-report-metrics div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fbfcfd;
}

.gcss-report-metrics strong {
  display: block;
  color: #052b42;
  font-size: 28px;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 7px;
}

.gcss-report-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.gcss-report-rows {
  display: grid;
  gap: 10px;
}

.gcss-report-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 17px;
  border: 1px solid rgba(5,43,66,.07);
  background: #fff;
}

.gcss-report-row span {
  color: rgba(5,43,66,.52);
  font-size: 12px;
  font-weight: 800;
}

.gcss-report-row strong {
  color: #052b42;
  font-size: 14px;
}

.gcss-cta {
  padding: 118px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 56% 65% at 50% 100%, rgba(255,107,26,.14) 0%, transparent 72%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.gcss-cta .section-title {
  max-width: 820px;
  margin: 0 auto;
}

.gcss-cta .section-sub {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .gcss-hero-inner,
  .gcss-split,
  .gcss-partner-grid {
    grid-template-columns: 1fr;
  }

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

  .gcss-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .gcss-hero,
  .gcss-section,
  .gcss-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .gcss-hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 72px;
  }

  .gcss-hero-inner,
  .gcss-inner {
    width: calc(100% - 28px);
  }

  .gcss-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .gcss-control-card {
    min-height: auto;
  }

  .gcss-lane,
  .gcss-report-row {
    grid-template-columns: 1fr;
  }

  .gcss-lane-action {
    justify-self: start;
  }

  .gcss-mini-dashboard {
    padding: 18px;
  }

  .gcss-flow,
  .gcss-report-metrics {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   v8 Google CSS partner page polish
   Real partner badge row + sharper hero + merchant approval section
   ============================================================ */

.gcss-hero-badge {
  display: block;
  width: min(390px, 100%);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 34px rgba(5,43,66,.08));
}

.gcss-badge-image {
  display: none !important;
}

.gcss-credentials {
  padding: 44px 48px 50px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
  border-top: 1px solid rgba(5,43,66,.06);
  border-bottom: 1px solid rgba(5,43,66,.06);
}

.gcss-credentials-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.gcss-credentials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.gcss-credentials-head h2 {
  margin: 0;
  color: #052b42;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.04;
  letter-spacing: -.052em;
}

.gcss-credentials-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.partner-badge-grid {
  display: grid;
  grid-template-columns: .82fr .82fr 1.7fr 1.28fr;
  gap: 14px;
  align-items: stretch;
}

.partner-badge-card {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(5,43,66,.055);
}

.partner-badge-card img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.partner-badge-card.wide img {
  max-height: 86px;
}

.partner-badge-card:hover {
  transform: translateY(-2px);
  border-color: rgba(254,86,12,.16);
  box-shadow: 0 24px 58px rgba(5,43,66,.08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.gcss-merchant-approval {
  padding: 108px 48px;
  background:
    radial-gradient(circle at 80% 22%, rgba(254,86,12,.08), transparent 30%),
    #fff;
}

.gcss-approval-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.approval-stack {
  display: grid;
  gap: 14px;
}

.approval-row {
  display: grid;
  grid-template-columns: 46px 1fr 118px;
  gap: 16px;
  align-items: center;
  padding: 17px;
  border-radius: 22px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  box-shadow: 0 12px 34px rgba(5,43,66,.045);
}

.approval-row b {
  width: 42px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
}

.approval-row strong {
  display: block;
  color: #052b42;
  font-size: 16px;
  margin-bottom: 5px;
}

.approval-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.approval-status {
  justify-self: end;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5,43,66,.06);
  color: #052b42 !important;
  font-size: 12px !important;
  font-weight: 850;
}

.gcss-control-card {
  min-height: 590px !important;
}

.gcss-control-card .gcss-lane {
  grid-template-columns: 62px 1fr 124px !important;
}

.gcss-mini-dashboard {
  background:
    radial-gradient(circle at 92% 12%, rgba(66,133,244,.08), transparent 26%),
    rgba(255,255,255,.74) !important;
}

.gcss-section.soft {
  padding-top: 92px !important;
}

.gcss-cta .btn-dark {
  min-width: 192px;
}

@media (max-width: 1100px) {
  .partner-badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gcss-credentials-head,
  .gcss-approval-inner {
    grid-template-columns: 1fr;
  }

  .gcss-credentials-head {
    display: grid;
  }
}

@media (max-width: 780px) {
  .gcss-credentials,
  .gcss-merchant-approval {
    padding-left: 0;
    padding-right: 0;
  }

  .gcss-credentials-inner,
  .gcss-approval-inner {
    width: calc(100% - 28px);
  }

  .partner-badge-grid,
  .approval-row {
    grid-template-columns: 1fr;
  }

  .approval-status {
    justify-self: start;
  }

  .gcss-control-card .gcss-lane {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   v9 Google CSS final polish
   - quieter hero badge
   - balanced credential strip
   - more premium positioning card
   - stronger Google Shopping workflow language
   ============================================================ */

.gcss-hero-badge {
  width: min(315px, 100%) !important;
  margin-bottom: 22px !important;
  filter: drop-shadow(0 14px 26px rgba(5,43,66,.075)) !important;
}

.gcss-hero h1 {
  max-width: 690px !important;
}

.gcss-credentials {
  padding-top: 38px !important;
  padding-bottom: 42px !important;
}

.gcss-credentials-head {
  margin-bottom: 20px !important;
}

.partner-badge-grid {
  grid-template-columns: .95fr .95fr 1.45fr 1.25fr !important;
  gap: 13px !important;
}

.partner-badge-card {
  min-height: 118px !important;
  padding: 14px 16px !important;
  border-radius: 22px !important;
}

.partner-badge-card img {
  max-height: 82px !important;
}

.partner-badge-card:nth-child(1) img,
.partner-badge-card:nth-child(2) img {
  max-height: 96px !important;
}

.partner-badge-card.wide img {
  max-height: 70px !important;
}

.gcss-partner-card {
  min-height: 360px !important;
}

.gcss-partner-card h2 {
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.052em !important;
}

.gcss-partner-card.accent {
  background:
    radial-gradient(circle at 88% 8%, rgba(66,133,244,.10), transparent 34%),
    radial-gradient(circle at 14% 96%, rgba(254,86,12,.08), transparent 32%),
    linear-gradient(180deg, #fff, #fbfdff) !important;
}

.gcss-compare-panel {
  min-height: 315px !important;
}

.gcss-flow-step h3 {
  min-height: 54px;
}

.gcss-cta .section-title {
  max-width: 860px !important;
}

@media (max-width: 1100px) {
  .partner-badge-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .partner-badge-card.wide img {
    max-height: 78px !important;
  }
}

@media (max-width: 780px) {
  .gcss-hero-badge {
    width: min(280px, 100%) !important;
  }

  .partner-badge-grid {
    grid-template-columns: 1fr !important;
  }

  .partner-badge-card img,
  .partner-badge-card:nth-child(1) img,
  .partner-badge-card:nth-child(2) img,
  .partner-badge-card.wide img {
    max-height: 86px !important;
  }
}


/* ============================================================
   v10 Google CSS global polish
   - smaller hero Google trust mark
   - no country/language chips in hero/report
   - global positioning language
   ============================================================ */

.gcss-hero-badge {
  display: none !important;
}

.gcss-hero-partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px 14px 10px 11px;
  border-radius: 20px;
  border: 1px solid rgba(5,43,66,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 32px rgba(5,43,66,.075);
  backdrop-filter: blur(14px);
}

.gcss-google-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  background:
    conic-gradient(from -30deg,
      #4285F4 0 25%,
      #34A853 25% 50%,
      #FBBC05 50% 75%,
      #EA4335 75% 100%);
}

.gcss-hero-partner-pill strong {
  display: block;
  color: #052b42;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -.01em;
}

.gcss-hero-partner-pill small {
  display: block;
  margin-top: 2px;
  color: rgba(5,43,66,.58);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 720;
}

.gcss-hero h1 {
  max-width: 680px !important;
}

.gcss-market-chips span:first-child {
  background: rgba(66,133,244,.10) !important;
  color: #276bd7 !important;
}

.gcss-market-chips span:nth-child(2) {
  background: rgba(52,168,83,.10) !important;
  color: #15924c !important;
}

.gcss-market-chips span:nth-child(3) {
  background: rgba(255,107,26,.10) !important;
  color: #db6118 !important;
}

.gcss-market-chips span:nth-child(4) {
  background: rgba(5,43,66,.06) !important;
  color: #052b42 !important;
}

.gcss-credentials {
  padding-top: 36px !important;
}

.partner-badge-card img {
  max-height: 76px !important;
}

.partner-badge-card:nth-child(1) img,
.partner-badge-card:nth-child(2) img {
  max-height: 88px !important;
}

.partner-badge-card.wide img {
  max-height: 66px !important;
}

@media (max-width: 780px) {
  .gcss-hero-partner-pill {
    border-radius: 18px;
    padding: 9px 12px 9px 10px;
  }

  .gcss-google-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 18px;
  }
}


/* ============================================================
   v11 Platform page — interactive AI platform rebuild
   ============================================================ */

.platform-ai-page .platform-hero,
.platform-ai-page .platform-os,
.platform-ai-page .platform-command-section,
.platform-ai-page .x-section.warm,
.platform-ai-page .how-section {
  display: none !important;
}

.platform-ai-hero {
  position: relative;
  min-height: 790px;
  padding: 152px 48px 108px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 16%, rgba(254,86,12,.12), transparent 30%),
    radial-gradient(circle at 22% 85%, rgba(66,133,244,.08), transparent 30%),
    linear-gradient(100deg, #eef7fb 0%, #ffffff 52%, #fff4ec 100%);
}

.platform-ai-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -8% 34%;
  height: 390px;
  background: linear-gradient(112deg, rgba(255,255,255,0), rgba(255,107,26,.10), rgba(255,255,255,.12));
  clip-path: polygon(0 28%, 100% 0, 100% 80%, 0 100%);
}

.platform-ai-hero::after {
  content: "";
  position: absolute;
  inset: -28% -16%;
  background:
    radial-gradient(circle at var(--platform-x, 72%) var(--platform-y, 25%), rgba(255,255,255,.54), transparent 27%),
    radial-gradient(circle at 18% 88%, rgba(255,255,255,.42), transparent 30%);
  filter: blur(34px);
  pointer-events: none;
}

.platform-ai-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 78px;
  align-items: center;
}

.platform-ai-title {
  margin: 0;
  max-width: 740px;
  color: #052b42;
  font-size: clamp(46px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -.064em;
  font-weight: 700;
  text-wrap: balance;
}

.platform-ai-lead {
  margin: 24px 0 0;
  max-width: 690px;
  color: rgba(5,43,66,.72);
  font-size: clamp(17px, 1.38vw, 20px);
  line-height: 1.58;
  font-weight: 530;
}

.ai-decision-lab {
  --mx: 64%;
  --my: 34%;
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(5,43,66,.08);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.62), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
  box-shadow: 0 34px 100px rgba(5,43,66,.13);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.ai-lab-glow {
  position: absolute;
  inset: -28%;
  background:
    conic-gradient(from 0deg at var(--mx) var(--my),
      rgba(254,86,12,0),
      rgba(254,86,12,.20),
      rgba(255,255,255,.45),
      rgba(66,133,244,.10),
      rgba(52,168,83,.10),
      rgba(254,86,12,0));
  filter: blur(18px);
  animation: aiLabAura 14s linear infinite;
}

@keyframes aiLabAura {
  from { transform: rotate(0deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1.08); }
}

.ai-lab-inner {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.ai-lab-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.ai-lab-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
  font-weight: 850;
}

.ai-lab-status.dark {
  background: rgba(5,43,66,.07);
  color: #052b42;
}

.ai-orbit-stage {
  position: relative;
  height: 330px;
  margin-bottom: 18px;
  border-radius: 30px;
  border: 1px solid rgba(5,43,66,.07);
  background:
    radial-gradient(circle at center, rgba(255,107,26,.14), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(247,251,253,.86));
  overflow: hidden;
}

.ai-orbit-stage::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(254,86,12,.25);
  animation: orbitSpinPlatform 16s linear infinite;
}

.ai-orbit-stage::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 1px solid rgba(5,43,66,.08);
  animation: orbitSpinPlatform 11s linear infinite reverse;
}

@keyframes orbitSpinPlatform {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ai-orbit-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(5,43,66,.07);
}

.ai-orbit-ring.ring-a {
  left: 12%;
  right: 12%;
  top: 18%;
  bottom: 18%;
  transform: rotate(-18deg);
}

.ai-orbit-ring.ring-b {
  left: 20%;
  right: 20%;
  top: 10%;
  bottom: 10%;
  transform: rotate(42deg);
  border-style: dashed;
  border-color: rgba(254,86,12,.20);
}

.ai-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: radial-gradient(circle at 34% 34%, #fff, #ffbd79 50%, #fe560c 100%);
  box-shadow: 0 0 0 18px rgba(254,86,12,.08), 0 18px 42px rgba(254,86,12,.20);
  animation: aiCorePulse 2.8s ease-in-out infinite;
}

@keyframes aiCorePulse {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

.ai-core strong {
  display: block;
  color: #052b42;
  font-size: 20px;
  line-height: 1;
}

.ai-core span {
  display: block;
  color: rgba(5,43,66,.60);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.ai-node {
  position: absolute;
  z-index: 3;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 14px 32px rgba(5,43,66,.08);
  color: #052b42;
  font-size: 12px;
  font-weight: 850;
}

.node-feed { left: 13%; top: 32%; animation: nodeFloatPlatform 4s ease-in-out infinite; }
.node-value { right: 13%; top: 27%; animation: nodeFloatPlatform 4.4s ease-in-out infinite .3s; }
.node-risk { left: 18%; bottom: 22%; animation: nodeFloatPlatform 4.2s ease-in-out infinite .5s; }
.node-action { right: 15%; bottom: 25%; animation: nodeFloatPlatform 4.6s ease-in-out infinite .8s; }

@keyframes nodeFloatPlatform {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(8px,-8px,0); }
}

.ai-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,107,26,.10), 0 0 22px rgba(255,107,26,.24);
  z-index: 4;
}

.ai-particle.p1 { left: 26%; top: 50%; animation: particleMove1 5s ease-in-out infinite; }
.ai-particle.p2 { right: 28%; top: 42%; animation: particleMove2 5.6s ease-in-out infinite; }
.ai-particle.p3 { left: 50%; bottom: 24%; animation: particleMove3 6s ease-in-out infinite; }

@keyframes particleMove1 {
  0%,100% { transform: translate(0,0); opacity:.45; }
  50% { transform: translate(150px,-55px); opacity:1; }
}

@keyframes particleMove2 {
  0%,100% { transform: translate(0,0); opacity:.45; }
  50% { transform: translate(-130px,70px); opacity:1; }
}

@keyframes particleMove3 {
  0%,100% { transform: translate(0,0); opacity:.45; }
  50% { transform: translate(80px,-110px); opacity:1; }
}

.ai-live-output {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 14px 34px rgba(5,43,66,.05);
}

.ai-live-output span {
  display: block;
  color: rgba(5,43,66,.52);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
}

.ai-live-output strong {
  color: #052b42;
  font-size: 18px;
  letter-spacing: -.035em;
}

.ai-live-output b {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
}

.ai-lab-bars {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.ai-lab-bars div {
  display: grid;
  grid-template-columns: 150px 1fr 54px;
  gap: 12px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(5,43,66,.07);
}

.ai-lab-bars span {
  color: rgba(5,43,66,.62);
  font-size: 12px;
  font-weight: 800;
}

.ai-lab-bars i {
  height: 8px;
  border-radius: 999px;
  background: rgba(5,43,66,.08);
  overflow: hidden;
  position: relative;
}

.ai-lab-bars i::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fe560c, #ffbd79);
  animation: labBarPulse 2.6s ease-in-out infinite;
}

@keyframes labBarPulse {
  0%,100% { transform: scaleX(.92); transform-origin:left; }
  50% { transform: scaleX(1); transform-origin:left; }
}

.ai-lab-bars b {
  color: #052b42;
  font-size: 12px;
  text-align: right;
}

.platform-signal-stack {
  padding: 108px 48px;
  background: #f4f8fb;
}

.platform-signal-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.platform-signal-head {
  max-width: 860px;
  margin-bottom: 46px;
}

.signal-stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.signal-stack-grid article {
  position: relative;
  min-height: 220px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 12px 34px rgba(5,43,66,.05);
  overflow: hidden;
}

.signal-stack-grid article::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #fe560c, #ffbd79, transparent);
}

.signal-stack-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255,255,255,.68) 52%, transparent 78%);
  transform: translateX(-130%);
  animation: signalCardSweep 7s ease-in-out infinite;
}

.signal-stack-grid article:nth-child(2)::after { animation-delay: .4s; }
.signal-stack-grid article:nth-child(3)::after { animation-delay: .8s; }
.signal-stack-grid article:nth-child(4)::after { animation-delay: 1.2s; }
.signal-stack-grid article:nth-child(5)::after { animation-delay: 1.6s; }
.signal-stack-grid article:nth-child(6)::after { animation-delay: 2s; }

@keyframes signalCardSweep {
  0%, 60%, 100% { transform: translateX(-130%); }
  75% { transform: translateX(130%); }
}

.signal-stack-grid b {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  margin-bottom: 18px;
}

.signal-stack-grid strong {
  position: relative;
  z-index: 2;
  display: block;
  color: #052b42;
  font-size: 18px;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

.signal-stack-grid span {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.platform-simulator-section {
  padding: 112px 48px;
  background:
    radial-gradient(circle at 78% 18%, rgba(254,86,12,.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.platform-simulator-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 74px;
  align-items: center;
}

.simulator-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.simulator-tabs button {
  appearance: none;
  border: 1px solid rgba(5,43,66,.10);
  background: #fff;
  color: rgba(5,43,66,.64);
  border-radius: 999px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.simulator-tabs button:hover,
.simulator-tabs button.active {
  background: #052b42;
  color: #fff;
  border-color: #052b42;
  transform: translateY(-1px);
}

.simulator-console {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 28px 80px rgba(5,43,66,.10);
}

.simulator-console::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 75% 15%, rgba(254,86,12,.12), transparent 25%),
    radial-gradient(circle at 20% 90%, rgba(66,133,244,.08), transparent 30%);
  pointer-events: none;
}

.simulator-console > * {
  position: relative;
  z-index: 2;
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.console-top span,
.console-top b {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 12px;
  font-weight: 850;
}

.console-top b {
  background: rgba(5,43,66,.07);
  color: #052b42;
}

.console-main h3 {
  margin: 0;
  color: #052b42;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.console-main p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.console-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.console-scores div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fbfcfd;
}

.console-scores span {
  display: block;
  color: rgba(5,43,66,.54);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
}

.console-scores strong {
  display: block;
  color: #052b42;
  font-size: 24px;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.console-scores i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5,43,66,.08);
}

.console-scores i::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fe560c, #ffbd79);
}

.console-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.console-route div {
  padding: 14px;
  border-radius: 17px;
  border: 1px solid rgba(5,43,66,.07);
  background: #fff;
}

.console-route b {
  display: block;
  color: #db6118;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
}

.console-route span {
  color: #052b42;
  font-size: 13px;
  font-weight: 800;
}

.operator-workflow-section {
  padding: 112px 48px;
  background: #fff;
}

.operator-workflow-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 74px;
  align-items: center;
}

.operator-workflow-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.workflow-column {
  position: relative;
  min-height: 320px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(5,43,66,.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,26,.08), transparent 30%),
    #fff;
  box-shadow: 0 16px 44px rgba(5,43,66,.055);
  overflow: hidden;
}

.workflow-column::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #fe560c, #ffbd79, transparent);
}

.workflow-label {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,107,26,.10);
  color: #db6118;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.workflow-column h3 {
  margin: 0 0 12px;
  color: #052b42;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.workflow-column p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.platform-control-section {
  padding: 110px 48px;
  background: #f4f8fb;
}

.platform-control-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.control-card {
  min-height: 390px;
  border-radius: 34px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  box-shadow: 0 22px 60px rgba(5,43,66,.07);
}

.control-card.dark {
  background:
    radial-gradient(circle at 88% 12%, rgba(254,86,12,.20), transparent 34%),
    linear-gradient(180deg, #052b42, #0b3b59);
  color: #fff;
}

.control-card h2 {
  margin: 0;
  color: #052b42;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.control-card.dark h2 {
  color: #fff;
}

.control-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.control-card.dark p {
  color: rgba(255,255,255,.72);
}

.platform-cta {
  padding: 116px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 56% 65% at 50% 100%, rgba(255,107,26,.14) 0%, transparent 72%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.platform-cta-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.platform-cta .section-title {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.platform-cta .section-sub {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1180px) {
  .signal-stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .platform-ai-hero-inner,
  .platform-simulator-inner,
  .operator-workflow-inner {
    grid-template-columns: 1fr;
  }

  .operator-workflow-board,
  .platform-control-inner {
    grid-template-columns: 1fr;
  }

  .operator-workflow-inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 780px) {
  .platform-ai-hero,
  .platform-signal-stack,
  .platform-simulator-section,
  .operator-workflow-section,
  .platform-control-section,
  .platform-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .platform-ai-hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 74px;
  }

  .platform-ai-hero-inner,
  .platform-signal-inner,
  .platform-simulator-inner,
  .operator-workflow-inner,
  .platform-control-inner,
  .platform-cta-inner {
    width: calc(100% - 28px);
  }

  .platform-ai-title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .ai-decision-lab {
    min-height: auto;
  }

  .ai-orbit-stage {
    height: 280px;
  }

  .ai-lab-bars div,
  .ai-live-output,
  .console-scores,
  .console-route {
    grid-template-columns: 1fr;
  }

  .signal-stack-grid {
    grid-template-columns: 1fr;
  }

  .workflow-column {
    min-height: 240px;
  }
}

/* === 04-production-phases.css === */
/* Phase 1: production hygiene, accessibility and static intake safety */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form label {
  display: block;
}

.contact-form .btn {
  width: 100%;
}

.form-note {
  margin: 0;
  color: rgba(5, 43, 66, .62);
  font-size: 13px;
  line-height: 1.5;
}

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

/* ============================================================
   Phase 3 — commercial proof, objections and explainable output
   ============================================================ */
.commercial-proof .x-head {
  max-width: 940px;
}

.commercial-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

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

.evidence-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.objection-card,
.evidence-card,
.output-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 26px;
  padding: 26px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(5,43,66,.07);
}

.proof-card.wide,
.objection-card.wide,
.output-card.wide {
  grid-column: span 2;
}

.proof-card::before,
.objection-card::before,
.evidence-card::before,
.output-card::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 82px;
  height: 42px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(254,86,12,0), rgba(254,86,12,.12), rgba(254,86,12,0)),
    repeating-linear-gradient(0deg, rgba(254,86,12,.14) 0 2px, transparent 2px 8px);
  opacity: .42;
}

.proof-card small,
.objection-card small,
.evidence-card small,
.output-card small,
.field-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.proof-card h3,
.objection-card h3,
.evidence-card h3,
.output-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #052b42;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.proof-card p,
.objection-card p,
.evidence-card p,
.output-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.proof-list,
.signal-table,
.field-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
}

.proof-item,
.signal-row,
.field-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 15px;
  border: 1px solid rgba(5,43,66,.075);
  border-radius: 17px;
  background: rgba(255,255,255,.82);
}

.proof-item b,
.signal-row b,
.field-row b {
  color: #db6118;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.proof-item strong,
.signal-row strong,
.field-row strong {
  color: #052b42;
  font-size: 14px;
  line-height: 1.25;
}

.proof-item span,
.signal-row span,
.field-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.output-card.dark {
  background: linear-gradient(145deg, #052b42, #083a56);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

.output-card.dark h3,
.output-card.dark .field-row strong {
  color: #fff;
}

.output-card.dark p,
.output-card.dark .field-row span {
  color: rgba(255,255,255,.70);
}

.output-card.dark .field-row {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.commercial-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,107,26,.08);
  color: #7c3a17;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 980px) {
  .commercial-split,
  .proof-grid,
  .objection-grid,
  .evidence-grid,
  .evidence-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .proof-card.wide,
  .objection-card.wide,
  .output-card.wide {
    grid-column: auto;
  }

  .proof-item,
  .signal-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .proof-item span,
  .signal-row span,
  .field-row span {
    text-align: left;
  }
}



/* ============================================================
   Phase 4 — pricing, resources, evidence and intake conversion
   ============================================================ */
.phase4-pricing-hero .x-title,
.phase4-resources-hero .x-title,
.phase4-case-hero .x-title,
.phase4-contact-hero .x-title {
  max-width: 980px;
}

.pricing-cards--phase4 .pricing-card small {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-cards--phase4 .pricing-card.featured small {
  background: rgba(255,255,255,.10);
  color: #ffb48a;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-card.featured .price-list li {
  color: rgba(255,255,255,.76);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff6b1a;
}

.scope-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scope-factor {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 48px rgba(5,43,66,.06);
}

.scope-factor b,
.case-question-grid b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 12px;
  font-weight: 850;
}

.scope-factor strong,
.case-question-grid strong {
  color: #052b42;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.scope-factor span,
.case-question-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-split {
  align-items: stretch;
}

.pricing-table--phase4 .pricing-table-row > div {
  min-height: 58px;
}

.centered-cta {
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.centered-cta .section-title,
.centered-cta .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.resource-feature--link,
.route-row--link,
.guide-card,
.resource-path a {
  text-decoration: none;
}

.resource-feature--link {
  display: block;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.resource-feature--link:hover,
.guide-card:hover,
.resource-path:hover,
.evidence-story:hover {
  transform: translateY(-2px);
  border-color: rgba(254,86,12,.22);
  box-shadow: 0 28px 76px rgba(5,43,66,.10);
}

.resource-link-label,
.guide-card span,
.resource-path a {
  display: inline-flex;
  margin-top: 20px;
  color: #db6118;
  font-weight: 800;
  font-size: 13px;
}

.route-row--link {
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.route-row--link:hover {
  transform: translateX(2px);
  border-color: rgba(254,86,12,.20);
  box-shadow: 0 16px 42px rgba(5,43,66,.06);
}

.guide-library-grid,
.resource-path-grid,
.guide-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-card,
.resource-path,
.guide-detail-card,
.evidence-story,
.case-question-grid article,
.contact-expectation-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 26px;
  padding: 26px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(5,43,66,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.guide-card small,
.resource-path small,
.guide-detail-card small,
.evidence-story small,
.contact-expectation-card small {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.guide-card h3,
.resource-path h3,
.guide-detail-card h3,
.evidence-story h3 {
  margin: 0 0 12px;
  color: #052b42;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.guide-card p,
.resource-path p,
.guide-detail-card p,
.evidence-story p,
.contact-expectation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.guide-hero {
  padding: 150px 48px 98px;
  background: linear-gradient(180deg, #f4f8fb 0%, #fffaf6 100%);
}

.guide-hero-inner .x-title {
  max-width: 980px;
}

.case-report--phase4 .mini-proof-table {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mini-proof-table div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(5,43,66,.07);
  border-radius: 16px;
  background: #fffaf6;
}

.mini-proof-table b {
  color: #db6118;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.mini-proof-table span {
  color: #052b42;
  font-weight: 700;
  font-size: 13px;
}

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

.story-metric {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 20px 0;
  padding: 18px;
  border-radius: 20px;
  background: #fffaf6;
  border: 1px solid rgba(254,86,12,.10);
}

.story-metric strong {
  color: #fe560c;
  font-size: 54px;
  line-height: .86;
  letter-spacing: -.07em;
}

.story-metric span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.evidence-story ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evidence-story li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.evidence-story li b {
  color: #052b42;
}

.case-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-question-grid article {
  display: grid;
  gap: 10px;
}

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

.contact-form--phase4 textarea[name="boundaries"] {
  min-height: 100px;
}

.contact-expectation-card {
  margin-top: 18px;
}

.contact-support-section {
  padding-top: 90px;
}

@media (max-width: 980px) {
  .scope-factor-grid,
  .guide-library-grid,
  .resource-path-grid,
  .guide-detail-grid,
  .evidence-story-grid,
  .case-question-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .mini-proof-table div {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Phase 6 — visual QA, mobile polish and safer motion behaviour
   ============================================================ */
.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

@media (max-width: 780px) {
  body.v5 .site-nav {
    position: sticky;
    top: 0;
    height: 66px;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(7,26,46,.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(7,26,46,.045);
  }

  body.v5 .nav-shell {
    width: calc(100% - 28px);
    height: 66px;
    justify-content: space-between;
    gap: 14px;
  }

  body.v5 .nav-links,
  body.v5 .nav-actions,
  body.v5 .nav-search {
    display: none;
  }

  body.v5 .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 92px;
    height: 42px;
    border: 1px solid rgba(7,26,46,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: #052b42;
    font: inherit;
    font-size: 13px;
    font-weight: 760;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(7,26,46,.055);
  }

  body.v5 .mobile-menu-toggle-bars {
    display: grid;
    gap: 4px;
    width: 16px;
  }

  body.v5 .mobile-menu-toggle-bars i {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: #052b42;
    transition: transform .18s ease, opacity .18s ease;
  }

  body.v5 .site-nav.is-mobile-menu-open .mobile-menu-toggle-bars i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.v5 .site-nav.is-mobile-menu-open .mobile-menu-toggle-bars i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  body.v5 .mobile-menu-panel[hidden] {
    display: none;
  }

  body.v5 .mobile-menu-panel {
    display: block;
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 84px);
    overflow: auto;
    padding: 16px;
    border: 1px solid rgba(7,26,46,.10);
    border-radius: 24px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 28px 80px rgba(7,26,46,.18);
    backdrop-filter: blur(18px);
  }

  body.v5 .mobile-menu-grid {
    display: grid;
    gap: 10px;
  }

  body.v5 .mobile-menu-group {
    display: grid;
    gap: 2px;
    padding: 13px;
    border: 1px solid rgba(7,26,46,.065);
    border-radius: 18px;
    background: #f7fafc;
  }

  body.v5 .mobile-menu-group strong {
    margin-bottom: 6px;
    color: rgba(5,43,66,.48);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  body.v5 .mobile-menu-group a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 10px;
    border-radius: 13px;
    color: #052b42;
    font-size: 14px;
    font-weight: 680;
  }

  body.v5 .mobile-menu-group a:hover,
  body.v5 .mobile-menu-group a:focus-visible {
    background: rgba(254,86,12,.08);
    outline: none;
  }

  body.v5 .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  body.v5 .mobile-menu-actions .btn {
    width: 100%;
  }

  body.v5 .guide-hero {
    padding: 82px 0 70px;
  }

  body.v5 .guide-hero-inner {
    width: calc(100% - 28px);
  }

  body.v5 .guide-hero-inner .x-title {
    font-size: clamp(38px, 11vw, 56px);
  }

  body.v5 .x-actions {
    gap: 10px;
  }

  body.v5 .x-actions .btn,
  body.v5 .hero-buttons .btn {
    width: 100%;
  }

  body.v5 .story-metric {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .x-card::before,
  .proof-card::before,
  .objection-card::before,
  .evidence-card::before,
  .output-card::before,
  .resource-feature--link,
  .guide-card,
  .resource-path,
  .evidence-story,
  .mobile-menu-toggle-bars i {
    animation: none !important;
    transition: none !important;
  }

  .x-card:hover::after {
    transform: none !important;
  }
}



/* ============================================================
   Phase 7 — production readiness, analytics hooks and form states
   ============================================================ */
.contact-form--phase7 {
  position: relative;
}

.contact-form--phase7 .hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.consent-row {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 13px;
  border: 1px solid rgba(5,43,66,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  color: rgba(5,43,66,.72);
  font-size: 13px;
  line-height: 1.45;
}

.contact-form .consent-row input[type="checkbox"] {
  width: 17px;
  min-width: 17px;
  height: 17px;
  margin-top: 1px;
  padding: 0;
  border-radius: 5px;
  accent-color: #fe560c;
}

.consent-row a {
  color: #052b42;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note.is-success {
  color: #0f6b46;
}

.form-note.is-error {
  color: #a33a1b;
}

.form-note.is-loading {
  color: #5b6471;
}

/* ============================================================
   Phase 8 — final legal/deploy readiness polish
   ============================================================ */
.legal-summary-card .legal-note {
  margin-top: 18px;
}

.legal-note {
  padding: 14px 15px;
  border: 1px solid rgba(254,86,12,.16);
  border-radius: 18px;
  background: rgba(255,244,237,.72);
  color: rgba(5,43,66,.70);
  font-size: 14px;
  line-height: 1.55;
}

.legal-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.legal-detail-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 80px rgba(5,43,66,.08);
}

.legal-detail-card span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff0e9;
  color: #fe560c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.legal-detail-card h3 {
  margin: 18px 0 9px;
  color: #052b42;
  font-size: 22px;
  letter-spacing: -.055em;
  line-height: .98;
}

.legal-detail-card h3 a {
  color: inherit;
  text-decoration: none;
}

.legal-detail-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-detail-card p {
  margin: 0;
  color: rgba(38,62,82,.72);
  font-weight: 560;
  line-height: 1.55;
}

.legal-detail-card p a {
  color: #052b42;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.error-hero .x-actions {
  margin-top: 28px;
}

.error-link-grid {
  margin-top: 42px;
}

.cookie-consent-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: min(430px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid rgba(5,43,66,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 90px rgba(5,43,66,.18);
  color: #052b42;
}

.cookie-consent-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  letter-spacing: -.03em;
}

.cookie-consent-panel p {
  margin: 0 0 14px;
  color: rgba(38,62,82,.72);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.45;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent-actions .btn {
  min-height: 38px;
  padding: 10px 14px;
  font-size: 12px;
}

@media (max-width: 920px) {
  .legal-detail-grid {
    grid-template-columns: 1fr;
  }

  .legal-detail-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .cookie-consent-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .cookie-consent-actions .btn {
    width: 100%;
  }
}

/* ============================================================
   Phase 9 — requested visual correction pass
   - main page titles capped at 62px
   - hero titles centered consistently
   - About page returned to the light ShopSailor system
   - Contact intro simplified for faster scanning
   ============================================================ */

body.v5 .hero h1,
body.v5 .x-title,
body.v5 .platform-ai-title,
body.v5 .gcss-hero h1 {
  max-width: 960px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(42px, 4.35vw, 62px) !important;
  line-height: 1.01 !important;
  text-align: center !important;
  letter-spacing: -.058em !important;
}

body.v5 .hero-copy,
body.v5 .platform-ai-copy,
body.v5 .gcss-copy,
body.v5 .phase4-contact-hero .contact-intro,
body.v5 .phase4-pricing-hero,
body.v5 .phase4-resources-hero,
body.v5 .phase4-case-hero,
body.v5 .guide-hero-inner,
body.v5 .about-hero .about-inner > div:first-child {
  text-align: center !important;
}

body.v5 .hero-lead,
body.v5 .x-lead,
body.v5 .platform-ai-lead,
body.v5 .gcss-lead,
body.v5 .section-sub {
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v5 .hero-buttons,
body.v5 .hero-trust,
body.v5 .x-actions,
body.v5 .x-pills,
body.v5 .gcss-actions,
body.v5 .gcss-trust,
body.v5 .platform-ai-copy .x-actions,
body.v5 .platform-ai-copy .x-pills {
  justify-content: center !important;
}

body.v5 .gcss-hero-badge,
body.v5 .gcss-hero-partner-pill {
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v5 .about-hero {
  color: #052b42 !important;
  background:
    radial-gradient(circle at 76% 14%, rgba(254,86,12,.12), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(66,133,244,.07), transparent 30%),
    linear-gradient(180deg, #eef7fb 0%, #fffaf6 76%, #fff 100%) !important;
}

body.v5 .about-hero::before {
  inset: auto -10% -8% 32% !important;
  height: 360px !important;
  background: linear-gradient(112deg, rgba(255,255,255,0), rgba(255,107,26,.10), rgba(255,255,255,.12)) !important;
  filter: blur(18px) !important;
  opacity: 1 !important;
}

body.v5 .about-hero .x-title,
body.v5 .about-hero .x-title.light {
  color: #052b42 !important;
}

body.v5 .about-hero .x-lead,
body.v5 .about-hero .x-lead.light {
  color: rgba(5,43,66,.72) !important;
}

body.v5 .about-hero .belief {
  background: rgba(255,255,255,.86) !important;
  border: 1px solid rgba(5,43,66,.08) !important;
  box-shadow: 0 18px 52px rgba(5,43,66,.07) !important;
}

body.v5 .about-hero .belief strong {
  color: #052b42 !important;
}

body.v5 .about-hero .belief span {
  color: rgba(5,43,66,.66) !important;
}

body.v5 .phase4-contact-hero .contact-inner {
  grid-template-columns: .78fr 1.22fr !important;
  gap: 66px !important;
  align-items: center !important;
}

body.v5 .phase4-contact-hero .contact-intro {
  max-width: 600px !important;
}

body.v5 .phase4-contact-hero .contact-intro .x-lead {
  max-width: 560px !important;
}

.contact-simple-points {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.contact-simple-points li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-simple-points li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fe560c;
  box-shadow: 0 0 0 6px rgba(254,86,12,.08);
}

.contact-simple-points strong {
  display: block;
  color: #052b42;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.contact-simple-note {
  max-width: 520px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.72);
  color: rgba(5,43,66,.68);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

body.v5 .phase4-contact-hero .intake-steps,
body.v5 .phase4-contact-hero .contact-expectation-card {
  display: none !important;
}

@media (max-width: 1100px) {
  body.v5 .phase4-contact-hero .contact-inner {
    grid-template-columns: 1fr !important;
  }

  body.v5 .phase4-contact-hero .contact-intro {
    max-width: 760px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 780px) {
  body.v5 .hero h1,
  body.v5 .x-title,
  body.v5 .platform-ai-title,
  body.v5 .gcss-hero h1 {
    font-size: clamp(36px, 10.4vw, 52px) !important;
    letter-spacing: -.052em !important;
  }

  .contact-simple-points,
  .contact-simple-note {
    max-width: 100%;
  }
}


/* ============================================================
   Phase 10 — selective hero alignment correction
   - keep the 62px title cap
   - left-align split heroes with visual/product content next to the copy
   - only center single-column/full-width hero treatments
   ============================================================ */

body.v5 .hero h1,
body.v5 .x-title,
body.v5 .platform-ai-title,
body.v5 .gcss-hero h1 {
  font-size: clamp(42px, 4.35vw, 62px) !important;
  line-height: 1.01 !important;
  letter-spacing: -.058em !important;
}

body.v5 .hero h1,
body.v5 .x-title,
body.v5 .platform-ai-title,
body.v5 .gcss-hero h1 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.v5 .hero-copy,
body.v5 .platform-ai-copy,
body.v5 .gcss-copy,
body.v5 .phase4-contact-hero .contact-intro,
body.v5 .about-hero .about-inner > div:first-child {
  text-align: left !important;
}

body.v5 .hero-lead,
body.v5 .x-lead,
body.v5 .platform-ai-lead,
body.v5 .gcss-lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.v5 .hero-buttons,
body.v5 .hero-trust,
body.v5 .x-actions,
body.v5 .x-pills,
body.v5 .gcss-actions,
body.v5 .gcss-trust,
body.v5 .platform-ai-copy .x-actions,
body.v5 .platform-ai-copy .x-pills {
  justify-content: flex-start !important;
}

body.v5 .gcss-hero-badge,
body.v5 .gcss-hero-partner-pill {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.v5 .phase4-pricing-hero,
body.v5 .guide-hero-inner,
body.v5 .legal-hero,
body.v5 .error-hero {
  text-align: center !important;
}

body.v5 .phase4-pricing-hero .x-title,
body.v5 .guide-hero-inner .x-title,
body.v5 .legal-hero .x-title,
body.v5 .error-hero .x-title,
body.v5 .legal-hero h1,
body.v5 .error-hero h1 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v5 .phase4-pricing-hero .x-lead,
body.v5 .guide-hero-inner .x-lead,
body.v5 .legal-hero .x-lead,
body.v5 .error-hero .x-lead,
body.v5 .legal-hero p,
body.v5 .error-hero p {
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v5 .phase4-pricing-hero .x-actions,
body.v5 .guide-hero-inner .x-actions,
body.v5 .legal-hero .x-actions,
body.v5 .error-hero .x-actions,
body.v5 .centered-cta .x-actions {
  justify-content: center !important;
}

@media (max-width: 780px) {
  body.v5 .hero h1,
  body.v5 .x-title,
  body.v5 .platform-ai-title,
  body.v5 .gcss-hero h1 {
    font-size: clamp(36px, 10.4vw, 52px) !important;
    letter-spacing: -.052em !important;
  }
}

/* ============================================================
   Phase 11 — cleaner contact page
   - reduce visible intake fields
   - remove left-side visual noise
   - keep the shared header/footer and production form behaviour
   ============================================================ */

body.v5 .phase11-contact-clean {
  padding-top: 136px !important;
  padding-bottom: 96px !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(254,86,12,.055), transparent 28%),
    linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%) !important;
}

body.v5 .phase11-contact-clean .contact-inner {
  grid-template-columns: minmax(340px, .72fr) minmax(520px, 1fr) !important;
  gap: 78px !important;
  align-items: center !important;
}

body.v5 .phase11-contact-clean .contact-intro {
  max-width: 520px !important;
}

body.v5 .phase11-contact-clean .x-title {
  max-width: 520px !important;
}

body.v5 .phase11-contact-clean .x-lead {
  max-width: 500px !important;
  margin-top: 22px !important;
}

.contact-clean-note {
  max-width: 420px;
  margin: 30px 0 0;
  color: rgba(5,43,66,.62);
  font-size: 15px;
  line-height: 1.6;
}

body.v5 .phase11-contact-clean .contact-card {
  max-width: 720px;
  padding: 34px !important;
  border-radius: 34px !important;
  border-color: rgba(5,43,66,.075) !important;
  box-shadow: 0 24px 70px rgba(5,43,66,.075) !important;
}

body.v5 .phase11-contact-clean .contact-card .section-title {
  margin: 0 0 24px !important;
  font-size: clamp(34px, 3.25vw, 48px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em !important;
}

body.v5 .phase11-contact-clean .contact-form {
  gap: 12px !important;
}

body.v5 .phase11-contact-clean .contact-form input,
body.v5 .phase11-contact-clean .contact-form textarea,
body.v5 .phase11-contact-clean .contact-form select {
  min-height: 52px;
  padding: 13px 15px !important;
  border-radius: 15px !important;
  border-color: rgba(5,43,66,.105) !important;
  background: rgba(255,255,255,.94) !important;
}

body.v5 .phase11-contact-clean .contact-form textarea {
  min-height: 136px !important;
}

body.v5 .phase11-contact-clean .consent-row {
  margin-top: 2px;
  padding: 11px 13px !important;
  background: rgba(255,255,255,.64) !important;
}

body.v5 .phase11-contact-clean .contact-form .btn {
  min-height: 52px;
}

body.v5 .phase11-contact-clean .form-note {
  margin-top: 2px;
  color: rgba(5,43,66,.55);
}

.contact-support-lite {
  padding: 72px 48px 78px;
  background: #fff;
}

.contact-support-lite__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  border: 1px solid rgba(5,43,66,.075);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,247,242,.72));
  box-shadow: 0 18px 48px rgba(5,43,66,.055);
}

.contact-support-lite__panel p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(5,43,66,.68);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  body.v5 .phase11-contact-clean .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  body.v5 .phase11-contact-clean .contact-intro,
  body.v5 .phase11-contact-clean .x-title,
  body.v5 .phase11-contact-clean .x-lead,
  .contact-clean-note {
    max-width: 680px !important;
  }
}

@media (max-width: 760px) {
  body.v5 .phase11-contact-clean {
    padding: 104px 20px 58px !important;
  }

  body.v5 .phase11-contact-clean .contact-card {
    padding: 22px !important;
    border-radius: 26px !important;
  }

  body.v5 .phase11-contact-clean .contact-card .section-title {
    font-size: clamp(30px, 9vw, 40px) !important;
  }

  .contact-support-lite {
    padding: 52px 20px 58px;
  }

  .contact-support-lite__panel {
    display: grid;
    padding: 24px;
  }
}



/* ============================================================
   Phase 12 — navigation/contact cleanup
   - no Contact Sales header button
   - Platform access becomes Login
   - hero kickers removed from markup
   - email addresses are not mailto links in navigation/footer
   ============================================================ */

body.v5 .footer-contact-text,
body.v5 .contact-support-email {
  display: inline-flex;
  align-items: center;
  color: rgba(5,43,66,.62);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

body.v5 .contact-support-email {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.82);
  white-space: nowrap;
}

body.v5 .nav-actions .btn:only-child,
body.v5 .mobile-menu-actions .btn:only-child {
  min-width: 104px;
  justify-content: center;
}


/* Phase 13: merchant-safe shopping ranking animation */
.shopping-rank-stage {
  display: grid;
  gap: 16px;
}

.shopping-rank-frame {
  padding: 20px;
  border-radius: 34px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 54px rgba(5,43,66,.08);
}

.shopping-rank-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: #5f7285;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.shopping-rank-svg {
  width: 100%;
  height: auto;
  display: block;
}

.rank-search,
.rank-status,
.rank-card-title,
.rank-card-sub,
.rank-lane-labels text,
.rank-pill-text,
.rank-pill-featured-text {
  font-family: Inter, sans-serif;
}

.rank-search {
  fill: #476075;
  font-size: 14px;
  font-weight: 600;
}

.rank-status {
  fill: #db6118;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rank-lane-labels text {
  fill: #8b9aad;
  font-size: 14px;
  font-weight: 700;
}

.rank-rise-track {
  fill: none;
  stroke: rgba(255,125,42,.38);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  animation: rankTrackPulse 4s ease-in-out infinite;
}

.rank-card {
  transform-box: fill-box;
  transform-origin: center;
}

.rank-card-bg {
  fill: rgba(255,255,255,.96);
  stroke: rgba(5,43,66,.09);
  filter: url(#rankShadow);
}

.rank-card-featured-bg {
  fill: url(#rankOrange);
  stroke: rgba(255,125,42,.42);
  filter: url(#rankGlow);
}

.rank-thumb {
  fill: #edf4f8;
}

.rank-thumb-mark {
  fill: #90a3b6;
}

.rank-thumb-featured {
  fill: rgba(255,255,255,.22);
}

.rank-thumb-featured-mark {
  fill: #fff7ef;
}

.rank-card-title {
  fill: #10253b;
  font-size: 15px;
  font-weight: 800;
}

.rank-card-sub {
  fill: #698095;
  font-size: 11.5px;
  font-weight: 600;
}

.featured-text,
.featured-sub,
.rank-pill-featured-text {
  fill: #ffffff;
}

.rank-pill {
  fill: #eef4f8;
}

.rank-pill-text,
.rank-pill-featured-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-anchor: middle;
}

.rank-pill-text {
  fill: #456073;
}

.rank-pill-featured {
  fill: rgba(255,255,255,.18);
  stroke: rgba(255,255,255,.28);
}

.comp-a { animation: merchantRankCompA 11s ease-in-out infinite; }
.comp-b { animation: merchantRankCompB 11s ease-in-out infinite; }
.featured { animation: merchantRankFeatured 11s ease-in-out infinite; }
.comp-c { animation: merchantRankCompC 11s ease-in-out infinite; }
.comp-d { animation: merchantRankCompD 11s ease-in-out infinite; }
.comp-e { animation: merchantRankCompE 11s ease-in-out infinite; }

@keyframes merchantRankCompA {
  0%, 18% { transform: translate(74px, 106px); }
  32%, 68% { transform: translate(74px, 172px); }
  82%, 100% { transform: translate(74px, 106px); }
}

@keyframes merchantRankCompB {
  0%, 18% { transform: translate(92px, 172px); }
  32%, 68% { transform: translate(92px, 238px); }
  82%, 100% { transform: translate(92px, 172px); }
}

@keyframes merchantRankFeatured {
  0%, 18% { transform: translate(64px, 238px) scale(.96); }
  32%, 68% { transform: translate(56px, 104px) scale(1.02); }
  82%, 100% { transform: translate(64px, 238px) scale(.96); }
}

@keyframes merchantRankCompC {
  0%, 18% { transform: translate(104px, 304px); }
  32%, 68% { transform: translate(104px, 304px); }
  82%, 100% { transform: translate(104px, 304px); }
}

@keyframes merchantRankCompD {
  0%, 18% { transform: translate(84px, 106px); opacity: 0; }
  19%, 100% { opacity: 1; }
  32%, 68% { transform: translate(84px, 370px); }
  82%, 100% { transform: translate(84px, 370px); }
}

@keyframes merchantRankCompE {
  0%, 18% { transform: translate(98px, 370px); }
  32%, 68% { transform: translate(98px, 370px); opacity: .58; }
  82%, 100% { transform: translate(98px, 370px); opacity: 1; }
}

@keyframes rankTrackPulse {
  0%, 100% { stroke-opacity: .28; }
  50% { stroke-opacity: .7; }
}

@media (max-width: 1100px) {
  .shopping-rank-topbar {
    font-size: 11px;
  }
}

@media (max-width: 780px) {
  .shopping-rank-frame {
    padding: 14px;
    border-radius: 28px;
  }

  .shopping-rank-topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .shopping-rank-legend {
    gap: 8px;
  }

  .shopping-rank-legend span {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rank-rise-track,
  .comp-a,
  .comp-b,
  .featured,
  .comp-c,
  .comp-d,
  .comp-e {
    animation: none !important;
  }

  .featured {
    transform: translate(56px, 104px) scale(1.02);
  }

  .comp-a { transform: translate(74px, 172px); }
  .comp-b { transform: translate(92px, 238px); }
  .comp-c { transform: translate(104px, 304px); }
  .comp-d { transform: translate(84px, 370px); }
  .comp-e { transform: translate(98px, 370px); opacity: .58; }
}


/* Phase 14/15/16: horizontal Google Shopping style animation */
.shopping-carousel-stage {
  display: grid;
}

.shopping-carousel-frame {
  padding: 20px;
  border-radius: 34px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 44px rgba(5,43,66,.07);
}

.shopping-carousel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: #5f7285;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.shopping-browser-shell {
  border-radius: 30px;
  border: 1px solid rgba(5,43,66,.08);
  background: linear-gradient(180deg, #fffbf8 0%, #fff6ef 100%);
  padding: 20px;
}

.shopping-searchbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.08);
  color: #435b70;
  font-weight: 700;
}

.shopping-searchbar small {
  color: #db6118;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shopping-channel-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.shopping-channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(5,43,66,.08);
  color: #4e6478;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}

.shopping-channel-pill img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 auto;
}

.shopping-search-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #a8b4bf;
  position: relative;
  flex: 0 0 auto;
}

.shopping-search-dot::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background: #a8b4bf;
  right: -6px;
  bottom: -2px;
  transform: rotate(45deg);
  border-radius: 999px;
}

.shopping-products-window {
  position: relative;
  margin-top: 18px;
  padding: 12px 0 6px;
  overflow: hidden;
}

.shopping-products-track {
  position: relative;
  height: 232px;
}

.shopping-card {
  position: absolute;
  top: 0;
  width: 184px;
  min-height: 214px;
  padding: 14px;
  border-radius: 23px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 28px rgba(5,43,66,.055);
  transform-origin: center;
  will-change: transform, opacity;
}

.shopping-card::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 58px;
  height: 1px;
  background: rgba(5,43,66,.055);
}

.shopping-card-media {
  --shoe-main: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.75));
  --shoe-sole: #fff7ef;
  --shoe-lace: rgba(255,255,255,.86);
  --shoe-opening: rgba(255,255,255,.36);
  --shoe-heel-color: rgba(255,255,255,.24);
  height: 104px;
  border-radius: 18px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #edf4f8, #dce6ef);
  position: relative;
  overflow: hidden;
}

.shopping-card-media::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
}

.shopping-card-media::after {
  content: '';
  position: absolute;
  left: 36px;
  width: 86px;
  bottom: 20px;
  height: 10px;
  border-radius: 12px;
  background: rgba(5,43,66,.16);
  filter: blur(6px);
  opacity: .16;
}

.shopping-card-media .shoe-upper,
.shopping-card-media .shoe-sole,
.shopping-card-media .shoe-laces,
.shopping-card-media .shoe-opening,
.shopping-card-media .shoe-heel {
  position: absolute;
  display: block;
}

.shopping-card-media .shoe-upper {
  left: 18px;
  top: 33px;
  width: 112px;
  height: 40px;
  border-radius: 34px 34px 28px 18px;
  background: var(--shoe-main);
  transform: rotate(-8deg);
  box-shadow: inset -12px -10px 14px rgba(255,255,255,.18), 0 4px 10px rgba(0,0,0,.05);
  z-index: 2;
}

.shopping-card-media .shoe-upper::before {
  content: '';
  position: absolute;
  right: 8px;
  top: 6px;
  width: 34px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}

.shopping-card-media .shoe-sole {
  left: 22px;
  top: 69px;
  width: 114px;
  height: 11px;
  border-radius: 999px;
  background: var(--shoe-sole);
  transform: rotate(-8deg);
  box-shadow: 0 2px 5px rgba(5,43,66,.08);
  z-index: 1;
}

.shopping-card-media .shoe-laces {
  left: 58px;
  top: 41px;
  width: 26px;
  height: 18px;
  transform: rotate(-8deg);
  z-index: 3;
}

.shopping-card-media .shoe-laces::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, var(--shoe-lace) 0 2px, transparent 2px 5px);
  opacity: .8;
}

.shopping-card-media .shoe-opening {
  left: 39px;
  top: 35px;
  width: 38px;
  height: 14px;
  border-radius: 0 0 16px 16px;
  background: var(--shoe-opening);
  transform: rotate(-8deg);
  z-index: 3;
}

.shopping-card-media .shoe-heel {
  left: 21px;
  top: 38px;
  width: 14px;
  height: 24px;
  border-radius: 10px 4px 8px 10px;
  background: var(--shoe-heel-color);
  transform: rotate(-8deg);
  z-index: 2;
}

.media-red {
  --shoe-main: linear-gradient(135deg, #e75a2f, #f1b34a);
  --shoe-sole: #fff6ed;
  --shoe-lace: rgba(255,248,236,.92);
  --shoe-opening: rgba(255,244,232,.46);
  --shoe-heel-color: rgba(255,255,255,.28);
  background: linear-gradient(135deg, #ffe0d0, #ffc68f);
}

.media-grey {
  --shoe-main: linear-gradient(135deg, #95a4b8, #cfd9e4);
  --shoe-sole: #f6f8fb;
  --shoe-lace: rgba(255,255,255,.86);
  --shoe-opening: rgba(255,255,255,.32);
  --shoe-heel-color: rgba(255,255,255,.22);
  background: linear-gradient(135deg, #eff4f8, #d8e2ec);
}

.media-blue {
  --shoe-main: linear-gradient(135deg, #5a93ff, #add8ff);
  --shoe-sole: #f5faff;
  --shoe-lace: rgba(255,255,255,.9);
  --shoe-opening: rgba(255,255,255,.28);
  --shoe-heel-color: rgba(255,255,255,.18);
  background: linear-gradient(135deg, #e0efff, #b8d8ff);
}

.media-multi {
  --shoe-main: linear-gradient(135deg, #f19a37, #f3f0e8 42%, #e46c88 82%);
  --shoe-sole: #fff9f2;
  --shoe-lace: rgba(255,255,255,.88);
  --shoe-opening: rgba(255,255,255,.34);
  --shoe-heel-color: rgba(255,255,255,.2);
  background: linear-gradient(135deg, #ffecbe, #ffd6c9 48%, #dde9ff);
}

.media-featured {
  --shoe-main: linear-gradient(135deg, #fff5eb, #fffbf5);
  --shoe-sole: #fff6ed;
  --shoe-lace: rgba(232,150,64,.35);
  --shoe-opening: rgba(237,160,78,.18);
  --shoe-heel-color: rgba(255,255,255,.34);
  background: linear-gradient(135deg, #ffd8b0, #f7b66f);
}

.shopping-card-copy {
  display: grid;
  gap: 4px;
}

.shopping-card-copy strong {
  color: #0d2338;
  font-size: 16px;
  line-height: 1.15;
}

.shopping-card-copy span {
  color: #6b8094;
  font-size: 12px;
  font-weight: 700;
}

.shopping-card-copy b {
  margin-top: 8px;
  color: #0d2338;
  font-size: 17px;
}

.shopping-card-badge,
.shopping-card-rank,
.shopping-products-others {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shopping-card-badge {
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: rgba(255,255,255,.22);
  color: #fff;
  z-index: 1;
}

.shopping-card-rank {
  top: 12px;
  right: 12px;
  bottom: auto;
  max-width: 84px;
  padding: 7px 9px;
  background: rgba(255,255,255,.22);
  color: #fff;
  z-index: 1;
  line-height: 1;
  white-space: nowrap;
}

.shopping-card-featured {
  z-index: 2;
  background: linear-gradient(135deg, #f5a34d 0%, #e99640 100%);
  border-color: rgba(255,125,42,.28);
  box-shadow: 0 18px 34px rgba(239,140,49,.24);
}

.shopping-card-featured::after {
  background: rgba(255,255,255,.2);
}

.shopping-card-featured .shopping-card-copy strong,
.shopping-card-featured .shopping-card-copy span,
.shopping-card-featured .shopping-card-copy b {
  color: #fff;
}

.shopping-card-featured .shopping-card-copy b {
  margin-top: 10px;
}

.shopping-products-others {
  top: -2px;
  right: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(5,43,66,.08);
  color: #586f83;
  z-index: 5;
}

.shopping-card-a { animation: shopCardA 12s cubic-bezier(.4,0,.2,1) infinite; }
.shopping-card-b { animation: shopCardB 12s cubic-bezier(.4,0,.2,1) infinite; }
.shopping-card-featured { animation: shopCardFeatured 12s cubic-bezier(.4,0,.2,1) infinite; }
.shopping-card-c { animation: shopCardC 12s cubic-bezier(.4,0,.2,1) infinite; }
.shopping-card-d { animation: shopCardD 12s cubic-bezier(.4,0,.2,1) infinite; }

@keyframes shopCardA {
  0%, 18% { transform: translateX(0) scale(1); opacity: 1; }
  30%, 74% { transform: translateX(204px) translateY(2px) scale(.975); opacity: 1; }
  86%, 100% { transform: translateX(204px) translateY(2px) scale(.975); opacity: 1; }
}

@keyframes shopCardB {
  0%, 18% { transform: translateX(204px) scale(1); opacity: 1; }
  30%, 74% { transform: translateX(408px) translateY(2px) scale(.972); opacity: 1; }
  86%, 100% { transform: translateX(408px) translateY(2px) scale(.972); opacity: 1; }
}

@keyframes shopCardFeatured {
  0%, 18% { transform: translateX(408px) translateY(8px) scale(.95); }
  30%, 74% { transform: translateX(0) translateY(-2px) scale(1.03); }
  86%, 100% { transform: translateX(0) translateY(-2px) scale(1.03); }
}

@keyframes shopCardC {
  0%, 18% { transform: translateX(612px) scale(1); opacity: .96; }
  30%, 74% { transform: translateX(612px) translateY(3px) scale(.96); opacity: .88; }
  86%, 100% { transform: translateX(612px) translateY(3px) scale(.96); opacity: .88; }
}

@keyframes shopCardD {
  0%, 18% { transform: translateX(816px) scale(1); opacity: .7; }
  30%, 74% { transform: translateX(816px) translateY(4px) scale(.94); opacity: .55; }
  86%, 100% { transform: translateX(816px) translateY(4px) scale(.94); opacity: .55; }
}

.shopping-carousel-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.shopping-carousel-proof div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(5,43,66,.08);
}

.shopping-carousel-proof b {
  display: block;
  margin-bottom: 4px;
  color: #0f2740;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shopping-carousel-proof span {
  color: #5f768a;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .shopping-products-window {
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .shopping-products-track {
    width: 1010px;
  }
}

@media (max-width: 780px) {
  .shopping-carousel-frame {
    padding: 14px;
    border-radius: 28px;
  }

  .shopping-carousel-topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .shopping-browser-shell {
    padding: 14px;
  }

  .shopping-searchbar {
    flex-wrap: wrap;
  }

  .shopping-channel-list {
    order: 3;
    margin-left: 0;
    width: 100%;
  }

  .shopping-searchbar small {
    margin-left: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  .shopping-card-a,
  .shopping-card-b,
  .shopping-card-featured,
  .shopping-card-c,
  .shopping-card-d {
    animation: none !important;
  }

  .shopping-card-a { transform: translateX(204px) translateY(2px) scale(.975); }
  .shopping-card-b { transform: translateX(408px) translateY(2px) scale(.972); }
  .shopping-card-featured { transform: translateX(0) translateY(-2px) scale(1.03); }
  .shopping-card-c { transform: translateX(612px) translateY(3px) scale(.96); opacity: .88; }
  .shopping-card-d { transform: translateX(816px) translateY(4px) scale(.94); opacity: .55; }
}


/* Phase 18: use real shoe PNG assets inside Shopping product cards */
.shopping-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopping-card-media::before {
  display: none;
}

.shopping-card-media::after {
  left: 24px;
  right: 24px;
  width: auto;
  bottom: 18px;
  height: 10px;
  opacity: .13;
}

.shopping-card-media .shoe-upper,
.shopping-card-media .shoe-sole,
.shopping-card-media .shoe-laces,
.shopping-card-media .shoe-opening,
.shopping-card-media .shoe-heel {
  display: none !important;
}

.shopping-shoe-img {
  position: relative;
  z-index: 2;
  width: 146px;
  max-width: 96%;
  max-height: 92px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 7px 8px rgba(5,43,66,.13));
  transform: translateY(4px);
}

.shopping-card-featured .shopping-shoe-img {
  width: 152px;
  filter: drop-shadow(0 8px 9px rgba(120,65,18,.16));
}

.shopping-card-badge {
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shopping-card-rank {
  top: 39px;
  right: 12px;
  max-width: 64px;
}

.media-red {
  background: linear-gradient(135deg, #ffe1d0, #ffc995);
}

.media-grey,
.media-blue {
  background: linear-gradient(135deg, #f3f7fb, #dde7f0);
}

.media-featured {
  background: linear-gradient(135deg, #ffc786, #f6a24e);
}

.media-multi {
  background: linear-gradient(135deg, #eef7ff, #cfe7ff);
}

@media (max-width: 780px) {
  .shopping-shoe-img {
    width: 136px;
  }
}


/* Phase 19: readable featured Shopping card labels */
.shopping-card-featured .shopping-card-media {
  height: 92px;
  margin-bottom: 10px;
}

.shopping-card-featured .shopping-shoe-img {
  width: 150px;
  max-height: 82px;
  transform: translateY(5px);
}

.featured-card-copy {
  gap: 5px;
}

.featured-card-tags {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.featured-card-tags em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.featured-card-sub {
  color: rgba(255,255,255,.84) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.shopping-card-featured .shopping-card-copy b {
  margin-top: 5px;
}

.shopping-card-featured .shopping-card-badge,
.shopping-card-featured .shopping-card-rank {
  display: none !important;
}

/* Phase 21: pricing hero card alignment fix */
body.v5 .phase4-pricing-hero {
  padding-bottom: 112px !important;
  overflow: visible;
}

body.v5 .phase4-pricing-hero .pricing-cards--phase4 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
  margin-top: 56px !important;
}

body.v5 .phase4-pricing-hero .pricing-cards--phase4 .pricing-card {
  min-height: 348px;
  display: flex;
  flex-direction: column;
  transform: none !important;
}

body.v5 .phase4-pricing-hero .pricing-cards--phase4 .pricing-card.featured {
  transform: none !important;
  z-index: 1;
}

body.v5 .phase4-pricing-hero .pricing-cards--phase4 .pricing-card strong {
  margin-top: auto;
}

body.v5 .phase4-pricing-hero .pricing-cards--phase4 .price-list {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  body.v5 .phase4-pricing-hero .pricing-cards--phase4 {
    grid-template-columns: 1fr !important;
  }

  body.v5 .phase4-pricing-hero .pricing-cards--phase4 .pricing-card {
    min-height: auto;
  }
}


/* Phase 24 — agency page simplification and priority animation */
.agency-priority-stage {
  position: relative;
}

.agency-priority-stage::before {
  content: "";
  position: absolute;
  inset: 36px -28px -28px 54px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255,241,232,.82), rgba(255,255,255,0));
  z-index: 0;
}

.agency-priority-frame {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 34px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 60px rgba(5,43,66,.08);
}

.agency-priority-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: #5f7285;
  font-size: 12px;
  font-weight: 830;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.agency-client-stack {
  display: grid;
  gap: 12px;
}

.agency-client-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  box-shadow: 0 12px 30px rgba(5,43,66,.045);
}

.agency-client-card small {
  display: block;
  margin-bottom: 7px;
  color: #db6118;
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.agency-client-card strong {
  display: block;
  color: #052b42;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.agency-client-card span {
  display: block;
  margin-top: 6px;
  color: #5e7387;
  font-size: 13px;
  line-height: 1.35;
}

.agency-client-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(5,43,66,.06);
  color: #052b42;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .03em;
}

.agency-client-card.winner {
  border-color: rgba(254,86,12,.22);
  background: linear-gradient(180deg, #fffaf6, #fff3eb);
  box-shadow: 0 18px 42px rgba(254,86,12,.12);
  animation: agencyWinnerLift 4.6s ease-in-out infinite;
}

.agency-client-card.winner b {
  background: #052b42;
  color: #fff;
}

.agency-client-card.hold {
  opacity: .74;
}

.agency-client-card.review b {
  background: rgba(255,107,26,.08);
  color: #db6118;
}

.agency-priority-caption {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, #052b42, #083a56);
  color: #fff;
}

.agency-priority-caption strong {
  font-size: 16px;
  line-height: 1.25;
}

.agency-priority-caption span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.5;
}

.agency-priority-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.agency-priority-explain {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.agency-plain-card,
.agency-ranked-board {
  border-radius: 30px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  box-shadow: 0 18px 52px rgba(5,43,66,.06);
  padding: 30px;
}

.agency-plain-card.before {
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.agency-plain-card small {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.agency-plain-card h2 {
  margin: 0 0 12px;
  color: #052b42;
  font-size: 34px;
  line-height: .98;
  letter-spacing: -.055em;
}

.agency-plain-card p {
  margin: 0;
  color: #5e7387;
  font-size: 15px;
  line-height: 1.6;
}

.agency-ranked-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.agency-rank-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(5,43,66,.075);
  background: rgba(255,255,255,.86);
}

.agency-rank-row b {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 12px;
}

.agency-rank-row strong {
  color: #052b42;
  font-size: 15px;
}

.agency-rank-row span {
  color: #5e7387;
  font-size: 13px;
  text-align: right;
}

.agency-rank-row.active {
  border-color: rgba(254,86,12,.18);
  background: linear-gradient(90deg, rgba(255,246,240,.98), rgba(255,255,255,.9));
  box-shadow: 0 14px 30px rgba(254,86,12,.08);
}

.agency-rank-row.muted {
  opacity: .66;
}

.output-card.dark .agency-note {
  margin-top: 18px;
  background: rgba(255,107,26,.14);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
}

@keyframes agencyWinnerLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 1100px) {
  .agency-priority-explain {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .agency-client-card,
  .agency-rank-row {
    grid-template-columns: 1fr;
  }

  .agency-client-card b,
  .agency-rank-row span {
    justify-self: start;
    text-align: left;
  }

  .agency-priority-stage::before {
    inset: 30px -12px -12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agency-client-card.winner {
    animation: none !important;
  }
}


/* Phase 28: Claude homepage additions adapted to ShopSailor style */
.commerce-proof-band {
  position: relative;
  z-index: 4;
  padding: 30px 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,107,26,.16), transparent 32%),
    linear-gradient(135deg, #052b42 0%, #071f32 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.commerce-proof-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.commerce-proof-item {
  position: relative;
  padding: 12px 26px;
  text-align: center;
}

.commerce-proof-item + .commerce-proof-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  width: 1px;
  height: 76%;
  background: rgba(255,255,255,.12);
}

.commerce-proof-item strong {
  display: block;
  color: #ff8a3d;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: .95;
  font-weight: 860;
  letter-spacing: -.045em;
}

.commerce-proof-item span {
  display: block;
  max-width: 180px;
  margin: 8px auto 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.merchant-logo-strip {
  position: relative;
  z-index: 3;
  padding: 25px 24px;
  background:
    radial-gradient(circle at 72% 0%, rgba(255,107,26,.07), transparent 30%),
    rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(5,43,66,.06);
}

.merchant-logo-strip-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.merchant-logo-strip-label {
  color: #7a8a9c;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.merchant-logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.merchant-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 52px;
  padding: 10px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(5,43,66,.075);
  box-shadow: 0 12px 26px rgba(5,43,66,.045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.merchant-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,26,.18);
  box-shadow: 0 18px 34px rgba(5,43,66,.07);
}

.merchant-logo-card img {
  display: block;
  max-width: 110px;
  max-height: 28px;
  object-fit: contain;
}

.merchant-logo-card:nth-child(1) img { max-width: 118px; max-height: 30px; }
.merchant-logo-card:nth-child(2) img { max-width: 122px; max-height: 26px; }
.merchant-logo-card:nth-child(3) img { max-width: 112px; max-height: 34px; }
.merchant-logo-card:nth-child(4) img { max-width: 98px; max-height: 30px; }
.merchant-logo-card:nth-child(5) img { max-width: 92px; max-height: 28px; }

@media (max-width: 900px) {
  .commerce-proof-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
  }

  .commerce-proof-item::before {
    display: none;
  }

  .commerce-proof-item {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .commerce-proof-inner {
    width: calc(100% - 18px);
    grid-template-columns: 1fr;
  }

  .merchant-logo-strip-inner {
    width: calc(100% - 18px);
    gap: 16px;
  }

  .merchant-logo-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .merchant-logo-card {
    min-width: 0;
    width: 100%;
  }
}


/* ============================================================
   Phase 29 — navigation and heading/subtext alignment polish
   ============================================================ */
body.v5 .x-head,
body.v5 .services-heading,
body.v5 .how-header,
body.v5 .cards-header,
body.v5 .signal-flow-header,
body.v5 .centered-cta .x-inner,
body.v5 .platform-cta,
body.v5 .gcss-cta {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v5 .x-head .section-title,
body.v5 .services-heading .section-title,
body.v5 .how-header .section-title,
body.v5 .cards-header .section-title,
body.v5 .signal-flow-header .section-title,
body.v5 .centered-cta .section-title,
body.v5 .platform-cta .section-title,
body.v5 .gcss-cta .section-title {
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v5 .x-head .section-sub,
body.v5 .services-heading .section-sub,
body.v5 .how-header .section-sub,
body.v5 .cards-header .section-sub,
body.v5 .signal-flow-header .section-sub,
body.v5 .centered-cta .section-sub,
body.v5 .platform-cta .section-sub,
body.v5 .gcss-cta .section-sub,
body.v5 .guide-hero-inner .section-sub,
body.v5 .phase4-pricing-hero .section-sub,
body.v5 .phase4-resources-hero .section-sub,
body.v5 .phase4-case-hero .section-sub {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body.v5 .commercial-split .section-sub,
body.v5 .safety-principles .section-sub,
body.v5 .contact-simple-note,
body.v5 .contact-simple-points {
  text-align: left !important;
}


/* ============================================================
   Phase 32 — content audit + heading/subtext alignment cleanup
   - Section subtitles now align with their heading by default.
   - Only intentionally centered hero/CTA/header blocks keep centered subtitles.
   ============================================================ */
body.v5 .section-sub {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

body.v5 .x-head,
body.v5 .platform-signal-head,
body.v5 .platform-simulator-copy,
body.v5 .platform-human-copy,
body.v5 .commercial-split > div:first-child,
body.v5 .safety-principles > div:first-child,
body.v5 .resource-board > div:first-child,
body.v5 .case-layout > div:first-child {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.v5 .x-head .section-title,
body.v5 .platform-signal-head .section-title,
body.v5 .platform-simulator-copy .section-title,
body.v5 .commercial-split .section-title,
body.v5 .safety-principles .section-title {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.v5 .x-head .section-sub,
body.v5 .platform-signal-head .section-sub,
body.v5 .platform-simulator-copy .section-sub,
body.v5 .platform-human-copy .section-sub,
body.v5 .commercial-split .section-sub,
body.v5 .safety-principles .section-sub,
body.v5 .resource-board .section-sub,
body.v5 .case-layout .section-sub {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

body.v5 .x-head.center,
body.v5 .cards-header,
body.v5 .how-header,
body.v5 .services-heading,
body.v5 .signal-flow-header,
body.v5 .centered-cta .x-inner,
body.v5 .phase4-pricing-hero,
body.v5 .phase4-resources-hero,
body.v5 .phase4-case-hero,
body.v5 .guide-hero-inner,
body.v5 .platform-cta,
body.v5 .gcss-cta,
body.v5 .cta-section .inner,
body.v5 .cta-section,
body.v5 .legal-hero,
body.v5 .error-hero {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v5 .x-head.center .section-title,
body.v5 .cards-header .section-title,
body.v5 .how-header .section-title,
body.v5 .services-heading .section-title,
body.v5 .signal-flow-header .section-title,
body.v5 .centered-cta .section-title,
body.v5 .phase4-pricing-hero .x-title,
body.v5 .phase4-resources-hero .x-title,
body.v5 .phase4-case-hero .x-title,
body.v5 .guide-hero-inner .x-title,
body.v5 .platform-cta .section-title,
body.v5 .gcss-cta .section-title,
body.v5 .cta-section .section-title,
body.v5 .legal-hero .x-title,
body.v5 .error-hero .x-title {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body.v5 .x-head.center .section-sub,
body.v5 .cards-header .section-sub,
body.v5 .how-header .section-sub,
body.v5 .services-heading .section-sub,
body.v5 .signal-flow-header .section-sub,
body.v5 .centered-cta .section-sub,
body.v5 .phase4-pricing-hero .x-lead,
body.v5 .phase4-pricing-hero .section-sub,
body.v5 .phase4-resources-hero .x-lead,
body.v5 .phase4-resources-hero .section-sub,
body.v5 .phase4-case-hero .x-lead,
body.v5 .phase4-case-hero .section-sub,
body.v5 .guide-hero-inner .x-lead,
body.v5 .guide-hero-inner .section-sub,
body.v5 .platform-cta .section-sub,
body.v5 .gcss-cta .section-sub,
body.v5 .cta-section .section-sub,
body.v5 .legal-hero .x-lead,
body.v5 .error-hero .x-lead,
body.v5 .legal-hero p,
body.v5 .error-hero p {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body.v5 .phase4-resources-hero .x-actions,
body.v5 .phase4-case-hero .x-actions,
body.v5 .phase4-pricing-hero .x-actions,
body.v5 .guide-hero-inner .x-actions,
body.v5 .centered-cta .x-actions,
body.v5 .cta-section .cta-actions {
  justify-content: center !important;
}

/* Phase 34 — Resources cleanup: one useful question-led library */
.resource-feature--checklist {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resource-checklist-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.resource-checklist-points li {
  position: relative;
  padding: 12px 14px 12px 32px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(5,43,66,.08);
  color: #526a7f;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
}

.resource-checklist-points li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fe560c;
  box-shadow: 0 0 0 5px rgba(254,86,12,.08);
}

.resource-stack-heading {
  color: #db6118;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin: 0 0 2px 4px;
}

.question-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.resources-question-section .guide-card h3 {
  min-height: 62px;
}

@media (max-width: 1180px) {
  .question-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .resource-checklist-points,
  .question-guide-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   Phase 35 — About page HTML implementation with office photo
   ============================================================ */
.about-story-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 92px;
  background:
    radial-gradient(circle at 82% 18%, rgba(254,86,12,.11), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(66,133,244,.07), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #fffaf6 78%, #fff 100%);
}

.about-story-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -14% 43%;
  height: 420px;
  background: linear-gradient(110deg, rgba(255,255,255,0), rgba(255,107,26,.10), rgba(255,255,255,.18));
  filter: blur(20px);
  pointer-events: none;
}

.about-story-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-story-copy .x-title {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
  max-width: 680px !important;
}

.about-story-copy .x-lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 560px !important;
}

.about-story-copy .x-actions {
  justify-content: flex-start !important;
}

.about-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.about-trust-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5a7186;
  font-size: 13px;
  font-weight: 760;
}

.about-trust-row span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(254,86,12,.16), rgba(255,255,255,.65)),
    radial-gradient(circle at 50% 50%, #fe560c 0 3px, transparent 4px);
  border: 1px solid rgba(254,86,12,.18);
}

.about-photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  box-shadow: 0 28px 80px rgba(5,43,66,.12);
}

.about-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(5,43,66,.06)),
    radial-gradient(circle at 82% 18%, rgba(255,107,26,.14), transparent 30%);
  pointer-events: none;
  z-index: 2;
}

.about-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.about-values-section {
  background: #fff;
}

.about-values-section .x-head {
  max-width: 820px;
  text-align: center;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 56px;
}

.about-value-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(5,43,66,.08);
  background:
    radial-gradient(circle at 90% 12%, rgba(254,86,12,.08), transparent 24%),
    rgba(255,255,255,.94);
  box-shadow: 0 18px 52px rgba(5,43,66,.07);
}

.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
  border-radius: 18px;
  background: rgba(255,107,26,.09);
  color: #db6118;
  font-size: 22px;
  font-weight: 800;
}

.about-value-card h3 {
  margin: 0 0 14px;
  color: #052b42;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.about-value-card p {
  margin: 0;
  color: #5b7288;
  font-size: 15px;
  line-height: 1.7;
}

.about-approach-section {
  background:
    radial-gradient(circle at 72% 24%, rgba(254,86,12,.08), transparent 28%),
    linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.about-approach-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 68px;
  align-items: center;
}

.about-approach-grid .section-sub {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 460px;
}

.about-route-map {
  display: grid;
  gap: 12px;
}

.about-route-row {
  display: grid;
  grid-template-columns: 52px 1fr minmax(220px, .8fr) 18px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 32px rgba(5,43,66,.045);
}

.about-route-row::after {
  content: "›";
  color: #fe560c;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.about-route-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 12px;
  letter-spacing: .07em;
}

.about-route-row strong {
  color: #052b42;
  font-size: 16px;
  line-height: 1.25;
}

.about-route-row span {
  color: #5d7185;
  font-size: 14px;
  line-height: 1.35;
  text-align: right;
}

@media (max-width: 1100px) {
  .about-story-inner,
  .about-approach-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-card img {
    aspect-ratio: 16 / 10;
  }

  .about-value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .about-story-hero {
    padding: 86px 0 72px;
  }

  .about-story-copy .x-title,
  .about-story-copy .x-lead {
    max-width: none !important;
  }

  .about-trust-row {
    gap: 12px;
  }

  .about-photo-card {
    border-radius: 28px;
  }

  .about-value-card {
    min-height: auto;
    padding: 26px;
  }

  .about-value-icon {
    margin-bottom: 28px;
  }

  .about-route-row {
    grid-template-columns: 44px 1fr;
  }

  .about-route-row span {
    grid-column: 2;
    text-align: left;
  }

  .about-route-row::after {
    display: none;
  }
}


/* Phase 37 — remove topbar and simplify How to start */
body.v5 .site-nav {
  top: 0 !important;
}

body.v5 .how-start-hero {
  background:
    radial-gradient(circle at 50% 24%, rgba(255,107,26,.075), transparent 33%),
    linear-gradient(180deg, #f7fcff 0%, #fff 72%, #fffaf6 100%);
}

body.v5 .how-start-hero .x-title {
  max-width: 1010px !important;
}

body.v5 .how-start-hero .x-lead {
  max-width: 910px !important;
}

.how-start-cards .how-start-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.how-start-cards .how-start-card:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(254,86,12,.18);
  box-shadow: 0 28px 64px rgba(5,43,66,.10);
}

.how-start-cards .how-start-card.featured:hover {
  box-shadow: 0 32px 70px rgba(5,43,66,.18);
}

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

.how-simple-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(5,43,66,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 48px rgba(5,43,66,.06);
}

.how-simple-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 70px;
  height: 38px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(254,86,12,0), rgba(254,86,12,.10), rgba(254,86,12,0)),
    repeating-linear-gradient(0deg, rgba(254,86,12,.12) 0 2px, transparent 2px 8px);
  opacity: .55;
}

.how-simple-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 15px;
  color: #db6118;
  background: rgba(255,107,26,.08);
  font-weight: 850;
}

.how-simple-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #052b42;
  font-size: 24px;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.how-simple-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.how-start-split {
  align-items: stretch;
}

.how-start-output h3 {
  max-width: 560px;
}

.how-start-output p {
  max-width: 620px;
}

.how-after-grid .x-card {
  min-height: 240px;
}

.how-start-final .section-title {
  max-width: 900px;
}

@media (max-width: 980px) {
  .how-simple-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-start-cards .how-start-card,
  .how-start-cards .how-start-card:hover {
    transform: none !important;
    transition: none !important;
  }
}


/* Phase 38 — make How to start feel effortless */
body.v5 .top-note {
  display: none !important;
}

body.v5 .how-start-page .pricing-hero {
  padding-bottom: 82px;
}

body.v5 .how-start-page .how-assurance-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

body.v5 .how-start-page .how-assurance-grid .x-card {
  min-height: 236px;
}

body.v5 .how-start-page .how-start-final {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,107,26,.10), transparent 35%),
    #fffaf6;
}


/* Phase 40 — clean How to start cards */
body.v5 .how-start-page .how-start-cards .how-start-card {
  min-height: 332px !important;
  padding: 34px 34px 30px;
}

body.v5 .how-start-page .how-start-cards .how-start-card small {
  margin-bottom: 20px;
}

body.v5 .how-start-page .how-start-cards .how-start-card h3 {
  max-width: 320px;
  margin-bottom: 16px;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

body.v5 .how-start-page .how-start-cards .how-start-card p {
  max-width: 340px;
  margin-bottom: 0;
}

body.v5 .how-start-page .how-start-cards .how-start-card .price-list {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(5,43,66,.08);
}

body.v5 .how-start-page .how-start-cards .how-start-card.featured .price-list {
  border-top-color: rgba(255,255,255,.16);
}

body.v5 .how-start-page .how-start-cards .how-start-card .price-list li {
  font-size: 13.5px;
}

@media (max-width: 1100px) {
  body.v5 .how-start-page .how-start-cards .how-start-card {
    min-height: auto !important;
  }

  body.v5 .how-start-page .how-start-cards .how-start-card .price-list {
    margin-top: 24px;
  }
}


/* Phase 42 — merchant-only Solutions page */
.merchant-solution-hero .x-lead {
  max-width: 790px;
}

.merchant-hero-cards {
  margin-top: 44px;
  text-align: left;
}

.merchant-solution-page .x-head .section-sub,
.merchant-solution-page .commercial-split .section-sub {
  max-width: 760px;
}

.merchant-solution-page .output-card.dark {
  min-height: 310px;
}

.merchant-solution-page .x-card h3 {
  max-width: 430px;
}

@media (max-width: 780px) {
  .merchant-hero-cards {
    margin-top: 32px;
  }

  .merchant-solution-page .output-card.dark {
    min-height: auto;
  }
}


/* Phase 43 — merchant page compact trust strip */
.merchant-trust-strip-section {
  padding: 0 0 92px;
  background: #fff;
}

.merchant-trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(5,43,66,.08);
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,246,240,.78));
  box-shadow: 0 18px 52px rgba(5,43,66,.055);
}

.merchant-trust-strip strong {
  color: #052b42;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.merchant-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.merchant-trust-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(5,43,66,.08);
  background: #fff;
  color: #5d7185;
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

@media (max-width: 780px) {
  .merchant-trust-strip-section {
    padding: 0 0 64px;
  }

  .merchant-trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .merchant-trust-pills {
    justify-content: flex-start;
  }
}


/* Phase 44 — merchant page micro polish */
body.v5 .merchant-solution-hero {
  padding-top: 124px !important;
  padding-bottom: 78px !important;
}

body.v5 .merchant-solution-hero .merchant-hero-cards {
  margin-top: 36px;
}

body.v5 .merchant-trust-strip-section {
  padding: 0 0 82px;
}

body.v5 .merchant-trust-strip {
  min-height: 64px;
  padding: 20px 24px;
  border-color: rgba(254,86,12,.16);
  background:
    radial-gradient(circle at 96% 50%, rgba(254,86,12,.10), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,247,241,.88));
  box-shadow: 0 20px 54px rgba(5,43,66,.06), 0 0 0 6px rgba(254,86,12,.025);
}

body.v5 .merchant-trust-strip strong {
  font-size: 18px;
  font-weight: 820;
}

body.v5 .merchant-trust-pills span {
  color: #425a6f;
  font-weight: 820;
  border-color: rgba(254,86,12,.12);
  background: rgba(255,255,255,.94);
}

@media (max-width: 780px) {
  body.v5 .merchant-solution-hero {
    padding-top: 76px !important;
    padding-bottom: 58px !important;
  }

  body.v5 .merchant-solution-hero .merchant-hero-cards {
    margin-top: 28px;
  }

  body.v5 .merchant-trust-strip-section {
    padding: 0 0 58px;
  }
}

/* Phase 46 — merchant page hero logo layer and richer approval flow */
body.v5 .merchant-solution-hero {
  position: relative;
  overflow: hidden;
}

body.v5 .merchant-solution-hero .resources-inner {
  position: relative;
  z-index: 2;
}

.merchant-logo-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .82;
}

.merchant-logo-orbit::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 72px;
  height: 360px;
  border: 1px solid rgba(254,86,12,.08);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  filter: blur(.1px);
  opacity: .7;
}

.merchant-float-logo {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 50px;
  padding: 11px 16px;
  border-radius: 20px;
  border: 1px solid rgba(5,43,66,.07);
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 46px rgba(5,43,66,.06);
  backdrop-filter: blur(10px);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .55s ease, box-shadow .55s ease;
}

.merchant-float-logo img {
  display: block;
  max-width: 110px;
  max-height: 28px;
  object-fit: contain;
  opacity: .52;
  filter: grayscale(.04) saturate(.92);
}

.merchant-float-logo.dyson { left: 10%; top: 104px; transform: rotate(-5deg); }
.merchant-float-logo.samsung { right: 10%; top: 108px; transform: rotate(4deg); }
.merchant-float-logo.xiaomi { left: 7%; top: 278px; transform: rotate(7deg); }
.merchant-float-logo.govee { right: 8%; top: 286px; transform: rotate(-3deg); }
.merchant-float-logo.kiko { left: 29%; bottom: 94px; transform: rotate(2deg); }

body.v5 .merchant-solution-hero:hover .merchant-float-logo.dyson { transform: translate3d(-9px,-7px,0) rotate(-8deg); }
body.v5 .merchant-solution-hero:hover .merchant-float-logo.samsung { transform: translate3d(9px,-7px,0) rotate(7deg); }
body.v5 .merchant-solution-hero:hover .merchant-float-logo.xiaomi { transform: translate3d(-8px,7px,0) rotate(4deg); }
body.v5 .merchant-solution-hero:hover .merchant-float-logo.govee { transform: translate3d(8px,7px,0) rotate(-6deg); }
body.v5 .merchant-solution-hero:hover .merchant-float-logo.kiko { transform: translate3d(6px,9px,0) rotate(5deg); }

body.v5 .merchant-solution-hero:hover .merchant-float-logo {
  opacity: .95;
  box-shadow: 0 24px 62px rgba(5,43,66,.08);
}

.merchant-start-section {
  position: relative;
  overflow: hidden;
}

.merchant-start-section::before {
  content: "";
  position: absolute;
  inset: 12% -12% auto auto;
  width: 520px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254,86,12,.10), transparent 68%);
  pointer-events: none;
}

.merchant-start-grid,
.merchant-launch-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.merchant-start-copy .section-sub,
.merchant-launch-grid .section-sub {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.merchant-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.merchant-mini-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(254,86,12,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #425a6f;
  font-size: 12px;
  font-weight: 820;
}

.merchant-approval-board,
.merchant-handle-board {
  display: grid;
  gap: 14px;
}

.merchant-approval-row,
.merchant-handle-row {
  display: grid;
  grid-template-columns: 46px 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(5,43,66,.075);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 36px rgba(5,43,66,.045);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.merchant-approval-row:hover,
.merchant-handle-row:hover {
  transform: translateY(-2px);
  border-color: rgba(254,86,12,.18);
  box-shadow: 0 20px 52px rgba(5,43,66,.07);
}

.merchant-step-icon,
.merchant-handle-count {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,107,26,.09);
  color: #db6118;
  font-size: 19px;
  font-weight: 840;
}

.merchant-handle-count {
  background: rgba(66,133,244,.08);
  color: #1557a8;
  font-size: 12px;
  letter-spacing: .05em;
}

.merchant-approval-row b,
.merchant-handle-row b {
  color: #db6118;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.merchant-handle-row b {
  color: #1557a8;
}

.merchant-approval-row strong,
.merchant-handle-row strong {
  color: #052b42;
  font-size: 15px;
  line-height: 1.25;
}

.merchant-approval-row em,
.merchant-handle-row em {
  color: #5d7185;
  font-size: 13px;
  font-style: normal;
  text-align: right;
  white-space: nowrap;
}

.merchant-launch-section {
  position: relative;
  overflow: hidden;
}

.merchant-launch-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(254,86,12,.22), transparent 27%),
    linear-gradient(145deg, #052b42, #083a56);
  box-shadow: 0 28px 70px rgba(5,43,66,.16);
}

.merchant-launch-card::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 96px;
  height: 56px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(254,86,12,0), rgba(254,86,12,.18), rgba(254,86,12,0)),
    repeating-linear-gradient(0deg, rgba(254,86,12,.22) 0 2px, transparent 2px 9px);
  opacity: .48;
}

.merchant-launch-card::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 190px;
  height: 118px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(254,86,12,.48), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 18px 48px rgba(0,0,0,.16);
  opacity: .72;
}

.merchant-launch-card small {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(254,86,12,.20);
  color: #ffb982;
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.merchant-launch-card h3,
.merchant-launch-card p,
.merchant-launch-badge {
  position: relative;
  z-index: 2;
}

.merchant-launch-card h3 {
  margin: 0 0 16px;
  max-width: 420px;
  font-size: 33px;
  line-height: 1.02;
  letter-spacing: -.055em;
  color: #fff;
}

.merchant-launch-card p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.80);
  font-size: 15px;
  line-height: 1.62;
}

.merchant-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.merchant-launch-badge span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fe560c;
  box-shadow: 0 0 0 7px rgba(254,86,12,.14);
}

@media (max-width: 1050px) {
  .merchant-logo-orbit {
    opacity: .34;
  }

  .merchant-start-grid,
  .merchant-launch-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .merchant-logo-orbit {
    display: none;
  }

  .merchant-approval-row,
  .merchant-handle-row {
    grid-template-columns: 40px 1fr;
    gap: 10px 14px;
  }

  .merchant-approval-row strong,
  .merchant-handle-row strong,
  .merchant-approval-row em,
  .merchant-handle-row em {
    grid-column: 2;
    text-align: left;
    white-space: normal;
  }

  .merchant-launch-card {
    min-height: auto;
    padding: 28px;
  }

  .merchant-launch-card::after {
    opacity: .18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .merchant-float-logo,
  .merchant-approval-row,
  .merchant-handle-row {
    transition: none !important;
  }
}



/* ============================================================
   Phase 49 — compact resources hub
   ============================================================ */
.resource-board--phase49 {
  grid-template-columns: minmax(0, .95fr) minmax(340px, .7fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 42px;
}

.resource-feature--compact {
  min-height: auto !important;
  padding: 28px 30px !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(254,86,12,.11), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,246,.92)) !important;
}

.resource-feature--compact .section-title {
  max-width: 620px;
  margin: 10px 0 10px !important;
  font-size: clamp(30px, 2.25vw, 44px);
  line-height: 1.02;
  letter-spacing: -.058em;
  text-align: left !important;
}

.resource-feature--compact .section-sub {
  max-width: 620px;
  margin: 0 0 18px !important;
  color: #5a7186;
  font-size: 15px;
  line-height: 1.55;
  text-align: left !important;
}

.resource-check-rows {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.resource-check-rows li {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(5,43,66,.075);
  background: rgba(255,255,255,.78);
}

.resource-check-rows li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: #fe560c;
  box-shadow: 0 0 0 5px rgba(254,86,12,.08);
  grid-column: 1;
  grid-row: 1;
}

.resource-check-rows strong {
  display: flex;
  align-items: center;
  padding-left: 18px;
  color: #052b42;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.25;
}

.resource-check-rows span {
  color: #63788c;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.resource-feature--compact .resource-link-label {
  margin-top: 18px;
}

.resource-stack--compact {
  align-content: start;
  gap: 10px;
}

.resource-stack--compact .resource-stack-heading {
  margin: 0 0 6px;
}

.resource-guide-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(5,43,66,.075);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(5,43,66,.045);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.resource-guide-row:hover {
  transform: translateX(2px);
  border-color: rgba(254,86,12,.18);
  box-shadow: 0 18px 44px rgba(5,43,66,.065);
}

.resource-guide-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,107,26,.08);
  color: #db6118;
  font-size: 12px;
  font-weight: 840;
}

.resource-guide-row strong {
  display: block;
  color: #052b42;
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.resource-guide-row span {
  display: block;
  color: #5f7387;
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .resource-board--phase49 {
    grid-template-columns: 1fr;
  }

  .resource-stack--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-stack--compact .resource-stack-heading {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .resource-feature--compact {
    padding: 24px !important;
  }

  .resource-check-rows li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .resource-check-rows li::before {
    display: none;
  }

  .resource-check-rows strong {
    padding-left: 0;
  }

  .resource-stack--compact {
    grid-template-columns: 1fr;
  }
}


/* Phase 49 refinement: checklist row alignment */
.resource-check-rows li {
  position: relative;
  grid-template-columns: minmax(140px, .7fr) 1fr;
  padding-left: 36px;
}

.resource-check-rows li::before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  grid-column: auto;
  grid-row: auto;
  margin: 0;
}

.resource-check-rows strong {
  padding-left: 0;
}

@media (max-width: 780px) {
  .resource-check-rows li::before {
    display: block;
  }

  .resource-check-rows li {
    padding-left: 36px;
  }
}


/* ============================================================
   Phase 50 — resources guide selector cleanup
   ============================================================ */
.resource-board--phase50 {
  grid-template-columns: minmax(0, .92fr) minmax(320px, .62fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1080px;
  margin: 40px auto 0;
}

.resource-feature--selector {
  min-height: 0 !important;
  padding: 30px 34px !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 90% 8%, rgba(254,86,12,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,246,.94)) !important;
  display: grid;
  gap: 16px;
  align-content: start;
}

.resource-feature-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.resource-feature-kicker small,
.resource-feature-kicker span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.resource-feature-kicker small {
  padding: 8px 11px;
  background: rgba(255,107,26,.08);
  color: #db6118;
}

.resource-feature-kicker span {
  color: #6a7e91;
}

.resource-feature--selector h2 {
  max-width: 620px;
  margin: 0 !important;
  color: #052b42;
  font-size: clamp(30px, 2vw, 38px);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-align: left !important;
}

.resource-feature--selector p {
  max-width: 680px;
  margin: 0 !important;
  color: #5a7186;
  font-size: 15px;
  line-height: 1.55;
  text-align: left !important;
}

.resource-check-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.resource-check-chips span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px 10px 30px;
  border-radius: 14px;
  border: 1px solid rgba(5,43,66,.075);
  background: rgba(255,255,255,.8);
  color: #40596f;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.25;
}

.resource-check-chips span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fe560c;
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(254,86,12,.08);
}

.resource-feature--selector .resource-link-label {
  margin-top: 4px;
  color: #fe560c;
  font-size: 13px;
  font-weight: 840;
}

.resource-stack--selector {
  gap: 10px;
  align-content: start;
}

.resource-stack--selector .resource-stack-heading {
  margin: 0 0 6px;
  color: #db6118;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.resource-stack--selector .resource-guide-row {
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 3px;
  min-height: 74px;
  padding: 14px 16px;
  border-radius: 19px;
}

.resource-stack--selector .resource-guide-row b {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.resource-stack--selector .resource-guide-row strong {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.resource-stack--selector .resource-guide-row span {
  grid-column: 2;
  grid-row: 2;
  display: block;
  color: #65798c;
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .resource-board--phase50 {
    grid-template-columns: 1fr;
  }

  .resource-stack--selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-stack--selector .resource-stack-heading {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .resource-feature--selector {
    padding: 24px !important;
  }

  .resource-check-chips,
  .resource-stack--selector {
    grid-template-columns: 1fr;
  }
}
