:root {
  color-scheme: dark;
  --bg: #050914;
  --bg-soft: #0b1223;
  --panel: rgba(19, 29, 55, 0.82);
  --panel-strong: rgba(25, 36, 68, 0.96);
  --line: rgba(153, 177, 255, 0.17);
  --text: #f6f8ff;
  --muted: #aeb8d7;
  --quiet: #7783a6;
  --green: #67f3a2;
  --blue: #2fb6ff;
  --amber: #ffad45;
  --danger: #ff5b68;
  --radius: 8px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(47, 182, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 12% 72%, rgba(103, 243, 162, 0.1), transparent 26rem),
    linear-gradient(180deg, #071026 0%, var(--bg) 44%, #03060d 100%);
  color: var(--text);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 9, 20, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

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

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
}

.button {
  padding: 0 18px;
  background: var(--green);
  color: #06130d;
  box-shadow: 0 16px 48px rgba(103, 243, 162, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  box-shadow: none;
}

.text-link {
  color: var(--green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: 100svh;
  padding: 112px max(24px, calc((100vw - 1120px) / 2)) 72px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  animation: rise 700ms ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.trust-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.trust-item strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.trust-item span {
  color: var(--quiet);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  animation: float-in 900ms ease both;
}

.phone-stage {
  position: absolute;
  inset: 0;
}

.phone {
  position: absolute;
  width: min(36vw, 320px);
  min-width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: #071026;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone img {
  width: 100%;
  height: auto;
}

.phone.primary {
  right: 16%;
  top: 0;
  width: min(39vw, 360px);
}

.phone.secondary {
  left: 1%;
  top: 22%;
  transform: rotate(-7deg);
  opacity: 0.84;
}

.phone.tertiary {
  right: 2%;
  bottom: 0;
  transform: rotate(6deg);
  opacity: 0.78;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.feature-copy p,
.support-copy,
.policy-copy {
  color: var(--muted);
  line-height: 1.7;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  border-radius: 999px;
  background: var(--green);
}

.device-frame {
  width: min(360px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  background: #071026;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-frame.wide {
  width: min(420px, 100%);
}

.privacy-band,
.support-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.privacy-grid,
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.check-list,
.faq-list,
.policy-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.faq-item,
.policy-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 18, 35, 0.72);
  padding: 18px;
}

.check-list strong,
.faq-item strong,
.policy-panel h2 {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
}

.check-list span,
.faq-item p,
.policy-panel p,
.policy-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 110px;
  text-align: center;
}

.cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.98;
}

.cta p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  line-height: 1.65;
}

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

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
  font-size: 0.92rem;
}

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

.page {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 138px 0 90px;
}

.page-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.page-header h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.content-grid {
  display: grid;
  gap: 18px;
}

.policy-panel h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.policy-panel ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.contact-panel {
  margin-top: 34px;
  border: 1px solid rgba(103, 243, 162, 0.34);
  border-radius: var(--radius);
  background: rgba(103, 243, 162, 0.08);
  padding: 22px;
}

.store-redirect-page {
  min-height: 100svh;
}

.store-redirect {
  display: grid;
  grid-template-rows: 1fr auto;
  width: min(560px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 48px 0 28px;
}

.store-card {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(25, 36, 68, 0.95), rgba(11, 18, 35, 0.88));
  box-shadow: var(--shadow);
  padding: clamp(30px, 7vw, 54px);
  text-align: center;
  animation: rise 500ms ease both;
}

.store-app-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
}

.store-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 9vw, 4.4rem);
  line-height: 0.98;
}

.store-card .lead {
  margin-right: auto;
  margin-left: auto;
  font-size: 1.05rem;
}

.store-button {
  width: 100%;
  min-height: 54px;
  margin-top: 14px;
  font-size: 1.02rem;
}

.redirect-status {
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 0.86rem;
  line-height: 1.5;
}

.store-footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding-top: 28px;
  color: var(--quiet);
  font-size: 0.86rem;
  font-weight: 700;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  .nav-links .hide-small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 104px;
  }

  .hero-copy {
    max-width: none;
  }

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

  .phone {
    width: 260px;
    min-width: 0;
  }

  .phone.primary {
    right: 22%;
    width: 286px;
  }

  .phone.secondary {
    left: 0;
    top: 25%;
  }

  .phone.tertiary {
    right: 0;
  }

  .trust-row,
  .section-head,
  .feature-row,
  .feature-row.reverse,
  .privacy-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .brand span {
    display: none;
  }

  .button,
  .text-link {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero,
  .section,
  .privacy-grid,
  .support-grid,
  .cta,
  .page,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .store-redirect {
    width: calc(100% - 28px);
    padding-top: 22px;
  }

  .store-card {
    border-radius: 22px;
    padding: 30px 22px;
  }

  .store-app-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

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

  .phone {
    border-radius: 28px;
  }

  .phone.primary {
    right: 10%;
    width: 240px;
  }

  .phone.secondary {
    width: 210px;
  }

  .phone.tertiary {
    width: 210px;
  }

  .section {
    padding: 64px 0;
  }
}
