:root {
  /* Borrowed from Cortex Beacon v2 design tokens */
  --color-midnight-slate: #0c1120;
  --color-beacon-violet: #7464ff;
  --color-aurora-coral: #ff7a8a;
  --color-mist-lavender: #e6e3ff;
  --color-whisper-white: #f8f8ff;
  --color-accent-gold: #fbbf24;

  --color-text-primary: var(--color-midnight-slate);
  --color-text-secondary: #4d4a66;
  --color-text-muted: #6b6880;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 18px 40px rgba(16, 12, 40, 0.08);
  --shadow-card-hover: 0 24px 60px rgba(116, 100, 255, 0.18);

  --max-content-width: 1120px;
  --px: 24px;
  --py: 72px;
}

@media (min-width: 768px) {
  :root {
    --px: 48px;
    --py: 88px;
  }
}

@media (min-width: 1200px) {
  :root {
    --px: 72px;
    --py: 112px;
  }
}

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

html {
  scroll-behavior: smooth;
}

/* Ensure anchor navigation lands below the sticky header */
section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text-primary);
  background: var(--color-whisper-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

.container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section {
  padding: var(--py) 0;
}

.skipLink {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(116, 100, 255, 0.18);
  box-shadow: 0 10px 30px rgba(16, 12, 40, 0.12);
  transform: translateY(-200%);
  transition: transform 0.15s ease;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
}

.skipLink:focus {
  transform: translateY(0);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
  background: rgba(248, 248, 255, 0.7);
  border-bottom: 1px solid rgba(116, 100, 255, 0.12);
}

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

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

.brandLogo {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(116, 100, 255, 0.22));
}

.brandName {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.08rem;
}

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

.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(12, 17, 32, 0.82);
  padding: 10px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(116, 100, 255, 0.08);
  color: rgba(12, 17, 32, 0.95);
}

.navCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(116, 100, 255, 0.22);
  background: linear-gradient(135deg, rgba(116, 100, 255, 0.12), rgba(255, 122, 138, 0.1));
}

@media (max-width: 860px) {
  .navHideMobile {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--py) + 22px) 0 var(--py);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(116, 100, 255, 0.16), transparent 52%),
    radial-gradient(circle at 82% 32%, rgba(255, 122, 138, 0.14), transparent 55%),
    radial-gradient(circle at 60% 80%, rgba(251, 191, 36, 0.14), transparent 55%),
    linear-gradient(135deg, var(--color-mist-lavender) 0%, var(--color-whisper-white) 55%, rgba(255, 122, 138, 0.08) 100%);
  background-size: 200% 200%;
  animation: heroShift 16s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(116, 100, 255, 0.12), transparent 65%);
  filter: blur(6px);
  opacity: 0.55;
  pointer-events: none;
}

@keyframes heroShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.heroInner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}

@media (max-width: 920px) {
  .heroInner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(116, 100, 255, 0.14);
  box-shadow: 0 10px 30px rgba(16, 12, 40, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(12, 17, 32, 0.8);
  width: fit-content;
}

.eyebrowDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-beacon-violet), var(--color-aurora-coral));
  box-shadow: 0 0 0 6px rgba(116, 100, 255, 0.08);
}

.h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 10px;
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 58ch;
}

