
:root {
  --bg: #070A12;
  --bg-soft: #0B0F1B;
  --card: rgba(17, 21, 36, 0.78);
  --card-strong: #111624;
  --text: #F8FAFF;
  --muted: #9AA4B7;
  --line: rgba(255, 255, 255, 0.09);
  --purple: #7C5CFF;
  --purple-bright: #9A7CFF;
  --blue: #3C8DFF;
  --blue-bright: #65A7FF;
  --green: #5BFFB1;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(68, 78, 255, 0.08), transparent 26%),
    radial-gradient(circle at 12% 45%, rgba(111, 68, 255, 0.06), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: rgba(124, 92, 255, 0.35);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.section {
  position: relative;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.page-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.1;
  pointer-events: none;
}

.page-glow-one {
  top: -200px;
  right: -170px;
  background: var(--purple);
}

.page-glow-two {
  bottom: -240px;
  left: -180px;
  background: var(--blue);
}

/* Header */

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
}

.brand-mark span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 7px;
  transform: rotate(45deg);
}

.brand-mark span:first-child {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
}

.brand-mark span:last-child {
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--blue), #6B6BFF);
}

.nav-links {
  display: flex;
  gap: 12px;
}

.nav-links a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #C4CBDA;
  font-size: 14px;
  font-weight: 600;
  transition: 180ms ease;
}

.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
}

/* Hero */

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 160px 0 95px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #B7C0D0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(91, 255, 177, 0.68);
}

.hero h1 {
  max-width: 710px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(90deg, #B7A5FF 0%, #7D94FF 48%, #6AB9FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 585px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  transition: 180ms ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), #5E70FF);
  box-shadow: 0 14px 38px rgba(91, 80, 255, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(91, 80, 255, 0.32);
}

.btn-primary span {
  font-size: 18px;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #AFB8C8;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.025);
}

.android-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(91, 255, 177, 0.5);
}

/* Hero visual */

.hero-visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  z-index: 3;
  width: 280px;
  transform: rotate(3deg);
  filter: drop-shadow(0 42px 70px rgba(0,0,0,0.48));
}

.phone-frame {
  position: relative;
  padding: 10px;
  border-radius: 42px;
  background: linear-gradient(145deg, #3B4358, #0F131D 42%, #242B3B);
  border: 1px solid rgba(255,255,255,0.16);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 39px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.phone-top {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 84px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #04060A;
}

.camera {
  position: absolute;
  top: 9px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #151C31;
  box-shadow: inset 0 0 0 1px rgba(74, 100, 255, 0.25);
}

.phone-screen {
  min-height: 534px;
  padding: 60px 20px 18px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 16%, rgba(82, 109, 255, 0.23), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(124, 92, 255, 0.2), transparent 28%),
    #0A0E18;
}

.screen-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #B8C1D1;
  font-size: 11px;
  font-weight: 700;
}

.screen-brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.screen-title {
  margin-top: 25px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.screen-tile {
  height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 17px;
  background: rgba(255,255,255,0.045);
}

.screen-tile.dim {
  opacity: 0.6;
}

.screen-tile span {
  color: #D7DCE7;
  font-size: 11px;
  font-weight: 700;
}

.screen-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(124, 92, 255, 0.17);
  color: #B6AAFF;
}

.qr-icon {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 4px;
  place-content: center;
}

.qr-icon i {
  width: 8px;
  height: 8px;
  display: block;
  border: 2px solid #B6AAFF;
  border-radius: 2px;
}

.convert-icon {
  background: rgba(60, 141, 255, 0.15);
  color: #78B7FF;
}

.convert-icon b {
  font-size: 21px;
  font-weight: 500;
}

.plus-icon,
.spark-icon {
  font-size: 18px;
}

.screen-bottom-card {
  margin-top: 11px;
  padding: 16px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(60,141,255,.08));
  border: 1px solid rgba(143, 124, 255, 0.14);
}

.screen-bottom-card span {
  display: block;
  margin-bottom: 4px;
  color: #8D99AC;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.screen-bottom-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-two {
  width: 370px;
  height: 370px;
  border-color: rgba(124, 92, 255, 0.12);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 16px;
  background: rgba(15, 19, 31, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.25);
}

.floating-card-top {
  top: 90px;
  right: 0;
  animation: floatY 5s ease-in-out infinite;
}

.floating-card-bottom {
  left: 5px;
  bottom: 115px;
  animation: floatY 6s ease-in-out infinite reverse;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 12px;
  margin-bottom: 2px;
}

.floating-card small {
  color: #8792A5;
  font-size: 10px;
}

.mini-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.qr-mini {
  grid-template-columns: repeat(2, 8px);
  gap: 4px;
  place-content: center;
  background: rgba(124, 92, 255, 0.15);
}

.qr-mini span {
  width: 8px;
  height: 8px;
  border: 2px solid #AF9FFF;
  border-radius: 2px;
}

