@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══ Global / Reset ═══ */
:root {
  --g9: #062518;
  --g7: #155237;
  --g6: #196b47;
  --g5: #1f8a5c;
  --g4: #28b574;
  --g3: #6dd4a4;
  --g2: #b2e8ce;
  --g0: #f0fbf5;
  --s5: #0896d8;
  --s4: #2cb4f0;
  --s3: #7ed0f5;
  --n9: #0d1f17;
  --n5: #546860;
  --n4: #7d9890;
  --n2: #d6e6e1;
  --wh: #ffffff;
  --lne: rgba(13, 31, 23, .08);
  --lne2: rgba(13, 31, 23, .13);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--wh);
  color: var(--n9);
  -webkit-font-smoothing: antialiased;
}

/* ═══ Section 1 – AI Infusion ═══ */
.ais {
  font-family: 'Inter', sans-serif;
  background: #f0faf5;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

.ais-hero {
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf4 50%, #f0f9ff 100%);
  padding: 60px 40px 100px;
  position: relative;
  overflow: hidden;
}

.ais-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(27, 170, 94, .22) 0%, transparent 45%),
    radial-gradient(circle at 78% 30%, rgba(56, 189, 248, .18) 0%, transparent 40%),
    radial-gradient(circle at 60% 90%, rgba(27, 170, 94, .1) 0%, transparent 35%);
  pointer-events: none;
}

.ais-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ais-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.ais-hero-left {
  max-width: 580px;
}

.ais-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(35, 191, 68, .35);
  background: rgba(35, 191, 68, .1);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #23bf44;
  text-transform: uppercase;
}

.ais-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23bf44;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3;
    transform: scale(.8)
  }

  50% {
    opacity: 1;
    transform: scale(1)
  }
}

.ais-hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: #28332ebe;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.ais-hero-title em {
  font-style: normal;
  color: #23bf44;
}

.ais-hero-title span {
  font-style: italic;
  padding-right: 5px;
  background: linear-gradient(90deg, #196b47, #0896d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /*color: #0693e3;*/
}

.ais-hero-desc {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.ais-hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ais-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.ais-pill-green {
  text-decoration: none;
  background: #1baa5e;
  color: white;
}

.ais-pill-green:hover {
  background: #0f7a42;
}

.ais-pill-ghost {
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--body);
}

/* ── HERO CAROUSEL ────────────────── */
.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 880px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.hero-carousel:hover {
  transform: translateY(-5px);
}

.hero-carousel-slides {
  position: relative;
  height: 600px;
  width: 100%;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-modal-overlay.active .image-modal-content {
  transform: scale(1) translateY(0);
}

.image-modal-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.hero-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  object-fit: contain;
  display: block;

}




/* ── BROWSER FRAME ────────────────── */
.browser-frame {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.browser-header {
  height: 28px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #28c840;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.carousel-dot {
  width: 12px;
  height: 6px;
  border-radius: 99px;
  background: rgba(6, 147, 227, 0.12);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.carousel-dot.on {
  background: #0693e3;
  width: 36px;
}

.ais-features {
  padding: 72px 64px 80px;
  max-width: 100%;
  margin: 0 auto;
}

.ais-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #dcf5e9;
  border: 1px solid #96d4b4;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1baa5e;
  text-transform: uppercase;
}

.ais-section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #0c1a12;
  letter-spacing: -1px;
  margin-bottom: 6px;
  line-height: 1.1;
  text-align: center;
}

.ais-section-title em {
  font-style: italic;
  background: linear-gradient(90deg, #196b47, #0896d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 3px;
}

.ais-section-sub {
  font-size: 15px;
  color: #5a7a68;
  line-height: 1.65;
  text-align: center;
}

.ais-grid {
  display: grid;
  grid-template-columns: repeat(6, calc((425px + 24px) / 2));
  grid-template-rows: 625px 625px;
  gap: 0;
  row-gap: 24px;
  margin-top: 48px;
  justify-content: center;
}

.ais-grid .fc:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
  margin-right: 12px;
}

.ais-grid .fc:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 1;
  margin-left: 12px;
  margin-right: 12px;
}

.ais-grid .fc:nth-child(3) {
  grid-column: 5 / span 2;
  grid-row: 1;
  margin-left: 12px;
}

.ais-grid .fc:nth-child(4) {
  grid-column: 2 / span 2;
  grid-row: 2;
  margin-left: 12px;
  margin-right: 12px;
}

.ais-grid .fc:nth-child(5) {
  grid-column: 4 / span 2;
  grid-row: 2;
  margin-left: 12px;
  margin-right: 12px;
}

.fc {
  background: #ffffff;
  border-radius: 22px;
  border: 1.5px solid #c8e8d8;
  padding: 28px 26px 22px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
  width: 425px;
  height: 625px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.fc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(27, 170, 94, .12);
  border-color: #1baa5e;
}

.fc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
}

