:root {
  --text: #eef6ff;
  --muted: #a4b5d1;
  --cyan: #72f6ff;
  --gold: #f7c95f;
  --rose: #ff8db8;
  --line: rgba(114, 246, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1200px;
  --heading-font: "Cinzel", serif;
  --body-font: "Manrope", sans-serif;
  --body-bg:
    radial-gradient(circle at top right, rgba(114, 246, 255, 0.16), transparent 26%),
    radial-gradient(circle at left center, rgba(247, 201, 95, 0.12), transparent 24%),
    linear-gradient(180deg, #040712 0%, #091127 45%, #050918 100%);
  --topline-bg: rgba(4, 8, 20, 0.4);
  --header-scrolled-bg: rgba(4, 10, 24, 0.76);
  --header-border: rgba(255, 255, 255, 0.06);
  --panel-bg: rgba(5, 11, 25, 0.96);
  --panel-border: rgba(255, 255, 255, 0.08);
  --card-bg: linear-gradient(180deg, rgba(17, 29, 62, 0.82), rgba(8, 15, 34, 0.88));
  --card-border: rgba(255, 255, 255, 0.08);
  --card-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --banner-bg:
    radial-gradient(circle at left top, rgba(114, 246, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  --soft-bg: rgba(255, 255, 255, 0.04);
  --soft-bg-strong: rgba(255, 255, 255, 0.05);
  --input-bg: rgba(4, 10, 24, 0.8);
  --input-border: rgba(114, 246, 255, 0.18);
  --footer-bg: rgba(2, 7, 18, 0.82);
  --footer-border: rgba(255, 255, 255, 0.06);
  --orbital-bg:
    radial-gradient(circle at center, rgba(114, 246, 255, 0.16), transparent 34%),
    radial-gradient(circle at 25% 20%, rgba(247, 201, 95, 0.2), transparent 22%),
    rgba(255, 255, 255, 0.03);
  --floating-chip-bg: rgba(4, 10, 24, 0.82);
  --floating-chip-border: rgba(114, 246, 255, 0.18);
  --orbital-border: rgba(255, 255, 255, 0.07);
  --orbit-ring-border: rgba(255, 255, 255, 0.14);
  --star-color: rgba(255, 255, 255, 0.9);
  --star-glow: rgba(114, 246, 255, 0.75);
  --zodiac-color: rgba(114, 246, 255, 0.16);
  --cursor-ring: rgba(114, 246, 255, 0.6);
  --cursor-ring-glow: rgba(114, 246, 255, 0.2);
  --cursor-dot: #f7c95f;
  --cursor-dot-glow: rgba(247, 201, 95, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--body-font);
  color: var(--text);
  background: var(--body-bg);
  cursor: none;
  color-scheme: dark;
}

body[data-theme="light"] {
  --text: #18253f;
  --muted: #53627d;
  --line: rgba(76, 133, 255, 0.16);
  --shadow: 0 22px 58px rgba(71, 96, 140, 0.16);
  --body-bg:
    radial-gradient(circle at top right, rgba(76, 133, 255, 0.2), transparent 26%),
    radial-gradient(circle at left center, rgba(247, 201, 95, 0.18), transparent 22%),
    linear-gradient(180deg, #f6f8ff 0%, #eef4ff 44%, #fbfcff 100%);
  --topline-bg: rgba(255, 255, 255, 0.75);
  --header-scrolled-bg: rgba(250, 252, 255, 0.92);
  --header-border: rgba(24, 37, 63, 0.08);
  --panel-bg: rgba(255, 255, 255, 0.92);
  --panel-border: rgba(24, 37, 63, 0.08);
  --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 255, 0.98));
  --card-border: rgba(24, 37, 63, 0.08);
  --card-shadow: 0 22px 50px rgba(71, 96, 140, 0.12);
  --banner-bg:
    radial-gradient(circle at left top, rgba(76, 133, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 247, 255, 0.84));
  --soft-bg: rgba(255, 255, 255, 0.82);
  --soft-bg-strong: rgba(255, 255, 255, 0.92);
  --input-bg: rgba(255, 255, 255, 0.95);
  --input-border: rgba(76, 133, 255, 0.18);
  --footer-bg: rgba(255, 255, 255, 0.88);
  --footer-border: rgba(24, 37, 63, 0.08);
  --orbital-bg:
    radial-gradient(circle at center, rgba(76, 133, 255, 0.14), transparent 34%),
    radial-gradient(circle at 25% 20%, rgba(247, 201, 95, 0.22), transparent 22%),
    rgba(255, 255, 255, 0.7);
  --floating-chip-bg: rgba(255, 255, 255, 0.92);
  --floating-chip-border: rgba(76, 133, 255, 0.14);
  --orbital-border: rgba(24, 37, 63, 0.08);
  --orbit-ring-border: rgba(24, 37, 63, 0.12);
  --star-color: rgba(76, 133, 255, 0.7);
  --star-glow: rgba(76, 133, 255, 0.24);
  --zodiac-color: rgba(76, 133, 255, 0.12);
  --cursor-ring: rgba(76, 133, 255, 0.42);
  --cursor-ring-glow: rgba(76, 133, 255, 0.16);
  --cursor-dot: #2656c9;
  --cursor-dot-glow: rgba(76, 133, 255, 0.28);
  color-scheme: light;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  padding: 0;
  color: inherit;
  border: 0;
  background: none;
}

input,
textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(114, 246, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(114, 246, 255, 0.12);
  transform: translateY(-1px);
}

body[data-theme="light"] input:focus,
body[data-theme="light"] textarea:focus {
  border-color: rgba(76, 133, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(76, 133, 255, 0.1);
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.cosmic-backdrop,
.stars-layer,
.zodiac-field,
.aurora-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.cosmic-backdrop {
  z-index: -3;
  overflow: hidden;
}

.stars-layer span {
  position: absolute;
  border-radius: 50%;
  background: var(--star-color);
  box-shadow: 0 0 14px var(--star-glow);
  animation: twinkle 6s ease-in-out infinite;
}

.zodiac-field span {
  position: absolute;
  color: var(--zodiac-color);
  font-size: clamp(1rem, 2vw, 1.8rem);
  animation: floatGlyph linear infinite;
}

.aurora-layer::before,
.aurora-layer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  animation: drift 18s ease-in-out infinite alternate;
}

.aurora-layer::before {
  top: 12%;
  right: 8%;
  width: 18rem;
  height: 18rem;
  background: rgba(114, 246, 255, 0.12);
}

.aurora-layer::after {
  left: 2%;
  bottom: 12%;
  width: 22rem;
  height: 22rem;
  background: rgba(247, 201, 95, 0.1);
}

body[data-theme="light"] .aurora-layer::before {
  background: rgba(76, 133, 255, 0.12);
}

body[data-theme="light"] .aurora-layer::after {
  background: rgba(247, 201, 95, 0.14);
}

.topline {
  background: var(--topline-bg);
  border-bottom: 1px solid var(--header-border);
}

.topline-inner,
.nav-shell,
.hero-grid,
.founder-grid,
.stats-grid,
.card-grid,
.grid-2,
.detail-layout,
.contact-grid,
.map-grid,
.cta-banner,
.footer-grid,
.footer-bottom,
.three-grid {
  display: grid;
  gap: 1.5rem;
}

.topline-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.85rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.topline-links,
.hero-actions,
.card-actions,
.pill-row,
.button-row,
.mini-list,
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: var(--header-scrolled-bg);
  border-bottom: 1px solid var(--header-border);
}

.nav-shell {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

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

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(114, 246, 255, 0.25);
}

.brand strong,
.footer-brand strong,
h1,
h2 {
  font-family: var(--heading-font);
  letter-spacing: 0.04em;
}

.brand strong,
.footer-brand strong {
  display: block;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
}

.nav-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  width: 100%;
  min-width: 0;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.82rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-nav .nav-accent {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.site-nav .nav-accent::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.theme-toggle,
.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.theme-toggle {
  min-height: 46px;
  padding: 0.68rem 0.92rem;
  border: 1px solid var(--card-border);
  background: var(--soft-bg);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.theme-toggle:hover,
.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.theme-toggle-orb {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 201, 95, 0.95), rgba(255, 141, 184, 0.8));
  box-shadow: 0 0 18px rgba(247, 201, 95, 0.45);
  flex-shrink: 0;
}

.theme-toggle-orb::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

body[data-theme="light"] .theme-toggle-orb {
  background: linear-gradient(135deg, rgba(76, 133, 255, 0.95), rgba(114, 246, 255, 0.88));
  box-shadow: 0 0 18px rgba(76, 133, 255, 0.35);
}

.theme-toggle-label {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.button {
  min-height: 52px;
  padding: 0.9rem 1.4rem;
}

.button-primary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(114, 246, 255, 0.18), rgba(247, 201, 95, 0.2));
  border: 1px solid rgba(114, 246, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(247, 201, 95, 0.08), 0 18px 44px rgba(114, 246, 255, 0.14);
}

body[data-theme="light"] .button-primary {
  color: #18253f;
  background: linear-gradient(135deg, rgba(76, 133, 255, 0.2), rgba(247, 201, 95, 0.28));
  border-color: rgba(76, 133, 255, 0.28);
  box-shadow: 0 18px 40px rgba(76, 133, 255, 0.16);
}

.button-secondary {
  background: var(--soft-bg);
  border: 1px solid var(--card-border);
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1rem;
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--cyan);
}

body[data-theme="light"] .text-link {
  color: #2656c9;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-home,
.page-hero {
  padding: 6.5rem 0 4.5rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.content-block h2,
.page-copy h1,
.glass-card h2,
.pricing-card h2,
.form-card h2 {
  margin: 0;
  line-height: 1.06;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.hero-text,
.section-heading p,
.content-block p,
.page-copy p,
.glass-card p,
.pricing-card p,
.footer-copy,
.service-card p,
.course-card p,
.video-card p,
.feature-list li,
.process-list li,
.footer-links li,
.testimonial-meta,
.form-label,
.faq-item p,
.legal-copy p,
.legal-copy li,
.footer-bottom {
  color: var(--muted);
  line-height: 1.8;
}

.pill-row span,
.mini-list li,
.meta-row span {
  padding: 0.7rem 0.95rem;
  color: var(--muted);
  background: var(--soft-bg-strong);
  border-radius: 999px;
}

.orbital-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--orbital-border);
  border-radius: var(--radius-lg);
  background: var(--orbital-bg);
  box-shadow: var(--card-shadow);
}

.planet,
.orbit-ring,
.floating-chip {
  position: absolute;
}

.planet-large {
  top: 24%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.84), rgba(114, 246, 255, 0.22) 24%, rgba(11, 21, 46, 0.1) 55%),
    linear-gradient(135deg, rgba(247, 201, 95, 0.92), rgba(255, 141, 184, 0.6));
  box-shadow: 0 0 80px rgba(114, 246, 255, 0.28);
  animation: pulse 5s ease-in-out infinite;
}

.planet-small {
  top: 20%;
  right: 18%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(114, 246, 255, 0.8), rgba(255, 141, 184, 0.38));
  box-shadow: 0 0 44px rgba(255, 141, 184, 0.28);
  animation: floatSoft 6s ease-in-out infinite;
}

