:root {
  --bg: #061118;
  --bg-alt: #0b1720;
  --panel: rgba(10, 20, 28, 0.78);
  --panel-strong: rgba(12, 23, 33, 0.96);
  --border: rgba(108, 255, 220, 0.16);
  --text: #eef9ff;
  --muted: #91a7b5;
  --brand-cyan: #18d4f1;
  --brand-cyan-deep: #0fb9dc;
  --brand-cyan-soft: rgba(24, 212, 241, 0.16);
  --brand-ink: #041015;
  --teal: #67ffd7;
  --green: #8ff16e;
  --blue: #4fb4ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(79, 180, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(103, 255, 215, 0.12), transparent 20%),
    radial-gradient(circle at 80% 72%, rgba(143, 241, 110, 0.08), transparent 25%),
    linear-gradient(180deg, #08131c 0%, #050c12 50%, #08131b 100%);
  min-height: 100vh;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.03);
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
  box-shadow: 0 0 18px rgba(103, 255, 215, 0.4);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
  opacity: 0.3;
}

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

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

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

.section {
  position: relative;
  padding: 44px 0 74px;
}

.section-tight {
  padding-top: 18px;
}

.page-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
  animation: floatGlow 16s ease-in-out infinite;
}

.page-glow-left {
  top: -140px;
  left: -120px;
  background: rgba(103, 255, 215, 0.22);
}

.page-glow-right {
  right: -120px;
  top: 220px;
  background: rgba(79, 180, 255, 0.18);
  animation-delay: -6s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 12, 18, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow:
    0 0 26px rgba(103, 255, 215, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-actions,
.hero-actions,
.cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

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

.btn-primary {
  color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-deep));
  box-shadow: 0 16px 40px rgba(24, 212, 241, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -26%;
  width: 24%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  opacity: 0.45;
  pointer-events: none;
  animation: btnSweep 6.8s ease-in-out infinite;
}

.btn-secondary {
  color: var(--text);
  background: rgba(24, 212, 241, 0.05);
  border-color: rgba(24, 212, 241, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: rgba(24, 212, 241, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(24, 212, 241, 0.1);
}

.btn-large {
  min-height: 52px;
  padding-inline: 24px;
}

.hero {
  padding-top: 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--brand-cyan);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(24, 212, 241, 0.08);
  border: 1px solid rgba(24, 212, 241, 0.18);
}

.hero h1,
.section-heading h2,
.split-box h2 {
  margin: 18px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.45rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  max-width: 13ch;
}

.hero-text,
.section-heading p,
.feature-card p,
.product-card li,
.check-item p,
.step-card p,
.faq-card p,
.notice p,
.stat-card span,
.mini-stat small {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.03rem;
  margin-bottom: 30px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cce7f2;
  font-size: 0.92rem;
}

.hero-caption {
  max-width: 58ch;
  margin-top: 18px;
  color: #adc3cf;
  line-height: 1.75;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.visual-shell {
  position: relative;
  padding: 24px 28px 44px 18px;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 10% 8% 10% 10%;
  border-radius: 38px;
  background: radial-gradient(circle at center, rgba(79, 180, 255, 0.28), transparent 62%);
  filter: blur(22px);
  animation: pulseHalo 8s ease-in-out infinite;
}

.visual-tag {
  position: absolute;
  right: 30px;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text);
  background: rgba(7, 17, 25, 0.72);
  border: 1px solid rgba(79, 180, 255, 0.18);
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(8, 19, 26, 0.92));
  border: 1px solid rgba(103, 255, 215, 0.12);
  box-shadow: var(--shadow);
}

.media-card::after,
.showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 16, 0.04) 0%, rgba(4, 10, 16, 0.12) 45%, rgba(4, 10, 16, 0.88) 100%);
  pointer-events: none;
}

.media-card img,
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card-main {
  transform: rotate(-7deg);
  animation: floatCard 8s ease-in-out infinite;
}

.media-card-main img {
  height: 560px;
}

.media-card-main figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.media-card-main strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.media-card-main span {
  color: #d8ecf6;
  line-height: 1.75;
  max-width: 42ch;
  font-size: 0.95rem;
}

.media-card-inset {
  position: absolute;
  left: -6px;
  bottom: 18px;
  z-index: 3;
  width: min(240px, 42%);
  aspect-ratio: 1;
  transform: rotate(8deg);
  animation: floatInset 6.6s ease-in-out infinite;
}

.dashboard {
  position: relative;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(8, 19, 26, 0.95), rgba(7, 16, 22, 0.88));
  border: 1px solid rgba(103, 255, 215, 0.14);
  box-shadow: var(--shadow);
}

.dashboard-main {
  padding: 22px;
  transform: rotate(-8deg);
}