.convert-mini {
  color: #84BEFF;
  background: rgba(60, 141, 255, 0.14);
  font-size: 20px;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Apps */

.apps {
  padding: 110px 0 80px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}

.section-kicker,
.manifesto-kicker {
  display: block;
  margin-bottom: 14px;
  color: #7F8AA0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 390px;
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.app-card {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
}

.app-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.2;
}

.app-card-purple::before {
  background: var(--purple);
}

.app-card-blue::before {
  background: var(--blue);
}

.app-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.app-icon {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 18px 40px rgba(0,0,0,0.22);
}

.app-icon-qr {
  background: linear-gradient(145deg, #8D74FF, #6646F6);
}

.qr-shape {
  width: 44px;
  height: 44px;
  display: grid;
  grid-template-columns: repeat(3, 11px);
  grid-template-rows: repeat(3, 11px);
  gap: 5px;
}

.qr-shape span {
  display: block;
  border: 3px solid white;
  border-radius: 3px;
}

.qr-shape span:nth-child(2),
.qr-shape span:nth-child(4),
.qr-shape span:nth-child(8) {
  border: 0;
}

.qr-shape span:nth-child(5),
.qr-shape span:nth-child(6),
.qr-shape span:nth-child(7) {
  border-width: 2px;
}

.app-icon-converter {
  background: linear-gradient(145deg, #53A4FF, #3979F4);
}

.file-one,
.file-two {
  position: absolute;
  width: 24px;
  height: 30px;
  border: 2px solid rgba(255,255,255,0.94);
  border-radius: 5px;
}

.file-one {
  transform: translate(-10px, 7px) rotate(-7deg);
  opacity: 0.75;
}

.file-two {
  transform: translate(10px, -6px) rotate(7deg);
}

.convert-arrow {
  position: relative;
  z-index: 2;
  font-size: 23px;
  font-weight: 700;
}

.status-badge {
  position: relative;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(91,255,177,0.16);
  border-radius: 999px;
  color: #8FFFC7;
  background: rgba(91,255,177,0.08);
  font-size: 11px;
  font-weight: 700;
}

.status-badge-soft {
  color: #8DC2FF;
  background: rgba(60,141,255,0.09);
  border-color: rgba(60,141,255,0.18);
}

.app-card-body {
  margin-top: 70px;
}

.app-label {
  margin-bottom: 14px;
  color: #838EA2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.app-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.app-description {
  max-width: 460px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature-list {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.feature-list span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #ADB6C7;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.065);
  font-size: 11px;
  font-weight: 600;
}

.app-card-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 9px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.26);
  transition: 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
}

.play-triangle {
  color: #EAF0FF;
  font-size: 22px;
  transform: rotate(-5deg);
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  color: #8C96A8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.store-button strong {
  margin-top: -1px;
  font-size: 14px;
}

.card-index {
  color: rgba(255,255,255,0.14);
  font-family: "Manrope", sans-serif;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}

/* Manifesto */

.manifesto {
  padding: 22px 0 120px;
}

.manifesto-box {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 30%, rgba(124,92,255,0.16), transparent 28%),
    radial-gradient(circle at 70% 85%, rgba(60,141,255,0.1), transparent 34%),
    rgba(255,255,255,0.025);
}

.manifesto-box p {
  max-width: 800px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: #AAB3C4;
}

.manifesto-box strong {
  color: white;
  font-weight: 800;
}

.manifesto-mark {
  position: absolute;
  width: 175px;
  height: 175px;
  right: 56px;
  bottom: -60px;
  opacity: 0.28;
}

.manifesto-mark span {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 30px;
  transform: rotate(45deg);
}

.manifesto-mark span:first-child {
  top: 0;
  left: 0;
  background: var(--purple);
}

.manifesto-mark span:last-child {
  right: 0;
  bottom: 0;
  background: var(--blue);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-wrap {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-size: 16px;
}

.footer-brand .brand-mark {
  width: 22px;
  height: 22px;
}

.footer-brand .brand-mark span {
  width: 13px;
  height: 13px;
  border-radius: 5px;
}

.footer-wrap p {
  color: #788296;
  font-size: 12px;
}

.copyright {
  justify-self: end;
  color: #626C7E;
  font-size: 12px;
}

/* Reveal animation */

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

.reveal-delay {
  transition-delay: 130ms;
}

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

/* Responsive */

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 150px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .app-card {
    min-height: 560px;
  }

  .app-card-body {
    margin-top: 54px;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    padding: 28px 0;
  }

  .footer-wrap p {
    display: none;
  }
}

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

  .nav-wrap {
    height: 74px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

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

  .hero-visual {
    min-height: 480px;
    transform: scale(0.92);
  }

  .floating-card-top {
    right: -30px;
  }

  .floating-card-bottom {
    left: -25px;
  }

  .apps {
    padding-top: 82px;
  }

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

  .app-card {
    min-height: 560px;
    padding: 24px;
  }

  .manifesto {
    padding-bottom: 86px;
  }

  .manifesto-box {
    min-height: 290px;
    padding: 30px;
  }

  .manifesto-mark {
    right: 10px;
    opacity: 0.18;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 17px;
  }

  .nav-links a {
    padding: 8px 13px;
    font-size: 12px;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .platform-chip {
    width: 100%;
  }

  .platform-chip {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
    margin-inline: -18px;
    transform: scale(0.78);
  }

  .phone {
    width: 270px;
  }

  .floating-card {
    min-width: 160px;
  }

  .floating-card-top {
    right: -45px;
  }

  .floating-card-bottom {
    left: -38px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .app-card {
    min-height: 540px;
  }

  .app-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .qr-shape {
    transform: scale(0.82);
  }

  .app-card-body {
    margin-top: 42px;
  }

  .app-card h3 {
    font-size: 38px;
  }

  .app-card-footer {
    align-items: center;
  }

  .card-index {
    font-size: 42px;
  }

  .manifesto-box {
    min-height: 260px;
  }

  .manifesto-box p {
    font-size: 31px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .copyright {
    justify-self: start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
