:root {
  --bg-0: #060a12;
  --bg-1: #091021;
  --bg-2: #0d1730;
  --panel: rgba(10, 18, 35, 0.74);
  --panel-strong: rgba(11, 21, 42, 0.9);
  --line: rgba(122, 229, 255, 0.24);
  --line-soft: rgba(122, 229, 255, 0.12);
  --text: #dff6ff;
  --muted: #91aec2;
  --cyan: #6cf2ff;
  --cyan-bright: #b6fbff;
  --blue: #3f87ff;
  --orange: #ff8f38;
  --danger: #ff6b6b;
  --success: #4fffb0;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.34);
  --shadow-neon: 0 0 0 1px rgba(108, 242, 255, 0.15), 0 0 22px rgba(63, 135, 255, 0.24);
  --duration-fast: 180ms;
  --duration-mid: 320ms;
  --duration-slow: 700ms;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: "Rajdhani", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px circle at 15% -10%, rgba(108, 242, 255, 0.15), transparent 45%),
    radial-gradient(900px circle at 85% 0%, rgba(255, 143, 56, 0.12), transparent 42%),
    linear-gradient(170deg, var(--bg-0), var(--bg-1) 48%, var(--bg-2));
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: -60px;
  z-index: 2200;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0d1f3f;
  color: var(--cyan-bright);
  text-decoration: none;
  font-weight: 700;
  transition: top var(--duration-fast) ease;
}

.skip-link:focus {
  top: 10px;
}

.grid-layer {
  position: fixed;
  inset: 0;
  z-index: -5;
  background-image:
    linear-gradient(rgba(108, 242, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 242, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.7), transparent 78%);
}

.glow-layer {
  position: fixed;
  inset: -30vh -20vw;
  z-index: -4;
  background:
    conic-gradient(from 120deg at 20% 40%, rgba(108, 242, 255, 0.08), transparent 40%),
    conic-gradient(from -60deg at 80% 65%, rgba(255, 143, 56, 0.08), transparent 35%);
  animation: rotateGlow 32s linear infinite;
  filter: blur(20px);
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 16% 20%, rgba(63, 135, 255, 0.16), transparent 32%),
    radial-gradient(circle at 78% 28%, rgba(108, 242, 255, 0.15), transparent 34%),
    radial-gradient(circle at 48% 86%, rgba(255, 143, 56, 0.14), transparent 30%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(170, 230, 255, 0.6) 0.45px, transparent 0.45px);
  background-size: 2px 2px;
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(108, 242, 255, 0.22), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.7;
  transition: opacity var(--duration-fast) ease;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(108, 242, 255, 0.18);
  backdrop-filter: blur(14px);
  background: rgba(7, 14, 28, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 242, 255, 0.8), transparent);
  transform: scaleX(0.8);
  opacity: 0.8;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(108, 242, 255, 0.22));
}

.header-cta {
  font-family: "Orbitron", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cyan-bright);
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(108, 242, 255, 0.45);
  background: linear-gradient(140deg, rgba(108, 242, 255, 0.18), rgba(63, 135, 255, 0.14));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(182, 251, 255, 0.2);
  transition: transform var(--duration-mid) ease, box-shadow var(--duration-mid) ease, border-color var(--duration-mid) ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 26px rgba(63, 135, 255, 0.35);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(108, 242, 255, 0.34);
  outline-offset: 2px;
}

main {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 38px;
  padding: 78px 0 58px;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 3px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--cyan));
  box-shadow: 0 0 16px rgba(255, 143, 56, 0.45);
}

.eyebrow {
  margin: 0 0 16px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-copy h1 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  color: var(--text);
  text-shadow: 0 0 22px rgba(108, 242, 255, 0.22);
}