.fc.green::before {
  background: linear-gradient(90deg, #1baa5e, #22c55e);
}

.fc.sky::before {
  background: linear-gradient(90deg, #38bdf8, #0284c7);
}

.fc.dark::before {
  background: linear-gradient(90deg, #0c1a12, #1d3828);
}

.fc.tall {
  grid-row: 1 / 3;
}

.fc-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.fc-ico.g {
  background: linear-gradient(135deg, #dcf5e9, #b8ecd4);
}

.fc-ico.s {
  background: linear-gradient(135deg, #daf0fe, #b3e0fb);
}

.fc-ico.p {
  background: linear-gradient(135deg, #ede9fe, #d4c8fc);
}

.fc-ico.d {
  background: linear-gradient(135deg, #f0f4f2, #dce8e2);
}

.fc-title {
  font-size: 17px;
  font-weight: 800;
  color: #0c1a12;
  letter-spacing: -.4px;
  margin-bottom: 8px;
}

.fc-desc {
  font-size: 13px;
  color: #5a7a68;
  line-height: 1.65;
  margin-bottom: 14px;
}

.mock {
  background: #f4fbf7;
  border: 1.5px solid #c8e8d8;
  border-radius: 14px;
  padding: 16px;
}

.mm-hdr {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: #5a7a68;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.mm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mm-box {
  flex: 1;
  background: white;
  border: 1.5px solid #d0e8da;
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 500;
  color: #0c1a12;
}

.mm-box.hit {
  border-color: #1baa5e;
  background: #f0fdf6;
  color: #1baa5e;
  font-weight: 700;
}

.mm-box.miss {
  opacity: .38;
  border-style: dashed;
  color: #9ab5a8;
  font-style: italic;
}

.mm-tag {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  background: #1baa5e;
  color: white;
  letter-spacing: .3px;
  flex-shrink: 0;
}

.mm-arr {
  width: 24px;
  height: 2px;
  background: #1baa5e;
  position: relative;
  flex-shrink: 0;
}

.mm-arr::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: #1baa5e;
}

.mm-arr.grey {
  background: #c0d0c8;
}

.mm-arr.grey::after {
  border-left-color: #c0d0c8;
}

.mm-stats {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mm-stat {
  flex: 1;
  text-align: center;
  background: white;
  border: 1.5px solid #d0e8da;
  border-radius: 10px;
  padding: 10px 6px;
}

.mm-stat .n {
  font-size: 20px;
  font-weight: 900;
  color: #1baa5e;
  display: block;
  line-height: 1;
}

.mm-stat .n.red {
  color: #e24b4a;
}

.mm-stat .l {
  font-size: 10px;
  color: #5a7a68;
  display: block;
  margin-top: 3px;
  font-weight: 500;
}

.mf-prompt {
  background: linear-gradient(135deg, #dcf5e9, #d4f0fd);
  border: 1.5px solid #a4dfc0;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 12px;
  color: #0a3322;
  line-height: 1.55;
  margin-bottom: 13px;
  font-style: italic;
  font-weight: 500;
}

.mf-row {
  display: flex;
  gap: 10px;
  margin-bottom: 9px;
  align-items: center;
}

.mf-lbl {
  width: 88px;
  font-size: 11px;
  font-weight: 700;
  color: #5a7a68;
  letter-spacing: .3px;
  flex-shrink: 0;
}

.mf-val {
  flex: 1;
  background: white;
  border: 1.5px solid #c8e8d8;
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 12.5px;
  color: #0c1a12;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mf-val.empty {
  color: #9ab5a8;
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
}

.ai-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  background: #0284c7;
  color: white;
  flex-shrink: 0;
  letter-spacing: .3px;
}

.mc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 9px;
  margin-bottom: 8px;
}

.mc-row.err {
  background: #fff5f5;
  border: 1.5px solid #fcc;
}

.mc-row.ok {
  background: #f0fdf6;
  border: 1.5px solid #a4e0bc;
}

.mc-before {
  flex: 1;
  color: #e24b4a;
  text-decoration: line-through;
  font-size: 12px;
}

.mc-after {
  flex: 1;
  color: #1baa5e;
  font-weight: 600;
  font-size: 12px;
}

.mc-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  flex-shrink: 0;
  letter-spacing: .3px;
}

.mc-badge.dup {
  background: #fde8e8;
  color: #a32d2d;
}

.mc-badge.fmt {
  background: #daf0fe;
  color: #0284c7;
}

.mc-badge.ok {
  background: #dcf5e9;
  color: #0f7a42;
}

.mc-summary {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mc-sum {
  flex: 1;
  text-align: center;
  padding: 7px 4px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}

.mc-sum.r {
  background: #fde8e8;
  color: #a32d2d;
}

.mc-sum.b {
  background: #daf0fe;
  color: #0284c7;
}

.mc-sum.g {
  background: #dcf5e9;
  color: #0f7a42;
}

.ap-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  background: #e4f3ec;
  border-radius: 9px;
  padding: 3px;
}

.ap-tab {
  flex: 1;
  text-align: center;
  padding: 6px;
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 700;
  color: #5a7a68;
  transition: all .15s;
}

.ap-tab.on {
  background: white;
  color: #0c1a12;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.ap-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: white;
  border: 1.5px solid #dceae4;
  border-radius: 12px;
  padding: 12px 13px;
  margin-bottom: 9px;
  transition: border-color .18s;
}

.ap-item:hover {
  border-color: #1baa5e;
}

.ap-item:last-child {
  margin-bottom: 0;
}

.ap-bar {
  width: 4px;
  border-radius: 3px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 40px;
}

.ap-bar.tr {
  background: #0284c7;
}

.ap-bar.mn {
  background: #f59e0b;
}

.ap-bar.wr {
  background: #7c3aed;
}

.ap-bar.ow {
  background: #e24b4a;
}

.ap-pill {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 5px;
  flex-shrink: 0;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.ap-pill.tr {
  background: #daf0fe;
  color: #0284c7;
}

.ap-pill.mn {
  background: #fef3dc;
  color: #854f0b;
}

.ap-pill.wr {
  background: #ede9fe;
  color: #5b21b6;
}

.ap-pill.ow {
  background: #fff0f0;
  color: #a32d2d;
}

.ap-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #0c1a12;
}

.ap-code {
  font-size: 10.5px;
  color: #5a7a68;
  margin: 2px 0 3px;
}

.ap-reason {
  font-size: 11px;
  color: #7a9a88;
  line-height: 1.4;
}

.ap-status {
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.ap-status.ap {
  background: #dcf5e9;
  color: #0f7a42;
}

.ap-status.esc {
  background: #faeeda;
  color: #633806;
}

.ap-status.rev {
  background: #daf0fe;
  color: #0284c7;
}

.ap-conf {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.ap-conf-pct {
  font-size: 10px;
  font-weight: 700;
  width: 28px;
  text-align: right;
}

.ap-conf-pct.hi {
  color: #1baa5e;
}

.ap-conf-pct.md {
  color: #f59e0b;
}

.ap-conf-pct.lo {
  color: #e24b4a;
}

.ap-conf-track {
  flex: 1;
  height: 5px;
  background: #e0ece6;
  border-radius: 3px;
  overflow: hidden;
}

.ap-conf-fill {
  height: 100%;
  border-radius: 3px;
  animation: grow .7s ease both;
}

@keyframes grow {
  from {
    width: 0;
  }
}

.ap-conf-fill.hi {
  background: #1baa5e;
}

.ap-conf-fill.md {
  background: #f59e0b;
}

.ap-conf-fill.lo {
  background: #e24b4a;
}

.ap-footer {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.ap-foot-pill {
  flex: 1;
  text-align: center;
  padding: 7px;
  border-radius: 9px;
  font-size: 10.5px;
  font-weight: 700;
}

.ap-foot-pill.g {
  background: #dcf5e9;
  color: #0f7a42;
}

.ap-foot-pill.a {
  background: #faeeda;
  color: #633806;
}

.ap-foot-pill.b {
  background: #daf0fe;
  color: #0284c7;
}

.ms-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  border: 2px solid #1baa5e;
  border-radius: 10px;
  padding: 9px 14px;
  margin-bottom: 12px;
}

.ms-bar-icon {
  color: #1baa5e;
  font-size: 14px;
}

.ms-bar-txt {
  flex: 1;
  font-size: 12px;
  color: #0c1a12;
  font-style: italic;
}

.ms-bar-tag {
  font-size: 9px;
  font-weight: 800;
  background: #1baa5e;
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
}

.ms-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid #d0e8da;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.ms-item:last-child {
  margin-bottom: 0;
}

.ms-item-info {
  flex: 1;
}

.ms-item-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #0c1a12;
}

.ms-item-sub {
  font-size: 10.5px;
  color: #5a7a68;
  margin-top: 1px;
}

.ms-score {
  font-size: 11px;
  font-weight: 800;
  color: #1baa5e;
}

.mi-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
  margin-bottom: 12px;
}

.mi-bar-col {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: #c0e0ce;
}

.mi-bar-col.hi {
  background: #1baa5e;
}

.mi-bar-col.red {
  background: #e24b4a;
}

.mi-alert {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-radius: 10px;
  padding: 9px 11px;
  margin-bottom: 8px;
  font-size: 11.5px;
  line-height: 1.5;
}

.mi-alert:last-child {
  margin-bottom: 0;
}

.mi-alert.warn {
  background: #fff5f5;
  border: 1.5px solid #fcc;
  color: #0c1a12;
}

.mi-alert.good {
  background: #f0fdf6;
  border: 1.5px solid #a4e0bc;
  color: #0c1a12;
}

.mi-alert-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.mi-alert strong.r {
  color: #e24b4a;
}

.mi-alert strong.g {
  color: #1baa5e;
}

.fc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  flex-shrink: 0;
}

.fc-tag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 7px;
  letter-spacing: .3px;
}

.fc-tag.g {
  background: #dcf5e9;
  color: #0f7a42;
}

.fc-tag.s {
  background: #daf0fe;
  color: #0284c7;
}

.fc-tag.p {
  background: #ede9fe;
  color: #3c3489;
}

.fc-powered {
  font-size: 10.5px;
  font-weight: 600;
  color: #5a7a68;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fc-powered::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1baa5e;
  display: inline-block;
  animation: pulse 1.8s infinite;
}

.ais-cta {
  background: linear-gradient(135deg, #0a3322 0%, #0d2b1a 50%, #062840 100%);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.ais-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(27, 170, 94, .18) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(56, 189, 248, .15) 0%, transparent 40%);
}

.ais-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ais-cta-text h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: white;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.ais-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  max-width: 480px;
  line-height: 1.6;
}

.ais-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-wht {
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  background: white;
  color: #0c1a12;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .18s;
  text-decoration: none;
  white-space: nowrap;
}

.cta-wht:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.cta-ghost {
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .18s;
  text-decoration: none;
  white-space: nowrap;
}

.cta-ghost:hover {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .14);
}


/*14 may*/
/*img {*/
/*  max-width: 100%;*/
/*  height: auto;*/
/*}*/
@media(max-width:960px) {
  .ais-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fc.tall {
    grid-row: auto;
  }

  /*.ais-hero-inner { flex-direction: column; }*/
  .ais-hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }



  /* 14 may */
  .ais-hero {
    padding: 40px 20px 60px;
  }

  .ais-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    /* ONE COLUMN */
    gap: 40px;
    text-align: center;
  }

  .ais-hero-left {
    max-width: 100%;
    margin: 0 auto;
  }

  .ais-hero-desc {
    max-width: 100%;
    margin: 0 auto 28px;
  }

  .ais-hero-pills {
    justify-content: center;
  }

  .hero-carousel {
    max-width: 100%;
  }

  .hero-carousel-slides {
    height: auto;
    min-height: 300px;
  }

  .hero-carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 600px) {

  .ais-hero-title {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .hero-carousel-slides {
    min-height: 220px;
  }

}

@media(max-width:600px) {
  .ais-grid {
    grid-template-columns: 1fr;
  }

  .ais-hero,
  .ais-features,
  .ais-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ═══ Section 2 – Auto Onboard ═══ */
.ao-section {
  width: 100%;
  height: 400px;
  background: var(--wh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--lne2);
  border-bottom: 1px solid var(--lne2);
  margin-top: 65px;
}

.ao-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  /*background:*/
  /*  radial-gradient(ellipse 60% 80% at 90% 50%, rgba(8,150,216,.06) 0%, transparent 65%),*/
  /*  radial-gradient(ellipse 50% 70% at 10% 50%, rgba(25,107,71,.07) 0%, transparent 65%),*/
  /*  repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(13,31,23,.025) 56px, rgba(13,31,23,.025) 57px),*/
  /*  repeating-linear-gradient(0deg,  transparent, transparent 56px, rgba(13,31,23,.025) 56px, rgba(13,31,23,.025) 57px);*/
}

.ao-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.ao-dash {
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--g6), var(--s5));
}

