:root {
  --bg: #f7f9ff;
  --bg-alt: #eef3ff;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --ring: rgba(37, 99, 235, 0.3);
  --border: #dbe5f5;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 36px 90px rgba(15, 23, 42, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 20% -10%, #dce7ff 0, transparent 35%),
    radial-gradient(circle at 90% 0%, #e8efff 0, transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

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

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

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f7faff 0%, #eef3ff 100%);
  border-block: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.35;
}

p {
  margin: 0;
  color: var(--muted);
}

.section-intro {
  max-width: 760px;
  margin: 0 0 2rem;
}

.section-intro.left {
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(247, 249, 255, 0.78);
  border-bottom: 1px solid rgba(219, 229, 245, 0.85);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  white-space: nowrap;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}

.brand-version {
  border: 1px solid #c7d6f0;
  border-radius: 999px;
  padding: 0.12rem 0.42rem;
  background: rgba(255, 255, 255, 0.78);
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  position: relative;
  color: #334155;
  font-weight: 600;
  padding: 0.4rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: #0f172a;
}

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

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary,
.btn-ghost,
.btn-outline {
  min-height: 44px;
  padding: 0.72rem 1.25rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(37, 99, 235, 0.42);
}

.btn-ghost {
  color: #0f172a;
  border-color: #cad8f0;
  background: rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover {
  border-color: #9db7e8;
  background: #fff;
}

.btn-outline {
  color: #1d4ed8;
  border-color: #b7c8e8;
  background: #fff;
}

.btn-outline:hover {
  border-color: #8aacdf;
  background: #f7faff;
}

.btn-small {
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
}

.hero {
  padding: 6.2rem 0 4.2rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 940px;
}

.hero-tagline {
  margin: 1rem auto 1.5rem;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-micro-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-micro-proof span {
  border: 1px solid #c9d8f2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #1e3a8a;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-frame {
  margin-top: 2.3rem;
  border: 1px solid #2a3347;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1f2937;
  text-align: left;
}

.hero-frame-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  background: #182133;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-frame-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-frame-head span:nth-child(1) { background: #ff5f57; }
.hero-frame-head span:nth-child(2) { background: #febc2e; }
.hero-frame-head span:nth-child(3) { background: #28c840; }

.hero-frame-head p {
  margin-left: 0.4rem;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-band {
  padding-top: 1.4rem;
  padding-bottom: 2rem;
}

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

.trust-card,
.card,
.download-card,
.doc-card,
.doc-section,
.doc-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.trust-card {
  padding: 1rem;
}

.trust-card p {
  margin-top: 0.35rem;
  font-size: 0.93rem;
}

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

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

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

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

.card {
  padding: 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card p {
  margin-top: 0.45rem;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.gallery-controls {
  display: flex;
  gap: 0.45rem;
}

.gallery-nav {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #c6d5ef;
  background: #fff;
  color: #1d4ed8;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-nav:hover {
  background: #eef4ff;
  transform: translateY(-1px);
}

.gallery {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.gallery-track {
  position: relative;
  min-height: 280px;
}

.gallery-slide {
  margin: 0;
  display: none;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #dbe4f2;
}

.gallery-slide.is-active {
  display: block;
  animation: fadeSlideIn 0.45s ease;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-slide figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: #334155;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #c5d4ed;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-dot.is-active {
  background: #2563eb;
  transform: scale(1.15);
}

.video-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0f172a;
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.download-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.2rem;
}

.version-note {
  width: fit-content;
  margin: -0.7rem auto 1.3rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid #c7d6f0;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
}

.download-card {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.download-card .btn {
  margin-top: auto;
}

.linux-install-box {
  border: 1px solid #c7d6f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.linux-install-box h3 {
  margin-bottom: 0.3rem;
}

.code-block {
  margin: 0.75rem 0;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  background: #0b1220;
  color: #e2e8f0;
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.code-block code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.88rem;
}

.cta-section {
  padding-top: 4rem;
}

.cta-inner {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fdfefe 0%, #eef5ff 100%);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.2rem;
}

.cta-inner p {
  max-width: 680px;
  margin: 0.45rem auto 1.2rem;
}

.doc-hero {
  padding: 5.8rem 0 3.4rem;
  position: relative;
}

.doc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(37, 99, 235, 0.11) 0%, transparent 50%);
  pointer-events: none;
}

.doc-hero-inner {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.doc-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.doc-sidebar {
  position: sticky;
  top: 92px;
  padding: 0.9rem;
}

.doc-sidebar nav {
  display: grid;
  gap: 0.35rem;
}

.doc-sidebar a {
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  color: #334155;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.doc-sidebar a:hover {
  background: #ecf3ff;
  color: #1d4ed8;
}

.doc-inline-link,
.doc-section a:not(.btn) {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.doc-content {
  display: grid;
  gap: 1rem;
}

.doc-section {
  padding: 1.5rem;
  scroll-margin-top: 92px;
}

.doc-section > p {
  margin-bottom: 1rem;
}

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

.doc-card {
  padding: 1rem;
}

.doc-card p {
  margin-top: 0.35rem;
}

.doc-callout {
  margin-top: 1rem;
  border: 1px solid #c5d7f5;
  border-left: 4px solid #2563eb;
  border-radius: 10px;
  background: #eff5ff;
  padding: 0.85rem 0.9rem;
}

.doc-steps,
.doc-list {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  color: #334155;
}

.doc-steps li,
.doc-list li {
  margin-bottom: 0.42rem;
}

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

.doc-media-item {
  margin: 0;
  border: 1px solid #d5e1f4;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.doc-media-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.doc-media-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.doc-faq {
  margin-top: 0.7rem;
  border: 1px solid #d5e1f4;
  border-radius: 12px;
  background: #f9fbff;
  padding: 0.9rem;
}

.doc-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.doc-faq p {
  margin-top: 0.65rem;
}

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

.faq-grid .doc-faq {
  margin-top: 0;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.25fr);
  gap: 1.2rem;
  align-items: center;
}

.guide-copy .doc-list {
  margin-top: 0.75rem;
}

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

.guide-shot {
  margin: 0;
  border: 1px solid #d5e1f4;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.guide-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.guide-shot figcaption {
  padding: 0.75rem 0.9rem;
  color: #334155;
  font-size: 0.92rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid #e1e9f7;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f4f8ff;
}

.footer-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner a {
  color: #1d4ed8;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

/* Support & Pricing Styles */
.support-banner {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #c7d6f0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.support-banner a {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: underline;
}

.support-banner a:hover {
  color: #2563eb;
}

.support-callout {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fdfefe 0%, #eef6ff 100%);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
}

.support-callout h2 {
  margin-bottom: 0.3rem;
}

.support-callout .section-intro {
  margin: 0.5rem auto 1.5rem;
}

.support-buttons {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 700px;
  margin: 0 auto;
}

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

.pricing-card,
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover,
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #2563eb;
}

.pricing-header {
  border-bottom: 1px solid #e1e9f7;
  padding-bottom: 1rem;
}

.pricing-header h3 {
  margin-bottom: 0.3rem;
  color: #0f172a;
}

.pricing-desc {
  font-size: 0.85rem;
  color: #64748b;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1d4ed8;
}

.period {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  flex-grow: 1;
}

.pricing-features li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 800;
}

.pricing-card .btn {
  align-self: flex-start;
}

.support-card {
  text-align: left;
  padding: 1.5rem;
}

.support-card h3 {
  margin-bottom: 0.2rem;
  color: #0f172a;
}

.support-card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  flex-grow: 1;
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 800px;
  margin: 0 auto 1.2rem;
}

.divider-text {
  text-align: center;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e1e9f7;
}

.divider-text p {
  font-size: 0.95rem;
}

.divider-text a {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: underline;
}

.divider-text a:hover {
  color: #2563eb;
}

.cta-inner a {
  color: #1d4ed8;
}

.cta-inner a:hover {
  color: #2563eb;
  text-decoration: underline;
}

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

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

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

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero screenshot */
.hero-screenshot {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-screenshot img {
  width: 100%;
  display: block;
}

/* Mobile hamburger nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s ease;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 74px 0 0;
  z-index: 39;
  background: rgba(247, 249, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-overlay nav a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-overlay nav a:hover {
  background: #ecf3ff;
  color: var(--primary);
}

@media (max-width: 1050px) {
  .cards-3,
  .download-grid,
  .doc-media-grid,
  .pricing-grid,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .support-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .doc-layout {
    grid-template-columns: 1fr;
  }

  .guide-section,
  .guide-two-col,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .doc-sidebar {
    position: static;
  }

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

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.9rem 0;
    min-height: auto;
  }

  .nav {
    display: none;
  }

  .nav-github {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .section {
    padding: 3.6rem 0;
  }

  .cards-3,
  .cards-2,
  .download-grid,
  .trust-grid,
  .doc-grid,
  .doc-media-grid,
  .faq-grid,
  .pricing-grid,
  .cards-4,
  .support-grid,
  .support-buttons,
  .doc-sidebar nav {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-tagline {
    max-width: 95%;
  }

  .cta-inner {
    padding: 1.7rem 1rem;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    padding: 0.8rem 0;
  }

  .footer-links {
    justify-content: center;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
