:root {
  --ink: #071124;
  --ink-soft: #17213a;
  --text: #17213a;
  --muted: #687089;
  --muted-2: #8b92aa;
  --line: rgba(105, 118, 255, 0.15);
  --white: #ffffff;
  --soft: #f4f6ff;
  --soft-2: #eef2ff;
  --blue: #3177ff;
  --blue-2: #5a5cff;
  --purple: #6f4cff;
  --teal: #22d3a6;
  --cyan: #38bdf8;
  --amber: #ffb547;
  --pink: #ff7aa8;
  --shadow: 0 22px 70px rgba(46, 63, 146, 0.16);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --container: 1210px;
  --mouse-x: 50%;
  --mouse-y: 45%;
  --card-x: 50%;
  --card-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --surface-tech-bg:
    radial-gradient(circle at 24% 0%, rgba(64, 148, 255, 0.11), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(70, 172, 255, 0.08), transparent 36%),
    radial-gradient(circle at 50% 68%, rgba(115, 203, 255, 0.05), transparent 38%),
    linear-gradient(180deg, #f5f9ff 0%, #f8fbff 46%, #f3f8ff 100%);
  --surface-tech-grid:
    radial-gradient(circle, rgba(61, 123, 255, 0.22) 1px, transparent 1.7px),
    linear-gradient(rgba(70, 105, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 105, 255, 0.065) 1px, transparent 1px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface-tech-bg);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 56px;
  color: var(--white);
  background: rgba(4, 10, 24, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(29, 96, 255, 0.24));
}

.brand span {
  display: grid;
  gap: 0;
}

.brand strong {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 54px;
  font-size: 15px;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.88);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a:first-child::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .login-entry {
  min-width: 118px;
  padding-inline: 22px;
}

.header-actions .login-coach {
  color: var(--white);
  border-color: rgba(46, 216, 139, 0.5);
  background: linear-gradient(135deg, #20bd78, #0b985d);
  box-shadow: 0 12px 28px rgba(12, 157, 94, 0.24);
}

.header-actions .login-coach:hover {
  border-color: rgba(106, 238, 177, 0.72);
  background: linear-gradient(135deg, #28c983, #0da566);
  box-shadow: 0 16px 34px rgba(12, 157, 94, 0.3);
}

.header-actions .login-merchant {
  color: var(--white);
  border-color: rgba(92, 148, 255, 0.5);
  background: linear-gradient(135deg, #4a61ff, #278dff);
  box-shadow: 0 12px 28px rgba(52, 98, 255, 0.26);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

.btn:focus-visible,
.segment-tabs button:focus-visible,
.solution-tabs button:focus-visible {
  outline: 3px solid rgba(103, 119, 255, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #4a4dff, #2f8cff);
  box-shadow: 0 14px 34px rgba(52, 98, 255, 0.32);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(126, 146, 255, 0.46);
}

.btn-outline-light {
  color: var(--blue-2);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(87, 91, 255, 0.42);
}

.btn-light {
  color: var(--blue-2);
  background: var(--white);
  border-color: var(--white);
}

.btn-outline-white {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
}

.btn-large {
  min-height: 58px;
  padding: 0 34px;
  font-size: 17px;
}

.btn-icon,
.play-dot {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.btn-icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 1px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.btn-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 1px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.play-dot {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}

.hero {
  position: relative;
  min-height: 980px;
  padding: 108px 0 126px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(70, 98, 255, 0.34), transparent 31%),
    radial-gradient(circle at 38% 80%, rgba(31, 144, 255, 0.14), transparent 34%),
    radial-gradient(circle at 13% 24%, rgba(20, 206, 255, 0.12), transparent 28%),
    linear-gradient(132deg, #06172f 0%, #030815 43%, #081943 74%, #0d2d77 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 160% 160%;
  animation: heroGradientFlow 16s ease-in-out infinite alternate;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -96px;
  z-index: 2;
  width: 130%;
  height: 190px;
  border-radius: 50% 50% 0 0;
  background-color: #f8fbff;
  background-image:
    radial-gradient(circle, rgba(61, 123, 255, 0.22) 1px, transparent 1.7px),
    linear-gradient(rgba(70, 105, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 105, 255, 0.065) 1px, transparent 1px);
  background-size: 66px 66px, 48px 48px, 48px 48px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-particles,
.hero-aurora,
.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles {
  z-index: 1;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.hero-aurora {
  z-index: 0;
  background:
    radial-gradient(560px 300px at 76% 20%, rgba(60, 127, 255, 0.32), transparent 72%),
    radial-gradient(520px 300px at 62% 76%, rgba(106, 78, 255, 0.24), transparent 74%),
    radial-gradient(420px 260px at 18% 24%, rgba(23, 214, 255, 0.13), transparent 72%);
  filter: blur(14px);
  animation: auroraFloat 12s ease-in-out infinite alternate;
}

.hero-spotlight {
  display: none;
}

.hero.is-pointer-active .hero-spotlight {
  opacity: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle, rgba(128, 178, 255, 0.18) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(77, 214, 255, 0.12) 0 1px, transparent 1.8px);
  background-position: 0 0, 24px 28px;
  background-size: 54px 54px, 82px 82px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 82%);
  pointer-events: none;
  animation: gridDrift 18s linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(500px, 0.78fr) minmax(590px, 1.22fr);
  gap: 24px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  color: #4b56ff;
  background: rgba(100, 105, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow-dark {
  gap: 8px;
  color: #b9c8ff;
  background: rgba(110, 128, 255, 0.18);
  border: 1px solid rgba(139, 155, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 36px rgba(42, 98, 255, 0.14);
}

.eyebrow-dark::before {
  content: "";
  width: 9px;
  height: 14px;
  display: inline-block;
  background: linear-gradient(180deg, #80d8ff, #5d66ff);
  clip-path: polygon(48% 0, 100% 0, 62% 43%, 100% 43%, 33% 100%, 50% 56%, 0 56%);
}

.hero-copy h1 {
  margin: 18px 0 14px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 950;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.hero-copy h1 span {
  display: inline;
}

.hero-title-accent {
  color: #74a3ff;
  background: linear-gradient(180deg, #b8d0ff 0%, #6d91ff 48%, #5f69ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-subtitle {
  max-width: 590px;
  margin: 0;
  color: rgba(238, 244, 255, 0.82);
  font-size: 19px;
  line-height: 1.78;
}

.hero-capabilities {
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border: 1px solid rgba(110, 145, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 40, 84, 0.54), rgba(7, 16, 37, 0.46));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 54px rgba(12, 28, 80, 0.26);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.capability-pill {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(225, 236, 255, 0.86);
  font-size: 14px;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-pill:last-child {
  border-right: 0;
}

.capability-pill::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px;
  background: linear-gradient(135deg, #6f7dff, #35b9ff);
  box-shadow: 0 0 18px rgba(62, 137, 255, 0.5);
}

.capability-pill.users::before {
  border-radius: 999px 999px 5px 5px;
}

.capability-pill.trophy::before {
  clip-path: polygon(14% 12%, 86% 12%, 75% 58%, 56% 58%, 56% 78%, 72% 78%, 72% 90%, 28% 90%, 28% 78%, 44% 78%, 44% 58%, 25% 58%);
}

.capability-pill.venue::before {
  clip-path: polygon(10% 90%, 10% 40%, 50% 14%, 90% 40%, 90% 90%, 66% 90%, 66% 58%, 34% 58%, 34% 90%);
}

.capability-pill.data::before {
  clip-path: polygon(8% 92%, 8% 58%, 25% 58%, 25% 92%, 34% 92%, 34% 32%, 51% 32%, 51% 92%, 60% 92%, 60% 12%, 77% 12%, 77% 92%);
}

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

.hero-visual {
  position: relative;
  min-height: 530px;
  isolation: isolate;
}

.hero-bird-watermark {
  position: absolute;
  top: -58px;
  right: 120px;
  width: 390px;
  opacity: 0.16;
  filter: saturate(1.25) drop-shadow(0 30px 80px rgba(33, 106, 255, 0.3));
  animation: logoFloat 7s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  left: 4%;
  top: -4px;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 18px, rgba(84, 119, 255, 0.16) 19px, transparent 21px),
    radial-gradient(circle at 50% 50%, rgba(61, 91, 255, 0.18), transparent 62%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.85) 22%, rgba(0, 0, 0, 0.65) 62%, transparent 88%);
  opacity: 0.72;
  transform: rotate(-14deg);
  animation: orbitDrift 12s ease-in-out infinite alternate;
}

.hero-device-glow {
  position: absolute;
  z-index: 0;
  right: 28px;
  bottom: 42px;
  width: 560px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 100, 255, 0.36), rgba(32, 69, 170, 0.16) 42%, transparent 72%);
  filter: blur(6px);
}

.laptop-mockup {
  position: absolute;
  z-index: 1;
  right: -18px;
  top: 68px;
  width: 704px;
  min-height: 0;
  padding: 8px;
  border: 1px solid rgba(126, 153, 255, 0.42);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(42, 65, 130, 0.2));
  box-shadow: 0 46px 110px rgba(4, 9, 26, 0.74), 0 0 0 1px rgba(114, 152, 255, 0.08);
  transform: perspective(980px) rotateY(-8deg) rotateX(2deg) rotateZ(-2deg);
  animation: panelFloat 6.5s ease-in-out infinite;
}

.pc-dashboard-shot {
  display: block;
  width: 100%;
  aspect-ratio: 1608 / 978;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.laptop-mockup::before {
  content: none;
}

.hero-visual:hover .laptop-mockup::before {
  content: none;
}

.laptop-mockup::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -28px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(90deg, #0b1b48, #526dff 46%, #142768);
  box-shadow: 0 18px 34px rgba(21, 52, 170, 0.42);
}

.laptop-toolbar,
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.laptop-toolbar {
  height: 26px;
}

.laptop-toolbar span,
.dash-topbar span {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 999px;
  background: rgba(117, 139, 255, 0.6);
}

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

.metric-strip div,
.board-card,
.dash-metrics div,
.dash-panels > div {
  border: 1px solid rgba(124, 145, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.metric-strip div {
  padding: 14px;
}

.metric-strip strong {
  display: block;
  color: #eaf0ff;
  font-size: 20px;
  line-height: 1.1;
}

.metric-strip small {
  color: rgba(231, 236, 255, 0.55);
  font-size: 12px;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 14px;
  margin-top: 16px;
}

.line-chart,
.area-chart,
.mini-bars {
  display: flex;
  align-items: end;
  gap: 10px;
}

.line-chart {
  height: 150px;
  padding: 20px 18px 14px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 100% 34px;
}

.line-chart span,
.area-chart span,
.mini-bars span {
  flex: 1;
  min-width: 8px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #6c7dff, #27c6ff);
  transform-origin: bottom;
  animation: barPulse 3.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.08s);
}

.line-chart span:nth-child(1),
.area-chart span:nth-child(1),
.mini-bars span:nth-child(1) {
  --i: 1;
}

.line-chart span:nth-child(2),
.area-chart span:nth-child(2),
.mini-bars span:nth-child(2) {
  --i: 2;
}

.line-chart span:nth-child(3),
.area-chart span:nth-child(3),
.mini-bars span:nth-child(3) {
  --i: 3;
}

.line-chart span:nth-child(4),
.area-chart span:nth-child(4),
.mini-bars span:nth-child(4) {
  --i: 4;
}

.line-chart span:nth-child(5),
.area-chart span:nth-child(5),
.mini-bars span:nth-child(5) {
  --i: 5;
}

.line-chart span:nth-child(6),
.area-chart span:nth-child(6),
.mini-bars span:nth-child(6) {
  --i: 6;
}

.line-chart span:nth-child(7),
.area-chart span:nth-child(7),
.mini-bars span:nth-child(7) {
  --i: 7;
}

.donut-chart {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  margin: 20px auto 0;
  border-radius: 999px;
  background: conic-gradient(#4b57ff 0 68%, #27c6ff 68% 82%, rgba(255, 255, 255, 0.14) 82% 100%);
  position: relative;
  animation: donutGlow 4.8s ease-in-out infinite;
}

.donut-chart::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background: #111a37;
}

.donut-chart strong {
  position: relative;
  z-index: 1;
  color: #eef3ff;
  font-size: 18px;
}

.table-lines {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.table-lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(119, 140, 255, 0.22), rgba(119, 140, 255, 0.05));
}

.phone-mockup {
  position: absolute;
  z-index: 3;
  left: 74px;
  top: 146px;
  width: 200px;
  padding: 0;
  border: 1px solid rgba(126, 153, 255, 0.42);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(42, 65, 130, 0.14));
  box-shadow: 0 34px 86px rgba(2, 8, 25, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(-8deg);
  animation: phoneFloat 6s ease-in-out infinite;
  overflow: hidden;
}

.phone-notch {
  display: none;
}

.mobile-app-shot {
  overflow: hidden;
  border-radius: 24px;
  color: #101936;
  background: transparent;
}

.mobile-app-screen {
  display: block;
  width: 100%;
  aspect-ratio: 430 / 932;
  object-fit: cover;
}

.mobile-search-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  padding: 42px 10px 9px;
  font-size: 10px;
  font-weight: 900;
}

.mobile-search-row span,
.mobile-search-row strong,
.mobile-filter-row span {
  min-width: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(92, 76, 180, 0.08);
}

.mobile-search-row span {
  padding: 7px 8px;
  color: #5f61ff;
}

.mobile-search-row strong {
  padding: 7px 10px;
  color: #9aa1b8;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
}

.mobile-banner-shot {
  height: 58px;
  margin: 0 10px 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 22px;
  line-height: 0.94;
  font-weight: 950;
  text-shadow: 0 3px 10px rgba(65, 31, 180, 0.42);
  background:
    radial-gradient(circle at 82% 44%, rgba(255, 255, 255, 0.46), transparent 16%),
    linear-gradient(135deg, #8265ff, #c59bff 50%, #51b9ff);
}

.mobile-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 10px 9px;
}

.mobile-cats span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: #252a45;
  font-size: 11px;
  font-weight: 900;
}

.mobile-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 10px 9px;
}

.mobile-filter-row span {
  min-height: 28px;
  display: grid;
  place-items: center;
  color: #636b84;
  font-size: 10px;
  font-weight: 900;
}

.mobile-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 10px 12px;
}

.mobile-feed article {
  overflow: hidden;
  min-height: 132px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(66, 80, 160, 0.12);
}

.mobile-feed article:first-child {
  grid-row: span 2;
}

.feed-cover {
  min-height: 58px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, #7a53ff, #1fc7ff);
}

.feed-cover.worldcup {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 950;
  text-align: center;
  background: linear-gradient(135deg, #f8d824, #f83627 48%, #1dc262);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
}

.feed-cover.party {
  background: linear-gradient(135deg, #1b1730, #a15cff 48%, #ff7aa8);
}

.feed-cover.skate {
  background: linear-gradient(135deg, #55d5ff, #7b6cff);
}

.mobile-feed h4,
.mobile-feed p {
  margin: 0;
  padding: 0 8px;
}

.mobile-feed h4 {
  margin-top: 8px;
  color: #111936;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 950;
}

.mobile-feed p {
  margin-top: 8px;
  color: #7c80ff;
  font-size: 10px;
  font-weight: 900;
}

.phone-banner {
  min-height: 72px;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(135deg, #376eff, #37d5ff 55%, #ffb547);
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.phone-tabs span {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: rgba(113, 132, 255, 0.28);
}

.room-list {
  display: grid;
  gap: 10px;
}

.room-list span {
  height: 30px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 174px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 210, 255, 0.24);
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(114, 130, 255, 0.58), rgba(78, 93, 184, 0.32) 48%, rgba(44, 120, 255, 0.2));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  animation: floatCard 5.4s ease-in-out infinite;
  overflow: hidden;
}

.float-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 18%, rgba(255, 255, 255, 0.12) 38%, transparent 58%);
  opacity: 0.52;
  pointer-events: none;
}

.float-card strong,
.float-card-copy,
.float-card-copy span {
  display: block;
}

.float-card strong {
  position: relative;
  z-index: 1;
  font-size: 26px;
  line-height: 1.05;
}

.float-card-copy span {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.float-card-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(92, 114, 255, 0.82), rgba(45, 151, 255, 0.52));
  box-shadow: inset 0 0 0 1px rgba(230, 238, 255, 0.18), 0 12px 28px rgba(48, 111, 255, 0.26);
}

.float-card-icon::before,
.float-card-icon::after {
  content: "";
  display: block;
  background: rgba(244, 248, 255, 0.92);
}

.float-card-icon.members::before {
  width: 18px;
  height: 12px;
  border-radius: 12px 12px 4px 4px;
  box-shadow: -7px 3px 0 -3px rgba(244, 248, 255, 0.68), 7px 3px 0 -3px rgba(244, 248, 255, 0.68);
}

.float-card-icon.growth {
  align-items: end;
  grid-template-columns: repeat(3, 5px);
  gap: 3px;
  padding-bottom: 9px;
}

.float-card-icon.growth::before,
.float-card-icon.growth::after {
  width: 5px;
  border-radius: 4px 4px 1px 1px;
}

.float-card-icon.growth::before {
  height: 12px;
  box-shadow: 8px -5px 0 rgba(244, 248, 255, 0.72);
}

.float-card-icon.growth::after {
  height: 20px;
}

.float-card-icon.ai::before {
  width: 19px;
  height: 19px;
  border-radius: 6px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(186, 214, 255, 0.72));
}

.float-card-icon.ai::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  right: 8px;
  top: 8px;
}

.card-members {
  top: 62px;
  left: 198px;
}

.card-growth {
  right: 54px;
  top: 30px;
}

.card-ai {
  right: 212px;
  bottom: 76px;
}

.hero-stats {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 96px), 1080px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 88px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.hero-stats::before,
.hero-stats::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-stats::before {
  inset: -20px -44px;
  z-index: 0;
  border-radius: 999px;
  background:
    linear-gradient(105deg, transparent 0 18%, rgba(77, 132, 255, 0.13) 34%, rgba(112, 84, 255, 0.1) 48%, transparent 66% 100%),
    radial-gradient(ellipse at 50% 50%, rgba(53, 112, 255, 0.08), transparent 68%);
  background-size: 220% 100%, 100% 100%;
  opacity: 0.72;
  filter: blur(1px);
  animation: statPanelFlow 7.2s ease-in-out infinite;
}

.hero-stats::after {
  content: none;
}

.hero-stats div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px 26px;
  text-align: left;
  border-right: 0;
  isolation: isolate;
  transition: background 0.24s ease, transform 0.24s ease;
}

.hero-stats div::before {
  content: none;
}

.hero-stats div:nth-child(2)::before {
  background: none;
}

.hero-stats div:nth-child(3)::before {
  background: none;
}

.hero-stats div:nth-child(4)::before {
  background: none;
}

.hero-stats div:hover {
  background: transparent;
  transform: translateY(-2px);
}

.hero-stats div:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.hero-stats div > * {
  position: relative;
  z-index: 1;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  filter: none;
}

.stat-copy {
  display: block;
  min-width: 0;
}

.stat-copy > span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.2;
}

.stat-icon {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(92, 130, 255, 0.26), rgba(36, 95, 208, 0.12)),
    rgba(87, 119, 255, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.stat-icon::before {
  content: none;
}

.stat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: none;
}

.partners-belt {
  position: relative;
  z-index: 4;
  overflow: visible;
  margin-top: 0;
  padding: 58px 0 34px;
  scroll-margin-top: 96px;
  background: transparent;
}

.partners-belt::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.partners-belt::before {
  inset: -110px 0 -84px;
  z-index: 1;
  background-image: var(--surface-tech-grid);
  background-size: 66px 66px, 48px 48px, 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.76) 22%, rgba(0, 0, 0, 0.86) 82%, transparent 100%);
  animation: productGridDrift 18s linear infinite;
}

