:root {
  --ink: #0a234c;
  --muted: #667085;
  --line: #e3deee;
  --soft-line: #f0edf8;
  --paper: #ffffff;
  --wash: #fbf8ff;
  --mist: #f4ecff;
  --teal: #9b6ee8;
  --teal-dark: #6d3fc2;
  --coral: #c79a35;
  --amber: #f7cf55;
  --blue: #0a234c;
  --violet: #9b6ee8;
  --gold: #c79a35;
  --gold-soft: #f7cf55;
  --shadow: 0 20px 60px rgba(46, 35, 91, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(247, 207, 85, 0.28), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(155, 110, 232, 0.2), transparent 30%),
    linear-gradient(120deg, rgba(255, 252, 242, 0.95), rgba(255, 255, 255, 0.96) 34%, rgba(251, 248, 255, 0.94) 72%, rgba(255, 250, 229, 0.92)),
    var(--paper);
  font-family: "Google Sans", "Product Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 35, 76, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 76, 0.032) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -1;
}

a {
  color: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 231, 238, 0.82);
}

.top-strip {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  text-align: center;
}

.top-strip a {
  color: var(--teal-dark);
  font-weight: 760;
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 720;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 68px;
  height: 54px;
  object-fit: cover;
  object-position: left center;
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 740;
  line-height: 1;
}

.brand-wordmark small {
  color: var(--coral);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.28em;
}

.brand > small {
  display: block;
  color: var(--muted);
  font-weight: 560;
  font-size: 11px;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #365061;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.nav-language {
  margin-left: auto;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(109, 63, 194, 0.22);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  color: var(--teal-dark);
  background: rgba(244, 236, 255, 0.72);
}

.nav-login {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
}

.nav-signup {
  min-height: 52px;
  padding-inline: 24px;
  border: 1px solid rgba(199, 154, 53, 0.38);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 720;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.16);
}

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

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.66);
  color: var(--teal-dark);
  border-color: rgba(15, 143, 140, 0.25);
  box-shadow: none;
}

.button.gold {
  background: var(--gold-soft);
  color: var(--ink);
  box-shadow: 0 16px 32px rgba(199, 154, 53, 0.24);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section.tight {
  padding: 42px 0;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 42px;
  padding-top: 52px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-demo {
  position: relative;
  min-height: 520px;
}

.demo-orbit {
  position: absolute;
  inset: -18px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 207, 85, 0.42), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(155, 110, 232, 0.38), transparent 28%),
    linear-gradient(145deg, rgba(10, 35, 76, 0.94), rgba(47, 33, 89, 0.9));
  box-shadow: 0 36px 90px rgba(10, 35, 76, 0.22);
}

.commerce-window,
.phone-demo,
.path-screen,
.smart-card,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.commerce-window {
  position: relative;
  z-index: 2;
  margin: 44px 0 0 36px;
  padding: 0;
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f8f9fd;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d2ea;
}

.window-address {
  flex: 1;
  min-height: 24px;
  margin-left: 10px;
  border-radius: 999px;
  background: #eef1f5;
  color: var(--muted);
  font-size: 12px;
  padding: 4px 12px;
}

.commerce-body {
  padding: 22px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  padding: 14px;
  border-radius: 8px;
  background: var(--wash);
  border: 1px solid var(--soft-line);
}

.metric-card strong {
  display: block;
  font-size: 22px;
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
}

.chart-card,
.todo-card {
  min-height: 190px;
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #fff;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 126px;
  margin-top: 18px;
}

.chart-bars span {
  flex: 1;
  min-width: 8px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--gold-soft), var(--teal));
}

.todo-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--soft-line);
  font-size: 13px;
}

.phone-demo {
  position: absolute;
  z-index: 3;
  left: -18px;
  bottom: 6px;
  width: 188px;
  min-height: 340px;
  padding: 12px;
  border: 8px solid #0b1220;
  border-radius: 30px;
  background: #fff;
}

.phone-notch {
  width: 72px;
  height: 18px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #0b1220;
}

.phone-card {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f5eaff, #fff5c9);
}

.phone-card strong {
  display: block;
  font-size: 18px;
}

.phone-pill {
  display: block;
  height: 34px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--teal);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.comparison-labels,
.comparison-card {
  display: grid;
  grid-template-rows: 72px repeat(4, minmax(82px, auto));
}

.comparison-labels span,
.comparison-card div {
  padding: 18px;
  border-bottom: 1px solid var(--soft-line);
  color: var(--muted);
}

.comparison-card h3 {
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid var(--soft-line);
  font-size: 22px;
  text-align: center;
}

.comparison-card.traditional {
  background: #fff7f7;
  border-color: #ffc6ce;
}

.comparison-card.smart {
  background: #f1fff7;
  border-color: #9ee7bf;
}

