:root {
  --purple: #35124d;
  --purple-deep: #2a0d40;
  --purple-glow: #6b2d83;
  --rose: #c4878e;
  --rose-action: #c48796;
  --blush: #f0c6cf;
  --white: #fff8fa;
  --black: #09060d;
  --container: 1200px;
  --shadow-glow: 0 0 48px rgba(107, 45, 131, 0.35), 0 0 24px rgba(196, 135, 150, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--purple);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--purple);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

body:has(.page-white),
body:has(.page-rose),
body:has(.splash) {
  background: #fff9fa;
}

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -1.2px;
}

h2 {
  letter-spacing: -0.4px;
}

.container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.page {
  min-height: 100vh;
  overflow: clip;
}

.page-dark {
  background: var(--purple);
  color: var(--white);
}

.page-rose {
  background: var(--rose);
  color: var(--purple);
}

.page-white {
  background: #fff9fa;
  color: var(--black);
}

.content-page,
.hero-page {
  position: relative;
  isolation: isolate;
}

.page-enter {
  animation: page-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.navbar {
  position: relative;
  z-index: 50;
  height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.nav-inner {
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.nav-links > a,
.nav-group > a,
.nav-submenu a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.brand {
  color: var(--blush);
}

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

.nav-links > a,
.nav-group > a {
  position: relative;
  transition: color 180ms ease;
}

.navbar--dark .nav-links > a,
.navbar--dark .nav-group > a {
  color: var(--white);
}

.navbar--dark .nav-links > a:hover,
.navbar--dark .nav-group > a:hover,
.navbar--dark .nav-links .active {
  color: var(--rose-action);
}

.navbar--light .brand,
.navbar--white .brand,
.navbar--light .nav-links > a,
.navbar--light .nav-group > a,
.navbar--white .nav-links > a,
.navbar--white .nav-group > a {
  color: var(--purple);
}

.navbar--light .nav-links > a:not(.active),
.navbar--light .nav-group > a:not(.active),
.navbar--white .nav-links > a:not(.active),
.navbar--white .nav-group > a:not(.active) {
  opacity: 0.78;
}

.nav-group {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 156px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(42, 13, 64, 0.96);
  box-shadow: 0 18px 45px rgba(15, 4, 24, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -5px);
  transition: 160ms ease;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
}

.nav-submenu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  width: 700px;
  max-width: none;
  opacity: 0.74;
}

.glow-1 { left: -180px; top: 120px; }
.glow-2 { right: -220px; top: 20px; }
.glow-3 { left: 26%; top: 600px; }

.glass {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
}

.button {
  min-height: 56px;
  padding: 17px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--purple-glow);
  border-radius: 999px;
  background: var(--rose-action);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 0 60px rgba(107, 45, 131, 0.42), 0 0 30px rgba(196, 135, 150, 0.58);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: var(--blush);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.eyebrow:not(.no-line)::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  margin-right: 8px;
  vertical-align: 4px;
  background: currentColor;
}

.lead {
  color: var(--blush);
  font-size: 18px;
  line-height: 1.56;
}

.neon-rule {
  width: min(340px, 70%);
  height: 4px;
  margin: 0 0 24px;
  display: block;
  border-radius: 3px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.splash {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #fff;
}

.splash-scene,
.splash-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.splash-bg {
  max-width: none;
  object-fit: cover;
  animation: splash-breathe 5s ease-in-out infinite;
}

.tree-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
  transform-origin: 50% 50%;
  pointer-events: none;
}

.tree-glow--outer {
  width: min(40vw, 580px);
  transform: translate(-50%, -54%);
  animation: outer-pulse 5s ease-in-out infinite;
}

.tree-glow--inner {
  width: min(22vw, 300px);
  transform: translate(-50%, -60%);
  animation: inner-pulse 5s ease-in-out infinite;
}

.splash-button {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(46px, 11vh, 102px);
  transform: translateX(-50%);
  white-space: nowrap;
}

.splash-button:hover {
  transform: translate(-50%, -2px);
}

@keyframes splash-breathe {
  0%, 50%, 100% { opacity: 1; }
  25% { opacity: .85; }
  75% { opacity: .88; }
}

@keyframes outer-pulse {
  0% { opacity: .2; scale: .85; }
  30% { opacity: .8; scale: 1.2; }
  60% { opacity: .15; scale: .85; }
  90%, 100% { opacity: .75; scale: 1.15; }
}

@keyframes inner-pulse {
  0%, 100% { opacity: .4; }
  20% { opacity: .9; }
  50% { opacity: .2; }
  80% { opacity: .85; }
}

.home-page {
  min-height: calc(100svh - 68px);
  padding: clamp(96px, 17vh, 152px) 0 100px;
}

.home-page .hero-copy {
  width: min(765px, 100%);
}

.home-page h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5vw, 64px);
}

