:root {
  --bg-top: #36283f;
  --bg-mid: #1d2233;
  --bg-bottom: #101521;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text-primary: rgba(255, 255, 255, 0.96);
  --text-secondary: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.54);
  --blue: #74b7ff;
  --violet: #a27fea;
  --pink: #f35fa9;
  --teal: #56dccf;
  --green: #63db9a;
  --amber: #f0c16b;
  --rose: #f68ca1;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(116, 183, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(243, 95, 169, 0.14), transparent 26%),
    radial-gradient(circle at 70% 78%, rgba(86, 220, 207, 0.14), transparent 24%),
    linear-gradient(145deg, var(--bg-top), var(--bg-mid) 48%, var(--bg-bottom));
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.38;
  z-index: 0;
  animation: drift 16s ease-in-out infinite alternate;
}

body::before {
  width: 24rem;
  height: 24rem;
  background: rgba(116, 183, 255, 0.28);
  top: 3rem;
  left: -6rem;
}

body::after {
  width: 28rem;
  height: 28rem;
  background: rgba(243, 95, 169, 0.2);
  right: -8rem;
  bottom: -6rem;
  animation-duration: 20s;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 88px 0;
}

section[id] {
  scroll-margin-top: 120px;
}

.section-compact {
  padding-top: 20px;
  padding-bottom: 40px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(16, 20, 32, 0.56);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong,
.site-nav a,
.button,
.module-pill strong,
.task-row strong,
.stat-card strong,
.feature-card h2,
.section-heading h2,
.module-card h3,
.workflow-card h2,
.insight-panel h2,
.about-card h2,
.cta-card h2,
.footer-inner strong,
.shell-brand strong,
.shell-summary span,
.shell-metrics strong {
  font-family: "Space Grotesk", sans-serif;
}

.brand strong {
  font-size: 1.05rem;
}

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

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font: inherit;
  font-weight: 700;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.language-button {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--text-primary);
}

.language-button.is-active {
  color: #08111d;
  background: linear-gradient(135deg, #ffffff, #d4e7ff 42%, #8ac0ff);
  box-shadow: 0 10px 24px rgba(116, 183, 255, 0.26);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-primary);
}

.hero {
  padding-top: 54px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #d1dbff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.workflow-card h2,
.insight-panel h2,
.about-card h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

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

.hero-lead,
.section-heading p,
.feature-card p,
.module-card p,
.process-step p,
.insight-list li,
.note-card p,
.about-card p,
.cta-card p,
.stat-card p,
.shell-hero-card p,
.shell-summary p,
.task-row span,
.shell-metrics p {
  color: var(--text-secondary);
}

.hero-lead {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #08111d;
  background: linear-gradient(135deg, #ffffff, #d4e7ff 42%, #8ac0ff);
  box-shadow: 0 22px 40px rgba(116, 183, 255, 0.28);
}

.button-secondary {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-meta span,
.shell-tags span,
.impact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-style: normal;
  white-space: nowrap;
}

.stats-grid,
.feature-grid,
.module-grid,
.about-grid {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

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

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.stat-card,
.feature-card,
.module-card,
.workflow-card,
.insight-panel,
.about-card,
.cta-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat-card::before,
.feature-card::before,
.module-card::before,
.workflow-card::before,
.insight-panel::before,
.about-card::before,
.cta-card::before,
.media-showcase::before,
.app-shell::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%);
  pointer-events: none;
}

.stat-card strong,
.module-card h3,
.feature-card h2,
.media-card strong,
.shell-metrics strong,
.task-row strong,
.shell-summary span,
.about-card h2 {
  font-size: 1.18rem;
}

.stat-card p,
.feature-card p,
.module-card p,
.about-card p,
.cta-card p {
  margin: 10px 0 0;
}

.hero-visual {
  position: relative;
}

.media-showcase {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(35, 31, 49, 0.94), rgba(15, 18, 30, 0.9));
  box-shadow: var(--shadow);
}

.media-showcase::after {
  content: "";
  position: absolute;
  inset: auto 8% -10% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(86, 220, 207, 0.18);
  filter: blur(54px);
}

.video-placeholder,
.media-card,
.example-card .placeholder-screen {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border-radius: 28px;
  display: block;
}

.video-placeholder::before,
.placeholder-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(116, 183, 255, 0.08), transparent 46%),
    linear-gradient(225deg, rgba(243, 95, 169, 0.08), transparent 42%);
  pointer-events: none;
}

.video-placeholder::before {
  display: none;
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 340px;
  object-fit: cover;
  background: #0d1320;
}

.video-caption {
  padding: 22px 24px 24px;
}

.video-placeholder h2 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.video-placeholder p {
  max-width: 42ch;
  margin: 12px 0 0;
  color: var(--text-secondary);
}

.placeholder-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.play-mark {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 18px rgba(116, 183, 255, 0.06);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 29px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid rgba(255, 255, 255, 0.9);
}

.media-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.media-card {
  padding: 18px;
  border-radius: 24px;
}

.media-card strong {
  display: block;
  margin-top: 16px;
}

.media-card p {
  margin: 8px 0 0;
  color: var(--text-secondary);
}

.media-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.22);
}

.placeholder-screen {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 16px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(116, 183, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.placeholder-screen.alt {
  background: linear-gradient(145deg, rgba(243, 95, 169, 0.12), rgba(255, 255, 255, 0.03));
}

.placeholder-screen span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 17, 29, 0.46);
  color: var(--text-primary);
  font-size: 0.76rem;
  font-weight: 700;
}

.examples-grid {
  margin-top: 28px;
}

.example-card .placeholder-screen {
  min-height: 220px;
  margin-bottom: 18px;
  border-radius: 24px;
}