.partners-belt .container {
  position: relative;
  z-index: 2;
}

.partners-belt p {
  margin: 0 0 28px;
  text-align: center;
  color: var(--ink);
  font-weight: 900;
}

.partner-logos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}

.partner-logos::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  left: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 126, 255, 0.28), rgba(42, 187, 255, 0.18), transparent);
  background-size: 180% 100%;
  opacity: 0.78;
  animation: techLineSweep 5.8s linear infinite;
  pointer-events: none;
}

.partner-logo {
  position: relative;
  overflow: hidden;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: var(--radius);
  color: #151a2f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.86)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(103, 116, 255, 0.12);
  font-weight: 950;
  box-shadow: 0 16px 44px rgba(55, 73, 132, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.partner-logo::before {
  content: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(68, 112, 255, 0.24), transparent 30% 70%, rgba(47, 187, 255, 0.18)) top / 100% 1px no-repeat,
    radial-gradient(circle at 18px 50%, rgba(74, 127, 255, 0.12), transparent 34%);
  opacity: 0.58;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.partner-logo::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #47b8ff, #6967ff);
  box-shadow: 0 0 0 5px rgba(83, 119, 255, 0.08);
  opacity: 0.7;
  animation: techDotPulse 2.8s ease-in-out infinite;
}

.partner-logo:hover {
  color: #4255ff;
  border-color: rgba(84, 113, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(70, 92, 180, 0.1);
}

.partner-logo:hover::before {
  opacity: 0.88;
}

.partner-mark {
  position: relative;
  z-index: 1;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #416cff;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.24s ease;
}

.partner-logo:hover .partner-mark {
  transform: translateY(-1px) scale(1.05);
}

.partner-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.partner-word {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
  line-height: 1.08;
}

.partner-word strong {
  font-size: 18px;
  font-weight: 950;
}

.partner-word small {
  color: #7a8298;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 96px;
}

.light-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 30px 0 112px;
  background: #f8fbff;
}

.light-section::before,
.light-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.light-section::before {
  inset: 0;
  z-index: 0;
  background-image: var(--surface-tech-grid);
  background-size: 66px 66px, 48px 48px, 48px 48px;
  opacity: 1;
  mask-image: none;
  -webkit-mask-image: none;
  animation: productGridDrift 18s linear infinite;
}

.light-section::after {
  content: none;
}

.product-wave {
  display: none;
}

.product-wave-top {
  top: -124px;
  background: linear-gradient(180deg, rgba(227, 237, 255, 0.94), rgba(255, 255, 255, 0));
}

.product-wave-bottom {
  right: auto;
  bottom: -116px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(0deg, rgba(220, 234, 255, 0.9), rgba(255, 255, 255, 0));
}

.product-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.68;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.68) 16%, rgba(0, 0, 0, 0.92) 100%);
  pointer-events: none;
}

