:root {
  color-scheme: dark;
  --bg: #fce4ec;
  --bg-2: #f8bbd0;
  --panel: rgba(30, 30, 35, 0.5);
  --panel-strong: rgba(30, 30, 35, 0.75);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --muted: #e4e4e7;
  --soft: #d4d4d8;
  --cyan: #e4e4e7;
  --blue: #3b82f6;
  --purple: #6366f1;
  --magenta: #d4d4d8;
  --discord: #5865f2;
  --accent: #ffffff;
  --accent-glow: rgba(255, 255, 255, 0.08);
  --accent-dim: rgba(255, 255, 255, 0.04);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --border-hover: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
  --glow-sm: 0 4px 14px rgba(0, 0, 0, 0.15);
  --glow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --glow-strong: 0 12px 48px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body::selection {
  background: rgba(255, 255, 255, 0.15);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  overflow: clip;
  contain: layout paint size;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  background: linear-gradient(180deg, #ff66b2 0%, #c2185b 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  animation: none;
}


.theme-ps {
  position: relative;
  z-index: 90;
  width: min(var(--max), calc(100% - 32px));
  margin: 12px auto 0;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  font-size: 0.86rem;
  font-weight: 500;
  text-align: center;
}

.theme-ps span {
  color: var(--text);
  margin-right: 4px;
  font-weight: 600;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 100;
  width: min(var(--max), calc(100% - 32px));
  height: 64px;
  margin: 12px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-clip: padding-box;
  background: rgba(24, 24, 27, 0.65);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.topbar::before,
.topbar::after {
  display: none;
}

.topbar.scrolled {
  background: rgba(24, 24, 27, 0.85);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.12);
}



.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-right: auto;
}

.nav-logo img {
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links .nav-mc {
  color: #111;
  border-color: #fff;
  background: #fff;
}

.nav-links .nav-mc:hover,
.nav-links .nav-mc:focus-visible {
  color: #111;
  background: #f4f4f5;
  border-color: #f4f4f5;
}

.nav-links a::after,
.nav-links a::before {
  display: none;
}

.nav-links a svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
  outline: none;
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  opacity: 1;
}

.nav-links a[aria-current="page"]::before {
  opacity: 1;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--nav-accent, var(--cyan)) 30%, transparent), transparent 62%);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
  background: linear-gradient(90deg, transparent, var(--nav-accent, var(--cyan)), transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--nav-accent, var(--cyan)) 60%, transparent);
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  scroll-margin-top: 120px;
}

.glass-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backface-visibility: hidden;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%);
  opacity: 0.5;
}

.hero {
  position: relative;
  min-height: calc(100vh - 128px);
  display: grid;
  place-items: center;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  text-align: left;
}

.hero-layout {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-cta-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-gen,
.hero-download {
  min-width: min(240px, 100%);
  font-size: 1.02rem;
}

.hero-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.hero-demo-link svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-demo-link:hover,
.hero-demo-link:focus-visible {
  color: var(--cyan);
  transform: translateX(3px);
  outline: none;
}

.hero-trust {
  margin: 20px 0 0;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  animation: hero-float 7s ease-in-out infinite;
}

.hero-visual-glow {
  display: none;
}

.hero-product-frame {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #121218;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: none;
  cursor: zoom-in;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.hero-product-frame:hover,
.hero-product-frame:focus-visible {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.6);
  outline: none;
}

.hero-product-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual-badge {
  position: absolute;
  right: 18px;
  bottom: -14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(24, 24, 27, 0.85);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-trust span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.version-badge {
  color: var(--text) !important;
  border-color: rgba(59, 130, 246, 0.36) !important;
  background: rgba(59, 130, 246, 0.12) !important;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #151515;
}

.browser-bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid var(--border);
  background: #181818;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
}

.browser-bar span:nth-child(2) {
  background: #ffbd2e;
}

.browser-bar span:nth-child(3) {
  background: #28c840;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 18px;
  cursor: pointer;
  position: relative;
  background-clip: padding-box;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease, filter 220ms ease, border-color 220ms ease;
  backface-visibility: hidden;
}

.btn svg,
.btn span,
.icon-chip svg {
  position: relative;
  z-index: 1;
}

.btn svg,
.icon-chip svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Animated gradient border on buttons */
.btn::before {
  display: none;
}

.btn::after {
  display: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.92);
}