.home-page .lead {
  max-width: 765px;
  margin-bottom: 32px;
}

.action-panel {
  width: 100%;
  padding: 47px;
  border-radius: 24px;
}

.page-heading {
  max-width: 1200px;
  padding: 78px 0 40px;
}

.page-heading h1 {
  margin-bottom: 24px;
}

.page-heading .lead {
  max-width: 780px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
  padding-bottom: 56px;
}

.feature-card,
.product-card {
  position: relative;
  min-height: 300px;
  padding: 47px;
  overflow: hidden;
  border-radius: 24px;
}

.feature-card--3 {
  grid-column: 1 / -1;
}

.card-glow {
  position: absolute;
  right: 0;
  bottom: -80px;
  width: 320px;
  opacity: .7;
  pointer-events: none;
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--rose-action);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.icon-box img {
  width: 24px;
  height: 24px;
}

.feature-card h2,
.product-card h2 {
  position: relative;
  z-index: 1;
  margin: 26px 0 8px;
  color: var(--white);
  font-size: 34px;
  line-height: 42px;
}

.feature-card p,
.product-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 900px;
  color: var(--blush);
  font-size: 15px;
  line-height: 24px;
}

.cta-band {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.cta-inner {
  padding: 58px 0 100px;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 34px;
  line-height: 42px;
}

.cta-inner p {
  max-width: 580px;
  margin: 0 auto 32px;
  color: var(--blush);
  font-size: 18px;
  line-height: 28px;
}

.products-hero {
  min-height: 1360px;
  position: relative;
  padding-top: 80px;
}

.product-intro {
  position: relative;
  z-index: 2;
  width: 680px;
  max-width: 100%;
}

.product-intro h1 {
  width: min(520px, 100%);
  margin-bottom: 20px;
}

.phone-stage {
  position: absolute;
  inset: 0;
}

.phone-pos {
  position: absolute;
}

.phone-pos--1 { right: 70px; top: 35px; }
.phone-pos--2 { left: 42px; top: 520px; }
.phone-pos--3 { left: 430px; top: 770px; }
.phone-pos--4 { right: 80px; top: 670px; }

.phone {
  width: 250px;
  height: 510px;
  padding: 12px 8px;
  position: relative;
  transform: rotate(var(--rotate));
  border: 3px solid #403352;
  border-radius: 40px;
  background: linear-gradient(110deg, #14141a, #1a1630);
  box-shadow: 0 22px 48px -14px rgba(0, 0, 0, .4);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 15px;
  width: 86px;
  height: 24px;
  border-radius: 14px;
  background: #0a0a0f;
  transform: translateX(-50%);
}

.phone::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 45px;
  background: linear-gradient(95deg, rgba(255, 255, 255, .25), transparent 40%);
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 31px;
  background: rgba(46, 26, 77, .9);
}

.phone-screen span {
  color: #8c66b2;
  font-size: 13px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}

.product-card { min-height: 280px; padding: 31px; }
.product-card--1, .product-card--4 { grid-column: span 7; border-color: var(--blush); }
.product-card--2, .product-card--3 { grid-column: span 5; }
.product-card--5, .product-card--6 { grid-column: span 6; }
.product-card h2 { margin-top: 20px; }

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

.product-meta em {
  padding: 3px 8px;
  border: 1px solid var(--blush);
  border-radius: 6px;
  font-size: 10px;
  font-style: normal;
}

.about-page {
  padding-bottom: 80px;
}

.about-page .ambient,
.profile-page .ambient {
  opacity: .7;
}

.about-hero {
  min-height: 624px;
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-rose .eyebrow,
.page-rose .section-kicker,
.page-rose .lead {
  color: var(--purple);
}

.about-copy h1 {
  font-size: clamp(44px, 4.1vw, 56px);
}

.about-visual {
  min-height: 480px;
  padding: 90px 32px 46px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(53, 18, 77, .7);
  color: var(--white);
  text-align: center;
}

.about-visual > img:not(.card-glow) {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin-bottom: 88px;
}

.about-visual strong,
.about-visual span {
  position: relative;
  z-index: 1;
}

.about-visual strong { margin-bottom: 5px; font-size: 16px; }
.about-visual span { opacity: .6; font-size: 12px; }

.pillars-section {
  padding: 40px 0 64px;
}

.pillars-section .section-kicker {
  margin-bottom: 8px;
}

.pillars-section > h2 {
  margin-bottom: 40px;
  font-size: 34px;
  line-height: 42px;
}

.pillars-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card,
.stat-card {
  min-height: 260px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(53, 18, 77, .86);
  color: var(--white);
}

.pillar-card .card-top { color: var(--white); opacity: .65; }
.pillar-card .card-top img { width: 24px; height: 24px; }
.pillar-card h3 { margin: 16px 0 8px; font-size: 30px; line-height: 1.2; }
.pillar-card p { margin: 0; opacity: .8; font-size: 14px; line-height: 22px; }

.philosophy-card {
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: rgba(53, 18, 77, .88);
  color: var(--white);
  text-align: center;
}

.philosophy-card .section-kicker { margin-bottom: 16px; color: var(--blush); }
.philosophy-card h2 { margin-bottom: 12px; font-size: 34px; line-height: 42px; }
.philosophy-card > p:not(.section-kicker) { max-width: 720px; margin: 0 auto 32px; opacity: .8; font-size: 18px; line-height: 28px; }

.button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.text-link {
  padding: 10px 0;
  color: var(--blush);
  font-weight: 500;
}

.team-page {
  min-height: calc(100svh - 68px);
  padding: 92px 0 80px;
}

.team-shell {
  padding: 0 0 108px;
  border-radius: 24px;
}

.team-shell > .section-kicker,
.team-shell > h1 {
  padding-inline: 0;
}

.team-shell > .section-kicker { margin-bottom: 8px; }
.team-shell > h1 { margin-bottom: 52px; font-size: 34px; line-height: 42px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  padding: 15px 15px 14px;
  border-radius: 24px;
  background: rgba(53, 18, 77, .82);
}

.team-card > img {
  width: 100%;
  aspect-ratio: 25 / 26;
  object-fit: cover;
  border-radius: 12px;
}

.team-card h2 { margin: 16px 0 4px; font-size: 20px; line-height: 24px; }
.team-card p, .team-card span { color: var(--blush); font-size: 14px; line-height: 19px; }
.team-card p { margin-bottom: 4px; font-weight: 500; }
.team-card span { opacity: .8; }

.vision-page {
  min-height: calc(100svh - 68px);
  padding: 110px 0 110px;
}

.vision-head {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 120px;
  align-items: end;
}

.vision-head .section-kicker { margin-bottom: 12px; color: var(--purple-glow); }
.vision-head h1 { max-width: 650px; margin-bottom: 0; }
.vision-head .lead { margin-bottom: 0; color: var(--black); opacity: .7; }

.roadmap-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.roadmap-card {
  min-height: 254px;
  padding: 31px;
  border: 1px solid var(--purple-glow);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-glow);
}

.roadmap-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.roadmap-card strong { color: var(--blush); font-size: 27px; }
.roadmap-card span { padding: 4px 11px; border-radius: 12px; background: var(--purple-glow); color: var(--white); font-size: 11px; font-weight: 600; white-space: nowrap; }
.roadmap-card h2 { margin: 22px 0 14px; font-size: 22px; }
.roadmap-card p { margin: 0; opacity: .78; font-size: 15px; line-height: 22px; }

.profile-hero {
  min-height: 612px;
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 80px;
  align-items: center;
}

.profile-copy h1 {
  max-width: 720px;
  font-size: clamp(44px, 4.1vw, 56px);
}

.profile-copy .neon-rule { color: var(--purple); }
.profile-copy .lead { max-width: 640px; }
.profile-copy .button { margin-top: 12px; border-color: var(--purple); background: var(--purple); }

.profile-visual {
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: rgba(53, 18, 77, .15);
  color: var(--white);
}

.profile-visual > img:not(.card-glow) { position: relative; z-index: 1; width: 80px; height: 80px; margin-bottom: 12px; }
.profile-visual strong, .profile-visual span { position: relative; z-index: 1; }
.profile-visual strong { font-size: 18px; }
.profile-visual span { margin-top: 2px; color: var(--blush); opacity: .8; font-size: 14px; }

.stats-grid { padding-bottom: 64px; }
.stat-card { min-height: 237px; }
.stat-card strong { display: block; margin-bottom: 8px; font-size: 48px; line-height: 56px; }
.stat-card h2 { margin-bottom: 14px; color: var(--blush); font-size: 16px; letter-spacing: .5px; }
.stat-card p { margin: 0; color: rgba(255, 248, 250, .75); font-size: 14px; line-height: 22px; }

.partners {
  padding: 48px 0 80px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.partners p { margin-bottom: 22px; font-size: 14px; font-weight: 700; letter-spacing: 1.5px; }
.partners .container > div { display: flex; flex-wrap: wrap; gap: 16px; }
.partners span { padding: 15px 24px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; background: rgba(53, 18, 77, .1); font-size: 15px; font-weight: 600; }

.contact-page {
  min-height: calc(100svh - 68px);
  padding: 78px 0 100px;
}

.contact-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.contact-heading h1 { margin-bottom: 16px; }
.contact-heading .lead { max-width: 520px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-form,
.contact-info {
  border-radius: 24px;
}

.contact-form {
  padding: 48px;
}

.contact-form h2,
.contact-info h2 {
  margin-bottom: 4px;
  font-size: 34px;
  line-height: 42px;
}

.contact-form > p { margin-bottom: 28px; color: var(--blush); font-size: 18px; line-height: 28px; }

.contact-form label {
  margin-bottom: 20px;
  display: block;
  color: var(--blush);
  font-size: 14px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 16px;
  display: block;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .02);
  color: var(--white);
}

.contact-form input { min-height: 48px; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 248, 250, .42); }

.form-note { margin-left: 16px; color: var(--blush); font-size: 14px; }

.contact-info {
  padding: 48px;
}

.contact-info h2 { margin-bottom: 28px; }
.contact-line { display: grid; grid-template-columns: 24px 1fr; gap: 16px; margin-bottom: 24px; align-items: center; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line > img { width: 24px; height: 24px; }
.contact-line p { margin: 0; color: var(--white); font-size: 18px; line-height: 28px; }
.contact-line p span { display: block; color: var(--blush); font-size: 14px; line-height: 20px; font-weight: 500; }

@media (max-width: 980px) {
  .nav-links { gap: 18px; }
  .brand, .nav-links > a, .nav-group > a { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-card--3 { grid-column: auto; }
  .products-hero { min-height: 1120px; }
  .phone { width: 190px; height: 388px; border-radius: 32px; }
  .phone-screen { border-radius: 24px; }
  .phone-pos--1 { right: 20px; top: 180px; }
  .phone-pos--2 { left: 30px; top: 520px; }
  .phone-pos--3 { left: 38%; top: 670px; }
  .phone-pos--4 { right: 20px; top: 620px; }
  .about-hero, .profile-hero { gap: 40px; }
  .pillars-grid, .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-head { gap: 50px; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container, .nav-inner { width: min(calc(100% - 32px), var(--container)); }
  h1 { font-size: 42px; line-height: 1.08; }
  .navbar { height: 64px; }
  .menu-toggle { display: block; color: inherit; }
  .navbar--dark .menu-toggle { color: var(--white); }
  .navbar--light .menu-toggle, .navbar--white .menu-toggle { color: var(--purple); }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    padding: 18px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    background: rgba(42, 13, 64, .97);
    box-shadow: 0 20px 60px rgba(9, 6, 13, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 180ms ease;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links > a, .nav-group > a { padding: 12px; display: block; color: var(--white) !important; opacity: 1 !important; font-size: 15px; }
  .nav-links .active { color: var(--rose-action) !important; }
  .nav-submenu { position: static; width: auto; padding: 0 12px 6px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: none; }
  .nav-submenu a { padding: 8px 12px; font-size: 13px; }
  .glow { width: 520px; }
  .home-page { padding-top: 72px; }
  .home-page h1 { font-size: 46px; }
  .action-panel { padding: 28px; }
  .page-heading { padding-top: 64px; }
  .feature-card, .product-card { min-height: 0; padding: 28px; }
  .feature-card h2, .product-card h2 { font-size: 28px; line-height: 36px; }
  .cta-inner { padding: 52px 0 72px; }
  .cta-inner h2 { font-size: 29px; line-height: 36px; }
  .products-hero { min-height: 980px; padding-top: 64px; }
  .product-intro .lead { max-width: 92%; }
  .phone { width: 150px; height: 306px; padding: 9px 6px; border-radius: 26px; }
  .phone::before { top: 10px; width: 56px; height: 17px; }
  .phone-screen { border-radius: 20px; }
  .phone-screen span { font-size: 9px; }
  .phone-pos--1 { right: 10px; top: 360px; }
  .phone-pos--2 { left: 10px; top: 500px; }
  .phone-pos--3 { left: 34%; top: 650px; }
  .phone-pos--4 { right: 8px; top: 620px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card--1, .product-card--2, .product-card--3, .product-card--4, .product-card--5, .product-card--6 { grid-column: auto; }
  .about-hero, .profile-hero { padding-top: 64px; display: grid; grid-template-columns: 1fr; }
  .about-visual { min-height: 380px; }
  .about-visual > img:not(.card-glow) { margin-bottom: 52px; }
  .philosophy-card { padding: 40px 24px; }
  .philosophy-card h2 { font-size: 28px; line-height: 36px; }
  .team-page { padding-top: 64px; }
  .team-shell { padding-bottom: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .vision-page { padding-top: 70px; }
  .vision-head { grid-template-columns: 1fr; gap: 30px; }
  .roadmap-card strong { font-size: 23px; }
  .profile-visual { min-height: 280px; }
  .contact-page { padding-top: 64px; }
  .contact-heading br { display: none; }
  .contact-form, .contact-info { padding: 28px; }
  .contact-form h2, .contact-info h2 { font-size: 28px; line-height: 36px; }
  .contact-line p { font-size: 15px; line-height: 23px; }
  .splash-bg { object-position: 50% 50%; }
  .tree-glow--outer { width: 90vw; }
  .tree-glow--inner { width: 50vw; }
}

@media (max-width: 430px) {
  .home-page h1, h1 { font-size: 38px; }
  .lead { font-size: 16px; line-height: 1.55; }
  .phone-pos--1 { right: -12px; }
  .phone-pos--2 { left: -6px; }
  .phone-pos--3 { left: 27%; }
  .phone-pos--4 { right: -14px; }
  .product-meta em { display: none; }
  .roadmap-card { padding: 24px; }
  .partners span { padding: 12px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .navbar, .ambient, .button, .partners { display: none !important; }
  .page, .profile-page { background: #fff !important; color: #111 !important; }
  .profile-hero { min-height: 0; }
  .profile-visual, .stat-card { border: 1px solid #ccc; background: #fff; color: #111; box-shadow: none; }
  .stat-card h2, .stat-card p, .profile-visual strong, .profile-visual span { color: #111; }
}