.light-section > .container {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.product-showcase-head {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.product-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.product-heading h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(36px, 3.2vw, 54px);
}

.product-heading h2 span {
  color: #4f62ff;
}

.product-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.product-side-illustration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.product-side-chart {
  left: -16px;
  top: 40px;
  width: 296px;
  height: 210px;
  opacity: 0.86;
}

.product-chart-panel {
  position: relative;
  width: 245px;
  height: 145px;
  border: 1px solid rgba(105, 122, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(234, 242, 255, 0.46));
  transform: rotate(-14deg);
}

.chart-pie {
  position: absolute;
  left: 38px;
  top: 44px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: conic-gradient(#6a75ff 0 28%, #38d6c5 28% 54%, rgba(219, 229, 255, 0.72) 54% 100%);
}

.chart-pie::after {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.86);
}

.chart-line {
  position: absolute;
  right: 30px;
  top: 36px;
  width: 94px;
  height: 10px;
  border-radius: 999px;
  background: rgba(84, 134, 255, 0.22);
  box-shadow: 0 23px 0 rgba(84, 134, 255, 0.16), 0 46px 0 rgba(84, 134, 255, 0.12);
}

.chart-bar {
  position: absolute;
  bottom: -28px;
  width: 32px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #5971ff, #32c8ff);
}

.chart-bar.bar-one {
  left: 118px;
  height: 58px;
}

.chart-bar.bar-two {
  left: 158px;
  height: 92px;
}

.chart-bar.bar-three {
  left: 202px;
  height: 72px;
  background: linear-gradient(180deg, #78eadc, #42baff);
}

.product-side-target {
  right: -8px;
  top: 2px;
  width: 310px;
  height: 248px;
}

.product-side-target img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: productFloat 5.2s ease-in-out infinite;
}

.product-side-target span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(129, 143, 255, 0.8), rgba(255, 255, 255, 0.5));
}