.ctaRow {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.btnPrimary {
  background: linear-gradient(135deg, #f7b733, #7f6bff);
  color: #fff;
  box-shadow: 0 12px 36px rgba(127, 107, 255, 0.35), 0 4px 12px rgba(247, 183, 51, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btnPrimary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 42px rgba(127, 107, 255, 0.4), 0 6px 16px rgba(247, 183, 51, 0.32);
}

.btnSecondary {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(116, 100, 255, 0.2);
  color: rgba(12, 17, 32, 0.9);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btnSecondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
}

.micro {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.heroCard {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(116, 100, 255, 0.16);
  box-shadow: 0 22px 70px rgba(16, 12, 40, 0.12);
  padding: 18px 18px;
  backdrop-filter: blur(10px);
}

.heroCardTop {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(116, 100, 255, 0.12);
}

.heroLogo {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(116, 100, 255, 0.22));
}

.heroCardTitle {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.heroCardSub {
  margin: 3px 0 0 0;
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
}

.heroBullets {
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: rgba(12, 17, 32, 0.86);
  line-height: 1.65;
}

/* Feature grid */
.kicker {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(116, 100, 255, 0.9);
  font-size: 0.82rem;
}

.h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sublead {
  margin: 0;
  color: var(--color-text-secondary);
  max-width: 70ch;
  line-height: 1.6;
}

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

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

@media (max-width: 980px) {
  .aboutGrid {
    grid-template-columns: 1fr;
  }
}

.aboutCard {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(116, 100, 255, 0.12);
  box-shadow: var(--shadow-card);
  padding: 18px 18px;
}

.aboutTitle {
  margin: 0 0 6px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.aboutBody {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(116, 100, 255, 0.12);
  box-shadow: var(--shadow-card);
  padding: 18px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.cardIcon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(116, 100, 255, 0.14), rgba(255, 122, 138, 0.12));
  border: 1px solid rgba(116, 100, 255, 0.16);
  margin-bottom: 12px;
}

.cardTitle {
  margin: 0 0 6px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cardBody {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Highlights */
.highlights {
  padding: 18px 0;
  border-top: 1px solid rgba(116, 100, 255, 0.12);
  border-bottom: 1px solid rgba(116, 100, 255, 0.12);
  background:
    radial-gradient(circle at 20% 50%, rgba(116, 100, 255, 0.12), transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
}

.highlightsRow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 980px) {
  .highlightsRow {
    grid-template-columns: 1fr;
  }
}

.pill {
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid rgba(116, 100, 255, 0.16);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 32px rgba(16, 12, 40, 0.08);
  font-weight: 700;
  color: rgba(12, 17, 32, 0.88);
}

/* Contact block (mirrors BrandingFooter email pill vibe) */
.contactWrap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emailLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 36px;
  border: 1px solid rgba(116, 100, 255, 0.12);
  box-shadow: 0 3px 12px rgba(116, 100, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  width: fit-content;
  max-width: 520px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.emailLinks:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(116, 100, 255, 0.2);
  transform: translateY(-2px);
}

.emailLink {
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-beacon-violet), var(--color-aurora-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  position: relative;
  font-family: Inter, sans-serif;
}

.emailLink::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-beacon-violet), var(--color-aurora-coral));
  transition: width 0.2s ease;
}

.emailLink:hover::after {
  width: 100%;
}

.separator {
  opacity: 0.55;
  font-weight: 700;
}

@media (max-width: 640px) {
  .emailLinks {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
  }
  .separator {
    display: none;
  }
}

/* Footer */
.footer {
  padding: 26px 0;
  border-top: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(116, 100, 255, 1) 20%,
      rgba(251, 191, 36, 1) 50%,
      rgba(116, 100, 255, 1) 80%,
      transparent 100%
    )
    1;
  background:
    radial-gradient(circle at 20% 50%, rgba(116, 100, 255, 0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.1), transparent 50%),
    linear-gradient(135deg, var(--color-mist-lavender) 0%, var(--color-whisper-white) 55%, rgba(255, 122, 138, 0.08) 100%);
  background-size: 200% 200%;
  animation: footerShift 15s ease-in-out infinite;
}

@keyframes footerShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 820px) {
  .footerRow {
    flex-direction: column;
    text-align: center;
  }
}

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

.footerText {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-beacon-violet) 0%, var(--color-aurora-coral) 50%, var(--color-accent-gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: footerTextShimmer 8s ease-in-out infinite;
}

@keyframes footerTextShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.finePrint {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(12, 17, 32, 0.62);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}


