@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --color-bg: #050505;
  --color-card: #0f0f11;
  --color-border: #1f1f23;
  --color-cyan: #00f0ff;
  --color-gold: #ffd700;
  --color-purple: #bc13fe;
  --color-white: #ffffff;
  --color-text: #e5e7eb;
  --color-muted: #9ca3af;
  --color-muted-2: #6b7280;
  --color-success: #34d399;
  --shadow-glow: 0 0 24px rgba(0, 240, 255, 0.18);
  --shadow-glow-strong: 0 0 40px rgba(0, 240, 255, 0.26);
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1240px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", Inter, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(188, 19, 254, 0.08), transparent 28%),
    radial-gradient(circle at top left, rgba(0, 240, 255, 0.08), transparent 30%),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

select option{
    padding: 5px 0;
    background: #1B1B1D;
}
.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.page-shell {
  padding-top: 108px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
  padding: 24px 0;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 159, 227, 0.16));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--color-muted);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop .menu-item {
  list-style: none;
}

.nav-desktop .menu-item > a {
  display: inline-flex;
  align-items: center;
}

.nav-link,
.nav-parent,
.nav-desktop .menu-item > a {
  color: #d1d5db;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-parent:hover,
.nav-link.is-active,
.nav-parent.is-active,
.nav-desktop .current-menu-item > a,
.nav-desktop .current-menu-parent > a,
.nav-desktop .current_page_item > a,
.nav-desktop .current_page_parent > a {
  color: var(--color-cyan);
}

.nav-link.is-active::after,
.nav-desktop .current-menu-item > a::after,
.nav-desktop .current-menu-parent > a::after,
.nav-desktop .current_page_item > a::after,
.nav-desktop .current_page_parent > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--color-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.45);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-parent-link {
  padding-right: 2px;
}

.nav-parent {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .chevron,
.nav-dropdown.is-open .chevron {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  width: 260px;
  background: rgba(15, 15, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-panel);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(14px);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 14px 18px;
  color: #d1d5db;
  font-size: 0.92rem;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.is-active,
.dropdown-menu .current-menu-item > a,
.dropdown-menu .current-menu-parent > a,
.dropdown-menu .current_page_item > a,
.dropdown-menu .current_page_parent > a {
  color: var(--color-cyan);
  border-left-color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.04);
}

.cta-button,
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-button,
.btn-primary {
  background: var(--color-cyan);
  color: #000;
  border: 1px solid rgba(0, 240, 255, 0.65);
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
}

.cta-button:hover,
.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.25);
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle::before { margin-bottom: 4px; }
.nav-toggle::after { margin-top: 4px; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  display: none;
  margin-top: 16px;
  background: rgba(15, 15, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel a,
.mobile-dropdown-toggle {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  color: #d1d5db;
  text-align: left;
  padding: 16px 18px;
  font-size: 0.96rem;
}

.mobile-dropdown-toggle {
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu a {
  padding-left: 34px;
  color: var(--color-muted);
}

.mobile-panel .is-active {
  color: var(--color-cyan);
}

.mobile-dropdown-toggle {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--color-cyan);
  padding-top: 10px;
  padding-bottom: 10px;
}

.mobile-panel .cta-button {
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 240, 255, 0.18), transparent 18%),
    radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.2), transparent 25%),
    radial-gradient(circle at 80% 25%, rgba(188, 19, 254, 0.14), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(255, 215, 0, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 32%),
    #050505;
}

.hero::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 92%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.7);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.85);
  animation: floatParticle linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  padding: 120px 0 80px;
}

.hero-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.14), rgba(188, 19, 254, 0.08) 45%, transparent 72%);
  filter: blur(40px);
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  margin-bottom: 22px;
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.28);
}

.hero h1,
.page-hero h1,
.section-title,
.cta-card h2,
.panel-title {
  font-family: var(--font-display);
  color: var(--color-white);
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0 auto;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
  max-width: 980px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.type-cursor {
  color: var(--color-cyan);
  animation: blink 1s step-end infinite;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-secondary {
  border-color: rgba(0, 240, 255, 0.6);
  color: var(--color-cyan);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 0;
  padding-inline: 28px;
}

.hero .btn-primary {
  border-radius: 12px;
  padding-inline: 24px;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 2;
}

.grid-3,
.grid-4,
.grid-2,
.feature-grid,
.contact-grid,
.footer-grid,
.showcase-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card,
.panel,
.stat-card,
.image-card,
.resource-card,
.cta-card,
.form-shell,
.info-card {
  background: rgba(15, 15, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
}

.card,
.panel,
.resource-card,
.info-card {
  padding: 28px;
}

.card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.18), transparent 70%);
}

