:root {
  --bg: #040507;
  --bg-soft: #0b1020;
  --panel: rgba(11, 16, 32, 0.68);
  --panel-strong: rgba(14, 21, 40, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #a8b1c7;
  --muted-strong: #dbe2f2;
  --blue: #4ea1ff;
  --teal: #3de1c4;
  --violet: #7d39eb;
  --lime: #c6ff33;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1240px;
  --transition: 260ms ease;
}

*,
*::before,
*::after {
  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% 20%, rgba(125, 57, 235, 0.18), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(78, 161, 255, 0.16), transparent 24%),
    radial-gradient(circle at 70% 55%, rgba(198, 255, 51, 0.08), transparent 18%),
    linear-gradient(180deg, #040507 0%, #070b14 48%, #040507 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  filter: blur(72px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  top: 5rem;
  left: -10rem;
  background: rgba(125, 57, 235, 0.48);
}

.page-shell::after {
  right: -9rem;
  bottom: 12rem;
  background: rgba(61, 225, 196, 0.2);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 0 16px rgba(61, 225, 196, 0.6);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted-strong);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.hero-grid > *,
.service-slab > *,
.belief-slab > *,
.support-slab > *,
.contact-grid > *,
.timeline > *,
.metrics > *,
.process-steps > *,
.footer-shell > *,
.template-grid > * {
  min-width: 0;
}

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

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

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

.card,
.glass-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.6rem;
}

.glass-panel {
  padding: 2rem;
}

.card::before,
.glass-panel::before,
.hero-visual::before,
.cta-panel::before,
.template-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%, rgba(125, 57, 235, 0.12));
  pointer-events: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 16px 40px rgba(78, 161, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 45px rgba(78, 161, 255, 0.36);
}

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

.btn-secondary:hover {
  border-color: rgba(198, 255, 51, 0.32);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(4, 5, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 14, 0.42);
  backdrop-filter: blur(10px);
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(198, 255, 51, 0.95), transparent 42%),
    linear-gradient(145deg, rgba(125, 57, 235, 0.95), rgba(78, 161, 255, 0.95));
  box-shadow: 0 12px 28px rgba(125, 57, 235, 0.3);
  color: #05070a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.nav-links a {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.96rem;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -0.38rem;
}

.nav-toggle span::after {
  top: 0.38rem;
}

.hero {
  padding: 2.25rem 0 2rem;
  min-height: calc(100vh - 7rem);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 200, 255, 0.15), transparent 40%),
    radial-gradient(circle at 62% 58%, rgba(92, 212, 189, 0.12), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(120, 80, 255, 0.12), transparent 50%),
    #05070a;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
  mix-blend-mode: soft-light;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
  width: min(calc(100% - 4rem), 1280px);
  margin: 0 auto;
  justify-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  text-align: center;
}

.hero-copy h1 {
  max-width: 8.5ch;
  text-wrap: balance;
  margin-bottom: 1.25rem;
  line-height: 1.12;
  letter-spacing: -0.05em;
  margin-inline: auto;
}

.hero-copy p {
  max-width: 42rem;
  margin-inline: auto;
}

.hero-copy .eyebrow {
  margin-bottom: 1rem;
}

.text-highlight {
  background: linear-gradient(135deg, #fbfbff 0%, #7d39eb 42%, #4ea1ff 72%, #3de1c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

.meta-pill {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 38rem;
  padding: 2.4rem;
  border-radius: 2.2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 65%, rgba(61, 225, 196, 0.16), transparent 24%),
    radial-gradient(circle at 72% 30%, rgba(125, 57, 235, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(18, 28, 54, 0.95), rgba(7, 10, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.45);
  margin-top: 1.5rem;
  transform: translateY(-10px);
  transition: transform 300ms ease, box-shadow 300ms ease;
  width: min(100%, 58rem);
}

.hero-visual:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  right: 10%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 212, 189, 0.2), rgba(125, 57, 235, 0.14) 55%, transparent 72%);
  filter: blur(36px);
  pointer-events: none;
}

.device-frame {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 1.2rem;
  width: min(33rem, 92%);
  padding: 1.1rem;
  border-radius: 1.9rem;
  background: rgba(8, 11, 19, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.52);
  transform: translateX(-50%);
}

