:root {
  --bg: #0b1f4a;
  --bg-elevated: rgba(15, 23, 42, 0.88);
  --bg-elevated-soft: rgba(15, 23, 42, 0.82);
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.12);
  --accent-strong: #6366f1;
  --accent-gradient: linear-gradient(135deg, #4f46e5, #14b8a6);
  --border-subtle: rgba(148, 163, 184, 0.35);
  --border-strong: rgba(148, 163, 184, 0.6);
  --text-primary: #0f172a;
  --text-muted: #4b5563;
  --text-soft: #6b7280;
  --text-inverse: #f9fafb;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.55);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #020617;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}

.hero-brand,
.section-header h2,
.logo-text-only {
  font-family: "Press Start 2P", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:not([data-sky-mode]),
body[data-sky-mode="day"] {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.4) 0%, #93c5fd 35%, transparent 65%),
    linear-gradient(to bottom, #2563eb 0%, #3b82f6 22%, #60a5fa 48%, #93c5fd 75%, #bae6fd 100%);
}

body[data-sky-mode="night"] {
  background:
    radial-gradient(circle at 75% 0%, rgba(248, 250, 252, 0.25) 0%, transparent 55%),
    linear-gradient(to bottom, #020617 0%, #020617 35%, #0b1f4a 65%, #1e40af 100%);
}

body[data-sky-mode="night"] {
  --text-primary: #e5e7eb;
  --text-muted: #e5e7eb;
  --text-soft: #94a3b8;
}

body[data-sky-mode="night"] h1,
body[data-sky-mode="night"] h2,
body[data-sky-mode="night"] h3,
body[data-sky-mode="night"] .logo-text-only {
  color: #f9fafb;
}

.sky {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

body[data-sky-mode="night"] .sky {
  background:
    radial-gradient(circle at 15% 20%, rgba(248, 250, 252, 0.8) 0 1.5px, transparent 2px),
    radial-gradient(circle at 75% 18%, rgba(248, 250, 252, 0.95) 0 1.7px, transparent 2px),
    radial-gradient(circle at 40% 12%, rgba(248, 250, 252, 0.7) 0 1.3px, transparent 2px),
    radial-gradient(circle at 20% 32%, rgba(248, 250, 252, 0.8) 0 1.4px, transparent 2px),
    radial-gradient(circle at 88% 30%, rgba(248, 250, 252, 0.9) 0 1.3px, transparent 2px),
    radial-gradient(circle at 60% 40%, rgba(248, 250, 252, 0.7) 0 1.2px, transparent 2px);
  background-size:
    420px 420px,
    520px 520px,
    460px 460px,
    380px 380px,
    540px 540px,
    500px 500px;
  animation: stars-slow-pan 120s linear infinite;
}

.sky-glass {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.26) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}

body[data-sky-mode="night"] .sky::before,
body[data-sky-mode="night"] .sky::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

body[data-sky-mode="night"] .sky::before {
  /* larger planet */
  width: 110px;
  height: 110px;
  top: 16vh;
  right: 12vw;
  background: radial-gradient(circle at 30% 25%, #f9fafb 0%, #fb7185 35%, #7c2d12 80%);
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.9),
    0 18px 40px rgba(15, 23, 42, 0.9);
  animation: planet-orbit-1 46s ease-in-out infinite alternate;
}

body[data-sky-mode="night"] .sky::after {
  /* smaller planet */
  width: 64px;
  height: 64px;
  top: 32vh;
  left: 14vw;
  background: radial-gradient(circle at 30% 20%, #e0f2fe 0%, #38bdf8 35%, #1d4ed8 80%);
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.9),
    0 14px 30px rgba(15, 23, 42, 0.85);
  animation: planet-orbit-2 38s ease-in-out infinite alternate;
}

@keyframes planet-orbit-1 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-18px, 10px, 0) rotate(-2deg);
  }
  100% {
    transform: translate3d(12px, -8px, 0) rotate(3deg);
  }
}

