*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*::selection {
  background-color: #1884dc34;
}

:root {
  --bg: #f7f8fc;
  --bg-elevated: #ffffff;
  --bg-card: #eef0f5;
  --border: rgba(0, 0, 0, 0.08);
  --text: #1a1a22;
  --text-muted: #5e5e6e;
  --cyan: #22c4d8;
  --mint: #2ec98a;
  --gradient: linear-gradient(135deg, #60efff 0%, #5cfaa9 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(96, 239, 255, 0.18) 0%, rgba(92, 250, 169, 0.18) 100%);
  --btn-text: #0a0a0b;
  --shadow: 0 4px 24px rgba(96, 239, 255, 0.25);
  --shadow-hover: 0 6px 32px rgba(96, 239, 255, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-brand: "Comfortaa", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-anchor: none;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 72px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  cursor: default;
  -webkit-font-smoothing: antialiased;
}

a,
button,
.btn,
label[for],
input[type="button"],
input[type="submit"],
select,
summary {
  cursor: pointer;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.page-bg::before {
  width: 55vmax;
  height: 55vmax;
  top: -18%;
  left: -12%;
  background: rgba(96, 239, 255, 0.16);
  animation: blobDrift1 20s ease-in-out infinite;
}

.page-bg::after {
  width: 45vmax;
  height: 45vmax;
  bottom: -8%;
  right: -10%;
  background: rgba(92, 250, 169, 0.13);
  animation: blobDrift2 24s ease-in-out infinite;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease;
}

.header.is-scrolled {
  background: rgba(247, 248, 252, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand img {
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: rotate(-6deg) scale(1.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  user-select: none;
  -webkit-user-select: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.platform-badge:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(34, 196, 216, 0.35);
  box-shadow: 0 2px 14px rgba(96, 239, 255, 0.15);
}

.platform-badge:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(34, 196, 216, 0.5);
  box-shadow: 0 1px 6px rgba(96, 239, 255, 0.12);
}

.platform-badge svg {
  color: var(--cyan);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--btn-text);
  background: var(--gradient);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 12px;
}

/* Download loader & snackbar */

.download-link {
  position: relative;
}

.download-link.is-downloading {
  pointer-events: none;
  cursor: default;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: transparent;
}

.download-link.is-downloading::after {
  display: none;
}

.download-link.is-downloading > :not(.download-spinner) {
  display: none;
}

.download-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid rgba(10, 10, 11, 0.15);
  border-top-color: #0a0a0b;
  border-radius: 50%;
  animation: downloadSpin 0.7s linear infinite;
}

.download-link.is-downloading .download-spinner {
  display: block;
}

.platform-badge.download-link .download-spinner {
  width: 14px;
  height: 14px;
  margin-top: -7px;
  margin-left: -7px;
  border-color: rgba(34, 196, 216, 0.2);
  border-top-color: var(--cyan);
}

.snackbar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  padding: 12px 18px;
  background: #1a1a22;
  color: #f0f0f2;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  pointer-events: none;
  user-select: none;
  max-width: min(360px, calc(100vw - 48px));
}

.snackbar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes downloadSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Hero */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    #60efff 0%,
    #5cfaa9 25%,
    #60efff 50%,
    #5cfaa9 75%,
    #60efff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 5s linear infinite;
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero visual — monitor illustration */

.hero-visual {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.hero-visual.reveal.is-visible {
  animation: gentleFloat 6s ease-in-out infinite;
}

.monitor-grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  transition: gap 0.35s ease;
}

.monitor {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, opacity 0.35s ease, max-width 0.35s ease;
}

.monitor-screen {
  border-radius: 6px;
  border: 2px solid rgba(34, 196, 216, 0.45);
  background: var(--gradient-subtle);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease;
}

.monitor-stand {
  width: 30%;
  height: 6px;
  margin-top: 4px;
  border-radius: 0 0 3px 3px;
  background: rgba(0, 0, 0, 0.12);
}

.m1 .monitor-screen { width: 100px; height: 68px; }
.m2 .monitor-screen {
  width: 140px;
  height: 88px;
  border-color: rgba(46, 201, 138, 0.55);
  animation: screenGlow 3.5s ease-in-out infinite;
}

.m3 .monitor-screen { width: 80px; height: 56px; }

.hero-visual.reveal.is-visible .monitor {
  animation: monitorPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-visual.reveal.is-visible .m1 { animation-delay: 0.55s; }
.hero-visual.reveal.is-visible .m2 { animation-delay: 0.7s; }
.hero-visual.reveal.is-visible .m3 { animation-delay: 0.85s; }

.monitor-grid.is-switching .monitor-screen {
  animation: screenFlash 0.45s ease;
}

.monitor-grid.profile-gaming {
  gap: 20px;
}

.monitor-grid.profile-gaming .m1 {
  transform: translateY(14px);
}

.monitor-grid.profile-gaming .m2 .monitor-screen {
  width: 155px;
  height: 96px;
}

.monitor-grid.profile-gaming .m3 {
  transform: translateY(10px);
}

.monitor-grid.profile-dock {
  gap: 28px;
}

.monitor-grid.profile-dock .m3 {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: scale(0.4);
}

.monitor-grid.profile-dock .m1 .monitor-screen,
.monitor-grid.profile-dock .m2 .monitor-screen {
  width: 130px;
  height: 84px;
}

.profile-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  -webkit-appearance: none;
  appearance: none;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover:not(.active) {
  color: var(--text);
  border-color: rgba(34, 196, 216, 0.35);
  box-shadow: 0 2px 8px rgba(96, 239, 255, 0.1);
}

.pill:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.pill.active {
  color: var(--btn-text);
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 2px 14px rgba(96, 239, 255, 0.25);
}

.pill.pill-pop {
  animation: pillPop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Features */

.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.features h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 196, 216, 0.35);
  box-shadow: 0 8px 28px rgba(96, 239, 255, 0.14);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-subtle);
  color: var(--cyan);
  margin-bottom: 16px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA */

.cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.cta-inner {
  text-align: center;
  padding: 56px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cta-inner:hover {
  border-color: rgba(34, 196, 216, 0.3);
  box-shadow: 0 8px 40px rgba(96, 239, 255, 0.12);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(96, 239, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 28px;
  position: relative;
}

.cta-inner .btn {
  position: relative;
}

/* Footer */

.footer {
  background: var(--bg-elevated);
  border-top: 1px solid #e7e7e7;
  padding: 64px 24px;
  width: 100%;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-main-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 120px;
  width: 100%;
}

.footer-brand-column {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: auto;
  width: auto;
  user-select: none;
  -webkit-user-select: none;
}

.footer-dm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-dm-brand-text {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 600;
  color: #22242d;
  letter-spacing: 0.02em;
  line-height: 1;
}

.dm-logo {
  max-height: 36px;
}

.footer-by-section {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.footer-by-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 100px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.footer-by-brand:hover {
  background-color: #0088ff09;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.footer-by-brand-text {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
  line-height: 1;
}

.alledo-logo {
  max-height: 16px;
}

.footer-by-text {
  color: #7b7e89;
  font-size: 11px;
  font-weight: 400;
}

.footer-tagline {
  font-family: var(--font-brand);
  color: #7b7e89;
  font-size: 14px;
  line-height: 1.5;
  margin: 20px 0 0;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  color: #7b7e89;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: #667eea;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-top: 32px;
  width: fit-content;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  transition: background 0.2s ease;
}

.footer-status-badge:hover {
  background-color: #0088ff09;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: statusPulse 2.2s ease-in-out infinite;
}

.status-text {
  font-family: var(--font-body);
  color: #374151;
  font-size: 14px;
  line-height: 1;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 40px 80px;
  margin: 32px 28px 0 auto;
  justify-items: start;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
}

.footer-nav-heading {
  color: #22242d;
  font-size: 16px;
  font-family: "Tilt Warp", system-ui, sans-serif;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  cursor: default;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  color: #7b7e89;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
  line-height: 1.6;
  white-space: nowrap;
}

.footer-nav-link:hover {
  color: #667eea;
}

.live-badge {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 10px 10px 10px 5px;
  margin-left: 3px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.footer-bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
  margin-top: 48px;
  border-top: 1px solid #e7e7e7;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-copyright p {
  color: #7b7e89;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.footer-copyright p a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-copyright p a:hover {
  color: #764ba2;
}

.footer-subtext {
  line-height: 1.8;
  margin: 0;
  padding-top: 5px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal-links a {
  font-family: "Baloo 2", system-ui, sans-serif;
  color: #7b7e89;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #667eea;
}

.heart {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  vertical-align: middle;
  display: inline-block;
  user-select: none;
  -webkit-user-select: none;
  animation: heartBeat 1.8s ease-in-out infinite;
  transform-origin: center;
}

.flag {
  width: 20px;
  margin: 0 0 0 4px;
  vertical-align: middle;
  display: inline-block;
  user-select: none;
  -webkit-user-select: none;
}

/* Animations */

@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 8%) scale(1.08); }
}

@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8%, -6%) scale(1.06); }
}