.ao-eye {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ao-hed {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--n9);
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1.05;
}

.ao-hed em {
  padding-right: 3px;
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(110deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ao-sub {
  font-size: 10px;
  font-weight: 200;
  color: var(--n4);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
  text-align: center;
  letter-spacing: -.01em;
}

.pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 0 40px;
}

.conn {
  flex: 1;
  height: 2px;
  position: relative;
}

.conn-track {
  width: 100%;
  height: 2px;
  background: rgba(13, 31, 23, .1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.conn-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--g6), var(--s5));
  border-radius: 2px;
  transition: width .7s cubic-bezier(.4, 0, .2, 1);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--wh), var(--wh)) padding-box,
    linear-gradient(135deg, rgba(13, 31, 23, .12), rgba(13, 31, 23, .06)) border-box;
}

.step-icon svg,
.step-icon img {
  transition: transform .25s;
}

.step:hover .step-icon {
  transform: translateY(-4px);
}

.step.done .step-icon {
  background:
    linear-gradient(var(--wh), var(--wh)) padding-box,
    linear-gradient(135deg, var(--g6), var(--s5)) border-box;
  box-shadow: 0 0 0 4px rgba(25, 107, 71, .45);
}

.step.active .step-icon {
  background:
    linear-gradient(var(--wh), var(--wh)) padding-box,
    linear-gradient(135deg, var(--g6), var(--s5)) border-box;
  border: 2px solid transparent;
  animation: stepGlow 2s ease-in-out infinite;
}

@keyframes stepGlow {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(25, 107, 71, .4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(25, 107, 71, .6);
  }
}

.step-check {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g6), var(--s5));
  border: 2px solid var(--wh);
  display: none;
  align-items: center;
  justify-content: center;
}

.step.done .step-check {
  display: flex;
}

.step-pulse {
  display: none;
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g4), var(--s4));
  animation: stepPing 1.4s ease-in-out infinite;
}

.step.active .step-pulse {
  display: block;
}

@keyframes stepPing {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  70%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.step-num {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: rgba(13, 31, 23, .22);
  transition: color .25s;
  line-height: 1;
}

.step.done .step-num,
.step.active .step-num {
  background: linear-gradient(90deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--n5);
  text-align: center;
  max-width: 84px;
  line-height: 1.25;
  transition: color .25s;
  letter-spacing: -.02em;
}

.step.done .step-label,
.step.active .step-label {
  color: var(--n9);
}

.step-tag {
  font-size: 9px;
  font-weight: 700;
  color: rgba(13, 31, 23, .28);
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.step.active .step-tag,
.step.final .step-tag {
  background: linear-gradient(90deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ao-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--n4);
  margin-top: 4px;
  position: relative;
  z-index: 2;
  height: 16px;
  text-align: center;
  transition: opacity .3s;
  letter-spacing: -.01em;
}

.ao-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.ao-btn {
  padding: 8px 22px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all .18s;
  letter-spacing: -.01em;
  border: 1.5px solid;
}

.ao-btn.primary {
  background: linear-gradient(135deg, var(--g6), var(--s5));
  border-color: transparent;
  color: var(--wh);
}

.ao-btn.primary:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.ao-btn.ghost {
  background: transparent;
  border-color: var(--lne2);
  color: var(--n5);
}

.ao-btn.ghost:hover {
  border-color: var(--g6);
  color: var(--g6);
}

.ao-zoom-wrapper {
  transform: scale(1.5);
  transform-origin: top center;
  width: 100%;
}

.ao-zoom-outer {
  width: 100%;
  overflow: hidden;
  height: calc(450px * 1.5);
}

@media (max-width: 700px) {
  .ao-section {
    height: auto;
    padding: 40px 20px;
  }

  .pipeline {
    padding: 0 16px;
    max-width: 100%;
  }

  .step-icon {
    width: 56px;
    height: 56px;
  }

  .step-label {
    font-size: 10px;
    max-width: 60px;
  }

  .step-tag {
    display: none;
  }

  .step-num {
    display: none;
  }

  .conn-track {
    height: 1.5px;
  }
}

/* ═══ Section 3 – Mind Map ═══ */
.wrap {
  width: 100%;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  padding: 0px 32px 0px;
}

.mindmap-section {
  background: #f2f7f4;
  position: relative;
}

.mindmap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #b4d4c2 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  opacity: 0.4;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: #a8edca;
  top: -120px;
  left: -80px;
  opacity: 0.28;
}

.blob-2 {
  width: 320px;
  height: 320px;
  background: #b2dff5;
  bottom: -80px;
  right: -60px;
  opacity: 0.25;
}

.inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 30px;
}

/*.eyebrow { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }*/
/*.eyebrow-tag {*/
/*  background: #e2f5eb; border: 1px solid #9ed4b8; border-radius: 999px;*/
/*  padding: 5px 16px; font-size: 11px; font-weight: 600;*/
/*  letter-spacing: 2px; color: #1a8a50; text-transform: uppercase;*/
/*}*/

.inner .eyebrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-bottom: 14px;
}
.inner .eyebrow::before,
.inner .eyebrow::after {
  display: none !important;
}

.line {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--g6), var(--s5));
  flex-shrink: 0;
}

.eyebrow-tag {
  padding: 5px 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* gradient text (optional nice effect) */
  background: linear-gradient(90deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading {
  text-align: center;
  margin-bottom: 8px;
}

.heading h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #0f1c14;
  line-height: 1.12;
  letter-spacing: -1px;
}

.heading h2 em {
  font-style: italic;
  background: linear-gradient(110deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub {
  text-align: center;
  font-size: 14px;
  color: #7a9986;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.6;
}

.map-wrap {
  width: 100%;
}

.map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.sat {
  cursor: pointer;
  outline: none;
}

.sat:hover .ncard,
.sat:focus .ncard {
  transform: translateY(-8px) scale(1.02);
  filter: none;
}

.ncard {
  transition: transform 0.24s ease, filter 0.24s ease;
  transform-origin: center;
}

.nlogo {
  pointer-events: none;
}

.card-face {
  fill: url(#cardshine);
}

.card-shadow {
  fill: rgba(15, 28, 20, 0.08);
}

.card-edge {
  fill: rgba(255, 255, 255, 0.82);
}

@keyframes drawray {
  to {
    stroke-dashoffset: 0;
  }
}

.ray {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawray 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  fill: none;
}

@keyframes cpulse {

  0%,
  100% {
    opacity: .10
  }

  50% {
    opacity: .22
  }
}

.cring {
  animation: cpulse 3s ease-in-out infinite;
}

.cring2 {
  animation: cpulse 3s ease-in-out infinite 1.2s;
}

@keyframes dblink {

  0%,
  100% {
    opacity: .35
  }

  50% {
    opacity: 1
  }
}

.dblink {
  animation: dblink 2.2s ease-in-out infinite;
}

.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
  border-top: 1px solid #d0e8da;
  padding: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  border-right: 1px solid #d0e8da;
  font-size: 12.5px;
  color: #6a8870;
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  font-weight: 700;
  font-size: 14px;
  color: #0f1c14;
}

.sdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sap-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 20, 15, 0.45);
  backdrop-filter: blur(8px);
  z-index: 9999;
}

.sap-modal.open {
  display: flex;
}

.sap-dialog {
  width: min(460px, 100%);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid rgba(26, 138, 80, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(9, 20, 15, 0.22);
  padding: 26px 26px 22px;
  position: relative;
}

.sap-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #e9f5ee;
  color: #236e48;
  font-size: 18px;
  cursor: pointer;
}

.sap-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9f5ee;
  color: #1a8a50;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 14px;
}

.sap-dialog h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f1c14;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.sap-dialog p {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.7;
  color: #547369;
}

@media (max-width: 860px) {
  .wrap {
    padding: 24px 16px 24px;
  }

  .sub {
    margin-bottom: 26px;
  }

  .stats {
    gap: 12px;
  }

  .stat {
    border-right: none;
    padding: 0 8px;
  }
}