.success-path {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

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

.path-step {
  min-height: 76vh;
  display: grid;
  align-content: center;
  padding: 28px;
  margin-bottom: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.path-step h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.path-step p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.path-screen {
  min-height: 360px;
  padding: 18px;
  margin-top: 20px;
}

.path-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-screen-card {
  min-height: 118px;
  padding: 14px;
  border-radius: 8px;
  background: var(--wash);
  border: 1px solid var(--soft-line);
}

.mini-screen-card strong {
  display: block;
  font-size: 20px;
}

.mini-screen-card span {
  color: var(--muted);
  font-size: 12px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 680;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.section-lede {
  color: #4f6879;
  font-size: clamp(16px, 1.8vw, 19px);
}

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

.hero-actions-single {
  justify-content: flex-end;
  max-width: 540px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(247, 207, 85, 0.22);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.proof {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.proof strong {
  display: block;
  font-size: 20px;
}

.proof span {
  color: var(--muted);
  font-size: 13px;
}

.proof-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(155, 110, 232, 0.12);
  font-weight: 760;
}

.proof-icon.word {
  width: auto;
  min-width: 84px;
  padding: 0 10px;
  font-size: 12px;
}

.seller-hero {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 24%, rgba(247, 207, 85, 0.5), transparent 24%),
    radial-gradient(circle at 76% 12%, rgba(155, 110, 232, 0.32), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(251, 248, 255, 0.92));
}

.seller-portrait-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.seller-backdrop {
  position: absolute;
  right: 34px;
  bottom: 44px;
  width: 66%;
  height: 78%;
  border-radius: 42px 18px 42px 18px;
  background: linear-gradient(145deg, var(--gold-soft), #fff0a4 45%, var(--teal));
  transform: skewX(-10deg);
  box-shadow: 0 30px 70px rgba(46, 35, 91, 0.16);
}

.seller-card {
  position: absolute;
  left: 32px;
  top: 80px;
  z-index: 3;
  width: 210px;
  padding: 20px;
  border: 1px solid var(--soft-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.seller-card span,
.seller-card b {
  display: block;
  color: var(--muted);
  font-weight: 650;
}

.seller-card strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.seller-card i {
  display: block;
  width: 118px;
  height: 66px;
  margin-top: 14px;
  background:
    linear-gradient(135deg, transparent 43%, var(--teal-dark) 44% 47%, transparent 48%),
    linear-gradient(90deg, var(--gold-soft) 14%, transparent 14% 20%, var(--gold-soft) 20% 34%, transparent 34% 40%, var(--gold-soft) 40% 58%, transparent 58% 64%, var(--gold-soft) 64%);
  border-bottom: 4px solid var(--teal-dark);
}

.seller-figure {
  position: absolute;
  right: 40px;
  bottom: 18px;
  z-index: 2;
  width: 360px;
  height: 460px;
}

.seller-head {
  position: absolute;
  right: 128px;
  top: 18px;
  width: 92px;
  height: 104px;
  border-radius: 44% 56% 48% 52%;
  background: #d8a173;
  box-shadow: inset -12px 0 0 rgba(84, 45, 26, 0.16);
}

.seller-head::before {
  content: "";
  position: absolute;
  right: -14px;
  top: -16px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #5f3525;
}

.seller-body {
  position: absolute;
  right: 72px;
  top: 118px;
  width: 220px;
  height: 280px;
  border-radius: 42px 42px 24px 24px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255,255,255,0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 62% 46%, rgba(255,255,255,0.25) 0 4px, transparent 5px),
    linear-gradient(145deg, #d9a746, #b78a33);
}

.seller-arm {
  position: absolute;
  right: 238px;
  top: 236px;
  width: 120px;
  height: 36px;
  border-radius: 999px;
  background: #d8a173;
  transform: rotate(24deg);
}

.seller-laptop {
  position: absolute;
  left: 6px;
  bottom: 74px;
  width: 180px;
  height: 110px;
  border-radius: 8px;
  background: linear-gradient(145deg, #5a3d2a, #2f241f);
  transform: rotate(-16deg);
  box-shadow: 0 20px 35px rgba(10, 35, 76, 0.18);
}

.pain-stack-section {
  padding-bottom: 18px;
}

.pain-stack {
  display: grid;
  gap: 38vh;
  padding-bottom: 36vh;
}

.pain-card {
  position: sticky;
  top: 112px;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: stretch;
  gap: clamp(24px, 5vw, 62px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.pain-card:nth-child(1) { z-index: 1; }
.pain-card:nth-child(2) { z-index: 2; }
.pain-card:nth-child(3) { z-index: 3; }

.pain-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.pain-label {
  justify-self: start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(155, 110, 232, 0.12);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pain-card h3 {
  margin: 0;
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
}

.pain-card h4 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 24px;
}

.pain-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.pain-card a {
  justify-self: start;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 860;
  text-decoration: none;
}

.pain-media-slot {
  min-height: 300px;
  border-radius: 22px;
  border: 1px dashed rgba(109, 63, 194, 0.34);
  background:
    radial-gradient(circle at 20% 20%, rgba(247, 207, 85, 0.28), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.7), rgba(244,236,255,0.84));
  display: grid;
  place-items: center;
  color: rgba(10, 35, 76, 0.34);
  font-weight: 900;
}

.pain-card.amplify {
  background: linear-gradient(145deg, #fff8df, rgba(255, 255, 255, 0.9));
}

.pain-card.accelerate {
  background: linear-gradient(145deg, #f6efff, rgba(255, 255, 255, 0.9));
}

.pain-card.assure {
  background: linear-gradient(145deg, #fdfcff, #fff9e6);
}

.comparison-screen {
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.comparison-grid-tall .comparison-labels,
.comparison-grid-tall .comparison-card {
  grid-template-rows: 82px repeat(5, minmax(118px, 1fr));
}

.comparison-grid-tall .comparison-card div,
.comparison-grid-tall .comparison-labels span {
  display: flex;
  align-items: center;
}

.review-wall-section {
  width: min(1320px, calc(100% - 32px));
}

.mock-note {
  max-width: 640px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.review-card {
  min-height: 360px;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(46, 35, 91, 0.09);
}

.review-card.tall {
  min-height: 360px;
}

.review-card.short {
  min-height: 360px;
}

.review-card div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
}

.review-card strong,
.review-card small {
  grid-column: 2;
}

.review-card small {
  color: var(--muted);
  font-weight: 650;
}

.avatar {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-soft), var(--teal));
  color: #fff;
  font-weight: 900;
}

.review-card p {
  color: #5f6f83;
  font-size: 16px;
  font-weight: 620;
}

.review-card b {
  display: block;
  color: var(--teal-dark);
  text-align: right;
}

.inline-link-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(247, 207, 85, 0.7);
  border-radius: 999px;
  color: #071a3b;
  background: var(--gold-soft);
  font-weight: 860;
  text-decoration: none;
}

.ecosystem-section {
  padding-bottom: 34px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.logo-tile {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(46, 35, 91, 0.06);
}

.logo-tile.shopify { color: #5c9f32; }
.logo-tile.woo { color: #7f54b3; }
.logo-tile.tiktok { color: #050505; }
.logo-tile.etsy { color: #f1641e; }
.logo-tile.shopline { color: #2f3b45; }
.logo-tile.shoplazza { color: #e53535; }
.logo-tile.paypal { color: #003087; }
.logo-tile.payoneer { color: #ff4800; }
.logo-tile.worldfirst { color: #d71920; }
.logo-tile.airwallex { color: #111827; }
.logo-tile.pingpong { color: #0a8f61; }
.logo-tile.stripe { color: #635bff; }

.community-panel {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 226, 210, 0.7), rgba(255, 246, 210, 0.34) 46%, rgba(244, 236, 255, 0.78));
  box-shadow: var(--shadow);
}

.community-panel-head h2 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

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

.community-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(46, 35, 91, 0.08);
}

.community-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--teal-dark);
  background:
    linear-gradient(145deg, rgba(247, 207, 85, 0.95), rgba(155, 110, 232, 0.26));
  font-weight: 900;
}

.community-grid h3 {
  margin: 8px 0 0;
  font-size: 34px;
}

.community-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.community-grid a {
  align-self: end;
  color: var(--ink);
  font-weight: 860;
  text-decoration: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(46, 35, 91, 0.05);
}

.faq-grid summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: #2f3744;
  cursor: pointer;
  font-size: 19px;
  font-weight: 760;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "⌄";
  color: var(--teal-dark);
  font-size: 24px;
}

.faq-grid details[open] summary::after {
  transform: rotate(180deg);
}

.faq-grid p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.workflow-panel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(220, 231, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.workflow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(155, 110, 232, 0.1) 24% 25%, transparent 25% 49%, rgba(247, 207, 85, 0.22) 49% 50%, transparent 50% 74%, rgba(10, 35, 76, 0.08) 74% 75%, transparent 75%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.panel-top,
.portal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.status-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.7s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    transform: scale(1.45);
    opacity: 0.45;
  }
}

.flow-lane {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.flow-node {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.node-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--teal-dark);
  font-weight: 900;
}

.flow-node strong,
.portal-card strong,
.stage-card strong,
.service-card strong {
  display: block;
  font-size: 16px;
}

.flow-node span,
.portal-card span,
.stage-card span,
.service-card span,
.small-note {
  color: var(--muted);
  font-size: 13px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ecf8f6;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.tag.amber {
  background: #fff7df;
  color: #8a5b00;
}

.tag.blue {
  background: #eef5ff;
  color: var(--ink);
}

.tag.gold {
  background: var(--gold-soft);
  color: var(--ink);
}

.kpi-grid,
.cards-grid,
.stage-grid,
.workflow-grid,
.package-grid,
.portal-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.portal-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.kpi,
.service-card,
.stage-card,
.workflow-card,
.package-card,
.portal-card,
.form-panel,
.note-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(31, 70, 88, 0.06);
}

.kpi,
.service-card,
.stage-card,
.package-card,
.portal-card,
.note-panel {
  padding: 22px;
}

.kpi strong {
  display: block;
  font-size: 32px;
  letter-spacing: 0;
}

.kpi span {
  color: var(--muted);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading.center {
  justify-content: center;
  text-align: center;
}

.section-heading h2,
.page-hero h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 660;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.workflow-card {
  padding: 20px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.step {
  min-height: 112px;
  padding: 12px;
  border-radius: 8px;
  background: var(--wash);
  border: 1px solid var(--soft-line);
}

.step b {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.step span {
  color: #40586b;
  font-size: 13px;
}

.page-hero {
  padding: 72px 0 36px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.form-panel {
  padding: 24px;
}

.demo-form {
  display: grid;
  gap: 12px;
}

.demo-form label {
  display: grid;
  gap: 6px;
  color: #41576a;
  font-size: 13px;
  font-weight: 800;
}

.demo-form input,
.demo-form textarea,
.demo-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.demo-form textarea {
  min-height: 100px;
  resize: vertical;
}

.zoho-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.zoho-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #fbfdfe;
}

.zoho-slot {
  min-height: 520px;
}

.zoho-iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.zoho-placeholder {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 32px;
  text-align: center;
}

.zoho-placeholder h3 {
  margin: 12px 0 8px;
  font-size: 28px;
}

.zoho-placeholder code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--soft-line);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
  text-align: left;
}

.field-grid span {
  padding: 8px 10px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #fff;
  color: #4f6879;
  font-size: 12px;
}

.package-visual {
  height: 140px;
  border-radius: 8px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(155, 110, 232, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(16, 32, 51, 0.06) 0 1px, transparent 1px 12px),
    #fff;
  border: 1px solid var(--soft-line);
  position: relative;
  overflow: hidden;
}

.package-visual::before,
.package-visual::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(16, 32, 51, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.64);
}

.package-visual::before {
  width: 72px;
  height: 52px;
  left: 26px;
  bottom: 24px;
}

.package-visual::after {
  width: 92px;
  height: 66px;
  right: 24px;
  top: 24px;
  border-color: rgba(199, 154, 53, 0.55);
}

.portal-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portal-chrome {
  display: flex;
  gap: 7px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfc;
}

.portal-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.portal-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 420px;
}

.portal-side {
  padding: 16px;
  border-right: 1px solid var(--line);
  background: #fbfdfe;
}

.side-item {
  min-height: 34px;
  padding: 8px 10px;
  margin-bottom: 8px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.side-item.active {
  background: #eaf7f5;
  color: var(--teal-dark);
}

.portal-main {
  padding: 18px;
}

.portal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-line);
}

.mini-bars {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.bar {
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) var(--bar, 50%), var(--soft-line) var(--bar, 50%));
}

.network-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.network-list span {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.trust-hero h1 {
  max-width: 1080px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.05;
  font-weight: 660;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trust-metrics article {
  min-height: 168px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px;
  border-radius: 28px;
  background: #081922;
  color: #d6e0e6;
  text-align: center;
  box-shadow: 0 22px 50px rgba(8, 25, 34, 0.18);
}

.trust-metrics strong {
  color: var(--gold-soft);
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1;
}

.trust-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
  background: rgba(238, 238, 238, 0.88);
}

.trust-panel h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.trust-panel p {
  margin: 0;
  color: #667085;
  font-size: 18px;
}

.trust-points {
  display: grid;
  gap: 10px;
}

.trust-points span {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 650;
}

.resource-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.resource-image,
.resource-map,
.why-teaser {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.resource-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.resource-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 34, 0.1), rgba(8, 25, 34, 0.56));
}

.facility-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(8,25,34,0.18)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, #dfe5e6, #9fa9aa 58%, #687679);
}

.facility-scene .rack {
  position: absolute;
  top: 70px;
  bottom: 135px;
  width: 120px;
  border: 8px solid rgba(10, 35, 76, 0.55);
  border-top-width: 18px;
  border-bottom-width: 18px;
  background:
    repeating-linear-gradient(180deg, rgba(247, 207, 85, 0.75) 0 18px, rgba(10, 35, 76, 0.35) 18px 26px);
  transform: skewY(-5deg);
}

.facility-scene .rack-a { left: 9%; }
.facility-scene .rack-b { right: 12%; }

.truck-block {
  position: absolute;
  left: 30%;
  top: 120px;
  width: 230px;
  height: 96px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(8, 25, 34, 0.22);
}

.truck-block::before {
  content: "Triple-Aces";
  position: absolute;
  left: 24px;
  top: 28px;
  color: var(--ink);
  font-weight: 900;
  font-size: 26px;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.9;
}

.resource-stats {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.resource-stats article {
  min-height: 116px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.resource-stats strong {
  display: block;
  font-size: 34px;
}

.resource-stats span {
  color: var(--muted);
  font-weight: 650;
}

.resource-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(247, 207, 85, 0.2), transparent 28%),
    linear-gradient(145deg, #fdfcff, #f4ecff);
}

.resource-map::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(10, 35, 76, 0.08);
  border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
  background:
    linear-gradient(rgba(10, 35, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 76, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.map-dot {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(10, 35, 76, 0.12);
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.map-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(247, 207, 85, 0.24);
}

.map-dot.north { left: 48%; top: 18%; }
.map-dot.east { right: 18%; top: 42%; }
.map-dot.east2 { right: 26%; top: 52%; }
.map-dot.south { right: 22%; bottom: 18%; }
.map-dot.south2 { right: 36%; bottom: 16%; }
.map-dot.west { left: 18%; bottom: 32%; }
.map-dot.central { left: 42%; top: 56%; }

.photo-wall-section {
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.photo-wall-section .section-heading {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(7, minmax(250px, 1fr));
  gap: 14px;
  width: max(100%, 1900px);
  margin-top: 28px;
  padding: 0 18px;
}

.photo-wall img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #eef1f5;
}

.photo-tile {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(247, 207, 85, 0.3), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #0a234c, #6d3fc2);
}

.why-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
}

.why-teaser h2 {
  margin: 8px 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.why-teaser p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.inline-path {
  position: relative;
  display: grid;
  gap: 0;
  padding: 46px 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 14%, rgba(247, 207, 85, 0.22), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(155, 110, 232, 0.26), transparent 28%),
    linear-gradient(135deg, #0a234c, #2f2159);
  overflow: hidden;
}

.inline-path::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft), rgba(155, 110, 232, 0.28));
}

.inline-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
  min-height: 520px;
  padding: 54px clamp(28px, 5vw, 72px);
}

.inline-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 10px rgba(247, 207, 85, 0.18);
}

.inline-copy,
.step-visual {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255,255,255,0.14);
}

.inline-copy {
  min-height: 280px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.inline-copy span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 32px;
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(247, 207, 85, 0.14);
  font-weight: 900;
}

.inline-copy h3 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
}

.inline-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.step-visual {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 17, 40, 0.76);
  border: 1px solid rgba(255,255,255,0.12);
}

.mock-form,
.meeting-table,
.quote-board,
.dash-grid,
.tier-list {
  width: min(100%, 500px);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px;
}

.mock-form {
  display: grid;
  gap: 12px;
}

.mock-form strong {
  margin-bottom: 4px;
}

.mock-form i,
.quote-board i {
  display: block;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.mock-form i.short {
  width: 62%;
}

.mock-form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--ink);
  font-weight: 900;
}

.meeting-table {
  position: relative;
  min-height: 260px;
}

.meeting-table b {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-soft), var(--teal));
}

.meeting-table b:nth-child(1) { left: 48px; top: 58px; }
.meeting-table b:nth-child(2) { right: 56px; top: 42px; }
.meeting-table b:nth-child(3) { left: 42%; bottom: 48px; }

.meeting-table em {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 86px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.quote-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #fff;
  color: var(--ink);
}

.quote-board b {
  color: var(--teal-dark);
}

.quote-board i {
  background: var(--soft-line);
}

.package-visual-pro {
  position: relative;
}

.polybag {
  width: 220px;
  height: 250px;
  border-radius: 18px;
  background: linear-gradient(145deg, #d9e4e1, #f8fbf7);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55), 0 28px 60px rgba(0,0,0,0.22);
}

.thank-card,
.tag-card {
  position: absolute;
  border-radius: 8px;
  background: #fff8de;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.thank-card {
  left: 52px;
  top: 42px;
  width: 180px;
  height: 92px;
  display: grid;
  place-items: center;
  transform: rotate(-12deg);
  font-size: 28px;
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
}

.tag-card {
  right: 62px;
  top: 72px;
  width: 150px;
  height: 70px;
  transform: rotate(10deg);
}

.dashboard-visual {
  place-items: stretch;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: #0d1718;
}

.dash-grid i,
.dash-grid b {
  min-height: 78px;
  border-radius: 8px;
  background: rgba(255,255,255,0.09);
}

.dash-grid b {
  grid-column: span 3;
  min-height: 110px;
  background:
    linear-gradient(180deg, rgba(247,207,85,0.24), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 34px);
}

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

.tier-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 900;
}

.integration-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.integration-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px 28px;
}

.integration-logo-grid label {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.integration-logo-grid label:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  transform: translateY(-2px);
}

.platform-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 8px;
  background: #eef8f1;
  color: var(--ink);
  font-weight: 900;
  font-size: 18px;
}