@keyframes planet-orbit-2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(16px, -12px, 0) rotate(4deg);
  }
  100% {
    transform: translate3d(-10px, 8px, 0) rotate(-3deg);
  }
}

.scroll-plane {
  display: none;
}

.cloud {
  position: absolute;
  --y-offset: 0px;
  width: 220px;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  filter: blur(0.5px);
  box-shadow:
    26px 8px 0 0 rgba(255, 255, 255, 0.9),
    72px 2px 0 0 rgba(255, 255, 255, 0.86),
    42px -10px 0 0 rgba(255, 255, 255, 0.9);
  opacity: 0.88;
  animation-name: cloud-drift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

body[data-sky-mode="night"] .cloud {
  opacity: 0;
  animation-play-state: paused;
}

.cloud-sm {
  width: 170px;
  height: 56px;
  opacity: 0.8;
  filter: blur(0.7px);
}

.cloud-md {
  width: 230px;
  height: 72px;
  opacity: 0.86;
  filter: blur(0.5px);
}

.cloud-lg {
  width: 320px;
  height: 96px;
  opacity: 0.92;
  filter: blur(0.4px);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: inherit;
}

.cloud::before {
  width: 90px;
  height: 60px;
  left: 28px;
  bottom: 14px;
  box-shadow: 18px 0 0 0 rgba(255, 255, 255, 0.9);
}

.cloud::after {
  width: 70px;
  height: 52px;
  right: 32px;
  bottom: 10px;
  box-shadow: -12px 0 0 0 rgba(255, 255, 255, 0.9);
}

@keyframes cloud-drift {
  0% {
    transform: translate3d(-40%, var(--y-offset), 0);
  }
  100% {
    transform: translate3d(110vw, var(--y-offset), 0);
  }
}

@keyframes stars-slow-pan {
  0% {
    background-position:
      0 0,
      120px 40px,
      -60px -30px,
      40px 90px,
      -140px 30px,
      60px 20px;
  }
  100% {
    background-position:
      -260px -140px,
      -80px -60px,
      -260px 40px,
      -120px -120px,
      -260px -40px,
      -200px -60px;
  }
}


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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  color: #020617;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem 1.5rem;
}

.site-header .nav a {
  color: #475569;
}

.site-header .nav a:hover {
  color: #0f172a;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
}

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

.logo-text-only {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  padding: 0.35rem 0;
}

.nav a:hover {
  color: #e5e7eb;
}

.nav-cta {
  padding: 0.35rem 0;
  border-radius: 0;
  background: transparent;
  color: #e5e7eb;
  border: none;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
}

.section {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

.scroll-fade {
  opacity: 1;
  transform: translateY(0);
  will-change: opacity, transform;
}

/* Story sentences: zone pins so text is centered; then scroll continues down */
.story-cloud-zone {
  position: relative;
  z-index: 10;
  height: 100vh;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  flex-shrink: 0;
}

.story-cloud-wrap {
  position: relative;
  width: min(86vw, 520px);
  margin: 0 auto;
  text-align: center;
}

.story-cloud {
  position: relative;
  width: 100%;
}

.story-cloud-text {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #334155;
  text-align: center;
}

.story-cloud-text strong {
  color: #0f172a;
  font-weight: 600;
}

.hero > .container,
.section > .container {
  position: relative;
  z-index: 1;
}

.hero-widget {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.6rem 2.4rem 2.4rem;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #020617;
}

body[data-sky-mode="night"] .hero-widget {
  color: var(--text-primary);
}

.hero-inner-card {
  margin-top: 1.2rem;
  padding: 1.8rem 2rem 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
}

body[data-sky-mode="night"] .hero-inner-card {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(148, 163, 184, 0.65);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.9);
}

.hero-brand {
  font-size: clamp(2.7rem, 4.4vw, 3.6rem);
  letter-spacing: -0.08em;
  margin: 0.5rem 0 0.4rem;
}

.hero-tagline {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111827;
}