.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 22%, rgba(0, 240, 255, 0.2) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.35s ease, transform 0.45s ease;
  pointer-events: none;
}

.card:hover,
.panel:hover,
.resource-card:hover,
.image-card:hover,
.form-shell:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(0, 240, 255, 0.06);
}

.card:hover::after {
  opacity: 1;
  transform: translateX(45%);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover .icon-badge,
.resource-card:hover .icon-badge {
  transform: scale(1.08);
  border-color: rgba(0, 240, 255, 0.32);
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.18);
}

.icon-badge.gold { color: var(--color-gold); }
.icon-badge.purple { color: #c084fc; }

.card h3,
.panel h3,
.resource-card h3,
.image-card h3,
.info-card h3 {
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: 1.3rem;
  transition: color 0.25s ease;
}

.card:hover h3,
.resource-card:hover h3 {
  color: var(--color-cyan);
}

.card p,
.panel p,
.resource-card p,
.info-card p,
.copy p,
.copy li,
.table-wrap td,
.table-wrap th {
  color: var(--color-muted);
  line-height: 1.7;
}

.learn-more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.card:hover .learn-more {
  color: var(--color-white);
  gap: 12px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.gradient-text {
  background: linear-gradient(90deg, var(--color-cyan), #fff, var(--color-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-text {
  background: linear-gradient(90deg, var(--color-gold), #fef08a, #ca8a04);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.65), rgba(5, 5, 5, 0.98)),
    center / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 45%, rgba(0, 240, 255, 0.12), transparent 24%),
    radial-gradient(circle at 78% 48%, rgba(188, 19, 254, 0.08), transparent 28%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.list-check,
.copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.list-check li,
.copy ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.list-check li::before,
.copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.stats-panel {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  overflow: visible;
}

.stats-panel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2), rgba(188, 19, 254, 0.12) 45%, transparent 72%);
  filter: blur(18px);
}

.stats-head,
.stat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.online {
  color: var(--color-success);
  text-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
}

.meter {
  height: 7px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.meter > span {
  display: block;
  height: 100%;
  width: 0;
  transition: width 0.5s ease;
}

.meter-cyan > span {
  background: var(--color-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
}

.meter-purple > span {
  background: #8b5cf6;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.35);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-label {
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.stat-value {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  text-align: center;
  background: linear-gradient(135deg, #111827, #000);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.65;
}

.cta-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-card .btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.cta-card .btn-primary:hover {
  background: #e5e7eb;
  border-color: #e5e7eb;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  text-align: center;
  margin-bottom: 72px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin: 0 0 18px;
}

.page-hero p,
.section-head p {
  color: var(--color-muted);
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  padding: 18px 20px;
  text-align: left;
}

.table-wrap thead th {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-wrap tbody tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.table-wrap tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.text-cyan { color: var(--color-cyan); }
.text-purple { color: #c084fc; }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }

.form-shell {
  padding: 30px;
  background: rgba(15, 15, 17, 0.92);
}

.form-shell .btn-primary {
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.22);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.92rem;
  color: #c2c8d0;
  font-weight: 500;
}

.input,
.select,
.textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.input::placeholder,
.textarea::placeholder {
  color: #7b8491;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(0, 240, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.08);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.form-feedback {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.18);
  color: #cffafe;
  display: none;
}

.form-feedback.is-visible {
  display: block;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 58%);
}

.info-list {
  display: grid;
  gap: 22px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  width: 24px;
  height: 24px;
  color: var(--color-cyan);
  flex: 0 0 auto;
  margin-top: 2px;
}

.map-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f2937, #111827);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.resource-card {
  text-align: center;
}

.resource-card p {
  font-size: 0.94rem;
}

.resource-link {
  color: var(--color-cyan);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.resource-link:hover {
  text-decoration: underline;
  color: #b9fbff;
}

.site-footer {
  margin-top: 56px;
  padding: 72px 0 28px;
  background: rgba(15, 15, 17, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  margin-bottom: 36px;
}

.footer-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.15rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-list a,
.footer-list span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.footer-list a:hover {
  color: var(--color-cyan);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  color: var(--color-cyan);
  border-color: rgba(0, 240, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.14);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-muted-2);
  font-size: 0.82rem;
}

.footer-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes floatParticle {
  from {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  to {
    transform: translate3d(var(--drift-x, 0), -110vh, 0) scale(1.2);
    opacity: 0;
  }
}

.learn-more span:last-child {
  transition: transform 0.2s ease;
}

.card:hover .learn-more span:last-child {
  transform: translateX(4px);
}

.home-solution-card {
  padding: 32px;
}

.home-solution-card .icon-badge {
  margin-bottom: 22px;
}

.home-solution-card p {
  margin-bottom: 8px;
}

.home-solutions-grid .card {
  min-height: 100%;
}

.stats-panel .stat-meta {
  color: #cbd5e1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.stats-panel .stat-meta span:last-child {
  color: var(--color-white);
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--color-cyan);
  margin-top: 1px;
  flex: 0 0 auto;
}

.footer-brand-note {
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  margin-top: 12px;
}

.footer-description {
  color: var(--color-muted);
  max-width: 320px;
}

.hero .btn-secondary,
.hero .btn-primary {
  min-width: 220px;
}

.hero .btn-secondary {
  justify-content: space-between;
}

.hero .btn-secondary::after {
  content: "→";
  transition: transform 0.2s ease;
}

.hero .btn-secondary:hover::after {
  transform: translateX(4px);
}

.copy .btn-ghost {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.copy .btn-ghost:hover {
  background: rgba(0, 240, 255, 0.06);
}

.resource-card .icon-badge,
.info-card .icon-badge {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.info-card strong,
.copy strong {
  color: var(--color-white);
}

.form-shell h2,
.form-shell h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.image-overlay p {
  margin: 0;
  color: #d1d5db;
}

.image-overlay h3 {
  margin-bottom: 6px;
}

.panel-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.page-hero .gradient-text,
.page-hero .gold-text {
  display: inline-block;
}

.footer-meta a:hover {
  color: var(--color-cyan);
}

.footer-bottom p {
  margin: 0;
}

.form-shell p,
.info-card p,
.resource-card p {
  margin-top: 0;
}

.info-card h3,
.resource-card h3,
.form-shell h3 {
  margin-top: 0;
}

.contact-grid > .form-shell,
.contact-grid > .panel,
.contact-grid > .copy,
.contact-grid > .info-list,
.footer-grid > div:first-child {
  min-width: 0;
}

.home-solutions-grid {
  position: relative;
}

.home-solutions-grid::before {
  content: "";
  position: absolute;
  inset: -28px -20px auto;
  height: 180px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.home-solution-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%),
    rgba(15, 15, 17, 0.9);
}

.home-solution-card:hover {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(0, 240, 255, 0.1), 0 0 34px rgba(0, 240, 255, 0.12);
}

.highlight-panel .copy {
  position: relative;
}

.highlight-panel .copy::after {
  content: "";
  position: absolute;
  left: -24px;
  top: -20px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.16), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.highlight-panel .section-title {
  max-width: 540px;
}

.highlight-panel .stats-panel {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 240, 255, 0.08);
}

.page-hero {
  position: relative;
  padding: 18px 0 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: min(420px, 72vw);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 240, 255, 0.14), rgba(188, 19, 254, 0.06) 48%, transparent 74%);
  filter: blur(22px);
  z-index: -1;
}

.page-hero p {
  position: relative;
}

.contact-grid > .copy,
.contact-grid > .info-list,
.contact-grid > .panel,
.contact-grid > .form-shell {
  position: relative;
}

.contact-grid > .copy::before,
.contact-grid > .info-list::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.resource-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%),
    rgba(15, 15, 17, 0.9);
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.resource-card:hover .resource-link::after {
  transform: translateX(4px);
}

.info-card,
.contact-grid > .panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%),
    rgba(15, 15, 17, 0.9);
}

.map-placeholder {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 16px 36px rgba(0, 0, 0, 0.2);
}

.site-footer .brand + p {
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  margin-top: 12px;
}

.site-footer .brand + p + p {
  color: var(--color-muted);
  max-width: 320px;
}

.site-footer .footer-list a,
.site-footer .footer-list span {
  transition: color 0.2s ease;
}

.panel > .contact-grid > .form-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.panel > .contact-grid > .form-shell:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .grid-4,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .feature-grid,
  .grid-2,
  .contact-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    margin: 24px auto 0;
  }
}

@media (max-width: 840px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .hero-inner { padding-top: 140px; }
  .page-shell { padding-top: 96px; }
  .mobile-panel .cta-button { margin: 16px 18px 18px; width: calc(100% - 36px); }
}

@media (max-width: 640px) {
  .container { width: min(var(--max-width), calc(100% - 24px)); }
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid,
  .grid-4 { grid-template-columns: 1fr; }
  .cta-card,
  .form-shell,
  .panel,
  .card,
  .resource-card,
  .info-card { padding: 22px; }
  .brand-mark { width: 132px; }
  .brand-copy { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 4.2rem); }
}