.product-side-target span:nth-child(2) {
  left: -10px;
  top: 66px;
  width: 18px;
  height: 18px;
}

.product-side-target span:nth-child(3) {
  right: -4px;
  top: 96px;
  width: 22px;
  height: 22px;
}

.section-heading h2,
.analytics-copy h2,
.cta-copy h2 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 950;
}

.section-heading p,
.analytics-copy p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.segment-tabs,
.solution-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.segment-tabs::before {
  content: none;
}

.segment-tabs button,
.solution-tabs button {
  min-width: 184px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(108, 122, 255, 0.1);
  border-radius: var(--radius);
  color: #6d748c;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  box-shadow: none;
  backdrop-filter: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.segment-tabs button:hover,
.solution-tabs button:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.segment-tabs button.is-active,
.solution-tabs button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, #4c50ff, #2f8cff);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(55, 91, 255, 0.18);
}

.product-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1340px;
  margin: 0 auto;
}

.product-grid::before {
  content: none;
  position: absolute;
  top: -18px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76, 118, 255, 0.28), rgba(42, 190, 255, 0.16), transparent);
  background-size: 180% 100%;
  opacity: 0.86;
  animation: techLineSweep 6.4s linear infinite;
}

.product-card,
.feature-card,
.ecosystem-card,
.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(101, 112, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, opacity 0.2s ease;
}

.product-card::before,
.feature-card::before,
.ecosystem-card::before,
.case-card::before,
.solution-card::before,
.analytics-dashboard::before,
.cta-inner::after {
  display: none;
}

.product-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 22px 30px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.88));
  backdrop-filter: none;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover,
.feature-card:hover,
.ecosystem-card:hover,
.case-card:hover {
  border-color: rgba(84, 98, 255, 0.22);
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(64, 88, 170, 0.1);
}

.product-card::before {
  content: none;
}