/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  /* margin:0 48px 72px; */
  background: linear-gradient(130deg, #0d3d28 0%, var(--g6) 50%, #0272b0 100%);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-band::before {
  content: "What's New";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -.06em;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: 180px;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.cta-text h2 em {
  font-style: italic
}

.cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 400px
}

.cta-acts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.cbtn-w {
  padding: 12px 24px;
  border-radius: 9px;
  background: #fff;
  color: #0d3d28;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .16s;
  text-decoration: none;
}

.cbtn-w:hover {
  opacity: .92;
  transform: translateY(-2px)
}

.cbtn-g {
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: all .14s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.cbtn-g:hover {
  background: rgba(255, 255, 255, .17);
  color: #fff
}

@media (max-width: 768px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    margin: 0 16px 40px;
    border-radius: 20px;
  }

  .cta-band::before {
    font-size: 80px;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
  }

  .cta-band::after {
    display: none;
  }

  .cta-acts {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .cbtn-w,
  .cbtn-g {
    width: 100%;
  }

  .fc {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .map-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .map-wrap svg {
    min-width: 800px;
  }
}

@media (max-width: 960px) {
  .ais-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
  }

  .ais-grid .fc:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    width: 100%;
    height: auto;
  }

  .pipeline-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .pipeline {
    min-width: 600px;
  }
}


@media (max-width: 960px) {
  .ao-zoom-wrapper {
    transform: scale(1);
  }

  .ao-zoom-outer {
    height: 400px;
  }

  .map-wrap svg {
    min-width: 0 !important;
    width: 100%;
    height: auto;
  }

  .map-wrap {
    overflow-x: hidden !important;
  }

  .pipeline-wrapper {
    overflow-x: hidden !important;
  }
}

@media (max-width: 768px) {
  .ao-zoom-wrapper {
    transform: scale(0.85);
  }

  .ao-zoom-outer {
    height: calc(400px * 0.85);
  }
}

@media (max-width: 500px) {
  .ao-zoom-wrapper {
    transform: scale(0.65);
    transform-origin: top center;
  }

  .ao-zoom-outer {
    height: calc(400px * 0.65);
  }

  .map-wrap svg {
    min-width: 115% !important;
    margin-left: -7.5%;
  }
}


@media (max-width: 768px) {
  .ao-zoom-wrapper {
    transform: none !important;
  }

  .ao-zoom-outer {
    height: auto !important;
  }

  .ao-section {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 40px 16px;
  }

  .ao-eyebrow {
    order: 1;
  }

  .ao-hed {
    order: 2;
  }

  .ao-sub {
    order: 3;
  }

  .ao-controls {
    order: 4;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .pipeline {
    order: 5;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-width: auto;
    padding: 0;
  }

  .step {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--lne2);
    border-radius: 12px;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }

  .step-icon {
    width: 56px;
    height: 56px;
  }

  .step-label {
    max-width: none;
    font-size: 14px;
    text-align: left;
  }

  .step-tag {
    display: block;
    text-align: left;
  }

  .conn {
    display: none;
  }

  .ao-status {
    order: 6;
    margin-top: 20px;
  }
}


/*@media (max-width: 960px) {*/
/*  .map-wrap svg { min-width: 130% !important; margin-left: -15%; }*/
/*}*/
/*@media (max-width: 600px) {*/
/*  .map-wrap svg { min-width: 150% !important; margin-left: -25%; }*/
/*}*/
/*@media (max-width: 400px) {*/
/*  .map-wrap svg { min-width: 180% !important; margin-left: -40%; }*/
/*}*/

/* =========================================
   MOBILE SVG FIX
========================================= */

.map-wrap {
  width: 100%;
  overflow-x: hidden;
}

.map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* TABLET */
@media (max-width: 768px) {

  .wrap {
    padding: 40px 16px;
  }

  .heading h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .sub {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .map-wrap svg {
    width: 115%;
    margin-left: -7.5%;
  }

}

/* SMALL MOBILE */
@media (max-width: 600px) {

  .wrap {
    padding: 32px 12px;
  }

  .heading h2 {
    font-size: 24px;
  }

  .sub {
    font-size: 12px;
    line-height: 1.5;
  }

  .map-wrap svg {
    width: 135%;
    margin-left: -17.5%;
  }

}

/* VERY SMALL DEVICES */
@media (max-width: 342px) {

  .wrap {
    padding: 24px 8px;
  }

  .heading h2 {
    font-size: 19px;
    line-height: 1.3;
  }

  .sub {
    font-size: 10px;
    line-height: 1.5;
  }

  .map-wrap svg {
    width: 165%;
    margin-left: -32.5%;
  }

}

/* VERY SMALL MOBILE */
/*@media (max-width: 380px) {*/

/*  .map-wrap svg {*/
/*    width: 155%;*/
/*    margin-left: -27.5%;*/
/*  }*/

/*}*/
/* EXTRA SMALL PHONES */
/*@media (max-width: 344px) {*/
/* .map-wrap svg {*/
/*    width: 150%;*/
/*margin-left: -.5%;*/
/*  }*/
/*}*/

/* ================================
   IMAGE LIGHTBOX / FULLSCREEN
================================ */

.image-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.image-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content img {
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 14px;
}


/* CLOSE BUTTON */

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;

  background: black;
  color: white;

  font-size: 28px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER EFFECT */

.image-modal-close:hover {
  background: #ff5f57;
  color: white;

  transform: rotate(90deg) scale(1.08);

  box-shadow:
    0 8px 20px rgba(255, 59, 48, 0.35);
}

/* MOBILE FIX */
.hero-carousel img {
  touch-action: manipulation;
  -webkit-user-drag: none;
  user-select: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .image-modal-overlay {
    padding: 14px;
  }

  .image-modal-content img {
    max-height: 80vh;
    border-radius: 10px;
  }

  .image-modal-close {
    top: -42px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

}

/* MOBILE IMAGE FIX */

.hero-carousel-slide img {
  cursor: zoom-in;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}


/* MOBILE FULLSCREEN FIX */

@media (max-width: 768px) {

  .image-modal-overlay {
    padding: 10px;
  }

  .image-modal-content {
    width: 100%;
    height: 100%;
  }

  .image-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
  }

  .image-modal-close {

    top: 27%;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

}

/* =========================================
   MOBILE FIX —  CTA 
========================================= */

@media (max-width: 768px) {


  /* CTA SECTION */
  .ais-cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ais-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .ais-cta-text h3 {
    font-size: 26px;
    line-height: 1.2;
  }

  .ais-cta-text p {
    max-width: 100%;
    font-size: 14px;
  }

  .ais-cta-btns {
    width: 100%;
    flex-direction: column;
  }

  .cta-wht,
  .cta-ghost {
    width: 100%;
    text-align: center;
  }
}



/* =========================================================================
   WHAT'S NEW PAGE — IPAD PRO TOP NAV
   IDENTICAL TO ASSET SCORE NAVIGATION
   ========================================================================= */

@media only screen and (min-width: 820px) and (max-width: 1180px) {

  /* ─── NAVBAR (matches Asset Score) ────────────────────────── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px !important;
    overflow: visible !important;
    background: #ffffff !important;
    border-bottom: 1px solid #eef2f7 !important;
    position: relative !important;
  }

  /* LOGO — max-height 30px, auto width (no fixed width) */
  .nav-logo img,
  .nav-logo-mark img {
    max-height: 30px !important;
    width: auto !important;
  }

  /* NAV LINKS CONTAINER */
  .nav-links {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0px;
    flex: 0 1 auto !important;
    /* prevents pushing login too far */
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible !important;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  /* INDIVIDUAL NAV LINKS */
  .nav-links a {
    white-space: nowrap;
    font-size: 10px !important;
    padding: 5px 6px !important;
    flex-shrink: 0;
  }

  /* RIGHT BUTTON AREA (Login / Demo) */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 12px !important;
    /* controls gap between last link and login */
  }

  /* LOGIN BUTTON (matches Asset Score .nbtn) */
  .nav-actions a,
  .nav-actions button,
  .btn-ghost-sm {
    font-size: 10px !important;
    padding: 7px 10px !important;
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
  }

  /* DROPDOWN FIX – ensure they stay on top */
  .dropdown,
  .dropdown-menu,
  .submenu {
    z-index: 99999 !important;
  }

  .dropdown-menu,
  .submenu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    min-width: 220px;
  }

  /* Ensure no top gap above nav */
  html,
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body>*:first-child {
    margin-top: 0 !important;
  }

  /* ========== REMAINING WHAT'S NEW LAYOUT (unchanged) ========== */
  /* HERO */
  .ais-hero {
    padding: 60px 32px 80px;
  }

  .ais-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .ais-hero-left {
    max-width: 100%;
    margin: auto;
  }

  .ais-hero-desc {
    max-width: 800px;
    margin: 0 auto 30px;
  }

  .ais-hero-pills {
    justify-content: center;
  }

  /* HERO CAROUSEL */
  .hero-carousel {
    max-width: 100%;
  }

  .hero-carousel-slides {
    height: auto;
    min-height: 500px;
  }

  .hero-carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* FEATURES SECTION */
  .ais-features {
    padding: 60px 32px;
  }

  .ais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .ais-grid .fc:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .fc {
    width: 100%;
    height: auto;
    min-height: unset;
  }

  /* AUTO ONBOARD */
  .ao-section {
    height: auto;
    padding: 60px 24px;
  }

  .ao-zoom-wrapper {
    transform: none;
  }

  .ao-zoom-outer {
    height: auto;
  }

  .pipeline {
    max-width: 100%;
    padding: 0;
  }

  /* SVG MAP */
  .wrap {
    padding: 30px 24px;
  }

  .map-wrap {
    overflow-x: auto;
  }

  .map-wrap svg {
    width: 100%;
    min-width: 900px;
    height: auto;
  }

  /* CTA */
  .cta-band {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 50px 32px;
  }

  .cta-acts {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cbtn-w,
  .cbtn-g {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* AIS CTA */
  .ais-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .ais-cta-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
}

body {
  padding-top: 0px;
}

/* ===== Onboarding Section Styles ===== */
:root {
  --navy: #0b1633;
  --teal: #16a8c4;
  --teal-bright: #22d3ee;
  --teal-deep: #0d7a8f;
  --green: #1f9d6b;
  --red: #d0473f;
  --amber: #c98a2b;
  --ink: #0b1633;
  --muted: #5b6a86;
  --line: #e3eaf1;
  --paper: #f4f7fa;
  --lane: #eef3f7;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 16px;
  text-align: center;
  background: transparent;
}

.hero-speedlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
}

.hero-speedlines span {
  position: absolute;
  height: 2px;
  left: -30%;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(22, 168, 196, 0), var(--teal) 60%, rgba(22, 168, 196, 0));
  animation: streak linear infinite;
}

@keyframes streak {
  0% {
    transform: translateX(0) scaleX(.4);
    opacity: 0;
  }

  10% {
    opacity: .9;
  }

  100% {
    transform: translateX(160vw) scaleX(1);
    opacity: 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .92rem;
  color: var(--teal-deep);
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--teal);
  display: block;
}

.hero h1 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0 0 12px;
  color: var(--navy);
}

