/* MasjidFundly Global Styles */
:root {
  --bg-gradient: linear-gradient(135deg, #030712 0%, #0f172a 50%, #1e293b 100%);
  --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #6366f1 50%, #ec4899 100%);
  --accent: #38bdf8;
  --accent-strong: #6366f1;
  --accent-soft: rgba(56, 189, 248, 0.18);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5f5;
  --text-muted: rgba(203, 213, 225, 0.72);
  --card-bg: rgba(15, 23, 42, 0.72);
  --card-border: rgba(148, 163, 184, 0.12);
  --shadow-soft: 0 20px 60px rgba(15, 118, 179, 0.25);
  --shadow-strong: 0 40px 120px rgba(99, 102, 241, 0.35);
  --spacing-section: clamp(4rem, 8vw, 7rem);
  --container-width: min(1200px, 92vw);
  --font-display: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: #020617;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(56, 189, 248, 0.12), transparent 45%),
    radial-gradient(ellipse at bottom left, rgba(236, 72, 153, 0.12), transparent 45%),
    var(--bg-gradient);
  z-index: -3;
}

.animated-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 18s infinite linear;
  z-index: -2;
}

@keyframes gridShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1.05);
  }
  50% {
    transform: translate3d(-40px, -30px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.05);
  }
}

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

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

.container {
  width: var(--container-width);
  margin: 0 auto;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.78);
  border-bottom: 1px solid rgba(99, 102, 241, 0.16);
}

.mobile-sheet {
  display: none;
  background: rgba(2, 6, 23, 0.94);
  border-top: 1px solid rgba(99, 102, 241, 0.18);
  padding: 1.5rem;
}

.mobile-sheet nav {
  display: grid;
  gap: 1rem;
}

.mobile-sheet nav a {
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--text-secondary);
}

.mobile-sheet nav a.cta-button {
  justify-content: center;
}

.nav-links a.active,
.mobile-sheet nav a.active {
  color: white;
}

#menu-toggle {
  display: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand .logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-gradient);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  box-shadow: var(--shadow-soft);
}

.brand span {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
  transform: translateY(-2px);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-strong);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(236, 72, 153, 0.45);
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: var(--spacing-section) 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-up"].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-right"].in-view {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-left"].in-view {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="zoom-in"] {
  transform: scale(0.96);
}

[data-animate="zoom-in"].in-view {
  opacity: 1;
  transform: scale(1);
}

.section-header {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

p {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero {
  padding-top: clamp(6rem, 12vw, 10rem);
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  padding: clamp(1rem, 3vw, 1.75rem);
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.4), transparent 55%);
  opacity: 0.35;
  transform: translateY(30px);
  animation: pulseGlow 6s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes pulseGlow {
  to {
    opacity: 0.6;
    transform: translateY(-20px);
  }
}

.hero-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-meta .stat {
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  min-width: 160px;
}

.hero-meta .stat strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.glow-card {
  position: relative;
  padding: 2.25rem;
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
  overflow: hidden;
  transition: transform 0.45s ease, border-color 0.45s ease;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -50% 30% 20% -30%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.45) 0%, rgba(56, 189, 248, 0) 60%);
  filter: blur(80px);
  opacity: 0.3;
  transition: opacity 0.45s ease;
  z-index: -1;
}

.glow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.3);
}

.glow-card:hover::before {
  opacity: 0.5;
}

.glow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.16);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.25rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
  align-items: center;
}

.media-card {
  position: relative;
  padding: 2.5rem;
  border-radius: 30px;
  background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.16), transparent 65%),
    rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: var(--shadow-soft);
}

.media-card .orb {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-gradient);
  filter: blur(18px);
  opacity: 0.45;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-16px, 20px, 0);
  }
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid rgba(99, 102, 241, 0.2);
}

.timeline-step {
  margin-bottom: 2rem;
  padding-left: 1rem;
  position: relative;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.16);
}

.testimonial {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
  display: grid;
  gap: 1.5rem;
}

.testimonial p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial .meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  padding: 1.75rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.14);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.cta-band {
  margin: var(--spacing-section) 0;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: 28px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.4), transparent 60%),
    rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: grid;
  gap: 1.5rem;
  justify-items: start;
  text-align: left;
}

footer.site-footer {
  margin-top: var(--spacing-section);
  padding: clamp(3rem, 6vw, 4rem) 0;
  background: rgba(2, 6, 23, 0.92);
  border-top: 1px solid rgba(99, 102, 241, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  color: var(--text-muted);
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
}

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

.footer-links strong {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.card-deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card-deck .card {
  padding: 2rem;
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
  position: relative;
  overflow: hidden;
}

.card .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.16);
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.card strong.price {
  display: block;
  font-size: 2.1rem;
  margin-bottom: 0.85rem;
  color: white;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--text-muted);
}

.card ul li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.6rem;
  background: var(--accent);
}

.card .card-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--accent);
}

.page-hero {
  padding-top: clamp(5rem, 10vw, 8rem);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.content-grid {
  display: grid;
  gap: 2rem;
}

.content-grid.two-column {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.content-section {
  padding: 2.25rem;
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.content-section h3 {
  margin-bottom: 1rem;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  color: var(--text-muted);
}

.list li {
  position: relative;
  padding-left: 1.5rem;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.table th,
.table td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
}

.table th {
  color: var(--text-secondary);
  font-weight: 600;
}

.badge-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.18);
  color: #f472b6;
  font-size: 0.8rem;
}

.floating-shapes span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
  animation: float 16s infinite ease-in-out;
}

.floating-shapes span:nth-child(1) {
  top: 10%;
  left: 12%;
  width: 180px;
  height: 180px;
  background: rgba(56, 189, 248, 0.45);
}

