:root {
  --bg: #05030b;
  --bg-2: #090713;
  --surface: rgba(255,255,255,.055);
  --border: rgba(255,255,255,.13);
  --text: #ffffff;
  --muted: #aaa4b6;
  --purple: #7c2cff;
  --purple-2: #a855ff;
  --purple-3: #d6b4ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #05030b;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  padding: 0 clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 6, 12, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/*
.logo {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
}*/
.logo{
  display:flex;
  align-items:center;
}
.logo-img{
  display:block;
  width:auto;
  height:48px;
  object-fit:contain;
 	filter:
    drop-shadow(0 0 2px rgba(192,132,255,.55))
    drop-shadow(0 0 4px rgba(168,85,255,.35));

}
.footer-logo-img{
  height:52px;
  width:auto;
  display:block;
	filter:
    drop-shadow(0 0 2px rgba(192,132,255,.55))
    drop-shadow(0 0 4px rgba(168,85,255,.35));
}

.logo-word {
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: .9;
}

.logo-core {
  position: relative;
  color: var(--purple-2);
}

.logo-core::after {
  content: "";
  position: absolute;
  width: .3em;
  height: .3em;
  right: .18em;
  bottom: .16em;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 16px rgba(168,85,255,.9);
}

.logo-sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  margin-right: 20px;
  font-size: 15px;
  font-weight: 750;
  color: rgba(255,255,255,.68);
}

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

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-menu-toggle {
  display: none;
}

/* BUTTONS */

.btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  color: white;
  font-weight: 850;
  cursor: pointer;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #7c2cff, #a855ff);
  box-shadow: 0 18px 42px rgba(124,44,255,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(124,44,255,.52);
}

.btn-outline {
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.22);
}

.btn-outline:hover {
  border-color: rgba(168,85,255,.75);
  background: rgba(124,44,255,.1);
}

.btn-install {
  background: rgba(124,44,255,.07);
  border-color: rgba(168,85,255,.38);
  color: var(--purple-3);
}

.btn-large {
  min-height: 66px;
  min-width: 190px;
  font-size: 17px;
}

.arrow {
  font-size: 26px;
  line-height: 0;
}

