:root {
  --bg: #050713;
  --panel: #0d1224;
  --line: #222b47;
  --text: #f7f8ff;
  --muted: #a9b1c7;
  --purple: #8257ff;
  --cyan: #21d4cf;
  --green: #36e28c;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  background: radial-gradient(circle at 78% 8%, #123a5955, transparent 32rem),
    radial-gradient(circle at 15% 22%, #472d8855, transparent 30rem), var(--bg);
  color: var(--text);
}
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
  animation: ambient-drift 14s ease-in-out infinite alternate;
}
body::before { top: 8%; left: -12rem; background: var(--purple); }
body::after { right: -12rem; top: 42%; background: var(--cyan); animation-delay: -7s; }
a {
  color: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  font-weight: 900;
  text-decoration: none;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid #ffffff18;
  border-radius: 13px;
  box-shadow: 0 8px 24px #0008;
}
.topbar nav {
  display: flex;
  gap: 24px;
}
.topbar nav a {
  color: #bdc5d9;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nav-cta,
.button {
  border-radius: 14px;
  font-weight: 850;
  text-decoration: none;
}
.nav-cta {
  padding: 11px 16px;
  background: #fff;
  color: #080a12;
}
.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 50px;
  padding: 64px 0 90px;
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-enter 0.75s cubic-bezier(.2,.75,.25,1) forwards;
}
.hero-copy > :nth-child(2) { animation-delay: 0.08s; }
.hero-copy > :nth-child(3) { animation-delay: 0.16s; }
.hero-copy > :nth-child(4) { animation-delay: 0.24s; }
.hero-copy > :nth-child(5) { animation-delay: 0.32s; }
.eyebrow,
.label {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero h1 {
  margin: 18px 0;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -5px;
}
.hero h1 span {
  background: linear-gradient(90deg, #9d72ff, #43a7ff, var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-text {
  max-width: 660px;
  color: #b8c0d3;
  font-size: 19px;
  line-height: 1.7;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-block;
  padding: 15px 20px;
}
.button.primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--purple), #287fff);
  box-shadow: 0 14px 40px #6d45ff44;
}
.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, #ffffff50, transparent);
  transition: transform 0.7s ease;
}
.button.primary:hover::after { transform: translateX(130%) skewX(-20deg); }
.button, .nav-cta { transition: transform .25s ease, box-shadow .25s ease; }
.button:hover, .nav-cta:hover { transform: translateY(-3px); }
.button.ghost {
  border: 1px solid #35415f;
  background: #11172a;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: #8f9ab5;
  font-size: 13px;
}
.phones {
  position: relative;
  height: 610px;
}
.phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid #4a5576;
  border-radius: 42px;
  background: #050812;
  box-shadow: 0 30px 80px #000b;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-front {
  right: 7%;
  top: 20px;
  width: 280px;
  height: 605px;
  z-index: 2;
  transform: rotate(3deg);
  animation: phone-float-front 5.5s ease-in-out infinite;
}
.phone-back {
  left: 3%;
  top: 76px;
  width: 250px;
  height: 540px;
  opacity: 0.82;
  transform: rotate(-6deg);
  animation: phone-float-back 6.5s ease-in-out infinite;
}
.app-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 100px;
}
.app-card {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, #12182c, #090d1b);
  box-shadow: 0 24px 70px #0005;
}
.app-card,
.compare-grid article,
.workflow article,
.feature-grid article {
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.app-card:hover,
.compare-grid article:hover,
.workflow article:hover,
.feature-grid article:hover {
  transform: translateY(-8px);
  border-color: #566b9c;
  box-shadow: 0 24px 60px #0007;
}
.tool-picker {
  padding-top: 72px;
  padding-bottom: 100px;
}
.tool-picker .section-title { max-width: 960px; }
.tool-picker .compare-grid article { position: relative; overflow: hidden; }
.tool-picker .compare-grid article::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: #8257ff2e;
  filter: blur(8px);
  transition: transform .5s ease;
}
.tool-picker .compare-grid article.news::before { background: #21d4cf2b; }
.tool-picker .compare-grid article:hover::before { transform: scale(1.45); }
.app-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 24px;
}
.app-card h2 {
  margin: 5px 0 9px;
  font-size: 26px;
}
.app-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 850px) {
  .topbar nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .phones {
    height: 560px;
  }
  .phone-front {
    right: 14%;
  }
  .phone-back {
    left: 12%;
  }
  .app-intro {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    letter-spacing: -3px;
  }
}
@media (max-width: 520px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }
  .hero {
    min-height: auto;
  }
  .phones {
    height: 470px;
  }
  .phone-front {
    right: 5%;
    width: 220px;
    height: 475px;
  }
  .phone-back {
    left: 3%;
    width: 190px;
    height: 410px;
  }
  .app-card {
    align-items: flex-start;
    padding: 22px;
  }
  .app-card img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-text {
    font-size: 17px;
  }
  .nav-cta {
    font-size: 13px;
  }
}