.hero h1 .flash {
  font-style: italic;
  background: linear-gradient(100deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-right: 0.15em;
}

.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== CONTROL ===== */
.control {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px -18px rgba(11, 22, 51, .35);
  text-align: left;
}

.play-btn {
  --sz: 54px;
  position: relative;
  flex: 0 0 auto;
  width: var(--sz);
  height: var(--sz);
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-bright));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px -8px rgba(13, 122, 143, .7);
  transition: transform .18s, box-shadow .18s;
}

.play-btn:hover {
  transform: scale(1.06);
}

.play-btn:active {
  transform: scale(.96);
}

.play-btn:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
}

.play-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--teal-bright);
  opacity: 0;
}

.play-btn.playing::after {
  animation: ring 1.4s ease-out infinite;
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.play-btn svg {
  width: 23px;
  height: 23px;
  fill: #fff;
  transform: translateX(2px);
}

.play-btn svg.i-pause {
  display: none;
  transform: none;
}

.play-btn.playing svg.i-play {
  display: none;
}

.play-btn.playing svg.i-pause {
  display: block;
}

.ctrl-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 135px;
}

.ctrl-meta .label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  color: var(--muted);
}

.ctrl-meta .now {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.ctrl-progress {
  flex: 1;
  min-width: 150px;
  height: 8px;
  border-radius: 99px;
  background: var(--lane);
  overflow: hidden;
}

.ctrl-progress i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transition: width .2s linear;
}

.ctrl-btn {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .88rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: .15s;
}

.ctrl-btn:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

.ctrl-btn:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 2px;
}

/* ===== ARENA ===== */
.arena {
  padding: 0px 0 32px;
  overflow-x: hidden;
}

.arena-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  position: relative;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.col-tag {
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  color: var(--navy);
  line-height: 1;
}

.col-badge {
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal-deep);
  padding: 5px 9px;
  border-radius: 6px;
}

.infusion .col-badge {
  background: var(--green);
}

/* ---- LEFT vertical flow ---- */
.flow-v {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vnode {
  height: auto !important;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  z-index: 1;
  cursor: pointer;
  border: 0;
  background: none;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
}

.vnode:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 12px;
}

.vnode .disc {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.vnode .disc svg {
  width: 28px;
  height: 28px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s;
}

.vnode .disc .fill-ico {
  fill: var(--muted);
  stroke: none;
  transition: fill .3s;
}

.vnode .disc .ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: none;
}

.vnode.active .disc .ring {
  display: block;
  border-top-color: var(--teal-bright);
  border-right-color: var(--teal-bright);
  animation: spin .9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.vnode:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 31px;
  bottom: 64px;
  top: -12px;
  width: 3px;
  border-radius: 2px;
  background: var(--line);
  z-index: 0;
}

.vnode:not(:first-child).done::after,
.vnode:not(:first-child).active::after {
  background: linear-gradient(0deg, var(--teal), var(--teal-bright) var(--seg, 0%), var(--line) var(--seg, 0%));
}

.vnode.done:not(:first-child)::after {
  background: linear-gradient(0deg, var(--teal), var(--teal-bright));
}

.vbody {
  display: flex;
  flex-direction: column;
}

.vnum {
  font-weight: 800;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1;
  transition: color .3s;
}

.vtitle {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 2px;
}

.vkick {
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--muted);
  margin-top: 3px;
}

.vnode.active .disc {
  border-color: var(--teal);
  box-shadow: 0 0 0 6px rgba(34, 211, 238, .14), 0 14px 30px -14px rgba(22, 168, 196, .6);
  transform: translateY(-1px);
}

.vnode.active .disc svg {
  stroke: var(--teal-deep);
}

.vnode.active .disc .fill-ico {
  fill: var(--teal-deep);
}

.vnode.active .vnum,
.vnode.active .vtitle {
  color: var(--teal-deep);
}

.vnode.done .disc {
  border-color: var(--teal);
}

.vnode.done .disc svg {
  stroke: var(--teal-deep);
}

.vnode.done .disc .fill-ico {
  fill: var(--teal-deep);
}

.vnode.done .vnum {
  color: var(--teal-deep);
}

/* ---- RIGHT carousel ---- */
.carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 56px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.22, .9, .32, 1);
}

.slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 2px;
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 20px 22px;
  min-height: 340px;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
}

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.card-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-bright));
}

.card-ico svg {
  width: 21px;
  height: 21px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-ico svg .f {
  fill: #fff;
  stroke: none;
}

.card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -.01em;
}

.card .ai-dot {
  margin-left: auto;
  font-size: .72rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.card .ai-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.card-sub {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 16px;
}

/* arrows */
.cbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -12px rgba(11, 22, 51, .4);
  transition: .16s;
}

.cbtn:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 26px -10px rgba(22, 168, 196, .6);
  transform: translateY(-50%) scale(1.06);
}

.cbtn:active {
  transform: translateY(-50%) scale(.95);
}

.cbtn:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 2px;
}

.cbtn svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cbtn.prev {
  left: 0;
}

.cbtn.next {
  right: 0;
}

.cbtn:disabled {
  opacity: .35;
  cursor: default;
  box-shadow: none;
}

.cbtn:disabled:hover {
  border-color: var(--line);
  transform: translateY(-50%);
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: .2s;
}

.dot:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 2px;
}

.dot.on {
  background: var(--teal-deep);
  width: 26px;
  border-radius: 5px;
}