.dashboard-float {
  position: absolute;
  right: 6px;
  bottom: -18px;
  z-index: 4;
  width: min(320px, 74%);
  padding: 18px;
  transform: rotate(4deg);
  background: linear-gradient(180deg, rgba(10, 22, 31, 0.95), rgba(8, 16, 24, 0.88));
  animation: badgeDrift 7.8s ease-in-out infinite;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-teal {
  background: var(--teal);
}

.dot-green {
  background: var(--green);
}

.dot-blue {
  background: var(--blue);
}

.dashboard-chart {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 12, 18, 0.25), rgba(5, 12, 18, 0.88));
  background-size: 100% 100%, 58px 58px, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chart-line {
  position: absolute;
  inset: auto 6% 20% 6%;
  height: 140px;
  border-radius: 999px;
  filter: drop-shadow(0 0 14px rgba(103, 255, 215, 0.4));
}

.line-a {
  background: linear-gradient(90deg, transparent 0%, rgba(103, 255, 215, 0.16) 5%, rgba(103, 255, 215, 1) 35%, rgba(79, 180, 255, 1) 70%, transparent 100%);
  clip-path: polygon(0% 82%, 10% 68%, 18% 72%, 28% 52%, 40% 58%, 52% 34%, 63% 41%, 76% 18%, 100% 44%, 100% 52%, 78% 26%, 65% 49%, 52% 42%, 40% 66%, 28% 60%, 18% 80%, 10% 76%, 0% 92%);
}

.line-b {
  inset: auto 10% 36% 10%;
  height: 100px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 180, 255, 0.18) 12%, rgba(79, 180, 255, 0.95) 56%, transparent 100%);
  clip-path: polygon(0% 68%, 16% 72%, 28% 58%, 42% 64%, 58% 34%, 72% 42%, 100% 12%, 100% 28%, 72% 58%, 58% 50%, 42% 80%, 28% 74%, 16% 88%, 0% 84%);
}

.chart-bars {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 7%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 14px;
  height: 120px;
}

.chart-bars span {
  display: block;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(103, 255, 215, 0.95), rgba(79, 180, 255, 0.2));
  box-shadow: 0 0 18px rgba(103, 255, 215, 0.16);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dashboard-metrics div,
.mini-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-metrics strong,
.mini-stat strong,
.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.dashboard-metrics small,
.mini-stat span {
  color: #cbe2eb;
}

.dashboard-float {
  display: grid;
  gap: 12px;
}

.stat-grid,
.card-grid-three,
.steps-grid,
.faq-list {
  display: grid;
  gap: 22px;
}

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

.stat-card,
.feature-card,
.product-card,
.step-card,
.faq-card,
.notice,
.split-box,
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.stat-card::before,
.feature-card::before,
.product-card::before,
.step-card::before,
.faq-card::before,
.split-box::before,
.notice::before,
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(103, 255, 215, 0.08), transparent 30%, transparent 70%, rgba(79, 180, 255, 0.06));
  pointer-events: none;
}

.stat-card:hover,
.feature-card:hover,
.product-card:hover,
.step-card:hover,
.faq-card:hover,
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(103, 255, 215, 0.18);
}

.stat-card {
  padding: 22px;
}

.stat-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.stat-icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(24, 212, 241, 0.18), rgba(79, 180, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(24, 212, 241, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.2);
  animation: statFloat 4.6s ease-in-out infinite;
}

.stat-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px solid rgba(24, 212, 241, 0.12);
  opacity: 0.55;
  animation: statPulse 3.4s ease-in-out infinite;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-cyan);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card:nth-child(2) .stat-icon {
  animation-delay: -1s;
}

.stat-card:nth-child(3) .stat-icon {
  animation-delay: -2s;
}

.stat-card:nth-child(4) .stat-icon {
  animation-delay: -3s;
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading h2,
.split-box h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

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

.showcase-card {
  grid-column: span 4;
}

.showcase-card-wide {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
}

.showcase-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.showcase-card-wide .showcase-media {
  min-height: 340px;
}

.showcase-card:hover .showcase-media img {
  transform: scale(1.05);
}

.showcase-media img {
  transition: transform 0.6s ease;
}

.showcase-body {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.showcase-card-wide .showcase-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-cyan);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(24, 212, 241, 0.08);
  border: 1px solid rgba(24, 212, 241, 0.18);
}

.showcase-source {
  margin: 0 0 14px;
  color: #9dc0cf;
  font-size: 0.84rem;
  line-height: 1.7;
  word-break: break-word;
}

.showcase-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-copy {
  margin-bottom: 18px !important;
}

.source-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.source-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #d9f4ff;
  background: rgba(24, 212, 241, 0.06);
  border: 1px solid rgba(24, 212, 241, 0.14);
  font-size: 0.92rem;
}

.source-list {
  margin: 0 0 20px;
  padding-left: 18px;
  color: #d9eef7;
}

.source-list li {
  line-height: 1.8;
}

.source-list li + li {
  margin-top: 6px;
}

.source-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--brand-cyan);
  font-weight: 700;
  border: 1px solid rgba(24, 212, 241, 0.18);
  background: rgba(24, 212, 241, 0.08);
}

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

.feature-card {
  padding: 28px;
}