.product-card::after {
  content: none;
  position: absolute;
  inset: 12px;
  z-index: 0;
  border-radius: 8px;
  border: 1px solid rgba(98, 130, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(69, 116, 255, 0.18), transparent 18% 82%, rgba(71, 197, 255, 0.16)) top / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(69, 116, 255, 0.14), transparent 20% 80%, rgba(71, 197, 255, 0.12)) left / 1px 100% no-repeat;
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.product-card:hover::before,
.product-card:hover::after {
  opacity: 0;
  transform: none;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-art {
  position: relative;
  width: 100%;
  height: 176px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  transition: transform 0.28s ease;
}

.product-art::before {
  content: none;
  position: absolute;
  inset: 8px 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(86, 94, 255, 0.1), rgba(54, 206, 255, 0.05));
  transform: skewY(-5deg);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.product-art span {
  position: absolute;
  inset: 20px 30px;
  border-radius: 10px;
  background: linear-gradient(145deg, #6b72ff, #3ab5ff);
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-art img {
  width: 100%;
  max-width: 210px;
  max-height: 166px;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}

.app-art img {
  max-width: 214px;
  max-height: 178px;
}

.mini-art img {
  max-width: 214px;
}

.h5-art img,
.merchant-art img {
  max-width: 198px;
}

.manager-art img {
  max-width: 190px;
}

.product-card:hover .product-art {
  transform: translateY(-8px);
}

.product-card:hover .product-art::before {
  opacity: 0;
  transform: skewY(-5deg) scale(1.08);
}

.product-card:hover .product-art span {
  transform: translateY(-3px) scale(1.04);
  box-shadow: none;
}

.product-card:hover .product-art img {
  transform: translateY(-4px) scale(1.04);
}

.product-art span::before,
.product-art span::after {
  content: "";
  position: absolute;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
}

.app-art span::before {
  inset: 11px 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
}

.app-art span::after {
  left: 23px;
  bottom: 12px;
  width: 12px;
  height: 3px;
}

.mini-art span {
  background: linear-gradient(145deg, #34dfb4, #58a5ff);
}

.mini-art span::before {
  inset: 17px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}

.mini-art span::after {
  right: -13px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #2ed0a1;
}

.h5-art span,
.merchant-art span,
.manager-art span {
  inset: 30px 12px 24px;
  border-radius: var(--radius);
}

.h5-art span::before,
.merchant-art span::before,
.manager-art span::before {
  left: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
}

.h5-art span::after,
.merchant-art span::after,
.manager-art span::after {
  left: 40px;
  top: 14px;
  width: 44px;
  height: 6px;
}

.merchant-art span {
  background: linear-gradient(145deg, #3177ff, #55d5ff);
}

.manager-art span {
  background: linear-gradient(145deg, #7663ff, #b08bff);
}

.product-card h3,
.feature-card h3,
.ecosystem-card h3,
.case-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 950;
}

.product-card p,
.feature-card p,
.ecosystem-card p,
.case-card p {
  margin: 0;
  color: #687089;
  font-size: 15px;
  line-height: 1.8;
}

.product-card a,
.feature-card a {
  position: relative;
  margin-top: auto;
  padding-top: 24px;
  color: #5662ff;
  font-size: 15px;
  font-weight: 900;
}

.product-card a::after,
.feature-card a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.analytics-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(99, 118, 255, 0.12), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(39, 198, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #f7faff 0%, #eef3ff 100%);
}

.analytics-section .container {
  width: min(calc(100% - 112px), 1600px);
}

.analytics-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(640px, 1.3fr);
  gap: 44px;
  align-items: center;
  min-height: 670px;
  padding: 44px 40px 42px;
  overflow: hidden;
  border: 1px solid rgba(103, 124, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(rgba(82, 111, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 111, 197, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(237, 243, 255, 0.92));
  background-size: 36px 36px, 36px 36px, 100% 100%;
}

.analytics-layout::before,
.analytics-layout::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.analytics-layout::before {
  left: 64px;
  top: 46px;
  width: 220px;
  height: 160px;
  opacity: 0.36;
  background-image: radial-gradient(circle, rgba(74, 104, 255, 0.32) 1.4px, transparent 1.5px);
  background-size: 13px 13px;
}

.analytics-layout::after {
  right: 24px;
  bottom: 18px;
  width: 420px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 107, 255, 0.1), transparent 68%);
}

.analytics-copy h2 {
  max-width: 520px;
  margin-top: 16px;
  font-size: clamp(32px, 2.55vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

.analytics-copy h2::first-letter {
  letter-spacing: 0;
}

.analytics-copy p {
  max-width: 510px;
  margin-top: 18px;
  color: #64708a;
  font-size: 17px;
  line-height: 1.9;
}

.check-list,
.solution-copy ul {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.solution-copy li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #4f5871;
  font-size: 15px;
  font-weight: 700;
}

.check-list span,
.solution-copy li span {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6e75ff, #39d8b8);
}

.check-list span::after,
.solution-copy li span::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
}

.analytics-features {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.analytics-features li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
}

.analytics-feature-icon {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(83, 103, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 241, 255, 0.92));
}

.analytics-feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #5c6bff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analytics-features strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.analytics-features small {
  display: block;
  margin-top: 6px;
  color: #73809a;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.analytics-illustration {
  position: relative;
  z-index: 1;
  width: min(330px, 100%);
  height: 172px;
  margin-top: 34px;
}

.analytics-pie {
  position: absolute;
  left: 38px;
  bottom: 8px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background:
    conic-gradient(from -35deg, rgba(94, 111, 255, 0.74) 0 27%, rgba(231, 237, 255, 0.92) 27% 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.analytics-pie::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(238, 244, 255, 0.45));
}

.analytics-pie span {
  position: absolute;
  right: 22px;
  top: -2px;
  width: 34px;
  height: 70px;
  border-radius: 22px 22px 6px 6px;
  background: linear-gradient(180deg, #96a5ff, rgba(255, 255, 255, 0.34));
  transform: rotate(18deg);
}

.analytics-note {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: 148px;
  height: 96px;
  padding: 18px 16px;
  border: 1px solid rgba(104, 124, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(235, 241, 255, 0.52));
  transform: rotate(10deg);
}

.analytics-note i {
  display: block;
  width: 46px;
  height: 6px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(94, 111, 255, 0.18);
}

.analytics-note i:nth-child(2) {
  width: 76px;
}

.analytics-note svg {
  width: 100%;
  height: 58px;
  fill: none;
  stroke: #6574ff;
  stroke-width: 4;
  stroke-linecap: round;
}

.analytics-orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8edff, #7182ff);
}

.analytics-orb.orb-one {
  left: 8px;
  bottom: 24px;
  width: 18px;
  height: 18px;
}

.analytics-orb.orb-two {
  left: 204px;
  bottom: 4px;
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

.analytics-dashboard {
  position: relative;
  display: grid;
  z-index: 1;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(79, 97, 210, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 50px rgba(42, 59, 138, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.analytics-dashboard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(42, 59, 138, 0.1);
}

.dash-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 16px;
  color: #6b728a;
  background: linear-gradient(180deg, #f7f9ff, #eef3ff);
  font-size: 13px;
  font-weight: 800;
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.dash-logo img {
  width: 24px;
  height: 24px;
}

.dash-sidebar span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.dash-sidebar span:hover {
  color: #5662ff;
  background: rgba(86, 98, 255, 0.08);
  transform: translateX(2px);
}

.dash-sidebar span i {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 5px;
  opacity: 0.75;
}

.dash-sidebar .is-on {
  color: #5662ff;
  background: rgba(86, 98, 255, 0.1);
}

.dash-content {
  padding: 24px;
}

.dash-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.dash-topbar strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.dash-window-dots {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-topbar .dash-window-dots span {
  width: 8px;
  height: 8px;
  display: block;
  margin-right: 0;
  border-radius: 999px;
  background: rgba(106, 126, 255, 0.45);
}

.dash-date {
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(98, 119, 255, 0.14);
  border-radius: 10px;
  color: #66708a;
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.dash-metrics div {
  position: relative;
  min-height: 100px;
  overflow: hidden;
  padding: 16px 14px 14px;
  border: 1px solid rgba(84, 104, 190, 0.11);
  background:
    radial-gradient(circle at 84% 18%, rgba(87, 101, 255, 0.08), transparent 34%),
    #ffffff;
  box-shadow: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.dash-metrics div:hover,
.dash-panels > div:hover {
  transform: translateY(-3px);
  border-color: rgba(86, 98, 255, 0.28);
}

.metric-icon {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #5662ff;
  background: linear-gradient(145deg, rgba(86, 98, 255, 0.14), rgba(66, 200, 255, 0.08));
}

.metric-icon.purple {
  color: #7667ff;
  background: linear-gradient(145deg, rgba(118, 103, 255, 0.15), rgba(255, 255, 255, 0.8));
}

.metric-icon.green {
  color: #13b98f;
  background: linear-gradient(145deg, rgba(19, 185, 143, 0.16), rgba(255, 255, 255, 0.8));
}

.metric-icon.orange {
  color: #f59e0b;
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.16), rgba(255, 255, 255, 0.8));
}

.metric-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash-metrics small,
.board-card small {
  display: block;
  color: #8a92aa;
  font-size: 12px;
  font-weight: 800;
}

.dash-metrics strong,
.board-card strong {
  display: block;
  margin-top: 12px;
  color: #16213f;
  font-size: clamp(21px, 1.34vw, 27px);
  line-height: 1.2;
  font-weight: 950;
}

.dash-metrics em,
.board-card em {
  display: block;
  margin-top: 6px;
  color: #10b981;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.dash-panels > div {
  border: 1px solid rgba(84, 104, 190, 0.11);
  padding: 18px;
  background: #ffffff;
  box-shadow: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.panel-wide {
  min-height: 224px;
}

.panel-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-title-row span {
  color: #7b84a0;
  font-size: 12px;
  font-weight: 800;
}

.trend-chart {
  position: relative;
  height: 166px;
  margin-top: 18px;
  padding: 10px 12px 26px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(rgba(84, 96, 160, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(90, 103, 255, 0.06), rgba(39, 198, 255, 0.04));
  background-size: 100% 36px, 100% 100%;
}

.trend-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.trend-fill {
  fill: url("#analyticsArea");
}

.trend-line {
  fill: none;
  stroke: url("#analyticsLine");
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: trendDraw 3.2s ease forwards;
}

.trend-chart circle {
  fill: #ffffff;
  stroke: #5662ff;
  stroke-width: 4;
}

.trend-axis {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 9px;
  display: flex;
  justify-content: space-between;
  color: #8892ad;
  font-size: 11px;
  font-weight: 800;
}

@keyframes trendDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.panel-small ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #626a84;
  font-size: 12px;
  font-weight: 800;
}

.panel-small li span {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 999px;
  background: #5965ff;
}

.donut-chart.large {
  width: 116px;
  height: 116px;
  margin-top: 18px;
  background: conic-gradient(#5662ff 0 54%, #35c7ff 54% 78%, #5fd1b9 78% 90%, #dbe4ff 90% 100%);
}

.donut-chart.large::after {
  background: #ffffff;
}

.donut-chart.large strong {
  color: #16213f;
  text-align: center;
  font-size: 18px;
}

.donut-chart.large strong small {
  display: block;
  margin-top: 3px;
  color: #7d879d;
  font-size: 10px;
}

.list-panel p {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 13px 0 0;
  color: #59617b;
  font-size: 12px;
  font-weight: 800;
}

.list-panel p span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(135deg, #5662ff, #2dc2ff);
  font-size: 11px;
  font-weight: 950;
}

.list-panel b {
  color: #18213c;
  font-size: 11px;
  white-space: nowrap;
}

.mini-bars {
  height: 112px;
  margin-top: 22px;
  align-items: end;
}

.mini-bars span {
  background: linear-gradient(180deg, #6271ff, #1fc4ff);
}

.solution-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(74, 128, 255, 0.1), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(104, 120, 255, 0.1), transparent 25%),
    linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%);
}

.solution-section::before,
.solution-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.solution-section::before {
  inset: 0;
  z-index: 0;
  background-image: var(--surface-tech-grid);
  background-size: 66px 66px, 48px 48px, 48px 48px;
  opacity: 0.44;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
  animation: productGridDrift 18s linear infinite;
}

.solution-section::after {
  right: -8%;
  top: -160px;
  z-index: 0;
  width: 48vw;
  height: 280px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, rgba(219, 231, 255, 0.9), rgba(255, 255, 255, 0));
}

.solution-section .container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 96px), 1720px);
}

.solution-bg-illustration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.solution-bg-left {
  left: max(20px, calc((100vw - 1720px) / 2 - 42px));
  top: 54px;
  width: 255px;
  opacity: 0.82;
  transform: rotate(-12deg);
}

.solution-bg-left img {
  width: 100%;
  object-fit: contain;
  animation: productFloat 6.8s ease-in-out infinite;
}

.solution-bg-right {
  right: max(24px, calc((100vw - 1720px) / 2 - 8px));
  top: 74px;
  width: 350px;
  height: 230px;
}

.solution-bg-right img {
  position: absolute;
  object-fit: contain;
  animation: productFloat 6.2s ease-in-out infinite;
}

.solution-bg-right .calendar {
  right: 148px;
  top: 0;
  width: 112px;
  transform: rotate(5deg);
}

.solution-bg-right .stopwatch {
  right: 78px;
  top: 88px;
  width: 92px;
  animation-delay: -1.4s;
}

.solution-bg-right .trophy {
  right: 0;
  top: 68px;
  width: 105px;
  animation-delay: -2.2s;
}

.solution-heading {
  max-width: 1180px;
  margin-bottom: 36px;
}

.solution-heading h2 {
  font-size: clamp(38px, 3.35vw, 56px);
  white-space: nowrap;
}

.solution-heading h2 span {
  color: #4f62ff;
}

.solution-heading p {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.8;
}

.solution-section .solution-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
}

.solution-section .solution-tabs button {
  position: relative;
  min-width: 0;
  min-height: 72px;
  gap: 12px;
  border: 1px solid rgba(106, 124, 255, 0.12);
  border-radius: 12px;
  color: #546079;
  background: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  box-shadow: 0 16px 42px rgba(64, 84, 150, 0.06);
  overflow: visible;
}

.solution-section .solution-tabs button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: inherit;
  opacity: 0;
  transform: translateX(-50%) rotate(45deg);
}

.solution-section .solution-tabs button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.solution-section .solution-tabs button[data-solution="event"] img {
  width: 32px;
  height: 32px;
}

.tab-ball {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 18%, transparent 19%),
    conic-gradient(from 18deg, #5e74ff 0 18%, #ffffff 18% 32%, #5e74ff 32% 50%, #ffffff 50% 68%, #5e74ff 68% 86%, #ffffff 86% 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75);
  transition: transform 0.24s ease;
}

.solution-section .solution-tabs button:hover img,
.solution-section .solution-tabs button:hover .tab-ball {
  transform: translateY(-2px) scale(1.08);
}

.solution-section .solution-tabs button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #4b55ff, #2f89ff);
  box-shadow: 0 18px 44px rgba(57, 91, 255, 0.22);
}

.solution-section .solution-tabs button.is-active::after {
  opacity: 1;
}

.solution-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 510px minmax(0, 1fr);
  gap: 34px;
  min-height: 560px;
  padding: 48px 56px;
  border: 1px solid rgba(102, 112, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 100%, rgba(94, 116, 255, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.86));
  box-shadow: 0 24px 70px rgba(55, 76, 151, 0.08);
}