.orbit-ring {
  inset: 18% 10%;
  border: 1px solid var(--orbit-ring-border);
  border-radius: 50%;
  animation: spin 14s linear infinite;
}

.floating-chip {
  padding: 0.75rem 1rem;
  border: 1px solid var(--floating-chip-border);
  border-radius: 999px;
  background: var(--floating-chip-bg);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.chip-one {
  top: 14%;
  left: 10%;
  animation: floatSoft 7s ease-in-out infinite;
}

.chip-two {
  right: 10%;
  bottom: 18%;
  animation: floatSoft 6s ease-in-out infinite 1s;
}

.chip-three {
  left: 14%;
  bottom: 16%;
  animation: floatSoft 7.5s ease-in-out infinite 0.4s;
}

.glass-card,
.service-card,
.course-card,
.testimonial-card,
.pricing-card,
.form-card,
.info-card,
.cta-banner,
.faq-item,
.video-card {
  padding: 1.5rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}

.glass-card,
.service-card,
.course-card,
.testimonial-card,
.pricing-card,
.video-card,
.info-card {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass-card:hover,
.service-card:hover,
.course-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.video-card:hover,
.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(114, 246, 255, 0.26);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

body[data-theme="light"] .glass-card:hover,
body[data-theme="light"] .service-card:hover,
body[data-theme="light"] .course-card:hover,
body[data-theme="light"] .testimonial-card:hover,
body[data-theme="light"] .pricing-card:hover,
body[data-theme="light"] .video-card:hover,
body[data-theme="light"] .info-card:hover {
  border-color: rgba(76, 133, 255, 0.24);
  box-shadow: 0 26px 64px rgba(71, 96, 140, 0.18);
}

.section {
  padding: 4.75rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

body[data-theme="light"] .section-alt,
body[data-theme="light"] .cta-banner {
  background: var(--banner-bg);
}

.section-heading,
.content-block,
.page-copy {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.content-block h2,
.page-copy h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

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

.grid-2,
.detail-layout,
.contact-grid,
.map-grid,
.cta-banner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.service-glyph {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.founder-section {
  padding-top: 1rem;
}

.founder-visual {
  position: relative;
}

.founder-image-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(247, 201, 95, 0.22), transparent 32%),
    radial-gradient(circle at bottom left, rgba(114, 246, 255, 0.16), transparent 28%),
    var(--card-bg);
  box-shadow: var(--card-shadow);
}

.founder-image-shell::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(247, 201, 95, 0.2);
  border-radius: 28px;
  pointer-events: none;
}

.founder-image-shell img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-card {
  padding: 2rem;
}

.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.founder-highlights span {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft-bg-strong);
  color: var(--text);
}

.site-nav .nav-accent {
  padding-bottom: 0.05rem;
}

.feature-list,
.process-list,
.footer-links {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.process-list li,
.footer-links li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.5rem;
}

.feature-list li::before,
.process-list li::before,
.footer-links li::before {
  content: "\2726";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan);
}