.download-icon {
  font-size: 22px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 145px 24px 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 50% 42%, rgba(124,44,255,.16), transparent 28rem),
    linear-gradient(180deg, #080710 0%, #05030b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 88px 22px 24px;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(168,85,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,255,.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 50% 46%, #000 0%, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 64%, rgba(124,44,255,.22), transparent 20rem),
    radial-gradient(circle at 83% 30%, rgba(124,44,255,.16), transparent 18rem),
    linear-gradient(180deg, transparent 0%, rgba(5,3,11,.7) 78%, #05030b 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--purple);
  filter: blur(90px);
}

.hero-bg::before {
  width: 290px;
  height: 290px;
  left: 18%;
  top: 40%;
  opacity: .16;
}

.hero-bg::after {
  width: 250px;
  height: 250px;
  right: 17%;
  top: 35%;
  opacity: .13;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 990px;
  margin: 0 auto;
}

.eyebrow,
.section-label {
  margin: 0 0 28px;
  color: var(--purple-2);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 13px;
  font-weight: 950;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(124,44,255,.08);
  border: 1px solid rgba(168,85,255,.42);
  box-shadow: inset 0 0 24px rgba(124,44,255,.12);
}

.hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(56px, 8vw, 108px);
  line-height: .96;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.hero h1 span {
  color: var(--purple-2);
}

.hero-text {
  max-width: 700px;
  margin: 30px auto 38px;
  color: rgba(224,220,234,.72);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.35;
  font-weight: 620;
}

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

.hero-footer-text {
  margin: 48px 0 0;
  color: rgba(168,85,255,.24);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: .26em;
}

/* INTRO */

.intro {
  padding: 138px clamp(24px, 8vw, 150px) 120px;
  text-align: left;
  background: #05030b;
  border-top: 1px solid rgba(255,255,255,.06);
}

.intro h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(35px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.intro-subtitle {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(199,190,217,.72);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
  font-weight: 700;
}

.cards {
  max-width: 1280px;
  margin: 82px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  min-height: 280px;
  text-align: left;
  padding: 34px;
  border: 1px solid rgba(124,44,255,.28);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: var(--purple-3);
  background: rgba(124,44,255,.18);
  border: 1px solid rgba(168,85,255,.45);
  font-size: 25px;
}

.card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.card p {
  max-width: 330px;
  color: rgba(199,190,217,.62);
  line-height: 1.55;
  font-size: 19px;
  font-weight: 650;
}

/* FACILITATOR */

.facilitator {
  min-height: 640px;
  padding: 120px clamp(24px, 8vw, 150px);
  background: #05030b;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: visible;
}

.facilitator-content {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 90px;
}

.facilitator-copy {
  text-align: left;
}

.facilitator .section-label {
  margin: 0 0 34px;
  color: var(--purple-2);
  letter-spacing: .34em;
  font-size: 14px;
  font-weight: 950;
}

.facilitator h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(54px, 5vw, 82px);
  line-height: 1.12;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.facilitator p:not(.section-label) {
  max-width: 650px;
  margin: 42px 0 0;
  color: rgba(199,190,217,.58);
  font-size: 24px;
  line-height: 1.55;
  font-weight: 650;
}

.facilitator-visual {
  position: relative;
  width: 430px;
  height: 430px;
  justify-self: center;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(124,44,255,.28);
}

.orbit-a {
  width: 190px;
  height: 190px;
}

.orbit-b {
  width: 300px;
  height: 300px;
}

.orbit-c {
  width: 410px;
  height: 410px;
}

.visual-core {
  position: relative;
  z-index: 3;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(124,44,255,.22);
  border: 1px solid rgba(168,85,255,.55);
  color: var(--purple-3);
  font-size: 48px;
  font-weight: 950;
  box-shadow: 0 0 70px rgba(124,44,255,.35);
}

.dot {
  position: absolute;
  z-index: 4;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--purple-2);
  box-shadow: 0 0 24px rgba(168,85,255,.9);
}

.dot-1 { top: 10px; left: calc(50% - 6.5px); }
.dot-2 { right: 10px; top: calc(50% - 6.5px); }
.dot-3 { bottom: 10px; left: calc(50% - 6.5px); }
.dot-4 { left: 10px; top: calc(50% - 6.5px); }

/* FLOW */

.flow {
  padding: 280px clamp(24px, 8vw, 150px) 150px;
  text-align: center;
  background: #05030b;
  border-top: 1px solid rgba(255,255,255,.08);
}

.flow h2 {
  margin: 0 auto 90px;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 850;
}

.flow-items {
  position: relative;
  max-width: 1320px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px;
  text-align: left;
}

.flow-items::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 30px;
  right: 30px;
  height: 1px;
  background: rgba(168,85,255,.35);
  z-index: 0;
}

.flow-items div {
  position: relative;
  z-index: 1;
}

.flow-items span {
  width: 58px;
  height: 58px;
  margin: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c2cff, #a855ff);
  color: white;
  font-size: 19px;
  font-weight: 950;
  box-shadow: 0 0 34px rgba(124,44,255,.55);
}

.flow-items strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: -0.035em;
}

.flow-items p {
  margin: 0;
  max-width: 250px;
  color: rgba(199,190,217,.58);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.flow-note {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(199,190,217,.58);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

/* CTA / FOOTER */

.final-cta {
  padding: 92px clamp(24px, 7vw, 110px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(124,44,255,.22), transparent 40rem),
    #05030b;
}

.final-cta h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.site-footer {
  padding: 36px clamp(24px, 7vw, 110px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: var(--muted);
  background: #05030b;
}

.site-footer strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: white;
  letter-spacing: -0.08em;
}

.site-footer strong span {
  color: var(--purple-2);
}

.site-footer small {
  display: block;
  margin-top: 5px;
  color: var(--purple-2);
  font-weight: 850;
  letter-spacing: .16em;
}

.footer-brands,
.footer-links {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brands span {
  color: white;
  font-weight: 900;
  letter-spacing: .08em;
}

.footer-links button {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
}

/* LOGIN SCREEN */

.login-page {
  min-height: 100vh;
  padding: 32px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(124,44,255,.18), transparent 32rem),
    radial-gradient(circle at 20% 80%, rgba(124,44,255,.16), transparent 24rem),
    #05030b;
}

.login-page::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(168,85,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,255,.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 75%);
}

.login-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: var(--purple);
  filter: blur(120px);
  opacity: .18;
}

