:root {
  --dark: #07070a;
  --dark-2: #0b0920;
  --ink: #11131a;
  --muted: #687080;
  --line: rgba(18, 18, 24, .10);
  --purple: #9b20ff;
  --purple-2: #6f38ff;
  --purple-3: #c177ff;
  --surface: #ffffff;
  --surface-soft: #f7f3ff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 7, 10, .98), rgba(11, 9, 32, .98) 46%, rgba(35, 10, 72, .98)),
    #080913;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(110deg, #000, transparent 78%);
  opacity: .7;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(155, 32, 255, .24) 62%, transparent 100%),
    linear-gradient(180deg, transparent 0 70%, rgba(111, 56, 255, .16));
  pointer-events: none;
}

.header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.logo {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(155, 32, 255, .38);
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand .logo {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.nav {
  display: flex;
  gap: 34px;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  transition: color .2s;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 18px 45px rgba(118, 56, 255, .36);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .09);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(155, 32, 255, .35);
  border-radius: 999px;
  color: #dcc8ff;
  background: rgba(155, 32, 255, .13);
  font-size: 13px;
  font-weight: 850;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-3);
  box-shadow: 0 0 0 6px rgba(193, 119, 255, .14);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 900;
}

.accent {
  color: var(--purple-3);
  text-shadow: 0 0 40px rgba(179, 92, 255, .46);
}

.hero p {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 8px;
  color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .04);
  font-size: 14px;
}

.point strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.point small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.25;
}

.point-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #dec2ff;
  background: rgba(155, 32, 255, .22);
  font-size: 15px;
  font-weight: 900;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-badge {
  display: flex;
  width: 196px;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  transition: transform .2s, background .2s, border-color .2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .12);
}

.store-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 10px 25px rgba(118, 56, 255, .3);
  font-size: 22px;
}

.play-market .store-icon {
  font-size: 18px;
}

.store-badge small,
.store-badge em {
  display: block;
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
  font-style: normal;
  line-height: 1.1;
}

.store-badge strong {
  display: block;
  margin: 2px 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.05;
}

.device-wrap {
  position: relative;
  min-height: 520px;
}

.product-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .45);
  backdrop-filter: blur(18px);
}

.product-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  filter: saturate(1.04) contrast(1.02);
}

.desktop-shot {
  top: 36px;
  left: 0;
  width: min(88%, 580px);
  aspect-ratio: 2582 / 2000;
  padding: 9px;
  border-radius: 28px;
}

.desktop-shot img {
  border-radius: 20px;
}

.desktop-shot:after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 9, 19, .08), transparent 22%, transparent 76%, rgba(8, 9, 19, .14));
  pointer-events: none;
}

.phone-shot {
  right: 0;
  bottom: 0;
  width: 218px;
  aspect-ratio: 1206 / 2622;
  padding: 7px;
  border-color: rgba(255, 255, 255, .14);
  border-radius: 38px;
  background: #090a12;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.phone-shot img {
  border-radius: 31px;
}

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.kicker {
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
}

.section-head p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-system {
  background:
    linear-gradient(180deg, #fff, #fbf8ff 58%, #fff);
}

.workflow {
  display: grid;
  grid-template-columns: 1.12fr .88fr .88fr;
  gap: 16px;
}

.workflow-main,
.workflow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(155, 32, 255, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 17, 35, .06);
}

.workflow-main {
  grid-row: span 2;
  min-height: 430px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(155, 32, 255, .92), rgba(111, 56, 255, .72)),
    #120a2a;
}

.workflow-main:after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.workflow-card {
  min-height: 207px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(155, 32, 255, .055), transparent 52%),
    #fff;
}

.step {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(155, 32, 255, .9);
  font-size: 13px;
  font-weight: 950;
}

.workflow-main .step {
  color: rgba(255, 255, 255, .72);
}

.workflow h3 {
  max-width: 520px;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
}

.workflow-card h3 {
  font-size: 23px;
}

.workflow p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.workflow-main p {
  max-width: 460px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.mini-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 430px;
  margin-top: 34px;
}

.mini-board span {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .86);
  font-weight: 750;
}

.position-head {
  display: grid;
  grid-template-columns: .56fr 1fr;
  gap: 24px;
  align-items: end;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(18, 18, 24, .08);
}