.hero-subtitle {
  margin: 22px 0 30px;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.3vw, 1.2rem);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(150deg, rgba(8, 16, 34, 0.82), rgba(11, 23, 46, 0.7));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  font-weight: 600;
  font-size: 1.03rem;
  color: #d2ecff;
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-mid) ease, border-color var(--duration-mid) ease, box-shadow var(--duration-mid) ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow-soft), 0 0 22px rgba(63, 135, 255, 0.22);
}

.feature-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: var(--orange);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-card {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(13, 24, 47, 0.9), rgba(11, 21, 42, 0.94)),
    linear-gradient(145deg, rgba(108, 242, 255, 0.12), transparent 42%);
  border: 1px solid var(--line);
  padding: 28px 24px;
  box-shadow: var(--shadow-neon), 0 24px 62px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -25%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(108, 242, 255, 0.16), transparent 64%);
  pointer-events: none;
}

.lead-card h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  font-size: 1.45rem;
  line-height: 1.22;
  color: var(--cyan-bright);
}

.lead-note {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 1rem;
}

form {
  display: grid;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 6px;
}

label {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #c6e7fb;
}

.required-mark {
  color: #ff7272;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(108, 242, 255, 0.28);
  background: rgba(5, 12, 24, 0.78);
  color: #e1f6ff;
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  font: inherit;
  font-size: 1.02rem;
  transition: border-color var(--duration-mid) ease, box-shadow var(--duration-mid) ease, background var(--duration-mid) ease;
}

input::placeholder {
  color: #6f92aa;
}

input:focus-visible {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(108, 242, 255, 0.2);
  background: rgba(7, 15, 31, 0.88);
}

.field-hint {
  margin: 0;
  color: #7fa4bb;
  font-size: 0.8rem;
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.82rem;
  min-height: 1.1rem;
}

input[aria-invalid="true"] {
  border-color: rgba(255, 107, 107, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.submit-btn {
  margin-top: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(130deg, #129fb0, #2f69ff 58%, #ff8f38);
  background-size: 180% 180%;
  color: #041019;
  padding: 13px 16px;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--duration-mid) ease, box-shadow var(--duration-mid) ease, filter var(--duration-mid) ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 22px rgba(108, 242, 255, 0.24);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  animation: pulseGradient 7s ease-in-out infinite;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42), 0 0 30px rgba(63, 135, 255, 0.35);
}

.submit-btn:disabled {
  opacity: 0.78;
  cursor: wait;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(3, 14, 25, 0.32);
  border-top-color: #041019;
  animation: spin 800ms linear infinite;
  display: none;
}

.submit-btn.is-loading .btn-spinner {
  display: inline-block;
}

.trust-note {
  margin: 8px 0 0;
  font-size: 0.84rem;
  color: #7ea1b7;
}

.location {
  padding: 20px 0 74px;
}

.section-head h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  color: var(--cyan-bright);
}

.map-shell {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(7, 16, 30, 0.82);
  box-shadow: var(--shadow-neon), 0 16px 50px rgba(0, 0, 0, 0.36);
}

.map-shell iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-top: 1px solid rgba(108, 242, 255, 0.26);
  background: linear-gradient(130deg, rgba(19, 160, 177, 0.94), rgba(51, 106, 255, 0.94));
  color: var(--cyan-bright);
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  transition: filter var(--duration-mid) ease;
}

.map-btn:hover,
.map-btn:focus-visible {
  filter: brightness(1.1);
}

.site-footer {
  border-top: 1px solid rgba(108, 242, 255, 0.15);
  background: rgba(4, 11, 21, 0.8);
  text-align: center;
  color: #7b9ab1;
  padding: 24px 14px 30px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(108, 242, 255, 0.35);
  background: linear-gradient(145deg, rgba(108, 242, 255, 0.18), rgba(11, 22, 44, 0.72));
  color: var(--cyan-bright);
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  cursor: pointer;
  transition: transform var(--duration-mid) ease, box-shadow var(--duration-mid) ease;
  box-shadow: inset 0 0 0 1px rgba(182, 251, 255, 0.1), 0 10px 22px rgba(0, 0, 0, 0.28);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(182, 251, 255, 0.14), 0 14px 28px rgba(0, 0, 0, 0.3);
}

