:root {
  --bg: #060a17;
  --bg-soft: #0a1022;
  --surface: rgba(10, 16, 34, 0.58);
  --surface-strong: rgba(12, 20, 42, 0.86);
  --ink: #e9f4ff;
  --muted: #95a9c9;
  --line: rgba(120, 153, 255, 0.18);
  --teal: #29f0d2;
  --teal-deep: #0bc2d4;
  --gold: #8f67ff;
  --mint: #12243b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(41, 240, 210, 0.2), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(143, 103, 255, 0.22), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(11, 194, 212, 0.16), transparent 22%),
    linear-gradient(180deg, #0a1022 0%, #060a17 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(116, 143, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 143, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.48;
  pointer-events: none;
}

.ambient-one {
  top: -10rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(41, 240, 210, 0.34), transparent 68%);
}

.ambient-two {
  top: 28rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(143, 103, 255, 0.24), transparent 68%);
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 30;
  margin-top: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 252, 246, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(23, 60, 58, 0.08);
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.38));
  z-index: -1;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(15, 159, 149, 0.24), rgba(255, 255, 255, 0.1), rgba(239, 139, 58, 0.24));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-cube {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--gold));
  box-shadow: 0 12px 22px rgba(15, 159, 149, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
}

.brand-text strong,
.site-nav a,
.header-cta,
.primary-cta,
.secondary-cta,
.download-action {
  font-family: "Sora", sans-serif;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a,
.header-cta,
.primary-cta,
.secondary-cta,
.download-action {
  text-decoration: none;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.header-cta,
.primary-cta,
.secondary-cta,
.download-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta,
.primary-cta,
.download-action {
  color: #fff;
  background: linear-gradient(135deg, #0b7a73, #11a69c 62%, #26bdb2 100%);
  box-shadow: 0 16px 34px rgba(15, 159, 149, 0.24);
}

.header-cta {
  padding: 12px 18px;
}

.primary-cta,
.secondary-cta {
  padding: 14px 22px;
  min-height: 50px;
}

.secondary-cta {
  color: var(--ink);
  border: 1px solid rgba(23, 60, 58, 0.12);
  background: rgba(255, 252, 246, 0.76);
}

.header-cta:hover,
.primary-cta:hover,
.secondary-cta:hover,
.download-action:hover {
  transform: translateY(-2px) scale(1.01);
}

main {
  padding: 26px 0 0;
}

.hero-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding: 54px 0 38px;
  position: relative;
}

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

.eyebrow-tag,
.section-tag,
.card-kicker,
.mosaic-index,
.status-pill {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid rgba(23, 60, 58, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-copy h1,
.section-intro h2,
.download-slab h2 {
  margin: 20px 0 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  line-height: 0.94;
}

.hero-copy h1 {
  max-width: 6.6ch;
  font-size: clamp(2.65rem, 4.9vw, 4.1rem);
  white-space: nowrap;
  text-wrap: nowrap;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.art-title {
  position: relative;
  color: transparent;
  background:
    linear-gradient(180deg, #eef7ff 0%, #8ff9ff 36%, #76c7ff 68%, #8f67ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 22px rgba(41, 240, 210, 0.16),
    0 0 48px rgba(143, 103, 255, 0.18);
}

.art-title::before,
.art-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  white-space: inherit;
}

.art-title::before {
  color: transparent;
  -webkit-text-stroke: 1px rgba(173, 226, 255, 0.28);
  transform: translate(2px, 2px);
}

.art-title::after {
  color: rgba(96, 224, 255, 0.12);
  filter: blur(10px);
  transform: translate(0, 10px) scale(1.01);
}

.hero-copy h1 span {
  display: block;
  color: var(--teal);
}

.hero-lead,
.mosaic-card p,
.workflow-item p,
.faq-card p,
.download-slab p,
.download-slab small,
.site-footer,
.stage-card p,
.card-kicker {
  color: var(--muted);
}

.hero-lead {
  max-width: 32rem;
  margin: 22px 0 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-home::before,
.hero-download::before {
  content: "";
  position: absolute;
  inset: 22px 8% auto auto;
  width: 44%;
  height: 76%;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 70%),
    radial-gradient(circle at top, rgba(15, 159, 149, 0.14), transparent 60%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.signal-strip {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signal-strip span,
.chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid rgba(23, 60, 58, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stage,
.download-scaffold {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1400px;
  isolation: isolate;
}

.hero-stage::before,
.download-scaffold::before {
  content: "";
  position: absolute;
  inset: 11% 10% 8% 10%;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at top right, rgba(239, 139, 58, 0.08), transparent 44%),
    radial-gradient(circle at bottom left, rgba(15, 159, 149, 0.1), transparent 48%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  transform: rotate(-7deg);
  z-index: 0;
}

.hero-stage::after,
.download-scaffold::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8%;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 60, 58, 0.12), transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

.halo-ring,
.orbital-shell {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(15, 159, 149, 0.2);
}

.ring-large {
  width: 620px;
  height: 620px;
  animation: orbit 18s linear infinite;
}

.ring-small {
  width: 520px;
  height: 520px;
  animation: orbitReverse 14s linear infinite;
}

.floating-orb,
.orbital-center {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #134442;
}

.floating-orb {
  top: 18px;
  right: 56px;
  width: 112px;
  height: 112px;
  font-size: 3rem;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.4) 34%, rgba(15, 159, 149, 0.26) 100%),
    linear-gradient(135deg, rgba(15, 159, 149, 0.74), rgba(239, 139, 58, 0.24));
  box-shadow:
    inset 0 10px 20px rgba(255, 255, 255, 0.34),
    0 24px 42px rgba(23, 60, 58, 0.14);
}

.stage-window,
.stage-card,
.mosaic-card,
.workflow-stage,
.workflow-item,
.download-banner,
.faq-card,
.download-slab,
.benefit-card,
.rail-card,
.metric-band div {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stage-window {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  min-height: 470px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: rotate(-6deg) translateY(-10px);
  box-shadow:
    0 42px 90px rgba(23, 60, 58, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  background: rgba(15, 159, 149, 0.08);
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(23, 60, 58, 0.2);
}

.window-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 418px;
}

.window-nav {
  padding: 20px;
  background: rgba(15, 159, 149, 0.08);
  border-right: 1px solid rgba(23, 60, 58, 0.08);
}

.nav-chip {
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

.nav-chip.active {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
}

.window-editor {
  display: flex;
  flex-direction: column;
}

.editor-tools {
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(23, 60, 58, 0.08);
}

.editor-surface {
  padding: 24px;
}

.editor-line,
.workflow-line {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 159, 149, 0.18), rgba(15, 159, 149, 0.04));
}

.editor-line {
  margin-bottom: 14px;
}

.editor-line.xl {
  width: 82%;
  height: 22px;
}

.editor-line.lg {
  width: 74%;
}

.editor-line.md {
  width: 56%;
}

.editor-line.sm {
  width: 38%;
}

.editor-mosaic {
  margin: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-module {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 159, 149, 0.12);
}

.mini-module strong,
.stage-card strong,
.mosaic-card h3,
.workflow-item h3,
.benefit-card h3,
.faq-card summary,
.rail-card strong {
  font-family: "Sora", sans-serif;
}

.mini-module strong {
  display: block;
}

.mini-module small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.mini-module.accent {
  background: linear-gradient(135deg, rgba(239, 139, 58, 0.16), rgba(255, 255, 255, 0.78));
}

.stage-card {
  position: absolute;
  z-index: 3;
  padding: 20px 22px;
  border-radius: 24px;
  box-shadow:
    0 22px 50px rgba(23, 60, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.stage-side {
  top: 110px;
  left: 0;
  width: 240px;
}

.stage-bottom {
  right: 28px;
  bottom: 28px;
  width: 270px;
}

.card-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
}

.stage-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}

.stage-card p {
  margin: 8px 0 0;
  line-height: 1.7;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 92px;
}

.metric-band div {
  padding: 18px 20px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.metric-band div::before,
.mosaic-card::before,
.workflow-item::before,
.benefit-card::before,
.faq-card::before,
.download-slab::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(15, 159, 149, 0.84), rgba(239, 139, 58, 0.74));
  opacity: 0.95;
}

.metric-band strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.metric-band span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.marketing-page .site-header {
  background: rgba(7, 13, 28, 0.68);
  border-color: rgba(120, 153, 255, 0.14);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(41, 240, 210, 0.08);
}

.marketing-page .site-header::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.marketing-page .site-header::after {
  background: linear-gradient(120deg, rgba(41, 240, 210, 0.34), rgba(255, 255, 255, 0.02), rgba(143, 103, 255, 0.34));
}

.marketing-page .brand-cube {
  background: linear-gradient(145deg, #20e5ff, #7d68ff 62%, #ff64d5 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(32, 229, 255, 0.24),
    0 0 30px rgba(125, 104, 255, 0.24);
}

.marketing-page .eyebrow-tag,
.marketing-page .section-tag,
.marketing-page .signal-strip span,
.marketing-page .chip-row span,
.marketing-page .workflow-badge {
  background: rgba(12, 20, 42, 0.72);
  border-color: rgba(120, 153, 255, 0.16);
  color: #b8caf0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.marketing-page .stage-window,
.marketing-page .stage-card,
.marketing-page .mosaic-card,
.marketing-page .workflow-stage,
.marketing-page .workflow-item,
.marketing-page .download-banner,
.marketing-page .faq-card,
.marketing-page .download-slab,
.marketing-page .benefit-card,
.marketing-page .rail-card,
.marketing-page .metric-band div {
  background:
    linear-gradient(180deg, rgba(14, 24, 46, 0.84), rgba(8, 14, 30, 0.78)),
    rgba(8, 14, 30, 0.82);
  border-color: rgba(120, 153, 255, 0.16);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(41, 240, 210, 0.04);
}

.marketing-page .download-banner,
.marketing-page .download-slab {
  background:
    linear-gradient(135deg, rgba(12, 26, 52, 0.92), rgba(8, 14, 30, 0.82) 42%, rgba(17, 28, 58, 0.86) 100%);
}

.marketing-page .window-bar,
.marketing-page .window-nav,
.marketing-page .editor-tools {
  background: rgba(41, 240, 210, 0.06);
  border-color: rgba(120, 153, 255, 0.1);
}

.marketing-page .mini-module {
  background: rgba(8, 18, 38, 0.78);
  border-color: rgba(120, 153, 255, 0.14);
}

.marketing-page .mini-module.accent {
  background: linear-gradient(135deg, rgba(143, 103, 255, 0.22), rgba(8, 18, 38, 0.78));
}

.marketing-page .nav-chip {
  background: rgba(9, 18, 36, 0.74);
  border: 1px solid rgba(120, 153, 255, 0.12);
}

.marketing-page .nav-chip.active,
.marketing-page .primary-cta,
.marketing-page .download-action,
.marketing-page .header-cta {
  background: linear-gradient(135deg, #10d7f3 0%, #13c7da 38%, #6c7dff 100%);
  box-shadow:
    0 16px 34px rgba(16, 215, 243, 0.24),
    0 0 40px rgba(108, 125, 255, 0.18);
}

.marketing-page .secondary-cta {
  background: rgba(9, 18, 36, 0.76);
  border-color: rgba(120, 153, 255, 0.16);
  color: #d7e6ff;
}

.marketing-page .editor-line,
.marketing-page .workflow-line {
  background: linear-gradient(90deg, rgba(41, 240, 210, 0.22), rgba(125, 104, 255, 0.08));
}

.marketing-page .floating-orb,
.marketing-page .orbital-center {
  color: #eef7ff;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.16) 34%, rgba(41, 240, 210, 0.2) 100%),
    linear-gradient(135deg, rgba(16, 215, 243, 0.74), rgba(143, 103, 255, 0.44));
  box-shadow:
    inset 0 10px 20px rgba(255, 255, 255, 0.2),
    0 24px 44px rgba(16, 215, 243, 0.14),
    0 0 52px rgba(143, 103, 255, 0.18);
}

.marketing-page .ring-large,
.marketing-page .ring-small,
.marketing-page .orbital-shell,
.marketing-page .orbital-shell::before {
  border-color: rgba(92, 227, 255, 0.18);
}

.marketing-page .hero-home::before,
.marketing-page .hero-download::before,
.marketing-page .hero-stage::before,
.marketing-page .download-scaffold::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top right, rgba(143, 103, 255, 0.12), transparent 44%),
    radial-gradient(circle at bottom left, rgba(41, 240, 210, 0.12), transparent 48%);
  border-color: rgba(120, 153, 255, 0.14);
}

.marketing-page .status-pill,
.marketing-page .mosaic-index,
.marketing-page .workflow-item span,
.marketing-page .benefit-mark {
  background: linear-gradient(135deg, rgba(16, 215, 243, 0.16), rgba(143, 103, 255, 0.18));
  color: #9af7ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.marketing-page .download-action::after,
.marketing-page .primary-cta::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.feature-mosaic,
.workflow-showcase,
.faq-section,
.benefit-stage {
  padding: 18px 0 84px;
}

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

.section-intro h2 {
  max-width: 14ch;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  white-space: nowrap;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

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

.mosaic-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

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

.mosaic-index {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.mosaic-card h3 {
  margin: 18px 0 8px;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.mosaic-card p,
.workflow-item p,
.benefit-card p,
.faq-card p {
  margin: 0;
  line-height: 1.75;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.workflow-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.workflow-stage {
  padding: 24px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.workflow-screen {
  min-height: 100%;
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(15, 159, 149, 0.1), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(15, 159, 149, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.workflow-line {
  margin-bottom: 14px;
}

.workflow-line.long {
  width: 84%;
}

.workflow-line.medium {
  width: 68%;
}

.workflow-line.short {
  width: 44%;
}

.workflow-stack {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workflow-badge {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.84);
  border: 1px solid rgba(23, 60, 58, 0.08);
  color: var(--ink);
}

.workflow-steps {
  display: grid;
  gap: 18px;
}

.workflow-item {
  padding: 24px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.workflow-item span,
.benefit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 159, 149, 0.16), rgba(239, 139, 58, 0.1));
  color: var(--teal-deep);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.workflow-item h3,
.benefit-card h3 {
  margin: 18px 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.download-banner {
  margin: 12px 0 84px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(15, 159, 149, 0.12), rgba(255, 255, 255, 0.6) 30%, rgba(239, 139, 58, 0.08) 100%),
    var(--surface);
}

.download-banner h2 {
  margin: 12px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.04em;
}

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

.faq-card,
.benefit-card {
  padding: 24px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

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

.faq-card p {
  margin-top: 14px;
}

.site-footer {
  padding: 0 0 52px;
  text-align: center;
  color: var(--muted);
}

.download-page .hero-panel {
  grid-template-columns: 0.88fr 1.12fr;
}

.download-page .hero-copy h1 {
  max-width: 5.8ch;
  font-size: clamp(2.45rem, 4.3vw, 3.5rem);
}

.download-page .signal-strip.compact {
  margin-top: 22px;
}

.download-scaffold {
  min-height: 560px;
}

.scaffold-glow {
  position: absolute;
  top: 30px;
  right: 70px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 159, 149, 0.18), rgba(15, 159, 149, 0.02) 58%, transparent 72%);
  filter: blur(8px);
}

.download-slab {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  padding: 30px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 242, 0.72)),
    var(--surface);
  box-shadow:
    0 40px 90px rgba(23, 60, 58, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.slab-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.download-slab h2 {
  margin: 10px 0 0;
  font-size: clamp(1.72rem, 2.35vw, 2rem);
  letter-spacing: -0.04em;
}

.download-slab p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.status-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 139, 58, 0.14);
  color: #b95e12;
  font-size: 0.76rem;
  font-weight: 700;
}

.download-action {
  width: 100%;
  margin-top: 18px;
  min-height: 56px;
  padding: 16px 22px;
  position: relative;
  overflow: hidden;
}

.download-action::before,
.primary-cta::before {
  content: "";
  position: absolute;
  inset: -170% 38%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.68), transparent 40%);
  animation: orbit 5s linear infinite;
}

.download-action::after,
.primary-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.download-action:hover::after,
.primary-cta:hover::after {
  transform: translateX(120%);
}

.download-action span,
.primary-cta {
  position: relative;
  z-index: 1;
}

.download-slab small {
  display: block;
  margin-top: 14px;
  line-height: 1.7;
}

.orbital-mark {
  position: absolute;
  top: 0;
  right: 96px;
  width: 148px;
  height: 148px;
  z-index: 3;
}

.orbital-shell {
  inset: 0;
}

.orbital-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 159, 149, 0.14);
  animation: orbitReverse 18s linear infinite;
}

.orbital-center {
  inset: 28px;
  font-size: 2.6rem;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.42) 34%, rgba(15, 159, 149, 0.28) 100%),
    linear-gradient(135deg, rgba(15, 159, 149, 0.72), rgba(239, 139, 58, 0.22));
  box-shadow:
    inset 0 10px 18px rgba(255, 255, 255, 0.34),
    0 20px 34px rgba(23, 60, 58, 0.12);
}

.info-rail {
  position: absolute;
  left: 0;
  bottom: 14px;
  display: flex;
  gap: 14px;
  z-index: 3;
}

.rail-card {
  min-width: 138px;
  padding: 16px 18px;
  border-radius: 20px;
  overflow: hidden;
}

.rail-card strong {
  display: block;
  font-size: 1.08rem;
}

.rail-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

[data-tilt],
[data-parallax] {
  will-change: transform;
}

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

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

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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

@media (max-width: 1120px) {
  .hero-panel,
  .workflow-layout,
  .faq-grid,
  .benefit-grid,
  .mosaic-grid,
  .metric-band {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero-panel,
  .workflow-layout,
  .faq-grid,
  .benefit-grid,
  .mosaic-grid,
  .metric-band {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    padding-top: 42px;
  }

  .hero-copy h1,
  .section-intro h2,
  .download-banner h2 {
    white-space: normal;
    text-wrap: balance;
  }

  .hero-home::before,
  .hero-download::before {
    inset: 20px 0 auto 0;
    width: 100%;
    height: 58%;
  }

  .hero-stage,
  .download-scaffold {
    min-height: 520px;
  }

  .stage-side,
  .stage-bottom {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .hero-stage,
  .download-scaffold {
    display: block;
  }

  .hero-stage::before,
  .download-scaffold::before {
    inset: 12% 4% 10% 4%;
  }

  .stage-window,
  .download-slab {
    width: 100%;
    transform: none;
  }

  .window-layout {
    grid-template-columns: 132px 1fr;
  }

  .floating-orb,
  .orbital-mark {
    right: 18px;
  }

  .info-rail {
    position: relative;
    left: auto;
    bottom: auto;
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .download-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 580px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero-copy h1 {
    font-size: 2.15rem;
    max-width: none;
    white-space: normal;
  }

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

  .hero-lead,
  .mosaic-card p,
  .workflow-item p,
  .faq-card p,
  .download-slab p {
    font-size: 0.98rem;
  }

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

  .window-nav {
    display: none;
  }

  .floating-orb,
  .orbital-mark {
    width: 96px;
    height: 96px;
  }

  .floating-orb {
    font-size: 2.4rem;
  }

  .orbital-center {
    inset: 18px;
    font-size: 2rem;
  }

  .stage-window,
  .download-slab,
  .download-banner,
  .workflow-stage,
  .workflow-item,
  .mosaic-card,
  .faq-card,
  .benefit-card {
    border-radius: 24px;
  }

  .download-slab {
    padding: 24px 20px;
  }

  .rail-card {
    min-width: calc(50% - 7px);
  }
}