.platform-mark.shopify { background: #e9f7e8; color: #5c9f32; }
.platform-mark.woo { background: #f0e8ff; color: #7f54b3; font-size: 15px; }
.platform-mark.etsy { background: #fff0e8; color: #f1641e; }
.platform-mark.ebay { background: #eef5ff; color: #3665f3; }
.platform-mark.tiktok { background: #eef7f8; color: #050505; }
.platform-mark.wix { background: #f3f6f8; color: #111; font-size: 15px; }
.platform-mark.aliexpress { background: #fff0ed; color: #ff4747; font-size: 15px; }
.platform-mark.amazon { background: #fff6df; color: #ff9900; }
.platform-mark.shoplazza { background: #e53535; color: #fff; }
.platform-mark.shopline { background: #2f3b45; color: #fff; }

.integration-logo-grid span {
  font-weight: 760;
}

.integration-panels {
  margin-top: 34px;
}

.integration-panel {
  display: none;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.integration-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.integration-brand h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
}

.integration-panel p {
  color: var(--muted);
  font-size: 18px;
}

.connect-steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.connect-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
  font-weight: 760;
}

.connect-steps li::before {
  content: counter(step);
  color: #ff4e64;
  font-size: 58px;
  line-height: 1;
  font-weight: 760;
}

#tab-shopify:checked ~ .integration-panels .shopify,
#tab-woo:checked ~ .integration-panels .woo,
#tab-etsy:checked ~ .integration-panels .etsy,
#tab-ebay:checked ~ .integration-panels .ebay,
#tab-tiktok:checked ~ .integration-panels .tiktok,
#tab-wix:checked ~ .integration-panels .wix,
#tab-aliexpress:checked ~ .integration-panels .aliexpress,
#tab-amazon:checked ~ .integration-panels .amazon,
#tab-shoplazza:checked ~ .integration-panels .shoplazza,
#tab-shopline:checked ~ .integration-panels .shopline {
  display: grid;
}

#tab-shopify:checked ~ .integration-logo-grid label[for="tab-shopify"],
#tab-woo:checked ~ .integration-logo-grid label[for="tab-woo"],
#tab-etsy:checked ~ .integration-logo-grid label[for="tab-etsy"],
#tab-ebay:checked ~ .integration-logo-grid label[for="tab-ebay"],
#tab-tiktok:checked ~ .integration-logo-grid label[for="tab-tiktok"],
#tab-wix:checked ~ .integration-logo-grid label[for="tab-wix"],
#tab-aliexpress:checked ~ .integration-logo-grid label[for="tab-aliexpress"],
#tab-amazon:checked ~ .integration-logo-grid label[for="tab-amazon"],
#tab-shoplazza:checked ~ .integration-logo-grid label[for="tab-shoplazza"],
#tab-shopline:checked ~ .integration-logo-grid label[for="tab-shopline"] {
  background: #fff;
  border-color: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(199, 154, 53, 0.14);
}

.footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.rich-footer {
  border-top: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 207, 85, 0.16), transparent 24%),
    linear-gradient(135deg, #07172f, #201743);
  color: rgba(255, 255, 255, 0.78);
}

.rich-footer .footer-inner {
  align-items: start;
}

.footer-rich-grid {
  grid-template-columns: 1.15fr repeat(3, 0.8fr);
  padding: 72px 0 44px;
}

.footer-brand-card {
  display: grid;
  gap: 14px;
  max-width: 320px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-brand-card img {
  width: 76px;
  height: 48px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  object-fit: cover;
  object-position: left center;
}

.footer-brand-card strong,
.footer-column h3 {
  color: #fff;
}

.footer-brand-card a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 760;
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-column h3 {
  margin: 0 0 18px;
  font-size: 16px;
}

.footer-column a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold-soft);
}

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

/* Editorial refresh: stronger art direction inspired by modern Figma commerce templates. */
:root {
  --ink: #071a3b;
  --midnight: #09111f;
  --aubergine: #2b174d;
  --plum: #7c3aed;
  --lilac: #b989ff;
  --sun: #ffd34d;
  --cream: #fff7e2;
  --blush: #fff0ea;
  --glass: rgba(255, 255, 255, 0.74);
  --shadow: 0 28px 80px rgba(32, 18, 74, 0.16);
  --max: 1240px;
}

body {
  background:
    linear-gradient(115deg, rgba(255, 211, 77, 0.22) 0 18%, transparent 18% 100%),
    linear-gradient(78deg, transparent 0 62%, rgba(185, 137, 255, 0.22) 62% 100%),
    radial-gradient(circle at 86% 8%, rgba(124, 58, 237, 0.2), transparent 26%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 38%, #fbf8ff 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(7, 26, 59, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 59, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 47%, rgba(124, 58, 237, 0.06) 47% 48%, transparent 48% 100%);
  background-size: 56px 56px, 56px 56px, 180px 180px;
  mask-image: linear-gradient(to bottom, black 0 48%, transparent 88%);
}

.top-strip {
  background: #071a3b;
  color: #fff;
}

.top-strip a {
  color: var(--sun);
}

.site-header {
  background: rgba(255, 250, 240, 0.78);
  border-bottom: 1px solid rgba(7, 26, 59, 0.08);
}

.nav-links {
  color: rgba(7, 26, 59, 0.72);
}

.nav-signup,
.button.gold {
  background: var(--sun);
  border-color: rgba(7, 26, 59, 0.08);
  box-shadow: 0 16px 0 rgba(7, 26, 59, 0.1), 0 26px 42px rgba(255, 191, 46, 0.22);
}

.hero {
  position: relative;
  width: min(1360px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(32px, 6vw, 86px);
  padding-top: clamp(54px, 9vh, 96px);
}

.hero::before {
  content: "ACES";
  position: absolute;
  left: -18px;
  top: 74px;
  z-index: 0;
  color: rgba(124, 58, 237, 0.055);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.04em;
}

.hero-copy {
  display: grid;
  align-content: center;
  min-height: 620px;
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 6.8vw, 88px);
  font-weight: 720;
  line-height: 0.96;
}

.hero p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #40536d;
  font-size: clamp(17px, 1.6vw, 21px);
}

.hero-ace-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 12px;
  margin-top: 28px;
  color: #4d5870;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-ace-line span {
  width: 30px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #fff;
  color: var(--plum);
  box-shadow: 0 10px 24px rgba(32, 18, 74, 0.12);
}

.hero-actions-single {
  justify-content: flex-start;
  max-width: none;
}

.proof-strip {
  max-width: 640px;
  gap: 14px;
}

.proof {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 59, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(32, 18, 74, 0.08);
}

.proof::after {
  content: "A";
  position: absolute;
  right: 12px;
  bottom: -18px;
  color: rgba(124, 58, 237, 0.08);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.proof:nth-child(2) {
  transform: translateY(14px);
}

.proof:nth-child(3) {
  transform: translateY(-6px);
}

.proof-icon.word {
  min-width: 0;
  height: 30px;
  background: #f4ecff;
  color: var(--plum);
}

.seller-hero {
  min-height: 610px;
  border-radius: 44px 44px 12px 44px;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 211, 77, 0.64), transparent 24%),
    linear-gradient(140deg, #fff, #fff8dc 42%, #d9c2ff);
  box-shadow: 0 42px 90px rgba(32, 18, 74, 0.2);
  transform: rotate(1.2deg);
}

.seller-hero::before,
.seller-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.seller-hero::before {
  left: 26px;
  top: 26px;
  width: 72px;
  height: 92px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(32, 18, 74, 0.14);
  transform: rotate(-7deg);
}

.seller-hero::after {
  left: 48px;
  top: 46px;
  content: "A";
  color: var(--plum);
  font-size: 34px;
  font-weight: 900;
}

.seller-portrait-img {
  position: relative;
  z-index: 0;
  filter: saturate(1.06) contrast(1.02);
}

.section-heading h2,
.community-panel-head h2 {
  letter-spacing: -0.02em;
}

.section-heading {
  align-items: end;
}

.pain-stack-section {
  width: 100%;
  max-width: none;
  margin-top: 42px;
  padding: 118px max(16px, calc((100vw - var(--max)) / 2)) 86px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 211, 77, 0.22), transparent 26%),
    linear-gradient(135deg, #080f1e, #21163f 72%, #130c25);
  color: #fff;
}

.pain-stack-section .section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 36px;
}

.pain-stack-section .section-heading h2 {
  color: #fff;
}

.pain-stack-section .eyebrow {
  color: var(--sun);
}

.pain-stack {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.pain-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.34);
}

.pain-card.amplify,
.pain-card.accelerate,
.pain-card.assure {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(255, 211, 77, 0.12), rgba(124, 58, 237, 0.18));
}