.slide-count {
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.slide-count b {
  color: var(--teal-deep);
}

/* ---- mini mockups ---- */
.mock {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 12px;
  font-size: .8rem;
}

.mock .mhead {
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .64rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.maprow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.maprow:last-child {
  margin-bottom: 0;
}

.pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
  padding: 6px 9px;
  font-size: .76rem;
  color: var(--navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pill.to {
  border-color: rgba(31, 157, 107, .4);
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pill.to .ai {
  font-size: .56rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: .04em;
}

.pill.muted {
  color: #9aa7b8;
  font-style: italic;
  border-style: dashed;
}

.arrow {
  color: #bcc8d6;
  font-weight: 700;
}

.mmetrics {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mmetric {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  padding: 8px 4px;
}

.mmetric b {
  display: block;
  font-style: italic;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}

.mmetric.g b {
  color: var(--green);
}

.mmetric.t b {
  color: var(--teal-deep);
}

.mmetric.r b {
  color: var(--red);
}

.mmetric span {
  font-size: .6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nlquote {
  background: #eef6fb;
  border: 1px solid #d6e8f2;
  border-radius: 8px;
  padding: 9px 11px;
  font-style: italic;
  color: #3f6079;
  font-size: .79rem;
  margin-bottom: 11px;
}

.frow {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.frow:last-child {
  margin-bottom: 0;
}

.flabel {
  font-size: .73rem;
  color: var(--muted);
}

.fval {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
  padding: 6px 9px;
  font-size: .77rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fval .ai {
  margin-left: auto;
  font-size: .56rem;
  background: var(--teal-deep);
  color: #fff;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}

.fval.empty {
  color: #9aa7b8;
  font-style: italic;
}

.drow {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
  margin-bottom: 6px;
}

.drow:last-child {
  margin-bottom: 0;
}

.old {
  color: var(--red);
  text-decoration: line-through;
  font-size: .75rem;
}

.new {
  color: var(--green);
  font-weight: 600;
  font-size: .77rem;
}

.tagx {
  font-size: .58rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 5px;
  letter-spacing: .03em;
  white-space: nowrap;
}

.tagx.dup {
  background: rgba(208, 71, 63, .12);
  color: var(--red);
}

.tagx.fmt {
  background: rgba(22, 168, 196, .14);
  color: var(--teal-deep);
}

.tagx.ok {
  background: rgba(31, 157, 107, .14);
  color: var(--green);
}

.dstats {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.dstat {
  font-size: .62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.dstat.r {
  background: rgba(208, 71, 63, .1);
  color: var(--red);
}

.dstat.t {
  background: rgba(22, 168, 196, .12);
  color: var(--teal-deep);
}

.dstat.g {
  background: rgba(31, 157, 107, .12);
  color: var(--green);
}

.arow {
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  padding: 9px 11px;
  margin-bottom: 7px;
}

.arow:last-child {
  margin-bottom: 0;
}

.arow .atop {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .79rem;
}

.atype {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--teal-deep);
  background: rgba(22, 168, 196, .12);
  padding: 2px 6px;
  border-radius: 4px;
}

.aname {
  font-weight: 700;
  color: var(--navy);
}

.astatus {
  margin-left: auto;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(31, 157, 107, .14);
  color: var(--green);
}

.astatus.esc {
  background: rgba(201, 138, 43, .14);
  color: var(--amber);
}

.ameta {
  font-size: .69rem;
  color: var(--muted);
  margin-top: 4px;
}

.ascore {
  float: right;
  color: var(--green);
  font-weight: 700;
}

.searchbar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(31, 157, 107, .4);
  border-radius: 8px;
  background: #fff;
  padding: 9px 11px;
  margin-bottom: 11px;
}

.searchbar .q {
  flex: 1;
  font-style: italic;
  color: #3f6079;
  font-size: .79rem;
}

.searchbar .nl {
  font-size: .56rem;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.searchbar svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}

.sres {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 8px 2px;
}

.sres:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sres .stitle {
  font-weight: 700;
  font-size: .79rem;
  color: var(--navy);
}

.sres .smeta {
  font-size: .67rem;
  color: var(--muted);
}

.sres .smatch {
  font-size: .73rem;
  font-weight: 700;
  color: var(--green);
}

.code-hl {
  color: var(--teal-deep);
}

/* upload visual */
.upbox {
  border: 2px dashed #c4d4e0;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  text-align: center;
}

.upbox svg {
  width: 34px;
  height: 34px;
  stroke: var(--teal-deep);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 8px;
}

.upbox .u1 {
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
}

.upbox .u2 {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 3px;
}

.upfiles {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.upfile {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 6px 10px;
  font-size: .74rem;
  color: var(--navy);
}

.upfile .ext {
  font-weight: 700;
  font-size: .6rem;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(31, 157, 107, .14);
  color: var(--green);
}

.upfile .ext.x {
  background: rgba(22, 168, 196, .14);
  color: var(--teal-deep);
}

/* CTA */
.card.cta {
  background: linear-gradient(150deg, #0b1633, #123a52);
  border-color: transparent;
  display: flex;
  flex-direction: column;
}

.card.cta::before {
  background: linear-gradient(90deg, var(--teal-bright), var(--teal));
}

.card.cta h3 {
  color: #fff;
}

.card.cta .card-sub {
  color: #c3d4e2;
}

.card.cta .card-ico {
  background: rgba(255, 255, 255, .14);
}

.card.cta .ai-dot {
  color: #8fa6bd;
}

.cta-inner {
  margin: auto 0;
  text-align: center;
  padding: 14px 0;
}

.cta-inner .big {
  font-weight: 800;
  font-style: italic;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 8px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .98rem;
  color: #0b1633;
  background: linear-gradient(135deg, var(--teal-bright), #7ce9f7);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px -10px rgba(34, 211, 238, .8);
  transition: transform .15s, box-shadow .15s;
  margin-top: 8px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(34, 211, 238, .9);
}

.cta-btn svg {
  width: 16px;
  height: 16px;
  stroke: #0b1633;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== responsive ===== */
@media(max-width:900px) {
  .arena-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .infusion {
    order: 2;
  }

  .carousel {
    max-width: 560px;
  }
}

@media(max-width:520px) {
  .control {
    gap: 12px;
  }

  .ctrl-progress {
    order: 5;
    flex-basis: 100%;
  }

  .carousel {
    padding: 0 22px;
  }

  .cbtn {
    width: 38px;
    height: 38px;
  }

  .cbtn.prev {
    left: -12px;
  }

  .cbtn.next {
    right: -12px;
  }
}

@media(prefers-reduced-motion:reduce) {

  .hero-speedlines span,
  .play-btn.playing::after,
  .vnode.active .disc .ring {
    animation: none !important;
  }

  .carousel-track {
    transition: none;
  }
}

/* ===== Explore Carousel (tcc) Styles ===== */
.tcc {
  --ink: #20304d;
  --muted: #6b7c98;
  --blue: #2f7fd1;
  --blue-d: #215f9e;
  --teal: #16a8c4;
  --green: #1f9d6b;
  --peach: #ffd9c2;
  --peach-2: #ffe8dc;
  --sky: #dcefff;
  --sky-2: #eaf5ff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  padding: 120px 24px 60px;
  background: linear-gradient(165deg, #eaf5ff 0%, #f3f9ff 40%, #fff3ec 100%);
}

.tcc * {
  box-sizing: border-box;
}

.tcc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tcc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.tcc-blob.a {
  width: 340px;
  height: 340px;
  top: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(47, 127, 209, .35), transparent 70%);
}

.tcc-blob.b {
  width: 320px;
  height: 320px;
  bottom: -130px;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 180, 140, .4), transparent 70%);
}

.tcc-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

/* heading */
.tcc-head {
  text-align: left;
  margin-bottom: 20px;
  min-height: auto;
  padding-left: 8px;
}

.tcc-eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--blue-d);
  margin-bottom: 8px;
  transition: opacity .35s;
}

.tcc-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0;
  color: var(--ink);
  max-width: 800px;
  margin: 0;
  transition: opacity .35s;
}

.tcc-title em {
  background: linear-gradient(110deg, var(--g6), var(--s5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-style: italic;
  padding-right: 0.15em;
}

/* stage */
.tcc-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 760px;
  padding: 0 74px;
}

.tcc-track {
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: 560px;
  transform: scale(1);
  transform-origin: center center;
}

/* cards */
.tcc-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  transform-origin: 50% 50%;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 30px 60px -28px rgba(20, 40, 70, .5);
  transition: transform .55s cubic-bezier(.4, .1, .2, 1), opacity .55s, filter .55s, box-shadow .55s;
  will-change: transform, opacity;
}

.tcc-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
}

.tcc-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tcc-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 50, 0) 30%, rgba(10, 25, 50, .78) 100%);
}

.tcc-card-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
}

.tcc-badge {
  visibility: hidden;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .64rem;
  padding: 5px 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-d);
  margin-bottom: auto;
  box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.5);
}

.tcc-card h3 {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 1.72rem;
  line-height: 1.05;
  margin: 0 0 7px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.tcc-card p {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  line-height: 1.42;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
}

.tcc-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
  background: #fff;
  color: var(--blue-d);
  padding: 9px 15px;
  border-radius: 9px;
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.5);
  transition: gap 0.18s;
}