.example-card .media-image {
  margin-bottom: 18px;
  border-radius: 24px;
}

.section-heading + .feature-grid {
  margin-top: 28px;
}

.app-shell {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(35, 31, 49, 0.94), rgba(15, 18, 30, 0.9));
  box-shadow: var(--shadow);
}

.app-shell::after {
  content: "";
  position: absolute;
  inset: auto 8% -10% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(86, 220, 207, 0.18);
  filter: blur(54px);
}

.shell-sidebar,
.shell-main {
  position: relative;
  z-index: 1;
}

.shell-sidebar {
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(60, 49, 77, 0.9), rgba(24, 27, 42, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shell-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
}

.shell-brand span {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.shell-brand img {
  border-radius: 12px;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.24);
}

.shell-nav {
  display: grid;
  gap: 10px;
}

.module-pill {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.module-pill strong,
.module-pill span {
  display: block;
}

.module-pill span {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.module-pill.is-active {
  background: linear-gradient(135deg, rgba(116, 183, 255, 0.2), rgba(255, 255, 255, 0.08));
  border-color: rgba(116, 183, 255, 0.3);
}

.module-pill.cleanup {
  box-shadow: inset 3px 0 0 rgba(86, 220, 207, 0.7);
}

.module-pill.protection {
  box-shadow: inset 3px 0 0 rgba(99, 219, 154, 0.7);
}

.module-pill.performance {
  box-shadow: inset 3px 0 0 rgba(243, 95, 169, 0.7);
}

.module-pill.applications {
  box-shadow: inset 3px 0 0 rgba(240, 193, 107, 0.7);
}

.module-pill.files {
  box-shadow: inset 3px 0 0 rgba(246, 140, 161, 0.7);
}

.module-pill.lens {
  box-shadow: inset 3px 0 0 rgba(162, 127, 234, 0.7);
}

.shell-summary {
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shell-summary p {
  margin: 6px 0 0;
  font-size: 0.88rem;
}

.shell-main {
  display: grid;
  gap: 16px;
}

.shell-hero-card,
.shell-metrics article,
.task-row {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
}

.shell-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
}

.shell-hero-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.shell-hero-card p:last-of-type {
  max-width: 42ch;
  margin-top: 14px;
}

.shell-orb {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(116, 183, 255, 0.38), transparent 52%),
    rgba(116, 183, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 18px rgba(116, 183, 255, 0.08),
    0 0 0 42px rgba(116, 183, 255, 0.03);
  animation: floaty 6s ease-in-out infinite;
}

.shell-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.shell-metrics article {
  padding: 18px;
}

.shell-metrics span {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.shell-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.shell-metrics p {
  margin: 8px 0 0;
  font-size: 0.85rem;
}

.shell-task-list {
  display: grid;
  gap: 12px;
}

.task-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
}

.task-row div {
  min-width: 0;
}

.task-row strong,
.task-row span {
  display: block;
}

.task-row span {
  font-size: 0.85rem;
}

.impact.light {
  background: rgba(116, 183, 255, 0.16);
  border-color: rgba(116, 183, 255, 0.22);
}

.impact.medium {
  background: rgba(99, 219, 154, 0.16);
  border-color: rgba(99, 219, 154, 0.22);
}

.feature-index,
.module-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
}

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

.section-heading p {
  margin-top: 16px;
}

.module-card {
  --accent: var(--blue);
  min-height: 100%;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0));
}

.module-card.smart {
  --accent: var(--blue);
}

.module-card.cleanup {
  --accent: var(--teal);
}

.module-card.protection {
  --accent: var(--green);
}

.module-card.performance {
  --accent: var(--pink);
}

.module-card.applications {
  --accent: var(--amber);
}

.module-card.files {
  --accent: var(--rose);
}

.module-card.lens {
  --accent: var(--violet);
}

.module-card ul,
.insight-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.module-card li,
.insight-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
}

.module-card li + li,
.insight-list li + li {
  margin-top: 10px;
}

.module-card li::before,
.insight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent, var(--blue));
  box-shadow: 0 0 12px var(--accent, var(--blue));
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
}

.workflow-card h2,
.insight-panel h2,
.about-card h2,
.cta-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding-top: 22px;
}

.process-step + .process-step {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 22px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(116, 183, 255, 0.14);
  color: var(--text-primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
}

.process-step p {
  margin: 8px 0 0;
}

.note-card {
  margin-top: 26px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.note-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.note-card p {
  margin: 8px 0 0;
}

.link-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.link-stack a {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.link-stack a:hover,
.link-stack a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(116, 183, 255, 0.35);
}

.about-footnote {
  margin-top: 18px;
  color: var(--text-muted);
}

.cta-section {
  padding-top: 24px;
}

.cta-card {
  text-align: center;
  padding: 36px 28px;
  background:
    radial-gradient(circle at top, rgba(116, 183, 255, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(52, 45, 73, 0.94), rgba(19, 24, 39, 0.92));
}

.cta-card p {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-card .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 26px 0 42px;
}

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

.footer-inner p,
.footer-inner a {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2rem, -1rem, 0) scale(1.08);
  }
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .workflow-grid,
  .about-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .topbar-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(16, 20, 32, 0.92);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .topbar-inner.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .media-row {
    grid-template-columns: 1fr;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 70px 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .stats-grid,
  .feature-grid,
  .shell-metrics {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2,
  .workflow-card h2,
  .insight-panel h2,
  .about-card h2,
  .cta-card h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .task-row,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-placeholder {
    min-height: 0;
  }

  .hero-video {
    min-height: 240px;
  }

  .shell-hero-card {
    min-height: 0;
    padding-top: 160px;
  }

  .shell-orb {
    right: 20px;
    top: 18px;
    width: 106px;
    height: 106px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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