.device-topbar {
  display: flex;
  gap: 0.45rem;
  padding-bottom: 0.9rem;
}

.device-topbar span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  background: linear-gradient(160deg, rgba(14, 28, 66, 0.94), rgba(21, 19, 34, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-screen img {
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  opacity: 0.88;
}

.screen-overlay {
  position: absolute;
  inset: 0;
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(2, 3, 7, 0.18), rgba(2, 3, 7, 0.58));
}

.analytics-strip,
.screen-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.analytics-strip .mini-card,
.screen-footer .mini-card {
  flex: 1;
}

.mini-card {
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(3, 8, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

.mini-card strong {
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.floating-card {
  display: none;
}

.media-panel {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel .caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(6, 10, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.feature-card {
  min-height: 100%;
}

.feature-card .visual-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(125, 57, 235, 0.28), rgba(198, 255, 51, 0.16));
  color: var(--lime);
  font-weight: 800;
}

.statement-section {
  overflow: hidden;
}

.statement-wrap {
  position: relative;
  padding: 3rem;
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 15% 30%, rgba(125, 57, 235, 0.24), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(61, 225, 196, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.96), rgba(8, 13, 24, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.statement-wrap h2 {
  max-width: 18ch;
}

.statement-wrap .lead {
  max-width: 60rem;
}

.statement-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.orbital-card {
  position: relative;
  width: auto;
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.template-card {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.template-card.large {
  grid-column: span 6;
}

.template-card.medium {
  grid-column: span 4;
}

.template-card.small {
  grid-column: span 3;
}

.template-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 500ms ease;
}

.template-card:hover img {
  transform: scale(1.08);
}

.template-card .overlay {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.12), rgba(4, 6, 10, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.timeline-step {
  position: relative;
  padding: 2rem;
}

.timeline-step::after {
  content: "";
  position: absolute;
  top: 2.35rem;
  right: -0.7rem;
  width: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), rgba(255, 255, 255, 0.2));
}

.timeline-step:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #05070a;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  font-weight: 800;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  padding: 2rem 1.4rem;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-family: "Space Grotesk", sans-serif;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 100%;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-top img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-role {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-panel {
  position: relative;
  padding: 3rem;
  border-radius: calc(var(--radius) + 6px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(61, 225, 196, 0.18), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(125, 57, 235, 0.26), transparent 30%),
    linear-gradient(145deg, rgba(10, 14, 24, 0.98), rgba(8, 10, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.service-slab,
.belief-slab,
.support-slab {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 32rem;
}

.image-stack .stack-main,
.image-stack .stack-card {
  position: absolute;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.image-stack .stack-main {
  inset: 0 3rem 2rem 0;
}

.image-stack .stack-card {
  width: 48%;
  right: 0;
  bottom: 0;
  background: rgba(6, 11, 22, 0.85);
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-list,
.check-list {
  display: grid;
  gap: 1rem;
}

.comparison-item,
.check-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.comparison-item .dot,
.check-item .dot {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--blue));
}

.template-list-card {
  height: 100%;
}

.template-meta {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

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

.field,
.accordion-item {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.field label {
  display: block;
  padding: 0.95rem 1rem 0.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0 1rem 1rem;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field.full {
  grid-column: 1 / -1;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-note {
  padding: 1.4rem;
}

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

.accordion {
  display: grid;
  gap: 1rem;
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.accordion-button span:last-child {
  font-size: 1.4rem;
  color: var(--lime);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.accordion-panel p {
  padding: 0 1.3rem 1.3rem;
}

.accordion-item.is-open .accordion-panel {
  max-height: 12rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-float] {
  animation: floaty 5s ease-in-out infinite;
}

[data-float="slow"] {
  animation-duration: 7s;
}

[data-float="fast"] {
  animation-duration: 4s;
}

.parallax {
  will-change: transform;
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.home-main {
  position: relative;
  overflow: hidden;
}

.home-main::before,
.home-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.home-main::before {
  width: 30rem;
  height: 30rem;
  top: 8rem;
  right: -8rem;
  background: rgba(78, 161, 255, 0.13);
}

.home-main::after {
  width: 26rem;
  height: 26rem;
  left: -6rem;
  top: 52rem;
  background: rgba(125, 57, 235, 0.14);
}

.home-main section {
  position: relative;
  z-index: 1;
}

.home-hero {
  padding: 2rem 0 7rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(78, 161, 255, 0.18), transparent 28%),
    radial-gradient(circle at 68% 52%, rgba(61, 225, 196, 0.12), transparent 20%),
    radial-gradient(circle at 18% 78%, rgba(125, 57, 235, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(4, 6, 10, 0.94), rgba(5, 7, 10, 0.98));
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  min-height: auto;
}

.home-kicker {
  margin: 0 0 0.65rem;
  color: var(--muted-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.home-hero__copy h1 {
  max-width: 800px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  line-height: 1;
  text-align: center;
}

.home-hero__lead {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
  text-align: center;
}

.home-hero__copy {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.home-hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero__micro span {
  position: relative;
  padding-left: 1rem;
}

.home-hero__micro span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--lime);
}

.home-hero__visual {
  position: relative;
  min-height: 34rem;
  width: min(100%, 760px);
  margin: 0 auto;
  max-width: 100%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-orb--blue {
  width: 17rem;
  height: 17rem;
  right: 12%;
  top: 8%;
  background: rgba(78, 161, 255, 0.3);
}

.hero-orb--violet {
  width: 20rem;
  height: 20rem;
  left: 8%;
  bottom: 14%;
  background: rgba(125, 57, 235, 0.22);
}

.hero-browser {
  position: absolute;
  inset: 3.5rem 1rem 0 1rem;
  padding: 1rem;
  border-radius: 2.3rem;
  background: rgba(10, 14, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.46);
  max-width: calc(100% - 2rem);
}

.hero-browser__bar {
  display: flex;
  gap: 0.45rem;
  padding-bottom: 0.85rem;
}

.hero-browser__bar span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-browser__screen {
  position: relative;
  height: calc(100% - 1.5rem);
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-browser__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-browser__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.18), rgba(5, 7, 11, 0.64));
}

.hero-browser__analytics,
.hero-browser__support {
  display: flex;
  gap: 0.9rem;
}

.hero-chip {
  flex: 1;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(12, 16, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-chip small,
.hero-chip strong {
  display: block;
}

.hero-chip small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-chip strong {
  margin-top: 0.3rem;
  font-size: 1.3rem;
}

.hero-phone {
  position: absolute;
  left: 1rem;
  bottom: -0.5rem;
  width: 12rem;
  padding: 0.65rem;
  border-radius: 2rem;
  background: rgba(8, 12, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.hero-phone img {
  border-radius: 1.5rem;
  aspect-ratio: 0.58 / 1;
  object-fit: cover;
}

.hero-callout {
  position: absolute;
  z-index: 2;
  min-width: 12rem;
  padding: 0.95rem 1rem;
  border-radius: 1.3rem;
  background: rgba(9, 14, 26, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.hero-callout span,
.hero-callout strong {
  display: block;
}

.hero-callout span {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-callout strong {
  margin-top: 0.25rem;
}

.hero-callout--one {
  left: 0;
  top: 5rem;
}

.hero-callout--two {
  right: 0;
  top: 6.25rem;
}

.hero-callout--three {
  right: 2.5rem;
  bottom: 1.5rem;
}

.home-showcase {
  padding: 2rem 0 3.5rem;
}

.home-showcase__intro {
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.home-showcase__intro h2,
.product-stage__copy h2,
.home-workflow__intro h2,
.integration-field__copy h2,
.home-testimonials__intro h2,
.home-final-cta__panel h2 {
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.02;
}

.showcase-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1.1rem;
  align-items: stretch;
}

.showcase-panel {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.showcase-panel:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.showcase-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-panel__meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(6, 10, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.showcase-panel__meta span,
.showcase-panel__meta strong {
  display: block;
}

.showcase-panel__meta span {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-panel__meta strong {
  margin-top: 0.3rem;
}

.showcase-panel--wide {
  grid-row: span 2;
  min-height: 36rem;
}

.showcase-panel--stack {
  min-height: 22rem;
}

.showcase-panel--card {
  min-height: 16rem;
}

.showcase-panel--mobile {
  min-height: 30rem;
}

.tilt-panel:nth-child(2) {
  transform: rotate(-3deg);
}

.tilt-panel:nth-child(3) {
  transform: rotate(3deg);
}

.tilt-panel:nth-child(4) {
  transform: rotate(-2deg);
}

.tilt-panel:hover {
  transform: translateY(-6px) scale(1.01) rotate(0deg);
}

.home-product {
  padding: 1.5rem 0 3.5rem;
}

.product-stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(125, 57, 235, 0.22), transparent 26%),
    radial-gradient(circle at 78% 24%, rgba(78, 161, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(8, 11, 20, 0.96), rgba(5, 7, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.product-stage__copy {
  max-width: 25rem;
}

.product-stage__visual {
  position: relative;
  min-height: 34rem;
}

.product-stage__screen {
  position: absolute;
  inset: 2rem 0 0 1rem;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.product-stage__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-stage__label {
  position: absolute;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(10, 14, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: var(--muted-strong);
  z-index: 2;
}

.product-stage__label--a {
  left: 0;
  top: 3rem;
}

.product-stage__label--b {
  right: 0;
  top: 8rem;
}

.product-stage__label--c {
  left: 4rem;
  bottom: 0;
}

.home-metrics {
  padding: 0.5rem 0 3.5rem;
}

.home-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-stat {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.metric-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 0.92;
}

.metric-stat span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 14rem;
}

.home-workflow {
  padding: 1.5rem 0 3.5rem;
}

.home-workflow__intro {
  max-width: 36rem;
  margin-bottom: 1.2rem;
}

.workflow-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 26rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.workflow-rail::-webkit-scrollbar {
  height: 8px;
}

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

.workflow-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
}

.workflow-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.workflow-card__body {
  padding: 1.25rem;
}

.workflow-card__body span {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.home-integrations {
  padding: 1.5rem 0 3.5rem;
}

.integration-field {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.integration-map {
  position: relative;
  min-height: 24rem;
}

.integration-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 8.5rem;
  min-height: 8.5rem;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(9, 14, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.integration-node--center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10rem;
  height: 10rem;
  background: linear-gradient(145deg, rgba(125, 57, 235, 0.32), rgba(78, 161, 255, 0.24));
}

.integration-node--one {
  top: 0;
  left: 12%;
}

.integration-node--two {
  right: 10%;
  top: 10%;
}

.integration-node--three {
  left: 18%;
  bottom: 6%;
}

.integration-node--four {
  right: 6%;
  bottom: 8%;
}

.integration-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(78, 161, 255, 0.3), rgba(255, 255, 255, 0.12));
  transform-origin: left center;
}

.integration-line--one {
  left: 29%;
  top: 24%;
  width: 26%;
  transform: rotate(21deg);
}

.integration-line--two {
  left: 54%;
  top: 34%;
  width: 22%;
  transform: rotate(-18deg);
}

.integration-line--three {
  left: 32%;
  bottom: 24%;
  width: 20%;
  transform: rotate(-24deg);
}

.integration-line--four {
  left: 56%;
  bottom: 24%;
  width: 24%;
  transform: rotate(20deg);
}

.home-testimonials {
  padding: 1.5rem 0 3.5rem;
}

.home-testimonials__surface {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 18% 16%, rgba(61, 225, 196, 0.18), transparent 22%),
    radial-gradient(circle at 78% 22%, rgba(125, 57, 235, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.98), rgba(6, 8, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-testimonials__intro {
  max-width: 48rem;
  margin-bottom: 1.25rem;
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-premium {
  padding: 1.2rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-premium img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-premium strong {
  display: block;
  margin-top: 0.9rem;
}

.home-final-cta {
  padding: 0.5rem 0 3rem;
}

.home-final-cta__panel {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem;
  border-radius: 2.6rem;
  text-align: center;
  background:
    radial-gradient(circle at 16% 24%, rgba(61, 225, 196, 0.14), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(125, 57, 235, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(8, 11, 18, 0.98), rgba(5, 7, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.home-final-cta__panel p {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--muted-strong);
}

.home-hero .btn-group {
  justify-content: center;
}