.theme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fef08a, #f59e0b);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.55);
}

.liquid-glass {
  position: relative;
  isolation: isolate;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  overflow: hidden;
}

.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.12), transparent 30%, rgba(108, 242, 255, 0.08));
  pointer-events: none;
  z-index: 0;
}

.liquid-glass > * {
  position: relative;
  z-index: 1;
}

.faq-corner {
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
  display: flex;
  justify-content: center;
  padding: 8px 0 80px;
}

.faq-cluster {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0 max(14px, 2vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.faq-cluster > * {
  min-height: 300px;
}

.join-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(11, 22, 44, 0.78), rgba(8, 16, 32, 0.86));
  box-shadow: var(--shadow-neon), 0 18px 42px rgba(0, 0, 0, 0.36);
  padding: 22px 22px 18px;
}

.join-card h2 {
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.24rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cyan-bright);
}

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

.join-points li {
  padding: 12px 12px 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(108, 242, 255, 0.16);
  background: rgba(9, 19, 36, 0.56);
  color: #cbe9ff;
  font-size: 1.04rem;
}

.join-points strong {
  color: var(--cyan-bright);
}

.faq-card {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(11, 22, 44, 0.78), rgba(8, 16, 32, 0.86));
  box-shadow: var(--shadow-neon), 0 18px 42px rgba(0, 0, 0, 0.36);
  padding: 22px 22px 18px;
}

.faq-card h2 {
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.24rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cyan-bright);
}

.faq-card details {
  border-top: 1px solid rgba(108, 242, 255, 0.16);
  padding: 12px 0;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.06rem;
  color: #d8f2ff;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--orange);
}

.faq-card details[open] summary::after {
  content: "-";
}

.faq-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  animation: reveal 850ms cubic-bezier(0.2, 0.84, 0.18, 1) forwards;
}

.delay-1 {
  animation-delay: 140ms;
}