.feature-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(24, 212, 241, 0.18), rgba(79, 180, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(24, 212, 241, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.22);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-cyan);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.product-card h3,
.check-item h3,
.step-card h3,
.faq-card h3,
.cta-strip h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.16rem;
}

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

.product-card {
  padding: 30px;
}

.product-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.product-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(24, 212, 241, 0.18), rgba(79, 180, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(24, 212, 241, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.product-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(24, 212, 241, 0.12), transparent 40%),
    rgba(10, 20, 28, 0.82);
  border-color: rgba(24, 212, 241, 0.18);
}

.product-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-cyan);
  background: rgba(24, 212, 241, 0.08);
  border: 1px solid rgba(24, 212, 241, 0.18);
}

.product-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.product-card li {
  position: relative;
  padding-left: 32px;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(24, 212, 241, 0.95) 0 28%, transparent 31%),
    linear-gradient(180deg, rgba(24, 212, 241, 0.22), rgba(79, 180, 255, 0.08));
  border: 1px solid rgba(24, 212, 241, 0.18);
  box-shadow: 0 0 18px rgba(24, 212, 241, 0.16);
}

.product-card li + li {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--brand-cyan);
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 35% 50%, rgba(24, 212, 241, 0.95) 0 20%, transparent 23%),
    linear-gradient(135deg, rgba(24, 212, 241, 0.18), rgba(79, 180, 255, 0.12));
  border: 1px solid rgba(24, 212, 241, 0.18);
}

.split-box {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
}

.split-box-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.split-box-mark {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(24, 212, 241, 0.18), rgba(79, 180, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(24, 212, 241, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.2);
}

.split-box-mark svg {
  width: 34px;
  height: 34px;
  stroke: var(--brand-cyan);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-list {
  display: grid;
  gap: 18px;
}

.check-item {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.check-item-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.check-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(24, 212, 241, 0.18), rgba(79, 180, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(24, 212, 241, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

.check-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand-cyan);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.step-card {
  padding: 28px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  color: var(--teal);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(103, 255, 215, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(8, 18, 25, 0.96), rgba(10, 21, 31, 0.92));
  border: 1px solid rgba(103, 255, 215, 0.12);
  box-shadow: var(--shadow);
}

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

.faq-card,
.notice {
  padding: 26px;
}

.notice {
  text-align: center;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 25;
  min-width: 126px;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-deep));
  color: var(--brand-ink);
  border: 1px solid rgba(24, 212, 241, 0.18);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(24, 212, 241, 0.3);
  animation: waPulse 3.2s ease-in-out infinite;
}

.mobile-cta {
  display: none;
}

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

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

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, 26px, 0) scale(1.06);
  }
}

@keyframes btnSweep {
  0%,
  100% {
    transform: translateX(-220%) rotate(18deg);
  }
  55% {
    transform: translateX(420%) rotate(18deg);
  }
}

@keyframes pulseHalo {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateY(-10px);
  }
}

@keyframes floatInset {
  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-12px);
  }
}

@keyframes badgeDrift {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-8px);
  }
}

@keyframes waPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(24, 212, 241, 0.3);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(24, 212, 241, 0.42);
  }
}

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

@keyframes statPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.75;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .split-box,
  .product-grid,
  .steps-grid,
  .faq-list,
  .card-grid-three,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .dashboard-main {
    transform: none;
  }

  .dashboard-float {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
    margin-top: 18px;
    transform: none;
  }

  .media-card-main {
    transform: none;
  }

  .media-card-main img {
    height: 480px;
  }

  .media-card-inset {
    left: 8px;
    bottom: 10px;
  }

  .check-item-head {
    align-items: flex-start;
  }

  .showcase-card,
  .showcase-card-wide {
    grid-column: span 12;
  }

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

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .nav-shell {
    padding-block: 14px;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .section {
    padding: 34px 0 58px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.8vw, 3.6rem);
    max-width: 14ch;
  }

  .visual-shell {
    padding: 10px 0 6px;
  }

  .media-card-main img {
    height: 360px;
  }

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

  .feature-card,
  .product-card,
  .step-card,
  .faq-card,
  .notice,
  .split-box,
  .cta-strip,
  .stat-card {
    padding: 22px;
  }

  .floating-wa {
    display: none;
  }

  .feature-card-head {
    align-items: flex-start;
  }

  .stat-card-head {
    align-items: center;
  }

  .media-card-inset {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(240px, 70%);
    margin-top: 16px;
    transform: none;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(5, 12, 18, 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-cta .btn {
    width: 100%;
  }
}

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

  .page-glow,
  .btn-primary::after,
  .visual-shell::before,
  .media-card-main,
  .media-card-inset,
  .dashboard-float,
  .floating-wa,
  .stat-icon,
  .stat-icon::before {
    animation: none !important;
  }

  .visual-shell,
  .showcase-card,
  .stat-card,
  .feature-card,
  .product-card,
  .step-card,
  .faq-card {
    transition: none !important;
  }

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