.position-head span {
  color: var(--purple);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.position-head h3 {
  max-width: 760px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.position-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.position-strip div {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(18, 18, 24, .09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(155, 32, 255, .045), transparent 52%),
    #fff;
  box-shadow: 0 18px 50px rgba(20, 17, 35, .05);
}

.position-strip em {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(155, 32, 255, .08);
  color: var(--purple);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.position-strip b {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.position-strip span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.dark-band {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(135deg, #080913, #120824 58%, #210a45),
    #080913;
}

.work-map {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 46px;
  align-items: center;
}

.work-map h2 {
  max-width: 720px;
  color: #fff;
}

.work-map > div > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
}

.work-steps {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.work-steps div {
  display: grid;
  grid-template-columns: 54px 180px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.work-steps span {
  color: var(--purple-3);
  font-size: 13px;
  font-weight: 950;
}

.work-steps b {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.work-steps p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
}

.work-preview {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 850;
}

.preview-top small {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  font-weight: 700;
}

.preview-msg,
.preview-file,
.preview-thread,
.preview-result {
  margin-top: 12px;
  padding: 15px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .82);
}

.preview-file {
  width: fit-content;
  max-width: 100%;
}

.preview-thread {
  margin-left: 42px;
  border: 1px solid rgba(193, 119, 255, .32);
  background: rgba(155, 32, 255, .18);
}

.preview-thread b,
.preview-thread span {
  display: block;
}

.preview-thread b {
  margin-bottom: 4px;
  color: #fff;
}

.preview-result {
  color: #fff;
  background: linear-gradient(135deg, rgba(155, 32, 255, .95), rgba(111, 56, 255, .88));
}

.ai {
  background:
    linear-gradient(180deg, #fff, var(--surface-soft));
}

.ai-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(155, 32, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(155, 32, 255, .10), transparent 34%),
    #fff;
  box-shadow: 0 24px 70px rgba(52, 16, 120, .18);
}

.ai-card > div > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.ai-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.ai-list div {
  display: flex;
  gap: 12px;
  color: #333744;
  font-weight: 650;
}

.check {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--purple);
  background: rgba(155, 32, 255, .12);
  font-weight: 900;
}

.ai-visual {
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: #0d0d18;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.ai-msg {
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
}

.ai-msg.answer {
  margin-left: 46px;
  color: #fff;
  background: linear-gradient(135deg, rgba(155, 32, 255, .92), rgba(111, 56, 255, .88));
}

.cta {
  padding: 68px 0 78px;
  text-align: center;
  background:
    linear-gradient(180deg, #fff, #f7f1ff);
}

.cta p {
  max-width: 650px;
  margin: 14px auto 28px;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(18, 18, 24, .08);
  color: #626978;
  background: #fff;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  color: #171923;
  font-size: 15px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .work-map,
  .ai-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 720px;
    font-size: 58px;
  }

  .device-wrap {
    min-height: 540px;
  }

  .desktop-shot {
    left: 4%;
    width: 76%;
  }

  .phone-shot {
    right: 6%;
    width: 220px;
  }

  .workflow {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }

  .position-strip {
    grid-template-columns: 1fr;
  }

  .position-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .work-steps div {
    grid-template-columns: 46px 170px 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header {
    padding: 18px 0;
  }

  .header .btn {
    display: none;
  }

  .hero-grid {
    gap: 34px;
    padding: 48px 0 46px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .point {
    min-height: 58px;
  }

  .store-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .store-badge {
    width: 100%;
    min-height: 62px;
    padding: 9px 10px;
  }

  .store-icon {
    width: 28px;
    height: 28px;
    font-size: 19px;
  }

  .store-badge strong {
    font-size: 16px;
  }

  .store-badge small,
  .store-badge em {
    font-size: 10px;
  }

  .device-wrap {
    min-height: 410px;
    margin-bottom: -34px;
    transform: scale(.92);
    transform-origin: top center;
  }

  .desktop-shot {
    top: 10px;
    left: -4%;
    width: 88%;
    border-radius: 24px;
  }

  .desktop-shot img,
  .desktop-shot:after {
    border-radius: 17px;
  }

  .phone-shot {
    right: -8px;
    width: 158px;
    border-radius: 30px;
  }

  .phone-shot img {
    border-radius: 24px;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-main,
  .workflow-card {
    padding: 22px;
  }

  .workflow h3 {
    font-size: 26px;
  }

  .mini-board,
  .position-strip {
    grid-template-columns: 1fr;
  }

  .position-head h3 {
    font-size: 25px;
  }

  .position-strip div {
    min-height: auto;
    padding: 20px;
  }

  .work-steps div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .work-preview {
    padding: 20px;
  }

  .preview-thread {
    margin-left: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .ai-card {
    padding: 24px;
  }

  .ai-msg.answer {
    margin-left: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *:before,
  *:after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