.hero-motto {
  margin: 0 0 1.6rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

body[data-sky-mode="night"] .hero-tagline {
  color: #e5e7eb;
}

body[data-sky-mode="night"] .hero-motto {
  color: rgba(226, 232, 240, 0.92);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.7rem 0 1.4rem;
}

.hero-actions-centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, border-color 0.1s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.btn-primary {
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
  border-color: rgba(148, 163, 184, 0.7);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.85);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: #111827;
  border-color: rgba(148, 163, 184, 0.6);
}

body[data-sky-mode="night"] .btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-full {
  width: 100%;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-metric {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
}

.hero-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-panel {
  position: relative;
}

.hero-panel-card {
  position: sticky;
  top: 4.5rem;
  max-width: 380px;
  margin-left: auto;
}

.panel-card {
  position: relative;
  height: 100%;
  border-radius: 26px;
  padding: 1.6rem 1.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  color: #020617;
}

body[data-sky-mode="night"] .panel-card {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.55);
  color: var(--text-primary);
}

.panel-card h2 {
  position: relative;
  margin: 0 0 0.9rem;
  font-size: 1.25rem;
}

.panel-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.panel-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 0.4rem;
  background-image: var(--accent-gradient);
}

.panel-footer {
  position: relative;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
}

.panel-highlight {
  font-size: 0.9rem;
  font-weight: 500;
}

.panel-note {
  font-size: 0.78rem;
  color: #6b7280;
}

.section-alt {
  background: transparent;
  border-block: none;
}

.section-header {
  width: 100%;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

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

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


.section-shell {
  border-radius: 28px;
  padding: 2rem 1.8rem 1.9rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
}

body[data-sky-mode="night"] .section-shell {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(148, 163, 184, 0.65);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.9);
}

.card {
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem 1.3rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  color: #020617;
}

body[data-sky-mode="night"] .card {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  color: var(--text-primary);
}

body[data-sky-mode="night"] .card p,
body[data-sky-mode="night"] .card-list {
  color: rgba(226, 232, 240, 0.9);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.85rem;
  color: #4b5563;
  font-size: 0.92rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
}

.card-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.card-list li::before {
  content: "•";
  color: var(--accent-strong);
  margin-top: 0;
}

.card-compact {
  padding: 1.25rem 1.2rem;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}

.process-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  color: #020617;
}

body[data-sky-mode="night"] .process-item {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  color: var(--text-primary);
}

body[data-sky-mode="night"] .process-item p {
  color: rgba(226, 232, 240, 0.9);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  color: #e5e7eb;
}

.process-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.process-item p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.pricing-card {
  border-radius: 24px;
  padding: 1.6rem 1.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  color: #020617;
}

.pricing-card.secondary {
  border-color: rgba(129, 140, 248, 0.85);
}

body[data-sky-mode="night"] .pricing-card {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
  color: var(--text-primary);
}

body[data-sky-mode="night"] .pricing-tagline,
body[data-sky-mode="night"] .pricing-note,
body[data-sky-mode="night"] .pricing-list {
  color: rgba(226, 232, 240, 0.9);
}

.pricing-card h3 {
  margin: 0 0 0.35rem;
}