@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes monitorPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes screenGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(46, 201, 138, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(46, 201, 138, 0.35);
  }
}

@keyframes screenFlash {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

@keyframes pillPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.12); }
  56% { transform: scale(1); }
}

/* Entry animations */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-bg::before,
  .page-bg::after,
  .gradient-text,
  .hero-visual.reveal.is-visible,
  .hero-visual.reveal.is-visible .monitor,
  .m2 .monitor-screen,
  .monitor-grid.is-switching .monitor-screen,
  .pill.pill-pop,
  .status-dot,
  .heart {
    animation: none;
  }

  .brand:hover img,
  .feature-card:hover,
  .feature-card:hover .feature-icon {
    transform: none;
  }

  .btn::after {
    display: none;
  }

  .download-spinner {
    animation: none;
    border-top-color: #0a0a0b;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .footer {
    padding: 56px 20px;
  }

  .footer-main-section {
    gap: 60px;
  }

  .footer-brand-column {
    flex: 0 0 240px;
  }

  .footer-tagline {
    max-width: 240px;
  }

  .footer-nav-columns {
    gap: 32px 60px;
    margin: 12px 0 0;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 14px 20px;
  }

  .brand {
    font-size: 0.95rem;
    gap: 8px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .platform-badge {
    font-size: 0.72rem;
    padding: 5px 11px;
    gap: 5px;
  }

  .hero {
    padding: 32px 20px 56px;
    min-height: calc(100svh - 64px);
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    margin-bottom: 48px;
  }

  .btn-lg {
    padding: 12px 22px;
    font-size: 0.92rem;
  }

  .hero-visual {
    padding: 32px 20px 26px;
  }

  .features {
    padding: 56px 20px;
  }

  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 36px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 22px;
  }

  .cta {
    padding: 0 20px 56px;
  }

  .cta-inner {
    padding: 44px 24px;
  }

  .footer {
    padding: 48px 20px;
  }

  .footer-main-section {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }

  .footer-brand-column {
    flex: 1;
    max-width: 100%;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-social {
    margin-top: 16px;
    gap: 12px;
  }

  .footer-status-badge {
    margin-top: 20px;
  }

  .footer-nav-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
    width: 100%;
    margin: 20px 0 0;
  }

  .footer-nav-heading {
    font-size: 15px;
    margin: 0 0 10px;
  }

  .footer-nav-link {
    font-size: 13px;
    white-space: normal;
  }

  .footer-bottom-section {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 28px;
    margin-top: 36px;
    gap: 32px;
  }

  .footer-copyright p {
    font-size: 13px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-legal-links a {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.88rem;
    gap: 7px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .platform-badge {
    font-size: 0.68rem;
    padding: 4px 9px;
  }

  .platform-badge svg {
    width: 12px;
    height: 12px;
  }

  .hero {
    padding: 24px 16px;
    min-height: calc(100svh - 56px);
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-actions {
    margin-bottom: 40px;
    gap: 10px;
  }

  .btn-lg {
    padding: 11px 20px;
    font-size: 0.86rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .btn-lg svg {
    width: 18px;
    height: 18px;
  }

  .hero-meta {
    font-size: 0.74rem;
  }

  .hero-visual {
    padding: 24px 14px 20px;
    border-radius: 16px;
  }

  .monitor-grid {
    gap: 8px;
    margin-bottom: 22px;
  }

  .m1 .monitor-screen { width: 72px; height: 50px; }
  .m2 .monitor-screen { width: 100px; height: 64px; }
  .m3 .monitor-screen { width: 60px; height: 42px; }

  .monitor-grid.profile-gaming .m2 .monitor-screen {
    width: 110px;
    height: 68px;
  }

  .monitor-grid.profile-gaming .m1 {
    transform: translateY(10px);
  }

  .monitor-grid.profile-gaming .m3 {
    transform: translateY(8px);
  }

  .monitor-grid.profile-dock .m1 .monitor-screen,
  .monitor-grid.profile-dock .m2 .monitor-screen {
    width: 95px;
    height: 62px;
  }

  .pill {
    font-size: 0.7rem;
    padding: 5px 11px;
  }

  .profile-pills {
    gap: 6px;
  }

  .features {
    padding: 44px 16px;
  }

  .features h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.6rem);
  }

  .section-sub {
    font-size: 0.88rem;
    margin-bottom: 28px;
  }

  .feature-card {
    padding: 18px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.84rem;
  }

  .cta {
    padding: 0 16px 44px;
  }

  .cta-inner {
    padding: 36px 18px;
    border-radius: 16px;
  }

  .cta-inner h2 {
    font-size: 1.3rem;
  }

  .cta-inner p {
    font-size: 0.88rem;
    margin-bottom: 22px;
  }

  .footer {
    padding: 36px 16px;
  }

  .footer-content {
    gap: 28px;
  }

  .footer-main-section {
    gap: 28px;
  }

  .footer-dm-brand {
    gap: 8px;
  }

  .footer-dm-brand-text {
    font-size: 15px;
  }

  .dm-logo {
    max-height: 28px;
  }

  .footer-by-section {
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .footer-by-brand {
    padding: 5px 10px 5px 8px;
    gap: 6px;
  }

  .footer-by-brand-text {
    font-size: 11px;
  }

  .alledo-logo {
    max-height: 14px;
  }

  .footer-tagline {
    font-size: 13px;
    margin-top: 16px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .status-text {
    font-size: 12px;
  }

  .footer-status-badge {
    margin-top: 16px;
    padding: 5px 8px;
  }

  .footer-nav-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav-heading {
    font-size: 14px;
  }

  .footer-nav-link {
    font-size: 12px;
  }

  .footer-bottom-section {
    padding-top: 24px;
    margin-top: 28px;
    gap: 24px;
  }

  .footer-copyright p {
    font-size: 12px;
  }

  .footer-legal-links a {
    font-size: 12px;
  }

  .snackbar {
    bottom: 16px;
    left: 16px;
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .heart {
    width: 13px;
    height: 13px;
  }

  .flag {
    width: 17px;
  }
}

@media (max-width: 400px) {
  .brand span {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .platform-badge {
    font-size: 0.62rem;
    padding: 4px 7px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .btn-lg {
    font-size: 0.82rem;
    padding: 10px 16px;
  }

  .m1 .monitor-screen { width: 58px; height: 40px; }
  .m2 .monitor-screen { width: 82px; height: 54px; }
  .m3 .monitor-screen { width: 50px; height: 36px; }

  .monitor-grid.profile-gaming .m2 .monitor-screen {
    width: 90px;
    height: 56px;
  }

  .monitor-grid.profile-dock .m1 .monitor-screen,
  .monitor-grid.profile-dock .m2 .monitor-screen {
    width: 78px;
    height: 52px;
  }

  .pill {
    font-size: 0.65rem;
    padding: 4px 9px;
  }

  .footer-by-brand-text {
    font-size: 10px;
  }

  .footer-dm-brand-text {
    font-size: 14px;
  }

  .dm-logo {
    max-height: 24px;
  }
}
