/* AI Conveyor landing */

:root {
  --bg: #07111f;
  --bg-soft: #0d1830;
  --panel: rgba(11, 23, 43, 0.74);
  --panel-strong: rgba(15, 27, 50, 0.96);
  --card: rgba(16, 30, 55, 0.82);
  --card-hover: rgba(20, 36, 65, 0.96);
  --text: #f5f7fb;
  --muted: #99a6c1;
  --line: rgba(135, 162, 214, 0.16);
  --line-strong: rgba(135, 162, 214, 0.28);
  --teal: #32f3c6;
  --cyan: #52b6ff;
  --violet: #8f7dff;
  --blue: #3b82f6;
  --warning: #f5c86b;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --font-body: "Inter", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(82, 182, 255, 0.1), transparent 32%),
    radial-gradient(circle at 20% 20%, rgba(50, 243, 198, 0.1), transparent 26%),
    linear-gradient(180deg, #050b16 0%, #07111f 36%, #050b16 100%);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
  animation: floatOrb 14s ease-in-out infinite;
}

.orb-one {
  width: 360px;
  height: 360px;
  left: -100px;
  top: 120px;
  background: rgba(50, 243, 198, 0.12);
}

.orb-two {
  width: 460px;
  height: 460px;
  right: -80px;
  top: 60px;
  background: rgba(143, 125, 255, 0.14);
  animation-delay: -4s;
}

.orb-three {
  width: 340px;
  height: 340px;
  right: 18%;
  bottom: 18%;
  background: rgba(82, 182, 255, 0.12);
  animation-delay: -7s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  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: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.38;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(5, 11, 22, 0.78);
  backdrop-filter: blur(18px);
  border-color: rgba(135, 162, 214, 0.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 0 24px rgba(50, 243, 198, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.25s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  border: 1px solid transparent;
}

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

.btn-primary {
  color: #07111f;
  background: linear-gradient(135deg, var(--teal), #78ffd6);
  box-shadow: 0 14px 36px rgba(50, 243, 198, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(50, 243, 198, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  color: var(--muted);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-nav {
  padding-inline: 18px;
}

.hero {
  position: relative;
  padding: 146px 0 72px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 120px);
}

.hero-copy,
.hero-visual,
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

body.loaded .hero-copy,
body.loaded .hero-visual,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow,
.section-kicker,
.panel-pill,
.card-tag,
.deploy-badge,
.problem-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(136, 164, 214, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 0 16px rgba(50, 243, 198, 0.6);
}

.hero-title,
.section-heading h2,
.cta-copy h2 {
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06em;
  margin-top: 24px;
  font-size: clamp(2.75rem, 5.2vw, 4.6rem);
  line-height: 1.05;
  max-width: min(26ch, 100%);
}

.hero-title-line {
  display: block;
}

.hero-title-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.04em 0 0.08em;
  font-size: 0.42em;
  line-height: 0;
  color: var(--teal);
  filter: drop-shadow(0 0 12px rgba(50, 243, 198, 0.35));
}

.hero-title-arrow svg {
  display: block;
  width: 1em;
  height: 1em;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #7fdcff 34%, #91ffe0 74%, #d8c5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 24px;
  max-width: 680px;
  font-size: 1.11rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
  padding: 22px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(9, 18, 36, 0.8);
  border: 1px solid rgba(140, 166, 214, 0.18);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.18s ease;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% 62% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(50, 243, 198, 0.18), transparent 68%);
  pointer-events: none;
}

.panel-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-pill-accent {
  color: var(--teal);
  border-color: rgba(50, 243, 198, 0.24);
  background: rgba(50, 243, 198, 0.08);
}

.funnel-rail {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.funnel-rail::-webkit-scrollbar {
  height: 4px;
}

.funnel-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.stage-chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.stage-chip.active {
  color: #04131b;
  background: linear-gradient(135deg, var(--teal), #7cf5ff);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(50, 243, 198, 0.22);
}

.hero-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr;
  gap: 16px;
  margin-top: 18px;
}

.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.card-initiative {
  grid-row: span 2;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-green { background: var(--teal); box-shadow: 0 0 14px rgba(50, 243, 198, 0.7); }
.dot-cyan { background: var(--cyan); box-shadow: 0 0 14px rgba(82, 182, 255, 0.7); }
.dot-violet { background: var(--violet); box-shadow: 0 0 14px rgba(143, 125, 255, 0.7); }

.glass-card h3 {
  margin-top: 14px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.signal-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.signal-list > li {
  padding: 14px 14px 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-list-steps-title {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.signal-list-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.signal-list-sub li {
  position: relative;
  padding: 0 0 0 1.15em;
  border: none;
  background: none;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.94em;
  line-height: 1.35;
}

.signal-list-sub li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.25);
}

.metric-stack {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.metric-stack strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.metric-stack-value--suffix {
  white-space: nowrap;
}

.metric-stack > div > span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.agent-list span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.8rem;
}

.section--air {
  padding-top: 72px;
  padding-bottom: 112px;
}

.section--muted {
  background: rgba(8, 16, 32, 0.45);
  border-top: 1px solid rgba(135, 162, 214, 0.08);
  border-bottom: 1px solid rgba(135, 162, 214, 0.08);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.outcome-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.outcome-card:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 243, 198, 0.22);
}

.outcome-metric {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #ffffff 0%, #b8f0ff 38%, #7cf5d8 72%, #c9b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.outcome-desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.outcomes-roi-banner {
  margin-top: 28px;
  padding: clamp(26px, 4vw, 40px) clamp(24px, 4vw, 44px);
  text-align: center;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 90% 120% at 12% 20%, rgba(50, 243, 198, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 100% at 92% 80%, rgba(140, 120, 255, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(50, 243, 198, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.outcomes-roi-lead {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #b8f0ff 32%, #7cf5d8 68%, #d4c8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.outcomes-roi-detail {
  margin: 0 auto;
  max-width: 920px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.55;
  color: rgba(230, 238, 255, 0.88);
}

.screens-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 640px;
}

.platform-arch {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.arch-layer {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.arch-layer:hover {
  border-color: rgba(50, 243, 198, 0.24);
  transform: translateX(4px);
}

.arch-layer-num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  background: rgba(50, 243, 198, 0.1);
  border: 1px solid rgba(50, 243, 198, 0.2);
  color: var(--teal);
}

.arch-layer h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.arch-layer p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.current-band {
  margin-bottom: 36px;
  padding: 28px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(50, 243, 198, 0.12), transparent 45%),
    rgba(10, 20, 40, 0.65);
  border: 1px solid rgba(50, 243, 198, 0.18);
}

.current-band-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.current-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.current-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.current-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(50, 243, 198, 0.5);
}

.roadmap-next-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0;
  margin-top: 8px;
  letter-spacing: -0.03em;
}

.roadmap-comparison-wrap {
  margin-top: clamp(40px, 5vw, 64px);
}

/* ── Carousel ── */
.rc {
  margin-top: 28px;
  overflow: hidden;
}

.rc-window {
  overflow: hidden;
  padding: 16px 0 24px;
}

.rc-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.rc-slide {
  flex: 0 0 420px;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  opacity: 0.35;
  transform: scale(0.88);
  filter: brightness(0.78) saturate(0.6);
  cursor: pointer;
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.rc-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  cursor: default;
  border-color: rgba(50, 243, 198, 0.22);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
}

.rc-slide:not(.is-active):hover {
  opacity: 0.5;
  transform: scale(0.92);
  filter: brightness(0.88) saturate(0.75);
}

.rc-slide.is-active:hover {
  transform: translateY(-6px) scale(1);
}

.rc-slide h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.rc-slide p {
  margin-top: 12px;
  color: var(--muted);
}

.rc-slide-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rc-slide-feature-title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.rc-slide-feature-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.roadmap-slide-list {
  margin-top: 14px;
}

.roadmap-slide-list li {
  font-size: 0.92rem;
}

.rc-slide-points {
  gap: 14px;
}

.rc-slide-points li strong {
  color: var(--text);
  font-weight: 600;
}

/* Controls */
.rc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
}

.rc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(136, 164, 214, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.rc-arrow:hover:not(:disabled) {
  border-color: rgba(50, 243, 198, 0.4);
  background: rgba(50, 243, 198, 0.1);
  color: var(--teal);
}

.rc-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.rc-arrow svg {
  pointer-events: none;
}

.rc-dots {
  display: flex;
  gap: 10px;
}

.rc-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.rc-dot:hover {
  background: rgba(255, 255, 255, 0.38);
}

.rc-dot.is-active {
  background: var(--teal);
  box-shadow: 0 0 14px rgba(50, 243, 198, 0.5);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .rc-slide {
    flex: 0 0 320px;
    max-width: 320px;
  }
}

@media (max-width: 540px) {
  .rc-slide {
    flex: 0 0 260px;
    max-width: 260px;
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-track,
  .rc-slide {
    transition-duration: 0.01ms;
  }
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 8px;
}

.cta-trust-item {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading > h2:first-child {
  margin-top: 0;
}

.section-heading h2,
.cta-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
}

.section-heading p,
.deployment-copy p,
.cta-copy p,
.ai-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 720px;
}

.problem-grid,
.value-grid,
.workflow {
  display: grid;
  gap: 18px;
}

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

.problem-card,
.value-card,
.workflow-step,
.deploy-card,
.roadmap-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.problem-card:hover,
.value-card:hover,
.workflow-step:hover,
.deploy-card:hover,
.roadmap-card:hover,
.shot-card:hover .shot-frame {
  transform: translateY(-6px);
  border-color: rgba(50, 243, 198, 0.34);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
}

.problem-card h3,
.value-card h3,
.workflow-step h3,
.deploy-card h3,
.roadmap-card h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.problem-card p,
.value-card p,
.workflow-step p,
.deploy-card p,
.roadmap-card p {
  margin-top: 12px;
  color: var(--muted);
}

.value-card-points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.value-card-points li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.value-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(50, 243, 198, 0.75);
}

.value-card p.value-card-footnote {
  margin-top: 16px;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.5;
}

.problem-label {
  margin-bottom: 18px;
  color: #ffba7d;
  border-color: rgba(245, 200, 107, 0.2);
  background: rgba(245, 200, 107, 0.08);
}

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

.value-card.spotlight {
  background:
    radial-gradient(circle at top right, rgba(50, 243, 198, 0.14), transparent 42%),
    var(--card-hover);
}

.card-tag {
  margin-bottom: 18px;
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.ai-copy h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.ai-highlight {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(82, 182, 255, 0.16);
  color: #dfe8ff;
}

.ai-lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
  max-width: 560px;
}

.ai-agent-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.ai-agent-row {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-agent-row strong {
  display: block;
  color: var(--teal);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.ai-agent-row span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-agent-row--primary {
  border-color: rgba(50, 243, 198, 0.28);
  background:
    linear-gradient(135deg, rgba(50, 243, 198, 0.08), rgba(82, 182, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.ai-agent-row--primary strong {
  color: var(--text);
  font-size: 0.98rem;
}

.feature-bullets {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature-bullets div {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-orbit {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.core-agent,
.orbit-agent {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(12, 24, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.core-agent {
  inset: 50%;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  flex-direction: column;
  background:
    radial-gradient(circle at top, rgba(50, 243, 198, 0.16), transparent 56%),
    rgba(10, 23, 46, 0.95);
  border-color: rgba(50, 243, 198, 0.2);
}

.core-agent span {
  color: var(--muted);
  font-size: 0.86rem;
}

.core-agent strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-top: 4px;
}

.orbit-ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.ring-one {
  width: 70%;
  height: 70%;
}

.ring-two {
  width: 96%;
  height: 96%;
  border-style: dashed;
  opacity: 0.7;
}

.orbit-agent {
  width: max(132px, fit-content);
  max-width: 148px;
  min-height: 52px;
  padding: 0 12px;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #dbe4ff;
  backdrop-filter: blur(10px);
}

.orbit-a { top: 8%; left: 50%; transform: translateX(-50%); }
.orbit-b { top: 22%; right: 3%; }
.orbit-c { top: 50%; right: -2%; transform: translateY(-50%); }
.orbit-d { bottom: 13%; right: 9%; }
.orbit-e { bottom: 6%; left: 50%; transform: translateX(-50%); }
.orbit-f { bottom: 13%; left: 8%; }
.orbit-g { top: 50%; left: -2%; transform: translateY(-50%); }

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

.workflow-step {
  position: relative;
  overflow: hidden;
}

.workflow-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.shot-card {
  transition: transform 0.3s var(--ease);
}

.shot-wide {
  grid-column: span 2;
}

.shot-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.shot-card figcaption {
  margin-top: 14px;
  color: var(--muted);
}

.shot-card strong {
  color: var(--text);
}

.deployment-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: start;
}

.deployment-cards {
  display: grid;
  gap: 16px;
}

.deploy-badge {
  margin-bottom: 18px;
}

.competitive-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.competitive-heading h3 {
  margin-top: 18px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.competitive-heading p {
  margin-top: 12px;
  color: var(--muted);
}

.competitive-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.competitive-item {
  display: grid;
  grid-template-columns: minmax(132px, 22%) 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.competitive-item:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 243, 198, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.competitive-label {
  align-self: center;
  justify-self: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(50, 243, 198, 0.08);
  border: 1px solid rgba(50, 243, 198, 0.16);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.competitive-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.competitive-copy p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-shell {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(143, 125, 255, 0.18), transparent 34%),
    radial-gradient(circle at right, rgba(50, 243, 198, 0.16), transparent 32%),
    rgba(12, 22, 41, 0.92);
  border: 1px solid rgba(140, 166, 214, 0.16);
  box-shadow: var(--shadow);
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

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

.btn-cta-large {
  padding: 20px 52px;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  min-width: min(100%, 300px);
  box-shadow: 0 18px 44px rgba(50, 243, 198, 0.28);
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(50, 243, 198, 0.34);
}

.footer {
  padding: 32px 0 52px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  margin-top: 8px;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

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

  .hero {
    padding-top: 126px;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-title {
    max-width: none;
  }

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

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

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

  .nav a:not(.btn-nav) {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4.3rem);
  }

  .outcomes-grid,
  .problem-grid,
  .value-grid,
  .workflow,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .competitive-item {
    grid-template-columns: 1fr;
  }

  .shot-wide {
    grid-column: auto;
  }

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

  .card-initiative {
    grid-row: auto;
  }

  .section {
    padding: 82px 0;
  }

  .cta-shell {
    padding: 28px;
  }

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

  .orbit-agent {
    width: 108px;
    min-height: 46px;
    font-size: 0.75rem;
  }

  .core-agent {
    width: 134px;
    height: 134px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-copy,
  .hero-visual,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