.floating-shapes span:nth-child(2) {
  top: 60%;
  right: 8%;
  width: 260px;
  height: 260px;
  background: rgba(99, 102, 241, 0.35);
  animation-duration: 18s;
}

.floating-shapes span:nth-child(3) {
  bottom: 14%;
  left: 25%;
  width: 140px;
  height: 140px;
  background: rgba(236, 72, 153, 0.3);
  animation-duration: 22s;
}

.media-scroller {
  display: grid;
  gap: 1.25rem;
}

.media-scroller .media-item {
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

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

.accordion-item {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  overflow: hidden;
  background: rgba(2, 6, 23, 0.72);
}

.accordion-trigger {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content p {
  padding: 0 1.5rem 1.25rem;
}

.accordion-item.active .accordion-content {
  max-height: 240px;
}

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

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-primary);
  font-size: 1rem;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.4);
  border-color: rgba(56, 189, 248, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(2, 6, 23, 0.8);
  color: var(--text-secondary);
  font-weight: 600;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.36);
}

.chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.logo-grid .logo-item {
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.12);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.8);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-info {
  display: grid;
  gap: 1rem;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--accent);
}

.cta-stack {
  display: grid;
  gap: 1rem;
}

.cta-stack .cta-button,
.cta-stack .btn-secondary {
  justify-content: center;
}

.badge-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.badge-line .badge-trend {
  margin: 0;
}

.grid-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.grid-mosaic .mosaic-item {
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.floating-card {
  position: relative;
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.12);
  padding: 2.5rem;
  overflow: hidden;
}

.floating-card::after {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -40%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, transparent 65%);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.floating-card:hover::after {
  opacity: 0.5;
}

.highlight-bar {
  padding: 1rem 1.4rem;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--text-secondary);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.metric-glow {
  display: grid;
  gap: 1rem;
}

.metric-glow .metric {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.12);
  position: relative;
  overflow: hidden;
}

.metric-glow .metric::after {
  content: "";
  position: absolute;
  inset: 30% -40% -30% 40%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.34), transparent 60%);
  opacity: 0.3;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.badge-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.badge-stack .badge {
  background: rgba(56, 189, 248, 0.18);
  color: var(--text-secondary);
}

.table-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  list-style: none;
  position: relative;
  padding-left: 3.5rem;
  color: var(--text-muted);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.18);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--accent);
}

.stat-highlight {
  display: grid;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.notice {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(251, 191, 36, 0.12);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.28);
}

.hero-visual {
  position: relative;
  padding: 2.5rem;
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(99, 102, 241, 0.22);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20% 20% 40% -10%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 60%);
  opacity: 0.4;
}

.hero-visual .dashboard {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-visual .dashboard-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.hero-visual .dashboard-card {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.28);
}

.hero-visual-content {
  display: grid;
  gap: 1.5rem;
}

.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.2);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

.recent-posts {
  display: grid;
  gap: 1.5rem;
}

.recent-posts .post {
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.post .meta {
  display: flex;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.download-card {
  padding: 2rem;
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
  display: grid;
  gap: 1rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  border-radius: 999px;
  padding: 0.85rem 1rem;
}

.newsletter-form button {
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  border: none;
  font-weight: 600;
  background: var(--accent-gradient);
  color: white;
  cursor: pointer;
}

.text-sm {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.text-xs {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chip-labels {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip-labels span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.support-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.support-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.16);
  color: #4ade80;
  font-size: 0.8rem;
}

.stat-ribbon {
  margin-top: 1.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-nav a {
  padding: 0.65rem 1.05rem;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.page-nav a:hover {
  background: rgba(99, 102, 241, 0.18);
}

.quote-block {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.72);
  border-left: 3px solid rgba(56, 189, 248, 0.5);
  color: var(--text-secondary);
  font-style: italic;
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.data-bubble {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--text-secondary);
}

.table-responsive {
  overflow-x: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.18);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.floating-callout {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
  position: relative;
  overflow: hidden;
}

.floating-callout::after {
  content: "";
  position: absolute;
  inset: 30% -40% -30% 40%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent 60%);
  opacity: 0.35;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

.badge-ghost {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.grid-auto .panel {
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.callout {
  padding: 1.75rem;
  border-radius: 18px;
  background: rgba(56, 189, 248, 0.14);
  color: var(--text-secondary);
  border: 1px solid rgba(56, 189, 248, 0.28);
}

.icon-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-bullet .icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.18);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.pill-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.pill-row span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.grid-feature {
  display: grid;
  gap: 1.5rem;
}

.grid-feature article {
  padding: 1.8rem;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.grid-feature article h3 {
  margin-bottom: 0.85rem;
}

.grid-feature article p {
  margin-bottom: 0;
}

.news-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.news-strip span {
  color: white;
  font-weight: 600;
}

.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-lines::before,
.grid-lines::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(148, 163, 184, 0.1);
  transform: skewY(10deg);
  opacity: 0.3;
}

.grid-lines::after {
  transform: skewY(-10deg);
}

.hero-support {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  #menu-toggle {
    display: inline-flex !important;
  }

  .mobile-sheet {
    display: none;
  }

  .mobile-sheet.open {
    display: block;
  }

  header.site-header {
    padding: 0 1.25rem;
  }

  .hero-meta {
    gap: 0.75rem;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: clamp(3rem, 12vw, 4rem) 0;
  }

  .hero-copy {
    padding: 1.25rem;
  }

  .glow-card,
  .card-deck .card,
  .content-section,
  .support-card {
    padding: 1.6rem;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-step {
    padding-left: 0.75rem;
  }

  .timeline-step::before {
    left: -2rem;
  }
}