.login-card {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 42px;
  border-radius: 28px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 100px rgba(0,0,0,.45),
    inset 0 0 60px rgba(124,44,255,.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.login-logo {
  margin-bottom: 54px;
	filter:
    drop-shadow(0 0 3px rgba(192,132,255,.55))
    drop-shadow(0 0 5px rgba(168,85,255,.35));
}

.login-content {
  text-align: center;
}

.login-content h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.login-subtitle {
  max-width: 420px;
  margin: 22px auto 36px;
  color: rgba(199,190,217,.68);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.login-form {
  display: grid;
  gap: 18px;
  text-align: left;
}

.form-group {
  display: grid;
  gap: 9px;
}

.form-group label {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 800;
}

.form-group input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,3,11,.78);
  color: white;
  font-size: 17px;
  outline: none;
}

.form-group input:focus {
  border-color: rgba(168,85,255,.85);
  box-shadow: 0 0 0 4px rgba(124,44,255,.16);
}

.login-error {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  color: #ffb4b4;
  background: rgba(214,69,69,.12);
  border: 1px solid rgba(214,69,69,.32);
  font-weight: 750;
  text-align: center;
}

.login-error.is-visible {
  display: block;
}

.login-submit {
  width: 100%;
  margin-top: 8px;
}

.login-links {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(199,190,217,.65);
  font-size: 14px;
  font-weight: 750;
}

/* TABLET */

@media (max-width: 1050px) {
  .cards,
  .flow-items {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-brands,
  .footer-links {
    justify-content: center;
  }
}

/* MOBILE */

@media (max-width: 760px) {
  .site-header {
    height: 96px;
    padding: 20px 28px;
    background: rgba(7, 6, 12, .58);
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
  }

  .logo-word {
    font-size: 38px;
  }

  .logo-sub {
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: .18em;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.72);
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1100;
  }

  .header-right {
    display: none;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 34px 46px 42px;
    background: rgba(5, 3, 11, .86);
    backdrop-filter: blur(210px) saturate(220%);
	-webkit-backdrop-filter: blur(210px) saturate(220%);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 35px 90px rgba(0,0,0,.58);
    z-index: 999;
  }

  .header-right.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .header-right .nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
    margin: 0;
    padding: 0 0 32px;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .header-right .nav a {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 650;
    color: rgba(255,255,255,.88);
    letter-spacing: -0.02em;
  }

  .header-right .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    margin: 30px 0 0;
  }

  .header-right .header-actions .btn {
    width: 100%;
    min-height: 62px;
    padding: 0 20px;
    border-radius: 13px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 750;
    justify-content: center;
  }

  .hero {
    padding: 132px 20px 80px;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 78px);
  }

  .hero-text {
    font-size: 21px;
  }

  .btn-large {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .intro {
    padding: 90px 22px 80px;
  }

  .intro h2 {
    font-size: 44px;
  }

  .cards {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .card {
    min-height: auto;
  }

  .facilitator {
    padding: 84px 22px;
    min-height: auto;
  }

  .facilitator-content {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .facilitator h2 {
    font-size: 48px;
  }

  .facilitator p:not(.section-label) {
    font-size: 20px;
    margin-top: 28px;
  }

  .facilitator-visual {
    width: 300px;
    height: 300px;
  }

  .orbit-a {
    width: 140px;
    height: 140px;
  }

  .orbit-b {
    width: 210px;
    height: 210px;
  }

  .orbit-c {
    width: 290px;
    height: 290px;
  }

  .flow {
    padding: 90px 22px;
  }

  .flow h2 {
    margin-bottom: 54px;
    font-size: 42px;
  }

  .flow-items {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .flow-items::before {
    display: none;
  }

  .login-page {
    padding: 18px;
  }

  .login-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .login-logo {
    margin-bottom: 42px;
  }

  .login-links {
    flex-direction: column;
    text-align: center;
  }
}