.section,
.product-section {
  padding: 100px 0;
}
.section-title {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  max-width: 850px;
  margin: 10px 0 24px;
}
.section-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 700px;
}
.workflow,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 45px;
}
.workflow article,
.feature-grid article {
  padding: 26px;
  border-radius: 24px;
  background: #11172a;
  border: 1px solid var(--line);
}
.workflow b,
.feature-grid span {
  color: var(--green);
  font-size: 22px;
}
.workflow h3,
.feature-grid h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}
.workflow p,
.feature-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.product-section {
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 75% 20%, #25d98712, transparent 30%);
}
.news-section {
  background: radial-gradient(circle at 20% 20%, #fe9d3c14, transparent 30%);
}
.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
}
.store-button {
  flex: none;
  padding: 16px 20px;
  border-radius: 16px;
  background: #fff;
  color: #070a12;
  font-weight: 800;
}
.guide-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-top: 80px;
}
.guide-layout.reverse > div:first-child {
  order: 2;
}
.guide-layout h3 {
  font-size: 38px;
  margin: 8px 0 30px;
}
.phone-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.phone-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}
.phone-steps li:before {
  content: counter(step);
  grid-row: 1/3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #05110b;
  font-weight: 900;
}
.phone-steps span {
  color: var(--muted);
  line-height: 1.5;
}
.screen-stack {
  height: 650px;
  position: relative;
}
.screen-stack img {
  position: absolute;
  width: 290px;
  height: 628px;
  object-fit: cover;
  border: 8px solid #20283c;
  border-radius: 42px;
  box-shadow: 0 30px 80px #0008;
}
.screen-stack img:first-child {
  right: 7%;
  z-index: 2;
  transform: rotate(4deg);
}
.screen-stack img:last-child {
  left: 9%;
  top: 25px;
  transform: rotate(-7deg);
  opacity: 0.8;
}
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 55px;
}
.mini-gallery img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--line);
}
.news-section .feature-grid span {
  color: #ffa84e;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 45px;
}
.compare-grid article {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #11172a;
}
.compare-grid img {
  width: 78px;
  height: 78px;
  border-radius: 20px;
}
.compare-grid h3 {
  font-size: 30px;
  margin: 24px 0 10px;
}
.compare-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.faq {
  max-width: 900px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
.faq details p {
  color: var(--muted);
  line-height: 1.7;
}
.disclaimer {
  margin-bottom: 80px;
  padding: 24px;
  border: 1px solid #f8bd4b4a;
  background: #f8bd4b0d;
  border-radius: 18px;
  color: #c9cfdb;
  line-height: 1.6;
}
footer {
  border-top: 1px solid var(--line);
  padding-top: 45px;
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  color: var(--muted);
}
footer div {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
footer small {
  grid-column: 1/-1;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}
.reveal[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal[data-reveal-delay="3"] { transition-delay: .24s; }
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes phone-float-front {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-14px); }
}
@keyframes phone-float-back {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(12px); }
}
@keyframes ambient-drift {
  to { transform: translate3d(5rem, 3rem, 0) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* High-motion presentation layer */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #ffffff0d;
  background: linear-gradient(180deg, #050713e8, #050713a8);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  animation: nav-drop .7s cubic-bezier(.2,.8,.2,1) both;
}
.brand-logo {
  animation: logo-breathe 3.2s ease-in-out infinite;
}
.brand:hover .brand-logo { animation: logo-spin .7s cubic-bezier(.2,.8,.2,1); }
.topbar nav a { position: relative; }
.topbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: right .3s ease;
}
.topbar nav a:hover::after { right: 0; }
.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #b34cff, #377dff, #21f0db);
  box-shadow: 0 0 16px #31d9ff;
}
.cursor-glow {
  position: fixed;
  z-index: 3;
  left: -190px;
  top: -190px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #5a8dff20, #8c4dff0d 42%, transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.particle-layer {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle-layer i {
  position: absolute;
  left: var(--x);
  bottom: -20px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #77eaff;
  box-shadow: 0 0 12px #7d65ff;
  opacity: .55;
  animation: particle-rise var(--duration) linear var(--delay) infinite;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -8%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #8557ff20, #21d4cf18, transparent, #8557ff20);
  filter: blur(55px);
  animation: aura-spin 18s linear infinite;
}
.hero { position: relative; }
.hero h1 span {
  background-size: 220% 100%;
  animation: headline-flow 3.8s linear infinite;
}
.eyebrow { animation: neon-pulse 2.4s ease-in-out infinite; }
.trust span {
  display: inline-block;
  animation: trust-float 3s ease-in-out infinite;
}
.trust span:nth-child(2) { animation-delay: -.8s; }
.trust span:nth-child(3) { animation-delay: -1.6s; }
.phones { transform: translateY(calc(var(--scroll-shift, 0px) * -1)); transition: transform .12s linear; }
.phones::before {
  content: "";
  position: absolute;
  inset: 15% 4%;
  border-radius: 50%;
  background: linear-gradient(135deg, #8457ff66, #21d4cf4a);
  filter: blur(42px);
  animation: phone-aura 3.6s ease-in-out infinite;
}
.button,
.nav-cta {
  transform: translate(var(--magnet-x, 0), var(--magnet-y, 0));
}
.button.primary { background-size: 200% 100%; animation: button-gradient 3s linear infinite; }
.section-title {
  text-wrap: balance;
  background: linear-gradient(100deg, #fff 10%, #aabfff 42%, #fff 58%, #d7faff 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  color: transparent;
  animation: title-shimmer 5s linear infinite;
}
.tilt-card {
  position: relative;
  transform: perspective(850px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}
.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), #ffffff24, transparent 68%);
  transition: opacity .3s ease;
}
.tilt-card:hover {
  transform: perspective(850px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-9px);
}
.tilt-card:hover::after { opacity: 1; }
.workflow article b { animation: number-pulse 2s ease-in-out infinite; }
.workflow article:nth-child(2) b { animation-delay: -.4s; }
.workflow article:nth-child(3) b { animation-delay: -.8s; }
.workflow article:nth-child(4) b { animation-delay: -1.2s; }
.screen-stack img:first-child { animation: guide-float-a 4.8s ease-in-out infinite; }
.screen-stack img:last-child { animation: guide-float-b 5.4s ease-in-out infinite; }
.mini-gallery img { animation: gallery-wave 4s ease-in-out infinite; }
.mini-gallery img:nth-child(2) { animation-delay: -.8s; }
.mini-gallery img:nth-child(3) { animation-delay: -1.6s; }
.mini-gallery img:nth-child(4) { animation-delay: -2.4s; }
.faq details[open] { animation: faq-open .4s ease both; }
.disclaimer { animation: warning-glow 3s ease-in-out infinite; }
footer { position: relative; }
footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
  background-size: 200% 100%;
  animation: footer-line 3s linear infinite;
}
.motion-ready .reveal {
  filter: blur(9px);
  transform: translateY(50px) scale(.97);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16,.8,.25,1), filter .9s ease;
}
.motion-ready .reveal.visible { filter: blur(0); transform: none; }
@keyframes nav-drop { from { opacity: 0; transform: translateY(-100%); } }
@keyframes logo-breathe { 50% { transform: scale(1.08); box-shadow: 0 0 28px #31cfff55; } }
@keyframes logo-spin { to { transform: rotate(360deg) scale(1.06); } }
@keyframes particle-rise { to { transform: translateY(-110vh) translateX(60px); opacity: 0; } }
@keyframes aura-spin { to { transform: rotate(360deg); } }
@keyframes headline-flow { to { background-position: -220% 0; } }
@keyframes neon-pulse { 50% { color: #9c7dff; text-shadow: 0 0 18px #21d4cfaa; } }
@keyframes trust-float { 50% { transform: translateY(-5px); color: #c7d4f5; } }
@keyframes phone-aura { 50% { transform: scale(1.18) rotate(8deg); opacity: .65; } }
@keyframes button-gradient { to { background-position: -200% 0; } }
@keyframes title-shimmer { to { background-position: -220% 0; } }
@keyframes number-pulse { 50% { transform: scale(1.14); color: #fff; text-shadow: 0 0 18px currentColor; } }
@keyframes guide-float-a { 50% { transform: rotate(2deg) translateY(-18px); } }
@keyframes guide-float-b { 50% { transform: rotate(-5deg) translateY(15px); } }
@keyframes gallery-wave { 50% { transform: translateY(-12px) scale(1.015); box-shadow: 0 24px 45px #0008; } }
@keyframes faq-open { from { opacity: .4; transform: translateX(-10px); } }
@keyframes warning-glow { 50% { border-color: #f8bd4ba8; box-shadow: 0 0 35px #f8bd4b16; } }
@keyframes footer-line { to { background-position: -200% 0; } }
@media (max-width: 700px) {
  .cursor-glow { display: none; }
  .particle-layer i:nth-child(even) { display: none; }
  .tilt-card, .tilt-card:hover { transform: translateY(0); }
}
@media (max-width: 900px) {
  .workflow,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .guide-layout.reverse > div:first-child {
    order: 0;
  }
  .product-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .mini-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .section,
  .product-section {
    padding: 70px 0;
  }
  .workflow,
  .feature-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .screen-stack {
    height: 500px;
  }
  .screen-stack img {
    width: 210px;
    height: 455px;
    border-radius: 32px;
  }
  .mini-gallery {
    gap: 9px;
  }
  .mini-gallery img {
    border-radius: 14px;
  }
  .section-title {
    letter-spacing: -1.5px;
  }
  .product-head .store-button {
    width: 100%;
    text-align: center;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