.pricing-tagline {
  margin: 0 0 0.9rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.pricing-price {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 600;
}

.pricing-note {
  margin: 0.25rem 0 1rem;
  font-size: 0.86rem;
  color: #6b7280;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.pricing-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.pricing-list li::before {
  content: "✓";
  font-size: 0.8rem;
  color: #4ade80;
  margin-top: 0.1rem;
}

.pricing-footer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  color: #020617;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}

.faq-item[open] {
  border-color: rgba(79, 70, 229, 0.45);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

body[data-sky-mode="night"] .faq-item {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
}

body[data-sky-mode="night"] .faq-item:hover {
  border-color: rgba(148, 163, 184, 0.65);
}

body[data-sky-mode="night"] .faq-item[open] {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.2);
  background: rgba(15, 23, 42, 0.95);
}

body[data-sky-mode="night"] .faq-item p {
  color: rgba(226, 232, 240, 0.9);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 1rem 1.15rem 1rem 3rem;
  position: relative;
  color: #0f172a;
  transition: color 0.15s ease;
}

.faq-item[open] summary {
  color: var(--accent-strong);
}

body[data-sky-mode="night"] .faq-item summary {
  color: #e5e7eb;
}

body[data-sky-mode="night"] .faq-item[open] summary {
  color: #a5b4fc;
}

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

.faq-item summary::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item[open] summary::before {
  transform: translateY(-50%) rotate(180deg);
  opacity: 1;
}

.faq-item summary:hover {
  opacity: 0.95;
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem 3rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
}

.section-contact {
  border-top: none;
  background: transparent;
}

.contact-header p {
  max-width: 32rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.8rem;
  color: var(--text-primary);
}

.contact-copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.9rem 0.9rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text-primary);
}

.contact-meta-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.contact-meta-value {
  display: block;
  font-size: 0.9rem;
}

.contact-alt {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.contact-alt a {
  color: #a5b4fc;
}

.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-highlights li {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.contact-highlights li::before {
  content: "•";
  color: var(--accent-strong);
}

.contact-form {
  border-radius: 22px;
  padding: 1.4rem 1.4rem 1.3rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  color: #020617;
}

body[data-sky-mode="night"] .contact-form {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.96);
  color: var(--text-primary);
}

.field {
  margin-bottom: 0.9rem;
}

.field-inline {
  display: flex;
  flex-direction: column;
}

.field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.6rem 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  color: #020617;
  font-family: inherit;
  font-size: 0.9rem;
}

body[data-sky-mode="night"] .field input,
body[data-sky-mode="night"] .field textarea,
body[data-sky-mode="night"] .field select {
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-primary);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.6);
}

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

.form-footnote {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.form-footnote a {
  color: #a5b4fc;
}

.contact-form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.contact-form-success-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
}

.contact-form-success-text {
  margin: 0;
  font-size: 1rem;
  color: #475569;
}

.field-error {
  border-color: #f97373 !important;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.7);
}

.site-footer {
  padding: 1.6rem 0 1.8rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: rgba(15, 23, 42, 0.96);
  color: var(--text-primary);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
}

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

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.2rem;
  }

  .hero-panel-card {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1.1rem;
  }

  .nav {
    position: fixed;
    inset-inline: 1.2rem;
    top: 64px;
    border-radius: 18px;
    padding: 0.75rem 0.9rem;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.5);
    flex-direction: column;
    align-items: flex-start;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.14s ease, transform 0.14s ease;
  }

  .nav a {
    padding: 0.35rem 0.2rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .hero {
    padding-top: 3.2rem;
  }

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

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

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

}

@media (max-width: 560px) {
  .container {
    padding-inline: 1.1rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Night-sky override: brighter stars, no planets */
body[data-sky-mode="night"] .sky {
  background:
    radial-gradient(circle at 15% 20%, rgba(248, 250, 252, 0.95) 0 2.4px, transparent 3.4px),
    radial-gradient(circle at 75% 18%, rgba(248, 250, 252, 1) 0 2.7px, transparent 3.7px),
    radial-gradient(circle at 40% 12%, rgba(248, 250, 252, 0.9) 0 2.3px, transparent 3.3px),
    radial-gradient(circle at 20% 32%, rgba(248, 250, 252, 0.9) 0 2.4px, transparent 3.4px),
    radial-gradient(circle at 88% 30%, rgba(248, 250, 252, 1) 0 2.6px, transparent 3.6px),
    radial-gradient(circle at 60% 40%, rgba(248, 250, 252, 0.95) 0 2.4px, transparent 3.4px);
  background-size:
    420px 420px,
    520px 520px,
    460px 460px,
    380px 380px,
    540px 540px,
    500px 500px;
}

body[data-sky-mode="night"] .sky::before,
body[data-sky-mode="night"] .sky::after {
  content: none;
  display: none;
}