.quote {
  font-size: 1.03rem;
  line-height: 1.8;
}

.stars {
  display: inline-flex;
  gap: 0.18rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.page-shell {
  min-height: 70vh;
}

.pricing-card {
  position: sticky;
  top: 7.5rem;
}

.cta-banner {
  align-items: center;
  background: var(--banner-bg);
}

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

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

.form-label {
  display: grid;
  gap: 0.55rem;
}

.form-status {
  margin-top: 1rem;
  color: var(--cyan);
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.video-frame {
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 18px;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.trust-badge {
  display: inline-flex;
  padding: 0.65rem 1rem;
  color: var(--gold);
  background: rgba(247, 201, 95, 0.08);
  border: 1px solid rgba(247, 201, 95, 0.24);
  border-radius: 999px;
}

.site-footer {
  padding: 2rem 0 1.4rem;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--footer-border);
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.18s ease, width 0.25s ease, height 0.25s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--cursor-ring);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cursor-ring-glow);
}

.cursor-ring::after {
  content: "\2726";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(247, 201, 95, 0.9);
  font-size: 0.8rem;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--cursor-dot);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cursor-dot-glow);
}

.cursor-ring.is-visible,
.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-ring.is-active {
  width: 54px;
  height: 54px;
  border-color: rgba(247, 201, 95, 0.7);
}

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

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