.solution-copy {
  position: relative;
  align-self: center;
  min-height: 470px;
  padding-bottom: 84px;
}

.solution-copy h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.22;
  font-weight: 950;
}

.solution-copy p {
  max-width: 420px;
  margin: 0;
  color: #61708d;
  font-size: 17px;
  line-height: 1.85;
}

.solution-copy ul {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.solution-copy li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  transition: transform 0.2s ease;
}

.solution-copy li:hover {
  transform: translateX(6px);
}

.solution-copy li span {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 999px;
  background: url("./assets/solution/icon-check.png") center / contain no-repeat;
}

.solution-copy li:nth-child(2) span {
  background-image: url("./assets/solution/icon-users.png");
}

.solution-copy li:nth-child(3) span {
  background-image: url("./assets/solution/icon-user-star.png");
}

.solution-copy li:nth-child(4) span {
  background-image: url("./assets/solution/icon-bars.png");
}

.solution-copy li strong {
  color: #111b34;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
}

.solution-copy li small {
  margin-top: 4px;
  color: #67738e;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.solution-copy .btn {
  margin-top: 34px;
  border-color: rgba(75, 93, 255, 0.36);
  color: #4f5dff;
  background: rgba(255, 255, 255, 0.72);
}

.solution-stadium {
  position: absolute;
  left: 88px;
  bottom: -18px;
  width: 360px;
  opacity: 0.6;
  pointer-events: none;
}

.schedule-board {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(410px, 1fr);
  gap: 26px;
  align-items: stretch;
}

.board-cards {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 22px;
}

.board-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(99, 118, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(58, 72, 146, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.board-card:hover,
.solution-calendar:hover {
  border-color: rgba(77, 106, 255, 0.2);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-4px);
}

.board-card.wide {
  grid-column: span 2;
}

.board-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.board-card-head span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(89, 105, 255, 0.22);
  border-radius: 999px;
  color: #8b96bd;
  font-size: 11px;
  font-weight: 950;
}

.solution-stat-card {
  min-height: 235px;
}

.donut-mini .donut-chart {
  width: 142px;
  height: 142px;
  margin-top: 28px;
}

.donut-mini .donut-chart::after {
  background: #ffffff;
}

.donut-mini .donut-chart strong {
  color: var(--ink);
  font-size: 34px;
}

.today-card img {
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: 116px;
  opacity: 0.42;
}

.solution-growth-card {
  min-height: 255px;
}

.solution-growth-card strong {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-size: 34px;
}

.growth-arrow {
  position: absolute;
  right: 36px;
  top: 78px;
  width: 210px;
  height: 94px;
  fill: none;
  stroke: #5d7cff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.78;
}

.solution-growth-card .mini-bars {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  height: 86px;
  margin: 0;
}