.pain-card h3 {
  color: #fff;
}

.pain-card h4 {
  color: var(--sun);
}

.pain-card p {
  color: rgba(255, 255, 255, 0.72);
}

.pain-card a {
  color: var(--sun);
}

.pain-label {
  background: rgba(255, 211, 77, 0.16);
  color: var(--sun);
}

.pain-media-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.24), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 1px, transparent 1px 32px),
    rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.36);
}

.pain-media-slot::before {
  content: "";
  width: 72%;
  height: 72%;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)),
    radial-gradient(circle at 34% 36%, var(--sun) 0 9px, transparent 10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.comparison-screen {
  width: min(1360px, calc(100% - 32px));
}

.comparison-grid {
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-labels,
.comparison-card {
  box-shadow: none;
  border-radius: 0;
}

.comparison-labels span {
  background: rgba(255, 255, 255, 0.46);
}

.comparison-card.traditional {
  background: #fff4f2;
}

.comparison-card.smart {
  background: #f4fff3;
}

.review-wall {
  gap: 0;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 211, 77, 0.14), rgba(124, 58, 237, 0.12));
}

.review-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.review-card:nth-child(2) {
  transform: translateY(34px);
}

.review-card:nth-child(4) {
  transform: translateY(-20px);
}

.inline-path {
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255, 211, 77, 0.16), transparent 20%),
    linear-gradient(135deg, #071a3b, #2b174d);
}