.tcc-card:hover .tcc-cta {
  gap: 11px;
}

.tcc-cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue-d);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* positions */
.tcc-card[data-pos="center"] {
  transform: translate(-50%, -30%) translateY(-50px) rotate(0deg);
  opacity: 1;
  z-index: 5;
  filter: none;
  box-shadow: 0 30px 55px -24px rgba(20, 40, 70, 0.5);
}

.tcc-card[data-pos="left"] {
  transform: translate(-150%, -30%) rotate(-9deg);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 28px 50px -26px rgba(20, 40, 70, 0.45);
}

.tcc-card[data-pos="right"] {
  transform: translate(50%, -30%) rotate(9deg);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 28px 50px -26px rgba(20, 40, 70, 0.45);
}

.tcc-card[data-pos="hidden-left"] {
  transform: translate(-200%, -30%) rotate(-12deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.tcc-card[data-pos="hidden-right"] {
  transform: translate(100%, -30%) rotate(12deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* themes */
.theme-onboard .tcc-card-bg {
  background: linear-gradient(160deg, #2f7fd1, #1b5fa0);
}

.theme-go .tcc-card-bg {
  background: linear-gradient(160deg, #17a8c4, #0d7a8f 70%, #1f9d6b);
}

.theme-kc .tcc-card-bg {
  background: linear-gradient(160deg, #ff9d6c, #f5713f);
}

.tcc-card-deco i {
  position: absolute;
  border-radius: 50%;
  opacity: 0.28;
}

.theme-onboard .d1 {
  width: 120px;
  height: 120px;
  background: #fff;
  top: -30px;
  right: -24px;
}

.theme-onboard .d2 {
  width: 70px;
  height: 70px;
  background: #bfe0ff;
  top: 60px;
  left: -20px;
  opacity: 0.4;
}

.theme-go .d1 {
  width: 130px;
  height: 130px;
  background: #fff;
  top: -36px;
  left: -30px;
  opacity: 0.22;
}

.theme-go .d2 {
  width: 80px;
  height: 80px;
  background: #c9f7ea;
  bottom: 120px;
  right: -22px;
  opacity: 0.4;
}

.theme-kc .d1 {
  width: 110px;
  height: 110px;
  background: #fff;
  top: -28px;
  right: -26px;
  opacity: 0.3;
}

.theme-kc .d2 {
  width: 64px;
  height: 64px;
  background: #ffe0cc;
  top: 100px;
  left: -18px;
  opacity: 0.5;
}

.tcc-glyph {
  position: absolute;
  z-index: 0;
  top: 26px;
  right: 22px;
  width: 44px;
  height: 44px;
  opacity: 0.9;
}

.tcc-glyph svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.9);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tcc-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.tcc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd9ea;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
}

.tcc-dot.on {
  width: 26px;
  border-radius: 5px;
  background: var(--blue);
}

.tcc-dot:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

@media(max-width:1100px) {
  .tcc-card[data-pos="left"] {
    transform: translate(-122%, -30%) rotate(-9deg);
  }

  .tcc-card[data-pos="right"] {
    transform: translate(22%, -30%) rotate(9deg);
  }
}

@media(max-width:620px) {
  .tcc-stage {
    padding: 0 8px;
    min-height: 560px;
  }

  .tcc-card {
    width: 300px;
    height: 420px;
  }

  .tcc-card[data-pos="left"] {
    transform: translate(-108%, -32%) rotate(-9deg);
  }

  .tcc-card[data-pos="right"] {
    transform: translate(8%, -32%) rotate(9deg);
  }
}

@media(prefers-reduced-motion:reduce) {
  .tcc-card {
    transition: opacity 0.3s;
  }

  .tcc-blob {
    filter: blur(60px);
  }
}

/* ===== Smart Assets GO (sagb) Styles ===== */
.sagb {
  --navy: #0b1633;
  --teal: #16a8c4;
  --teal-b: #22d3ee;
  --teal-d: #0d7a8f;
  --green: #1f9d6b;
  --green-b: #27b97f;
  --muted: #5b6a86;
  --line: #e3eaf1;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 84px 24px 72px;
  text-align: center;
  background:
    radial-gradient(50% 55% at 50% -8%, rgba(34, 211, 238, .20) 0%, rgba(34, 211, 238, 0) 62%),
    radial-gradient(45% 55% at 8% 100%, rgba(39, 185, 127, .16) 0%, rgba(39, 185, 127, 0) 62%),
    radial-gradient(45% 55% at 94% 96%, rgba(22, 168, 196, .13) 0%, rgba(22, 168, 196, 0) 62%),
    linear-gradient(180deg, #ffffff 0%, #f1fafb 55%, #ecf8f4 100%);
}

.sagb * {
  box-sizing: border-box;
}

.sagb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sagb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(54px);
}

.sagb-orb.a {
  width: 380px;
  height: 380px;
  top: -160px;
  left: 50%;
  margin-left: -190px;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(34, 211, 238, .55), rgba(34, 211, 238, 0) 70%);
  animation: sagbFloat 10s ease-in-out infinite;
}

.sagb-orb.b {
  width: 300px;
  height: 300px;
  bottom: -140px;
  left: -90px;
  opacity: 0.45;
  background: radial-gradient(circle, rgba(39, 185, 127, .5), rgba(39, 185, 127, 0) 70%);
  animation: sagbFloat 12s ease-in-out infinite reverse;
}

.sagb-orb.c {
  width: 260px;
  height: 260px;
  bottom: -120px;
  right: -70px;
  opacity: 0.4;
  background: radial-gradient(circle, rgba(22, 168, 196, .45), rgba(22, 168, 196, 0) 70%);
  animation: sagbFloat 11s ease-in-out infinite 1s;
}

@keyframes sagbFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(16px, -18px);
  }
}

.sagb-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(rgba(11, 22, 51, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 22, 51, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000, transparent 80%);
  mask-image: radial-gradient(70% 60% at 50% 35%, #000, transparent 80%);
}

.sagb-arc {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 760px;
  height: 760px;
  margin-left: -380px;
  border-radius: 50%;
  border: 1px solid rgba(22, 168, 196, .16);
  -webkit-mask-image: linear-gradient(#000, transparent 55%);
  mask-image: linear-gradient(#000, transparent 55%);
}

.sagb-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.sagb-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--teal-d);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 168, 196, 0.3);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px -14px rgba(11, 22, 51, 0.5);
}

.sagb-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  animation: sagbShine 3.6s ease-in-out infinite;
}

@keyframes sagbShine {
  0% {
    left: -60%;
  }

  55%,
  100% {
    left: 130%;
  }
}

.sagb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-b);
  box-shadow: 0 0 0 4px rgba(39, 185, 127, 0.18);
  animation: sagbPulse 2s ease-in-out infinite;
}

@keyframes sagbPulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(39, 185, 127, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(39, 185, 127, 0.03);
  }
}

.sagb-kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(.82rem, 1.5vw, 1rem);
  color: var(--muted);
  margin: 0 0 10px;
}

.sagb-title {
  margin: 0 0 20px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7.5vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--navy);
}

.sagb-go {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--teal-d);
  -webkit-text-fill-color: transparent;
  background: linear-gradient(100deg, var(--green) 5%, var(--teal) 65%, var(--teal-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  padding-right: 0.15em;
  padding-bottom: 0.16em;
}

.sagb-underline {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  height: 0.085em;
  border-radius: 99px;
  display: block;
  background: linear-gradient(90deg, var(--green-b), var(--teal-b));
  transform: scaleX(0);
  transform-origin: left;
  animation: sagbDraw 0.95s cubic-bezier(.22, .9, .32, 1) 0.45s forwards;
}

@keyframes sagbDraw {
  to {
    transform: scaleX(1);
  }
}

.sagb-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 26px;
}

.sagb-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 9px 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px -18px rgba(11, 22, 51, 0.5);
}

.sagb-ticker-label {
  font-size: .86rem;
  color: var(--muted);
  font-weight: 500;
}

.sagb-ticker-window {
  position: relative;
  display: block;
  height: 26px;
  overflow: hidden;
  min-width: 150px;
  text-align: left;
}

.sagb-ticker-list {
  display: block;
  animation: sagbRoll 14s cubic-bezier(.7, 0, .3, 1) infinite;
}