.delay-2 {
  animation-delay: 260ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseGradient {
  0%,
  100% {
    background-position: 0% 45%;
  }
  50% {
    background-position: 100% 60%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-copy::before {
    display: none;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .lead-card {
    max-width: 680px;
  }

  .faq-corner {
    justify-content: stretch;
    left: 0;
    width: 100%;
  }

  .faq-card {
    width: 100%;
  }

  .faq-cluster {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .faq-cluster > * {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 11px 0;
  }

  .logo img {
    height: 44px;
  }

  .header-cta {
    font-size: 0.74rem;
    padding: 9px 11px;
  }

  .theme-toggle {
    padding: 8px 10px;
    font-size: 0.64rem;
  }

  .hero {
    gap: 26px;
    padding: 42px 0 36px;
  }

  body:not([data-theme="light"]) .hero-subtitle,
  body[data-theme="dark"] .hero-subtitle {
    color: #b9d9ec;
  }

  body:not([data-theme="light"]) .lead-note,
  body[data-theme="dark"] .lead-note,
  body:not([data-theme="light"]) .field-hint,
  body[data-theme="dark"] .field-hint,
  body:not([data-theme="light"]) .trust-note,
  body[data-theme="dark"] .trust-note,
  body:not([data-theme="light"]) .faq-card p,
  body[data-theme="dark"] .faq-card p,
  body:not([data-theme="light"]) .site-footer,
  body[data-theme="dark"] .site-footer {
    color: #a8c8dd;
  }

  body:not([data-theme="light"]) .faq-card summary,
  body[data-theme="dark"] .faq-card summary,
  body:not([data-theme="light"]) .join-points li,
  body[data-theme="dark"] .join-points li {
    color: #e6f7ff;
  }

  body:not([data-theme="light"]) label,
  body[data-theme="dark"] label {
    color: #dcf3ff;
  }

  body:not([data-theme="light"]) input,
  body[data-theme="dark"] input {
    color: #effaff;
    border-color: rgba(134, 220, 255, 0.5);
    background: rgba(5, 14, 30, 0.9);
  }

  body:not([data-theme="light"]) .feature-card,
  body[data-theme="dark"] .feature-card {
    color: #e6f6ff;
    border-color: rgba(131, 217, 255, 0.28);
  }

  body:not([data-theme="light"]) .site-header,
  body[data-theme="dark"] .site-header {
    background: rgba(7, 14, 28, 0.88);
  }

  .lead-card {
    padding: 22px 18px;
  }

  .map-shell iframe {
    height: 300px;
  }
}

body[data-theme="light"] {
  --bg-0: #eaf7ff;
  --bg-1: #f6fbff;
  --bg-2: #edf4ff;
  --line: rgba(30, 82, 144, 0.22);
  --line-soft: rgba(30, 82, 144, 0.14);
  --text: #0f2238;
  --muted: #2f4f73;
  --cyan: #0b6fa8;
  --cyan-bright: #0c365f;
  --orange: #d56a13;
  --shadow-soft: 0 12px 28px rgba(24, 54, 89, 0.14);
  --shadow-neon: 0 0 0 1px rgba(30, 82, 144, 0.14), 0 10px 26px rgba(24, 54, 89, 0.13);
}

body[data-theme="light"] .site-header {
  background: rgba(246, 251, 255, 0.78);
  border-bottom-color: rgba(30, 82, 144, 0.2);
}

body[data-theme="light"] .header-cta,
body[data-theme="light"] .theme-toggle {
  color: #113b64;
  border-color: rgba(17, 59, 100, 0.25);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(230, 243, 255, 0.9));
  box-shadow: 0 10px 24px rgba(23, 66, 111, 0.16);
}

body[data-theme="light"] .theme-dot {
  background: linear-gradient(145deg, #1d4ed8, #38bdf8);
  box-shadow: 0 0 10px rgba(29, 78, 216, 0.4);
}

body[data-theme="light"] .hero-copy h1,
body[data-theme="light"] .lead-card h2,
body[data-theme="light"] .section-head h2,
body[data-theme="light"] .faq-card h2 {
  color: #0f2742;
  text-shadow: none;
}

body[data-theme="light"] .feature-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(241, 248, 255, 0.86));
  color: #1a3758;
  border-color: rgba(30, 82, 144, 0.18);
}

body[data-theme="light"] .lead-card,
body[data-theme="light"] .map-shell,
body[data-theme="light"] .faq-card,
body[data-theme="light"] .join-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.84), rgba(235, 245, 255, 0.78));
  border-color: rgba(30, 82, 144, 0.18);
}

body[data-theme="light"] label {
  color: #17395d;
}

body[data-theme="light"] input {
  color: #0f2238;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(30, 82, 144, 0.26);
}

body[data-theme="light"] input::placeholder {
  color: #6484a9;
}

body[data-theme="light"] .field-hint,
body[data-theme="light"] .trust-note,
body[data-theme="light"] .site-footer,
body[data-theme="light"] .faq-card p {
  color: #3b5d82;
}

body[data-theme="light"] .faq-card summary {
  color: #143a62;
}

body[data-theme="light"] .join-points li {
  background: rgba(241, 248, 255, 0.85);
  color: #224366;
  border-color: rgba(30, 82, 144, 0.2);
}

body[data-theme="light"] .join-points strong {
  color: #0f3559;
}

body[data-theme="light"] .map-btn {
  color: #f7fbff;
  background: linear-gradient(130deg, rgba(23, 105, 186, 0.92), rgba(17, 148, 173, 0.92));
}

@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;
  }

  .cursor-glow {
    display: none;
  }
}