.inline-path::before {
  background: var(--sun);
}

.inline-step::before {
  background: var(--sun);
  box-shadow: 0 0 0 10px rgba(255, 211, 77, 0.18);
}

.inline-copy,
.step-visual {
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.logo-wall {
  padding: 18px;
  border: 1px solid rgba(7, 26, 59, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
}

.logo-tile {
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: grayscale(0.12);
}

.community-panel {
  border-radius: 34px 34px 12px 34px;
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 211, 77, 0.72), transparent 24%),
    linear-gradient(135deg, #ffe7d7, #fff6d8 45%, #eadcff);
  border: 0;
}

.community-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
}

.community-panel-head p {
  margin: 0 0 28px;
  color: #5d6372;
  font-size: 18px;
}

.community-grid article {
  border-radius: 18px;
}

.community-icon {
  background: #ff7b22;
  color: #fff;
  box-shadow: 10px 10px 0 rgba(255, 123, 34, 0.16);
}

.faq-grid details {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.rich-footer {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 211, 77, 0.2), transparent 22%),
    linear-gradient(135deg, #07111f, #15102d 58%, #2b174d);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.sticky-cta .button {
  background: var(--teal-dark);
  color: #fff;
  border-color: rgba(109, 63, 194, 0.4);
  box-shadow: 0 18px 38px rgba(109, 63, 194, 0.28);
}

