:root {
  --bg: #040812;
  --bg-soft: #071225;
  --panel: rgba(13, 25, 47, 0.74);
  --panel-strong: rgba(15, 33, 62, 0.92);
  --text: #f4f8ff;
  --muted: #9aa9c3;
  --blue: #2f80ff;
  --blue-soft: rgba(47, 128, 255, 0.18);
  --cyan: #5ce1ff;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(47, 128, 255, 0.25), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(92, 225, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #040812 0%, #050915 42%, #02040a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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




.page-glow {
  position: fixed;
  inset: auto -20% -35% auto;
  width: 620px;
  height: 620px;
  background: rgba(47, 128, 255, 0.16);
  filter: blur(90px);
  pointer-events: none;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.nav-links,
.trust-row,
.hero-actions {
  display: flex;
  align-items: center;
}

.top-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* .top-brand-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;

  display: inline-block;
  flex: 0 0 40px;

  border-radius: 14px;
  background-color: #111a36;
  background-image: url("assets/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;

  box-shadow: 0 12px 30px rgba(47, 128, 255, 0.35);
} */

.top-brand-name {
  color: var(--text);
}
 
 
.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 60px auto 0;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 1;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.17rem;
  line-height: 1.75;
}








.tutorial-section {
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto 0;
  padding: 70px 0;
}

.tutorial-text {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
}

.tutorial-video-wrapper {
  margin: 38px auto 0;
  width: min(360px, 90vw);
  aspect-ratio: 720 / 1282;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(180deg, #182540, #05070d);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.tutorial-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 32px;
  object-fit: cover;
  background: #000;
}


.tutorial-video-wrapper {
  position: relative;
  margin: 38px auto 0;
  width: min(420px, 90vw);
  aspect-ratio: 720 / 1282;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(180deg, #182540, #05070d);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tutorial-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 32px;
  object-fit: cover;
  background: #000;
}

.big-play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  border: none;
  border-radius: 50%;
  background: rgba(244, 248, 255, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 5;
}

.big-play-button:hover {
  transform: scale(1.08);
}

.big-play-button span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #02040a;
}

.big-play-button.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-note {
  margin-top: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}









.seo-content {
  width: min(1180px, calc(100% - 40px));
  margin: 90px auto 0;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content h2 {
  margin-top: 42px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.seo-content ul {
  max-width: 820px;
  margin: 18px 0 34px;
  padding-left: 22px;
  color: var(--muted);
}

.seo-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

@media (max-width: 560px) {
  .seo-content {
    width: min(100% - 28px, 1180px);
    margin-top: 64px;
    padding-top: 46px;
  }

  .seo-content h2 {
    margin-top: 34px;
  }
}
























.hero-actions {
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.app-store-button,
.secondary-button {
  min-height: 58px;
  border-radius: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.app-store-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 24px;
  background: var(--text);
  color: #02040a;
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(244, 248, 255, 0.14);
}

.app-store-button .small {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.74;
}

.app-store-button .large {
  font-size: 1.18rem;
  line-height: 1.05;
}

.app-store-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
}

.secondary-button {
  display: inline-grid;
  place-items: center;
  padding: 0 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
}

.trust-row {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  color: var(--muted);
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
}

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

.screenshot-backdrop {
  position: absolute;
  width: 430px;
  height: 580px;
  border-radius: 58px;
  background:
    linear-gradient(155deg, rgba(47, 128, 255, 0.35), transparent 44%),
    linear-gradient(335deg, rgba(92, 225, 255, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.04);
  transform: rotate(-8deg) translateY(10px);
  filter: blur(0.2px);
  border: 1px solid var(--border);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(315px, 72vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(180deg, #182540, #05070d);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 88px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05070d;
  z-index: 4;
}

.phone-frame img,
.screenshot-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 36px;
}

.phone-frame img {
  object-fit: cover;
  display: block;
}

.screenshot-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(47, 128, 255, 0.16), transparent),
    var(--bg-soft);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.screenshot-placeholder small {
  color: var(--muted);
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  min-width: 142px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(6, 14, 28, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.card-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.card-top {
  top: 112px;
  right: 28px;
}

.card-bottom {
  bottom: 138px;
  left: 12px;
}

.features,
.cta-panel,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.features {
  padding: 80px 0 46px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px;
  min-height: 245px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--cyan);
  font-weight: 800;
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  margin-top: 40px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(47, 128, 255, 0.18), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.compact {
  flex-shrink: 0;
}




.site-footer {
  padding: 42px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.disclaimer {
  max-width: 430px;
  text-align: right;
}

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

  .hero {
    margin-top: 28px;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .cta-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .disclaimer {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .features,
  .cta-panel,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    margin-top: 18px;
  }

  .hero-text {
    font-size: 1.02rem;
  }

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

  .screenshot-backdrop {
    width: 330px;
    height: 490px;
  }

  .floating-card {
    display: none;
  }

  .phone-frame {
    width: min(285px, 78vw);
  }

  .cta-panel {
    padding: 26px;
  }
}