.thank-you-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-grid .three-grid {
  grid-template-columns: 1fr;
}

.legal-copy h2 {
  margin-top: 0;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes floatGlyph {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-24px) translateX(12px) rotate(9deg);
  }
  100% {
    transform: translateY(18px) translateX(-8px) rotate(-8deg);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(40px, 26px, 0) scale(1.12);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.06);
  }
}

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

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .founder-grid,
  .stats-grid,
  .card-grid,
  .grid-2,
  .detail-layout,
  .contact-grid,
  .map-grid,
  .cta-banner,
  .footer-grid,
  .three-grid {
    grid-template-columns: 1fr;
  }

  .orbital-visual {
    min-height: 420px;
  }

  .pricing-card {
    position: static;
  }
}

@media (max-width: 1280px) {
  .nav-shell {
    gap: 0.9rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .site-nav {
    gap: 0.56rem;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .button-small {
    min-height: 40px;
    padding: 0.62rem 0.84rem;
  }

  .theme-toggle {
    min-height: 42px;
    padding: 0.62rem 0.74rem;
  }

  .theme-toggle-label {
    display: none;
  }

  .theme-toggle-orb {
    width: 18px;
    height: 18px;
  }

  .nav-panel {
    gap: 0.72rem;
  }

  .site-nav .nav-accent {
    padding-inline: 0.18rem;
  }
}

@media (max-width: 1120px) {
  .brand small {
    display: none;
  }

  .site-nav {
    gap: 0.48rem;
  }

  .site-nav a {
    font-size: 0.79rem;
  }

  .button-small {
    padding-inline: 0.76rem;
  }
}

@media (max-width: 860px) {
  body {
    cursor: auto;
  }

  .cursor-ring,
  .cursor-dot {
    display: none;
  }

  .topline-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .topline-links {
    justify-content: center;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

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

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    grid-template-columns: 1fr;
    padding: 1rem;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
  }

  .nav-panel.is-open {
    display: grid;
    gap: 1rem;
  }

  .site-nav {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-home,
  .page-hero {
    padding-top: 5rem;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions,
  .card-actions,
  .button-row,
  .pill-row,
  .mini-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .orbital-visual {
    min-height: 340px;
  }

  .planet-large {
    width: 170px;
    height: 170px;
  }

  .planet-small {
    width: 72px;
    height: 72px;
  }

  .theme-toggle {
    padding: 0.7rem 0.85rem;
  }
}