.solution-calendar {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(99, 118, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(58, 72, 146, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.calendar-title {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.time-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px repeat(6, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid #eef1ff;
}

.time-row:last-of-type {
  border-bottom: 0;
}

.time-row.header {
  min-height: 32px;
  grid-template-columns: repeat(6, 1fr);
  margin-left: 100px;
  color: #66708d;
  font-size: 12px;
  font-weight: 900;
}

.time-row b {
  color: #26314b;
  font-size: 13px;
}

.time-row i {
  height: 34px;
  border-radius: 7px;
  background: rgba(219, 224, 255, 0.8);
}

.time-row i.small {
  grid-column: span 2;
}

.time-row i.blue {
  background: linear-gradient(135deg, rgba(67, 111, 255, 0.2), rgba(67, 111, 255, 0.42));
}

.time-row i.pink {
  background: linear-gradient(135deg, rgba(255, 122, 168, 0.22), rgba(255, 122, 168, 0.5));
}

.time-row i.green {
  background: linear-gradient(135deg, rgba(34, 211, 166, 0.22), rgba(34, 211, 166, 0.48));
}

.time-row i.amber {
  background: linear-gradient(135deg, rgba(255, 181, 71, 0.24), rgba(255, 181, 71, 0.56));
}

.calendar-now {
  position: absolute;
  top: 122px;
  bottom: 112px;
  left: calc(92px + 32px + ((100% - 124px) * 0.39));
  display: grid;
  justify-items: center;
  width: 2px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(68, 116, 255, 0), rgba(68, 116, 255, 0.52), rgba(68, 116, 255, 0));
}

.calendar-now span {
  width: 10px;
  height: 10px;
  margin-top: -3px;
  border-radius: 999px;
  background: #4e7aff;
}

.calendar-now b {
  align-self: end;
  padding: 4px 11px;
  border-radius: 999px;
  background: #3483ff;
  font-size: 12px;
}

.calendar-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #66708d;
  font-size: 12px;
  font-weight: 800;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.calendar-legend i {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 4px;
  background: rgba(219, 224, 255, 0.9);
}

.calendar-legend i.blue {
  background: rgba(67, 111, 255, 0.48);
}

.calendar-legend i.green {
  background: rgba(34, 211, 166, 0.52);
}

.calendar-legend i.amber {
  background: rgba(255, 181, 71, 0.58);
}

.feature-section {
  background: linear-gradient(180deg, #f7f9ff, #f1f4ff);
}

.feature-grid,
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.feature-card {
  min-height: 242px;
  padding: 30px 20px 24px;
  text-align: center;
}

.feature-symbol {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, #595fff, #39a7ff);
  box-shadow: 0 14px 28px rgba(74, 88, 255, 0.25);
  font-weight: 950;
}

.feature-symbol.green {
  background: linear-gradient(145deg, #20c997, #42dfb8);
}

.feature-symbol.cyan {
  background: linear-gradient(145deg, #35a7ff, #33d5f0);
}

.feature-symbol.shield {
  background: linear-gradient(145deg, #7465ff, #9d79ff);
}

.cases-section {
  background: #f7f9ff;
}

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

.case-card {
  padding: 30px;
  background: #ffffff;
}

.case-logo {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  margin-bottom: 24px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #f1f4ff;
  font-size: 13px;
  font-weight: 950;
}

.case-card div:last-child {
  display: grid;
  gap: 3px;
  margin-top: 28px;
}

.case-card div:last-child strong {
  color: #4f60ff;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.case-card div:last-child span {
  color: #7a8198;
  font-size: 13px;
  font-weight: 800;
}

.ecosystem-section {
  background:
    linear-gradient(180deg, #f7f9ff 0%, #eef2ff 100%);
}

.ecosystem-card {
  min-height: 230px;
  padding: 32px 22px 26px;
  text-align: center;
}

.ecosystem-card span {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  height: 48px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, #615eff, #37b8ff);
  box-shadow: 0 14px 30px rgba(69, 90, 255, 0.23);
  font-size: 13px;
  font-weight: 950;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 84px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(89, 123, 255, 0.52), transparent 34%),
    radial-gradient(circle at 28% 82%, rgba(36, 204, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #4653ff 0%, #266cff 46%, #0f53d7 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 76%);
  opacity: 0.52;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -38%;
  z-index: 0;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(135, 170, 255, 0.28), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.cta-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
  min-height: 360px;
  overflow: visible;
  padding: 0 62px;
  color: var(--white);
  background: transparent;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: -42px -24px;
  z-index: -1;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 78% 50%, rgba(13, 45, 160, 0.26), transparent 42%);
  box-shadow: none;
  backdrop-filter: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  max-width: 650px;
  color: var(--white);
  font-size: 38px;
}

.cta-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

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

.cta-visual {
  position: relative;
  z-index: 1;
  min-height: 270px;
}

.cta-visual img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.28));
}

.cta-chip {
  position: absolute;
  width: 146px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(17, 28, 112, 0.22);
  backdrop-filter: blur(12px);
}

.cta-chip strong,
.cta-chip span {
  display: block;
}

.cta-chip strong {
  font-size: 22px;
  line-height: 1.08;
}

.cta-chip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.chip-one {
  left: 44px;
  top: 30px;
}

.chip-two {
  right: 22px;
  top: 88px;
}

.chip-three {
  left: 26%;
  bottom: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #081227, #050917);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.8fr) 1.25fr;
  gap: 44px;
  padding: 58px 0 42px;
}

.footer-logo img {
  width: 42px;
  height: 42px;
}

.footer-logo strong {
  color: var(--white);
  font-size: 20px;
}

.footer-brand p {
  max-width: 230px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.64);
}

.social-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.social-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 950;
}

address {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-size: 14px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
  font-weight: 950;
}

.footer-grid a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 2px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-size: 14px;
}

.footer-admin-link:hover {
  color: var(--white);
}

.subscribe-box p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.subscribe-box form {
  position: relative;
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.subscribe-box label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.subscribe-box input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.subscribe-box input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.subscribe-box button {
  width: 72px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #555dff, #2f8cff);
  font-weight: 900;
}

.qr-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qr-code {
  width: 88px;
  height: 88px;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #0c1328 12px, transparent 12px) 0 0 / 22px 22px,
    linear-gradient(#0c1328 12px, transparent 12px) 0 0 / 22px 22px,
    #ffffff;
}

.footer-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.footer-records,
.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-records a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.54);
}

.police-record-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.police-record-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}

.footer-records a:hover,
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-legal {
  margin-left: auto;
}


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

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

@keyframes heroGradientFlow {
  0% {
    background-position: 50% 50%, 50% 50%, 50% 50%, 0% 50%;
  }
  100% {
    background-position: 50% 50%, 50% 50%, 50% 50%, 100% 46%;
  }
}

@keyframes heroSheen {
  0%,
  18% {
    transform: translateX(-46%);
    opacity: 0;
  }
  42%,
  62% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(46%);
    opacity: 0;
  }
}

@keyframes auroraFloat {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 2%, 0) scale(1.04);
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 46px 46px, 46px 46px;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(-2deg);
  }
}

@keyframes orbitDrift {
  0% {
    transform: rotate(-16deg) translate3d(-8px, 0, 0);
    opacity: 0.58;
  }
  100% {
    transform: rotate(-10deg) translate3d(8px, -10px, 0);
    opacity: 0.78;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: perspective(980px) rotateY(-8deg) rotateX(2deg) rotateZ(-2deg) translate3d(0, 0, 0);
  }
  50% {
    transform: perspective(980px) rotateY(-7deg) rotateX(2.5deg) rotateZ(-1.5deg) translate3d(0, -10px, 0);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotate(-8deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-6deg) translate3d(0, -9px, 0);
  }
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes surfaceGlint {
  0% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(70%);
  }
}

@keyframes statPanelFlow {
  0%,
  100% {
    background-position: 120% 50%, 50% 50%;
  }
  50% {
    background-position: -40% 50%, 50% 50%;
  }
}

@keyframes techLineSweep {
  0% {
    background-position: 120% 50%;
  }
  100% {
    background-position: -80% 50%;
  }
}

@keyframes techDotPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

@keyframes productGridDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 66px 66px, 48px 48px, 48px 48px;
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(1deg);
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.92);
    filter: saturate(1);
  }
  50% {
    transform: scaleY(1);
    filter: saturate(1.22);
  }
}

@keyframes donutGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(78, 96, 255, 0));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(78, 96, 255, 0.28));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-particles,
  .product-particles,
  .cta-particles,
  .hero-aurora,
  .hero-spotlight {
    display: none;
  }
}