.btn-primary {
  color: #000;
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f4f4f5;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-secondary {
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  min-height: 48px;
  color: var(--soft);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.btn-ghost::before {
  display: none;
}

.hero-download {
  min-width: min(240px, 100%);
}

.btn-discord {
  color: #fff;
  background: var(--discord);
  border-color: transparent;
}

.btn-discord:hover,
.btn-discord:focus-visible {
  background: #4752c4;
}

.metric-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 92px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-strip div {
  min-height: 92px;
  padding: 18px;
  display: grid;
  align-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-strip strong {
  font-size: 1.1rem;
}

.metric-strip span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-heading h2,
.discord-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.discord-copy p,
.featured-project p,
.discord-ending,
.discord-closing {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-bottom: 96px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--border);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  border: 0;
  border-radius: 0;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    rgba(15, 15, 15, 0.94);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease, box-shadow 220ms ease;
  backface-visibility: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .icon-chip {
  transform: scale(1.08);
}

.icon-chip {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 200ms ease;
}

.feature-card code {
  color: var(--cyan);
}

.new-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
}

.feature-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 8px 16px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.feature-download-btn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-download-btn:hover,
.feature-download-btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  outline: none;
}

.discord-feature-btn {
  color: #fff;
  border-color: rgba(88, 101, 242, 0.4);
}

.discord-feature-btn:hover,
.discord-feature-btn:focus-visible {
  background: rgba(88, 101, 242, 0.2);
  border-color: rgba(88, 101, 242, 0.6);
}

.feature-card h3,
.guide-card h3,
.discord-grid h3,
.featured-project h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p,
.guide-card li,
.discord-grid p {
  color: var(--muted);
}

.showcase {
  width: min(1420px, calc(100% - 32px));
  margin-bottom: 96px;
}

.screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  perspective: 1000px;
}

.screens picture,
.screens img,
.screenshot-frame {
  width: 100%;
}

.screenshot-frame {
  padding: 0;
  color: inherit;
  cursor: zoom-in;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.38);
  transition: transform 220ms ease, border-color 220ms ease;
}

.screens img {
  height: auto;
  object-fit: contain;
  backface-visibility: hidden;
}

.screenshot-frame:nth-child(1) {
  transform: rotate(-2deg) translateX(24px) scale(0.92);
  z-index: 1;
}

.screenshot-frame:nth-child(2) {
  transform: translateY(-12px) scale(1.04);
  z-index: 3;
}

.screenshot-frame:nth-child(3) {
  transform: rotate(2deg) translateX(-24px) scale(0.92);
  z-index: 1;
}

.screenshot-frame:hover,
.screenshot-frame:focus-visible {
  border-color: var(--border-hover);
  outline: none;
  z-index: 4;
}

.discord-count {
  display: inline-flex;
  width: fit-content;
  margin: 4px 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(88, 101, 242, 0.26);
  border-radius: 999px;
  color: #c7d2fe !important;
  background: rgba(88, 101, 242, 0.11);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 96px;
}

.guide-card {
  padding: 28px;
}

.guide-title {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.guide-title span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #050505;
  font-weight: 700;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.guide-card ol {
  margin: 0;
  padding-left: 22px;
}

.guide-card li + li {
  margin-top: 10px;
}

.discord-section {
  margin-bottom: 72px;
}

.discord-card {
  padding: clamp(26px, 5vw, 54px);
  overflow: hidden;
  position: relative;
}

.discord-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -30% 45%;
  height: 360px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.26), transparent 68%);
  pointer-events: none;
}