/* Figma synthesis refresh: Relume structure + Cruip Open hero + Mosaic product cues. */
.hero {
  min-height: calc(100vh - 112px);
  margin-top: 26px;
  padding: clamp(44px, 6vw, 78px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 211, 77, 0.24), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(124, 58, 237, 0.28), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #15102d 58%, #2b174d 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 44px 100px rgba(7, 17, 31, 0.28);
}

.hero::before {
  left: auto;
  right: -34px;
  top: auto;
  bottom: -18px;
  color: rgba(255, 255, 255, 0.04);
}

.hero-copy {
  min-height: 560px;
}

.hero h1,
.hero p {
  color: #fff;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 5.7vw, 76px);
  line-height: 0.98;
}

.hero p {
  color: rgba(255, 255, 255, 0.72);
}

.hero .eyebrow {
  color: var(--sun);
}

.hero-ace-line {
  color: rgba(255, 255, 255, 0.66);
}

.hero-ace-line span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--sun);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.hero-actions-single {
  justify-content: flex-end;
  max-width: 600px;
}

.proof {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.proof strong {
  color: #fff;
}

.proof-icon.word {
  background: rgba(255, 211, 77, 0.14);
  color: var(--sun);
}

.seller-hero {
  isolation: isolate;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 211, 77, 0.42), transparent 22%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.3);
  transform: rotate(0deg);
}

.seller-hero::before {
  inset: 20px;
  width: auto;
  height: auto;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: none;
}

.seller-hero::after {
  content: "";
  left: auto;
  right: 34px;
  top: 34px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun) 0 22%, transparent 23% 100%);
  opacity: 0.92;
}

.seller-portrait-img {
  position: absolute;
  inset: auto 4% 0 auto;
  z-index: 2;
  width: min(88%, 660px);
  height: 94%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(1.08) contrast(1.02) drop-shadow(0 26px 44px rgba(0, 0, 0, 0.22));
}

.hero-dashboard-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 4;
  width: min(430px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.dashboard-card-top,
.dashboard-metrics,
.dashboard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-card-top span,
.dashboard-actions span {
  color: #60708b;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-card-top b {
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff3be;
  color: var(--ink);
  font-size: 13px;
}

.dashboard-metrics {
  margin: 16px 0;
}

.dashboard-metrics span {
  flex: 1;
  padding: 12px 10px;
  border-radius: 14px;
  background: #f5f0ff;
  color: #60708b;
  font-size: 12px;
  font-weight: 700;
}

.dashboard-metrics b {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.dashboard-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  height: 86px;
  align-items: end;
  padding: 12px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(7, 26, 59, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 59, 0.06) 1px, transparent 1px),
    #fff;
  background-size: 26px 26px;
}

.dashboard-flow i {
  display: block;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--sun), var(--lilac));
}

.dashboard-flow i:nth-child(1) { height: 44%; }
.dashboard-flow i:nth-child(2) { height: 72%; }
.dashboard-flow i:nth-child(3) { height: 58%; }
.dashboard-flow i:nth-child(4) { height: 86%; }

.dashboard-actions {
  margin-top: 13px;
}

.dashboard-actions span {
  letter-spacing: 0;
  text-transform: none;
}

.ops-signal-section {
  padding-top: 64px;
  padding-bottom: 96px;
}

.ops-signal-head {
  display: grid;
  grid-template-columns: 0.82fr minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 28px;
}

.ops-signal-head h2 {
  margin: 0;
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.ops-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7, 26, 59, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.ops-signal-grid article {
  min-height: 260px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  border-right: 1px solid rgba(7, 26, 59, 0.08);
}

.ops-signal-grid article:last-child {
  border-right: 0;
}

.ops-signal-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff3be;
  color: var(--plum);
  font-size: 13px;
  font-weight: 860;
}

.ops-signal-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.ops-signal-grid p {
  margin: 0;
  color: #66758d;
  font-size: 16px;
  line-height: 1.58;
}

.pain-card {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.pain-card h3 {
  max-width: 700px;
  font-size: clamp(34px, 5vw, 62px);
}

.pain-copy {
  align-content: center;
}

.pain-media-slot {
  min-height: 420px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) 38px 38px 38px;
  gap: 14px;
}

.pain-media-slot::before {
  content: none;
}