@media (max-width: 1320px) {
  .analytics-section .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .analytics-layout {
    grid-template-columns: 1fr;
  }

  .analytics-dashboard {
    width: min(100%, 980px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 28px;
  }

  .primary-nav {
    gap: 24px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .login-entry {
    min-width: auto;
    padding-inline: 16px;
  }

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

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

  .hero-copy h1 {
    white-space: normal;
  }

  .hero-copy h1 span {
    display: block;
  }

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

  .laptop-mockup {
    right: 0;
  }

  .phone-mockup {
    left: 54px;
  }

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

  .product-side-chart {
    left: -58px;
    opacity: 0.46;
  }

  .product-side-target {
    right: -72px;
    opacity: 0.62;
  }

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

  .analytics-layout,
  .solution-card,
  .schedule-board {
    grid-template-columns: 1fr;
  }

  .solution-section .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .solution-bg-illustration {
    opacity: 0.2;
  }

  .solution-bg-left {
    left: -72px;
  }

  .solution-bg-right {
    right: -80px;
  }

  .solution-section .solution-tabs {
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
  }

  .solution-heading h2 {
    white-space: normal;
  }

  .solution-card {
    padding: 40px;
  }

  .solution-copy {
    min-height: auto;
    padding-bottom: 166px;
  }

  .solution-stadium {
    left: 50%;
    bottom: -14px;
    width: 330px;
    transform: translateX(-50%);
  }

  .schedule-board {
    gap: 22px;
  }

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

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

@media (max-width: 920px) {
  .site-header {
    height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 20px;
  }

  .primary-nav {
    display: none;
  }

  .header-actions .btn {
    display: inline-flex;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 90px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

  .capability-pill:nth-child(2) {
    border-right: 0;
  }

  .capability-pill:nth-child(1),
  .capability-pill:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-visual {
    min-height: 500px;
  }

  .laptop-mockup {
    width: min(92%, 660px);
    right: 0;
    top: 142px;
    padding: 7px;
    transform: none;
    animation: none;
  }

  .phone-mockup {
    left: 0;
    top: 188px;
    width: 150px;
    padding: 0;
    border-width: 1px;
    border-radius: 20px;
  }

  .hero-orbit {
    left: 5%;
    top: 18px;
    width: 480px;
    height: 480px;
  }

  .mobile-app-shot {
    height: auto;
    border-radius: 19px;
  }

  .mobile-search-row {
    grid-template-columns: 48px 1fr;
    gap: 5px;
    padding: 30px 7px 6px;
    font-size: 8px;
  }

  .mobile-banner-shot {
    height: 42px;
    margin: 0 7px 7px;
    padding: 7px 9px;
    font-size: 16px;
  }

  .mobile-cats,
  .mobile-filter-row,
  .mobile-feed {
    gap: 5px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .mobile-cats span {
    min-height: 32px;
    font-size: 9px;
  }

  .mobile-filter-row span {
    min-height: 22px;
    font-size: 8px;
  }

  .mobile-feed article,
  .feed-cover.worldcup {
    min-height: 90px;
  }

  .feed-cover {
    min-height: 38px;
  }

  .feed-cover.worldcup {
    font-size: 17px;
  }

  .mobile-feed h4 {
    margin-top: 6px;
    padding: 0 6px;
    font-size: 9px;
  }

  .mobile-feed p {
    margin-top: 5px;
    padding: 0 6px;
    font-size: 8px;
  }

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

  .hero-stats div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats div:nth-child(1),
  .hero-stats div:nth-child(2) {
    border-bottom: 0;
  }

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

  .solution-bg-illustration {
    display: none;
  }

  .solution-heading h2 {
    font-size: 38px;
  }

  .solution-heading {
    margin-bottom: 28px;
  }

  .solution-section .solution-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 26px;
  }

  .solution-section .solution-tabs button {
    min-height: 62px;
    font-size: 15px;
  }

  .solution-card {
    padding: 32px;
  }

  .solution-copy h3 {
    font-size: 30px;
  }

  .solution-copy p {
    max-width: none;
    font-size: 16px;
  }

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

  .board-card.wide {
    grid-column: auto;
  }

  .solution-calendar {
    overflow-x: auto;
  }

  .solution-calendar .time-row,
  .solution-calendar .calendar-legend {
    min-width: 600px;
  }

  .product-showcase-head {
    min-height: auto;
    padding: 12px 0 6px;
  }

  .product-side-illustration {
    display: none;
  }

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

  .analytics-dashboard {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .dash-logo {
    grid-column: span 3;
  }

  .case-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 72px 0 66px;
  }

  .cta-inner {
    padding: 46px 28px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 0 14px;
    gap: 8px;
  }

  .brand {
    gap: 6px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .btn {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .hero-copy h1,
  .section-heading h2,
  .analytics-copy h2,
  .cta-copy h2 {
    font-size: 32px;
  }

  .hero-capabilities {
    grid-template-columns: 1fr;
  }

  .capability-pill {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .capability-pill:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-large,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .product-grid,
  .feature-grid,
  .ecosystem-grid,
  .partner-logos,
  .case-grid,
  .board-cards,
  .dash-panels,
  .dash-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-bird-watermark,
  .float-card,
  .cta-chip {
    display: none;
  }

  .phone-mockup {
    top: 176px;
    width: 118px;
    padding: 0;
    border-width: 1px;
    border-radius: 18px;
  }

  .phone-notch {
    top: 7px;
    width: 48px;
    height: 13px;
  }

  .mobile-app-shot {
    height: auto;
    border-radius: 17px;
  }

  .mobile-search-row {
    grid-template-columns: 36px 1fr;
    gap: 4px;
    padding: 24px 5px 5px;
    font-size: 7px;
  }

  .mobile-search-row span,
  .mobile-search-row strong {
    padding: 5px;
  }

  .mobile-banner-shot {
    height: 34px;
    margin: 0 5px 6px;
    padding: 6px 7px;
    font-size: 13px;
    border-radius: 6px;
  }

  .mobile-cats,
  .mobile-filter-row,
  .mobile-feed {
    gap: 4px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .mobile-cats {
    padding-bottom: 6px;
  }

  .mobile-cats span {
    min-height: 25px;
    font-size: 8px;
    border-radius: 6px;
  }

  .mobile-filter-row {
    padding-bottom: 6px;
  }

  .mobile-filter-row span {
    min-height: 18px;
    font-size: 7px;
  }

  .mobile-feed article,
  .feed-cover.worldcup {
    min-height: 70px;
    border-radius: 7px;
  }

  .feed-cover {
    min-height: 30px;
    border-radius: 7px 7px 0 0;
  }

  .feed-cover.worldcup {
    padding: 6px;
    font-size: 13px;
  }

  .phone-banner {
    min-height: 56px;
    font-size: 12px;
  }

  .laptop-mockup {
    top: 78px;
    width: 100%;
    min-height: 0;
    padding: 6px;
  }

  .hero-orbit,
  .hero-device-glow {
    display: none;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .dashboard-main .donut-chart {
    display: none;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 0;
    padding: 22px 26px;
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 60px 0;
  }

  .partners-belt {
    padding: 48px 0 34px;
  }

  .partner-logos {
    gap: 10px;
  }

  .partner-logo {
    min-height: 68px;
  }

  .partner-mark,
  .partner-mark img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .segment-tabs button,
  .solution-tabs button {
    min-width: 0;
  }

  .product-card {
    min-height: 360px;
  }

  .analytics-layout,
  .solution-card {
    padding: 24px;
  }

  .analytics-dashboard {
    min-height: auto;
  }

  .dash-sidebar {
    display: none;
  }

  .dash-content {
    padding: 18px;
  }

  .solution-tabs,
  .segment-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .solution-section .solution-tabs {
    grid-template-columns: 1fr;
  }

  .segment-tabs button,
  .solution-tabs button {
    width: 100%;
  }

  .schedule-board {
    overflow: hidden;
  }

  .solution-section .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .solution-card {
    border-radius: 16px;
  }

  .solution-copy {
    padding-bottom: 0;
  }

  .solution-copy h3 {
    font-size: 26px;
  }

  .solution-copy ul {
    gap: 16px;
    margin-top: 24px;
  }

  .solution-copy li {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
  }

  .solution-copy li span {
    width: 44px;
    height: 44px;
  }

  .solution-copy li small {
    font-size: 13px;
  }

  .solution-stadium {
    display: none;
  }

  .solution-calendar {
    padding: 22px;
  }

  .calendar-grid {
    overflow-x: auto;
  }

  .time-row {
    min-width: 560px;
  }

  .cta-visual {
    min-height: 210px;
  }

  .cta-section {
    padding: 60px 0 56px;
  }

  .cta-inner {
    padding: 0 22px;
  }

  .cta-inner::before {
    inset: -20px 8px;
  }

  .cta-visual img {
    width: 210px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .subscribe-box form {
    flex-direction: column;
  }

  .subscribe-box button {
    width: 100%;
    height: 46px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom a {
    margin-left: 0;
  }

  .footer-records,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
  }

}