.discord-copy,
.discord-grid,
.featured-project,
.resource-row,
.discord-ending,
.discord-closing,
.discord-card .btn {
  position: relative;
  z-index: 1;
}

.lead {
  font-size: 1.16rem;
  color: var(--soft) !important;
}

.discord-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.discord-grid article,
.featured-project {
  padding: 20px;
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 18px;
  background: rgba(88, 101, 242, 0.07);
}

.resource-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.resource-row span {
  padding: 10px 12px;
  border: 1px solid rgba(5, 255, 247, 0.18);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(5, 255, 247, 0.06);
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}

.mc-section {
  margin-bottom: 90px;
}

.mc-card {
  padding: clamp(32px, 5vw, 64px);
  text-align: center;
  border-radius: 24px;
}

.mc-header {
  margin-bottom: 48px;
}

.mc-header h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
}

.mc-header .lead {
  color: var(--soft);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.mc-ip-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 200ms ease;
  font-family: inherit;
}

.mc-ip-box:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.mc-ip-box:active {
  transform: translateY(1px);
}

.mc-ip-box svg {
  width: 24px;
  height: 24px;
  color: #10b981;
}

.mc-ip-box .copy-icon {
  width: 20px;
  height: 20px;
  color: var(--soft);
  transition: color 200ms ease;
}

.mc-ip-box:hover .copy-icon {
  color: #fff;
}

.copy-tooltip {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #10b981;
  color: #111;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.mc-ip-box.copied .copy-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.mc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
  text-align: left;
}

.mc-features article {
  padding: 24px;
  border-radius: 16px;
}

.mc-features h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--text);
}

.mc-features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mc-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mc-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-weight: 600;
  font-size: 1.05rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.mc-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mc-vote p {
  margin: 0;
  color: var(--soft);
  font-weight: 500;
}

.faq-section {
  margin-bottom: 90px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 86vh;
  border: 1px solid var(--border-hover);
  border-radius: 14px;
  background: #111;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  cursor: pointer;
}

.footer img {
  border-radius: 12px;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible {
  animation: reveal-in 620ms ease both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(30px, -24px, 0) scale(1.06);
  }
}

@keyframes particle-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-120px, 80px, 0);
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0 0, 0% 50%;
  }

  50% {
    background-position: 0 0, 100% 50%;
  }
}

@keyframes title-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
    order: 2;
  }

  .hero-visual {
    order: 1;
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row,
  .hero-trust {
    justify-content: center;
  }

  .hero-demo-link {
    justify-content: center;
    width: 100%;
  }

  .topbar {
    align-items: center;
    flex-direction: row;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    justify-content: stretch;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .metric-strip,
  .guide-grid,
  .discord-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .mesh {
    width: 28rem;
  }

  .mesh-a {
    left: -15rem;
  }

  .mesh-b {
    right: -16rem;
  }

  .topbar,
  .section-shell,
  .metric-strip,
  .footer {
    width: min(100% - 24px, var(--max));
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    padding: 9px 14px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 0 4.5rem;
  }

  .metric-strip,
  .guide-grid,
  .discord-grid,
  .screens {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .screens {
    gap: 16px;
  }

  .screenshot-frame:nth-child(1),
  .screenshot-frame:nth-child(2),
  .screenshot-frame:nth-child(3) {
    transform: none;
  }

  .metric-strip {
    margin-bottom: 64px;
  }

  .feature-grid,
  .showcase,
  .guide-grid {
    margin-bottom: 72px;
  }
}

@media (max-width: 480px) {
  .hero-cta-row .btn,
  .hero-gen,
  .hero-download {
    width: 100%;
    min-height: 44px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@supports (content-visibility: auto) {
  .hero,
  .feature-grid,
  .guide-grid,
  .discord-section,
  .faq-section,
  .metric-strip {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

@keyframes border-gradient-sweep {
  0% {
    background-position: 0% 50%;
    opacity: 0.55;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.55;
  }
}

@keyframes navbar-glow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.12;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual {
    animation: none;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