.pain-media-slot span {
  justify-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pain-media-slot b,
.pain-media-slot i {
  display: block;
  border-radius: 18px;
}

.pain-media-slot b {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 22% 32%, rgba(255, 211, 77, 0.7) 0 10px, transparent 11px),
    radial-gradient(circle at 66% 58%, rgba(185, 137, 255, 0.74) 0 14px, transparent 15px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.pain-media-slot i {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
}

.pain-media-slot i:nth-of-type(1) { width: 86%; }
.pain-media-slot i:nth-of-type(2) { width: 68%; }
.pain-media-slot i:nth-of-type(3) { width: 78%; }

.media-growth b {
  background:
    linear-gradient(90deg, rgba(255, 211, 77, 0.8) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, transparent 48%, rgba(124, 58, 237, 0.72) 49% 54%, transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.media-cogs b {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 211, 77, 0.75) 12% 18%, transparent 18% 34%, rgba(185, 137, 255, 0.78) 34% 41%, transparent 41% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.media-support b {
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 211, 77, 0.78) 0 12px, transparent 13px),
    radial-gradient(circle at 72% 30%, rgba(124, 58, 237, 0.76) 0 12px, transparent 13px),
    linear-gradient(90deg, transparent 12%, rgba(255, 255, 255, 0.2) 12% 88%, transparent 88%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

@media (max-width: 980px) {
	  .hero,
	  .split,
	  .portal-grid,
	  .success-path,
	  .comparison-grid,
	  .trust-layout,
	  .resource-showcase,
	  .why-teaser,
	  .integration-panel,
    .ops-signal-head,
    .footer-rich-grid {
	    grid-template-columns: 1fr;
	  }

  .hero {
    min-height: auto;
  }

  .hero-demo {
    min-height: 620px;
  }

  .commerce-window {
    margin-left: 0;
  }

  .path-copy {
    position: relative;
    top: auto;
  }

	  .proof-strip,
	  .kpi-grid,
	  .cards-grid,
	  .stage-grid,
	  .workflow-grid,
	  .package-grid,
	  .trust-metrics,
    .review-wall,
    .logo-wall,
    .ops-signal-grid,
    .community-grid,
    .faq-grid {
	    grid-template-columns: repeat(2, 1fr);
	  }

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

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

  .pain-stack {
    gap: 24vh;
    padding-bottom: 24vh;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .comparison-labels {
    display: none;
  }

  .seller-hero {
    min-height: 520px;
  }

  .seller-portrait-img {
    min-height: 520px;
  }

  .hero-actions-single {
    justify-content: flex-start;
  }

  .hero {
    width: min(100% - 28px, 820px);
    grid-template-columns: 1fr;
  }

  .seller-hero {
    min-height: 560px;
  }

  .hero-dashboard-card {
    width: min(460px, calc(100% - 42px));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links[data-open] {
    display: grid;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    display: block;
  }

	  .proof-strip,
	  .kpi-grid,
	  .cards-grid,
	  .stage-grid,
	  .workflow-grid,
	  .package-grid,
	  .trust-metrics,
	  .resource-stats,
	  .integration-logo-grid,
	  .metric-row,
	  .dashboard-grid,
	  .path-screen-grid,
	  .field-grid,
    .review-wall,
    .logo-wall,
    .ops-signal-grid,
    .community-grid,
    .faq-grid {
	    grid-template-columns: 1fr;
	  }

		  .nav-language,
		  .nav-login {
		    margin-left: 0;
		  }

	  .nav-signup {
	    width: 100%;
	  }

	  .trust-metrics article {
	    min-height: 170px;
	  }

	  .resource-image,
	  .resource-map {
	    min-height: 360px;
	  }

	  .resource-stats {
	    position: relative;
	    left: auto;
	    right: auto;
	    bottom: auto;
	    padding: 14px;
	    background: #fff;
	  }

	  .photo-wall {
	    width: max(100%, 1200px);
	    grid-template-columns: repeat(7, 220px);
	  }

	  .inline-path {
	    padding: 24px 0;
	  }

	  .inline-path::before,
	  .inline-step::before {
	    display: none;
	  }

	  .inline-step {
	    grid-template-columns: 1fr;
	    min-height: auto;
	    gap: 18px;
	    padding: 24px;
	  }

	  .inline-copy,
	  .step-visual {
	    border-radius: 18px;
	  }

  .pain-stack {
    gap: 18vh;
    padding-bottom: 18vh;
  }

  .pain-card {
    top: 86px;
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .pain-card h3 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .pain-card h4 {
    font-size: 20px;
  }

  .pain-media-slot {
    min-height: 220px;
  }

  .ops-signal-section {
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .ops-signal-grid article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 26, 59, 0.08);
  }

  .ops-signal-grid article:last-child {
    border-bottom: 0;
  }

  .community-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .seller-hero {
    min-height: 440px;
    border-radius: 28px;
  }

  .seller-portrait-img {
    min-height: 440px;
    width: 106%;
    opacity: 0.92;
  }

  .hero-dashboard-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 14px;
  }

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

  .seller-backdrop {
    right: 20px;
    width: 72%;
  }

  .seller-card {
    left: 18px;
    top: 32px;
    width: 180px;
  }

  .seller-figure {
    right: -18px;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .phone-demo {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 18px auto 0;
  }

  .path-step {
    min-height: auto;
  }

  .flow-node {
    grid-template-columns: 38px 1fr;
  }

  .flow-node .tag {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .portal-body {
    grid-template-columns: 1fr;
  }

  .portal-side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
  }

  .sticky-cta .button {
    width: 100%;
  }
}

/* Triple-Aces v2: growth operations control tower direction. */
:root {
  --ace-black: #070918;
  --electric-violet: #6d35ff;
  --ace-yellow: #ffe24a;
  --amber-gold: #ffb800;
  --violet-glow: #a855f7;
  --warm-white: #f8f5ef;
  --ink-slate: #171827;
  --mist-gray: #e8e5f2;
  --ink: #171827;
  --midnight: #070918;
  --aubergine: #120a2d;
  --plum: #6d35ff;
  --lilac: #a855f7;
  --sun: #ffe24a;
  --cream: #f8f5ef;
  --line: #e8e5f2;
  --shadow: 0 30px 90px rgba(7, 9, 24, 0.18);
}

body {
  color: var(--ink-slate);
  background:
    radial-gradient(circle at 16% 8%, rgba(109, 53, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(255, 226, 74, 0.12), transparent 26%),
    linear-gradient(180deg, #f8f5ef 0%, #ffffff 38%, #f6f3fb 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(23, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

.top-strip {
  background: var(--ace-black);
  color: rgba(255, 255, 255, 0.84);
}

.top-strip a {
  color: var(--ace-yellow);
}

.site-header {
  background: rgba(248, 245, 239, 0.82);
  border-bottom: 1px solid rgba(23, 24, 39, 0.08);
}

.brand-wordmark small {
  color: var(--electric-violet);
}

.nav-links {
  color: rgba(23, 24, 39, 0.72);
}

.nav-links a:hover {
  color: var(--electric-violet);
}

.nav-language {
  color: var(--electric-violet);
  border-color: rgba(109, 53, 255, 0.24);
  background: rgba(109, 53, 255, 0.08);
}

.button.gold,
.nav-signup {
  background: var(--ace-yellow);
  color: var(--ace-black);
  border-color: rgba(255, 226, 74, 0.46);
  box-shadow: 0 18px 44px rgba(255, 184, 0, 0.2);
}

.ace-hero .button.secondary,
.final-cta-panel .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ace-hero {
  width: min(1440px, calc(100% - 32px));
  min-height: calc(100vh - 104px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 7vw, 108px);
  padding: clamp(56px, 7vw, 96px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 22%, rgba(109, 53, 255, 0.4), transparent 30%),
    radial-gradient(circle at 28% 82%, rgba(255, 226, 74, 0.18), transparent 24%),
    linear-gradient(135deg, #070918 0%, #0d0d25 48%, #190b3f 100%);
  box-shadow: 0 50px 120px rgba(7, 9, 24, 0.34);
}

.ace-hero::before {
  content: "AAA";
  right: clamp(-40px, -3vw, -16px);
  bottom: -26px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(160px, 22vw, 340px);
  letter-spacing: -0.08em;
}

.ace-hero .eyebrow {
  color: var(--ace-yellow);
}

.ace-hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(50px, 6.5vw, 92px);
  line-height: 0.95;
}

.ace-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.ace-hero .hero-actions {
  margin-top: 30px;
}

.micro-proof {
  margin-top: 22px !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 14px !important;
  font-weight: 720;
}

.ace-hand {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.ace-hand::before {
  content: "";
  position: absolute;
  inset: 40px 16px 24px;
  border-radius: 32px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.3), transparent 42%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-ace-card {
  position: absolute;
  width: clamp(220px, 20vw, 300px);
  min-height: clamp(320px, 31vw, 420px);
  padding: 26px;
  border-radius: 24px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(109, 53, 255, 0.82), rgba(7, 9, 24, 0.96));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 36px 80px rgba(0, 0, 0, 0.34),
    0 0 50px rgba(109, 53, 255, 0.22);
}

.hero-ace-card small,
.hero-ace-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ace-card strong {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.03em;
}

.hero-ace-card b {
  position: absolute;
  right: 24px;
  bottom: 12px;
  color: rgba(255, 226, 74, 0.16);
  font-size: 150px;
  line-height: 0.8;
}

.amplify-card {
  left: 4%;
  transform: rotate(-12deg) translateY(14px);
}

.accelerate-card {
  z-index: 2;
  transform: translateY(-18px);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 226, 74, 0.18), transparent 25%),
    linear-gradient(135deg, rgba(109, 53, 255, 0.94), rgba(7, 9, 24, 0.98));
}

.assure-card {
  right: 4%;
  transform: rotate(12deg) translateY(20px);
}

.control-metrics {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  width: min(92%, 620px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(7, 9, 24, 0.72);
  backdrop-filter: blur(18px);
}

.control-metrics span {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 740;
}

.control-metrics b {
  display: block;
  color: var(--ace-yellow);
  font-size: 18px;
}

.gap-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.gap-copy h2,
.three-aces-section h2,
.dashboard-section h2,
.trust-proof-section h2,
.final-cta-panel h2 {
  color: var(--ink-slate);
}

.gap-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.gap-copy p,
.gap-closing {
  color: #606579;
  font-size: 18px;
}

.gap-grid {
  display: grid;
  gap: 14px;
}

.gap-grid article,
.trust-proof-grid article {
  padding: 28px;
  border: 1px solid rgba(23, 24, 39, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(7, 9, 24, 0.08);
}

.gap-grid span {
  color: var(--electric-violet);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gap-grid h3,
.trust-proof-grid h3 {
  margin: 12px 0 10px;
  color: var(--ink-slate);
  font-size: 26px;
}

.gap-grid p,
.trust-proof-grid p {
  margin: 0;
  color: #62687c;
}

.gap-closing {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--electric-violet);
  border-radius: 16px;
  background: rgba(109, 53, 255, 0.07);
  color: var(--ink-slate);
  font-weight: 760;
}

.three-aces-section {
  width: min(1440px, calc(100% - 32px));
  padding: 104px clamp(16px, 4vw, 54px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 226, 74, 0.16), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(109, 53, 255, 0.26), transparent 28%),
    linear-gradient(135deg, #070918, #120a2d);
}

.three-aces-section .section-heading h2,
.three-aces-section .section-heading p {
  color: #fff;
}

.three-aces-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.ace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.ace-profile {
  position: relative;
  min-height: 620px;
  padding: 30px;
  display: grid;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(109, 53, 255, 0.22), rgba(7, 9, 24, 0.7));
  color: #fff;
  overflow: hidden;
}

.ace-profile::after {
  content: "A";
  position: absolute;
  right: 18px;
  bottom: -8px;
  color: rgba(255, 226, 74, 0.12);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
}

.ace-profile span {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 226, 74, 0.14);
  color: var(--ace-yellow);
  font-size: 12px;
  font-weight: 820;
}

.ace-profile h3 {
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.95;
}

.ace-profile h4 {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.ace-profile p,
.ace-profile li {
  color: rgba(255, 255, 255, 0.72);
}

.ace-profile ul {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.ace-profile li {
  padding-left: 18px;
  position: relative;
}

.ace-profile li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ace-yellow);
}

.ace-profile b {
  margin-top: auto;
  color: var(--ace-yellow);
  font-size: 18px;
}

.ops-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.ops-comparison article {
  overflow: hidden;
  border: 1px solid rgba(23, 24, 39, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.ops-comparison article:nth-child(2) {
  border-color: rgba(109, 53, 255, 0.28);
  background: linear-gradient(180deg, rgba(109, 53, 255, 0.08), rgba(255, 255, 255, 0.86));
}

.ops-comparison h3,
.ops-comparison p {
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(23, 24, 39, 0.08);
}

.ops-comparison h3 {
  color: var(--ink-slate);
  font-size: 26px;
  text-align: center;
}

.ops-comparison p {
  color: #62687c;
  min-height: 82px;
  display: flex;
  align-items: center;
}

.comparison-cta,
.dashboard-cta {
  margin-top: 22px;
}

.ops-path {
  background:
    radial-gradient(circle at 10% 10%, rgba(109, 53, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #070918, #18113e);
}

.ops-path::before,
.inline-step::before {
  background: var(--ace-yellow);
}

.plan-visual .ops-radar,
.review-chart {
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 12px;
  border-radius: 20px;
  background:
    radial-gradient(circle, rgba(255, 226, 74, 0.18) 0 14%, transparent 15% 100%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 34px 34px, 34px 34px;
}

.ops-radar b,
.review-chart b {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dashboard-section {
  width: min(1340px, calc(100% - 32px));
}

.ops-dashboard {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(135deg, #070918, #15102d);
  box-shadow: 0 40px 100px rgba(7, 9, 24, 0.22);
}

.ops-dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 6px 22px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 760;
}

.ops-dashboard-top b {
  color: var(--ace-yellow);
}

.ops-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ops-dashboard-grid span,
.ops-dashboard-bottom div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.58);
  font-weight: 720;
}

.ops-dashboard-grid b {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 30px;
}

.ops-dashboard-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.ops-dashboard-bottom strong {
  display: block;
  color: #fff;
  margin-bottom: 16px;
}

.ops-dashboard-bottom i {
  display: block;
  height: 12px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--electric-violet), var(--ace-yellow));
}

.ops-dashboard-bottom i:nth-of-type(2) { width: 74%; }
.ops-dashboard-bottom i:nth-of-type(3) { width: 52%; }

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

.trust-proof-grid strong {
  color: var(--electric-violet);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
}

.community-panel {
  background:
    radial-gradient(circle at 88% 0%, rgba(109, 53, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #fff, #f8f5ef);
}

.community-icon {
  background: var(--electric-violet);
  box-shadow: 10px 10px 0 rgba(109, 53, 255, 0.14);
}

.final-cta-panel {
  padding: clamp(38px, 7vw, 86px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 226, 74, 0.24), transparent 26%),
    linear-gradient(135deg, #070918, #1a0d40);
  color: #fff;
  text-align: center;
  box-shadow: 0 42px 100px rgba(7, 9, 24, 0.26);
}

.final-cta-panel h2 {
  margin: 12px auto;
  max-width: 820px;
  color: #fff;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.95;
}

.final-cta-panel p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.final-cta-panel .hero-actions {
  justify-content: center;
}

.rich-footer {
  background:
    radial-gradient(circle at 14% 18%, rgba(109, 53, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #070918, #120a2d 68%, #070918);
}

.sticky-cta .button {
  background: var(--electric-violet);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 38px rgba(109, 53, 255, 0.32);
}

@media (max-width: 980px) {
  .ace-hero,
  .gap-section,
  .ops-comparison,
  .ops-dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .ace-hand {
    min-height: 600px;
  }

  .ace-grid,
  .ops-dashboard-grid,
  .trust-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .ace-hero {
    width: min(100% - 24px, 100%);
    padding: 34px 22px;
    border-radius: 24px;
  }

  .ace-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .ace-hand {
    min-height: 660px;
  }

  .hero-ace-card {
    width: 230px;
    min-height: 320px;
  }

  .amplify-card {
    left: 0;
  }

  .assure-card {
    right: 0;
  }

  .control-metrics,
  .ace-grid,
  .ops-dashboard-grid,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .gap-section,
  .three-aces-section,
  .dashboard-section {
    width: min(100% - 24px, 100%);
  }

  .three-aces-section {
    padding: 52px 18px;
    border-radius: 24px;
  }

  .ace-profile {
    min-height: auto;
  }

  .ops-comparison p {
    min-height: auto;
  }
}