.sagb-ticker-list span {
  display: flex;
  align-items: center;
  height: 26px;
  line-height: 26px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-d);
  -webkit-text-fill-color: transparent;
  background: linear-gradient(100deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

@keyframes sagbRoll {

  0%,
  8% {
    transform: translateY(0);
  }

  12.5%,
  20.5% {
    transform: translateY(-26px);
  }

  25%,
  33% {
    transform: translateY(-52px);
  }

  37.5%,
  45.5% {
    transform: translateY(-78px);
  }

  50%,
  58% {
    transform: translateY(-104px);
  }

  62.5%,
  70.5% {
    transform: translateY(-130px);
  }

  75%,
  83% {
    transform: translateY(-156px);
  }

  87.5%,
  95.5% {
    transform: translateY(-182px);
  }

  100% {
    transform: translateY(-208px);
  }
}

.sagb-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.sagb-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(120deg, var(--teal-d), var(--teal) 55%, var(--green) 135%);
  padding: 16px 30px;
  border-radius: 12px;
  box-shadow: 0 18px 34px -14px rgba(13, 122, 143, .75);
  transition: transform .16s, box-shadow .16s;
}

.sagb-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: sagbShine 3.6s ease-in-out infinite 1.1s;
}

.sagb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -14px rgba(13, 122, 143, 0.9);
}

.sagb-btn:focus-visible {
  outline: 3px solid var(--teal-b);
  outline-offset: 3px;
}

.sagb-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  transition: transform 0.16s;
}

.sagb-btn:hover svg {
  transform: translateX(3px);
}

.sagb-note {
  font-size: 0.84rem;
  color: var(--muted);
}

.sagb-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  text-align: left;
}

.sagb-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sagb-ico {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(22, 168, 196, 0.14), rgba(31, 157, 107, 0.14));
  border: 1px solid rgba(22, 168, 196, 0.2);
}

.sagb-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal-d);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sagb-item b {
  display: block;
  font-size: 0.94rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.sagb-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

@media(max-width:760px) {
  .sagb-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto;
  }

  .sagb-arc {
    width: 520px;
    margin-left: -260px;
  }
}

@media(max-width:520px) {
  .sagb {
    padding: 60px 18px 54px;
  }

  .sagb-actions {
    flex-direction: column;
    gap: 12px;
  }

  .sagb-btn {
    width: 100%;
    justify-content: center;
  }
}

@media(prefers-reduced-motion:reduce) {

  .sagb-orb,
  .sagb-shine,
  .sagb-btn::after,
  .sagb-dot,
  .sagb-ticker-list {
    animation: none !important;
  }

  .sagb-underline {
    animation: none;
    transform: scaleX(1);
  }
}

/* ═══════════════════════════════════════════════
   SECTION 1 — What's New Carousel
═══════════════════════════════════════════════ */

/* ===== What's New Carousel Styles ===== */
.whats-new-section {
    padding: 80px 0;
}

.whats-new-section .container {
    width: 95%;
    max-width: 1240px;
    margin: auto;
}

.whats-new-section .title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0b1633;
    text-align: center;
    letter-spacing: -0.8px;
}

/* ===== Carousel Structure ===== */
.whats-new-section .carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.whats-new-section .carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
}

.whats-new-section .carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* ===== News Card Styles ===== */
.whats-new-section .news-card {
    min-width: 330px;
    width: 330px;
    height: 250px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    color: #ffffff;
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(11, 22, 51, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 20px;
    z-index: 1;
    transform: scale(0.9);
}

.whats-new-section .news-card.active {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(11, 22, 51, 0.16);
    z-index: 2;
}

.whats-new-section .news-card.active:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 25px 55px rgba(11, 22, 51, 0.22);
}

.whats-new-section .card-badge {
    visibility: hidden;
    align-self: flex-start;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.95);
    color: #0b1633;
    box-shadow: 0 6px 14px -5px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.whats-new-section .card-content-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.whats-new-section .card-content-bottom h3 {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.whats-new-section .card-content-bottom p {
    font-size: 13.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 38px;
}

.whats-new-section .card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
    background: #ffffff;
    color: #0b1633;
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.whats-new-section .card-btn svg {
    width: 14px;
    height: 14px;
    stroke: #0b1633;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.whats-new-section .card-btn:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.whats-new-section .card-btn:hover svg {
    transform: translateX(4px);
}

/* ===== Carousel Arrows ===== */
.whats-new-section .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(11, 22, 51, 0.08);
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(11, 22, 51, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.whats-new-section .carousel-arrow.prev { left: 0; }
.whats-new-section .carousel-arrow.next { right: 0; }

.whats-new-section .carousel-arrow svg {
    width: 22px;
    height: 22px;
    stroke: #0b1633;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whats-new-section .carousel-arrow:hover {
    border-color: #16a8c4;
    box-shadow: 0 10px 28px rgba(22, 168, 196, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.whats-new-section .carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.whats-new-section .carousel-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

/* ===== Pagination Dots ===== */
.whats-new-section .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 30px;
}

.whats-new-section .carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd9ea;
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.whats-new-section .carousel-dot.active {
    width: 26px;
    border-radius: 5px;
    background: #2f7fd1;
}

/* ===== Background Decorative Circles ===== */
.whats-new-section .card-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.85;
    pointer-events: none;
}

.whats-new-section .card-deco i {
    position: absolute;
    border-radius: 50%;
}

/* ===== Color themes ===== */
.whats-new-section .news-card.blue  { background: linear-gradient(160deg, #2f7fd1 0%, #1b5fa0 100%); }
.whats-new-section .blue .card-deco i.d1  { width: 130px; height: 130px; background: rgba(255, 255, 255, .12); top: -30px; right: -24px; }
.whats-new-section .blue .card-deco i.d2  { width: 80px; height: 80px; background: rgba(191, 224, 255, .25); top: 130px; left: -20px; }

.whats-new-section .news-card.teal  { background: linear-gradient(160deg, #17a8c4 0%, #0d7a8f 65%, #1f9d6b 100%); }
.whats-new-section .teal .card-deco i.d1  { width: 140px; height: 140px; background: rgba(255, 255, 255, .1); top: -40px; left: -30px; }
.whats-new-section .teal .card-deco i.d2  { width: 85px; height: 85px; background: rgba(201, 247, 234, .3); bottom: 90px; right: -20px; }

.whats-new-section .news-card.orange { background: linear-gradient(160deg, #ff9d6c 0%, #f5713f 100%); }
.whats-new-section .orange .card-deco i.d1 { width: 120px; height: 120px; background: rgba(255, 255, 255, .15); top: -20px; right: -20px; }
.whats-new-section .orange .card-deco i.d2 { width: 70px; height: 70px; background: rgba(255, 224, 204, .35); top: 110px; left: -15px; }

.whats-new-section .news-card.purple { background: linear-gradient(160deg, #9b5cff 0%, #5b21ff 100%); }
.whats-new-section .purple .card-deco i.d1 { width: 135px; height: 135px; background: rgba(255, 255, 255, .12); bottom: -30px; right: -20px; }
.whats-new-section .purple .card-deco i.d2 { width: 80px; height: 80px; background: rgba(235, 204, 255, .25); top: 50px; left: -20px; }

.whats-new-section .news-card.green  { background: linear-gradient(160deg, #1f9d6b 0%, #0d5f3a 100%); }
.whats-new-section .green .card-deco i.d1  { width: 140px; height: 140px; background: rgba(255, 255, 255, .12); top: -30px; right: -30px; }
.whats-new-section .green .card-deco i.d2  { width: 80px; height: 80px; background: rgba(204, 255, 224, .25); bottom: 70px; left: -20px; }

.whats-new-section .news-card.pink   { background: linear-gradient(160deg, #ec4899 0%, #8b5cf6 100%); }
.whats-new-section .pink .card-deco i.d1   { width: 125px; height: 125px; background: rgba(255, 255, 255, .15); top: -20px; left: -20px; }
.whats-new-section .pink .card-deco i.d2   { width: 75px; height: 75px; background: rgba(255, 204, 235, .35); bottom: 110px; right: -15px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .whats-new-section .title { font-size: 34px; }
    .whats-new-section .carousel-container { padding: 0 20px; }
    .whats-new-section .carousel-arrow { display: none; }
    .whats-new-section .news-card { min-width: 280px; width: 280px; height: 250px; }
}

/* ===== Card Icon (above h3) ===== */
.whats-new-section .card-icon {
    display: block;
    object-fit: contain;
    width: 120px;
}