:root {
  color-scheme: dark;
  --bg: #050712;
  --panel: rgba(15, 20, 42, 0.72);
  --panel-strong: rgba(13, 16, 34, 0.94);
  --ink: #f7f8ff;
  --muted: #b9c1d8;
  --dim: #7f8aa7;
  --line: rgba(159, 117, 255, 0.26);
  --violet: #a53cff;
  --blue: #168bff;
  --cyan: #56f5d6;
  --pink: #f650c8;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 12%, rgba(22, 139, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 25%, rgba(165, 60, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, #040614 0%, #07091a 52%, #050712 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 78%);
}

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

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

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

.top-strip {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(86, 245, 214, 0.22);
  background: linear-gradient(90deg, rgba(5, 7, 18, 0.98), rgba(31, 19, 58, 0.94), rgba(5, 7, 18, 0.98));
  text-align: center;
}

.top-strip span {
  padding: 6px 10px;
  border: 1px solid rgba(86, 245, 214, 0.34);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.top-strip strong {
  color: #eef2ff;
  font-size: 14px;
  font-weight: 650;
}

.top-strip a,
.primary,
.secondary,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.top-strip a {
  min-height: 32px;
  padding: 0 12px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 18, 0.78);
  backdrop-filter: blur(18px);
}

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

.brand,
.nav-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 850;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-actions {
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.nav-actions a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-actions a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.lang-switch button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.lang-switch button.active {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
}

.hero {
  width: min(1440px, calc(100% - 40px));
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 54px 0 40px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-top: 16px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.steps p,
.trust-row p,
.privacy p,
.cta p,
figcaption {
  color: var(--muted);
  line-height: 1.62;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  font-size: 18px;
}

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

.primary {
  padding: 0 20px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 18px 44px rgba(22, 139, 255, 0.28);
}

.secondary {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.hero-media,
.app-shot,
.banner-shot,
.trust-row article,
.steps article,
.privacy,
.cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 24, 52, 0.72), rgba(8, 10, 25, 0.9));
  box-shadow: var(--shadow);
}

.hero-media {
  margin: 0;
  padding: 10px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  border-radius: 6px;
}

.trust-row,
.workflow,
.screens,
.privacy,
.cta {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

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

.trust-row article,
.steps article {
  padding: 22px;
}

.trust-row span,
.steps span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.trust-row strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
}

.trust-row p {
  margin-top: 8px;
}

.workflow,
.screens,
.privacy,
.cta {
  padding-top: 96px;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading p {
  margin-top: 18px;
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.steps h3 {
  margin-top: 18px;
}

.steps p {
  margin-top: 10px;
}

.screen-stack {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.app-shot,
.banner-shot {
  margin: 0;
  padding: 10px;
  overflow: hidden;
}

.app-shot img,
.banner-shot img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.banner-shot img {
  background: #02050e;
}

figcaption {
  padding: 12px 4px 4px;
  font-size: 14px;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 34px;
  margin-top: 96px;
}

.privacy h2,
.cta h2 {
  margin-top: 12px;
}

.privacy p,
.cta p {
  margin-top: 18px;
  font-size: 17px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.privacy-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-weight: 750;
}

.cta {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 54px 24px;
  margin-top: 96px;
  margin-bottom: 56px;
}

.cta img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}

.cta h2 {
  max-width: 760px;
}

.cta p {
  max-width: 680px;
}

.cta .primary {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .top-strip {
    flex-direction: column;
  }

  .nav-shell,
  .nav-actions {
    flex-wrap: wrap;
  }

  .hero,
  .privacy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .nav-actions a:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .hero,
  .trust-row,
  .workflow,
  .screens,
  .privacy,
  .cta {
    width: min(100% - 28px, 1240px);
  }

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