:root {
  --bg: #07142f;
  --bg-2: #0b1d45;
  --card: rgba(18, 41, 87, 0.82);
  --card-2: rgba(14, 32, 70, 0.9);
  --line: rgba(76, 120, 255, 0.22);
  --white: #f7fbff;
  --muted: #9aa9cc;
  --muted-2: #7d8db5;
  --blue: #2e68ff;
  --blue-2: #163ecf;
  --orange: #ff8c2f;
  --orange-2: #ffb84a;
  --green: #35d48b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(46, 104, 255, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 140, 47, 0.09),
      transparent 24%
    ),
    linear-gradient(180deg, #061129 0%, #07142f 46%, #061026 100%);
  color: var(--white);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(255, 140, 47, 0.08),
      transparent 18%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(46, 104, 255, 0.14),
      transparent 22%
    ),
    radial-gradient(circle at 50% 60%, rgba(27, 77, 238, 0.05), transparent 30%);
  pointer-events: none;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

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

.section {
  padding: 110px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 140, 47, 0.12);
  border: 1px solid rgba(255, 140, 47, 0.22);
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-head {
  max-width: 880px;
  margin-bottom: 44px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 17, 41, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #5aa7ff);
  box-shadow:
    0 10px 30px rgba(46, 104, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.logo-mark.small {
  width: 46px;
  height: 46px;
  font-size: 0.95rem;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.logo-copy small {
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: #dce6ff;
  padding: 12px 16px;
  border-radius: 999px;
  transition: 0.25s ease;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: 0.28s ease;
  text-align: center;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #4aa1ff 100%);
  box-shadow: 0 16px 38px rgba(33, 100, 255, 0.32);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-btn {
  min-height: 52px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 6px auto;
  border-radius: 999px;
}

.hero {
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  max-width: 900px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 22px 20px;
  background: linear-gradient(
    180deg,
    rgba(22, 43, 94, 0.94),
    rgba(11, 25, 60, 0.9)
  );
  border: 1px solid rgba(76, 120, 255, 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
}

.hero-phone-wrap {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone {
  position: relative;
  z-index: 2;
  width: min(100%, 350px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.48),
    0 0 0 10px rgba(255, 255, 255, 0.03);
  transform: rotate(-4deg);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.9;
}

.glow-orange {
  width: 230px;
  height: 230px;
  background: rgba(255, 140, 47, 0.22);
  top: 10%;
  right: 8%;
}

.glow-blue {
  width: 260px;
  height: 260px;
  background: rgba(46, 104, 255, 0.24);
  bottom: 6%;
  left: 0;
}

.partners-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 28px;
  padding: 18px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.partners-track span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.feature-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(16, 39, 85, 0.96),
    rgba(10, 26, 61, 0.92)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 47, 0.32);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 47, 0.18),
    rgba(46, 104, 255, 0.16)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.screens-section {
  overflow: hidden;
}

.screens-shell {
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(20, 40, 84, 0.96),
    rgba(10, 22, 50, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.screens-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.screens-topbar strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.screens-topbar span {
  color: var(--muted);
}

.screens-controls {
  display: flex;
  gap: 12px;
}

.screen-btn {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.55rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.screen-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.screens-stage {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(300px, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 640px;
}

.phone-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-aura {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 47, 0.18),
    rgba(46, 104, 255, 0.08),
    transparent 72%
  );
  filter: blur(14px);
}

.main-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 0 8px rgba(255, 255, 255, 0.02);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.screen-notes {
  display: grid;
  gap: 18px;
}

.note-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 136px;
  transition: 0.3s ease;
}

.note-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #89beff;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-card strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.58;
}

.active-note {
  border-color: rgba(255, 140, 47, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.thumb {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s ease;
  min-height: 82px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 0.65 / 1;
}

.thumb:hover,
.thumb.active {
  transform: translateY(-3px);
  border-color: rgba(255, 140, 47, 0.42);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.benefits-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.benefits-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.06rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: #dfe8ff;
  line-height: 1.65;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ffd15e);
  box-shadow: 0 0 18px rgba(255, 140, 47, 0.45);
}

.benefits-stack {
  display: grid;
  gap: 18px;
}

.floating-panel {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(17, 37, 80, 0.95),
    rgba(11, 24, 56, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.floating-panel span {
  display: inline-block;
  color: var(--orange-2);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.floating-panel strong {
  font-size: 1.18rem;
  line-height: 1.58;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(18, 39, 85, 0.95),
    rgba(9, 24, 56, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  max-width: 260px;
  align-self: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.large-card img {
  max-width: 310px;
}

.card-copy h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  line-height: 1.18;
}

.card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.cta-box {
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 140, 47, 0.16),
      transparent 25%
    ),
    linear-gradient(180deg, rgba(16, 38, 83, 0.97), rgba(8, 22, 52, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  max-width: 760px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
}

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

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand p {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open .nav {
  display: flex;
}

@media (max-width: 1180px) {
  .hero-grid,
  .benefits-grid,
  .showcase-grid,
  .screens-stage {
    grid-template-columns: 1fr;
  }

  .hero-phone-wrap {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-phone {
    transform: none;
    max-width: 330px;
  }

  .showcase-card img,
  .large-card img {
    max-width: 260px;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(8, 18, 43, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-link {
    padding: 14px 16px;
  }

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

  .thumb-row {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 720px) {
  .section {
    padding: 82px 0;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .logo-copy small {
    display: none;
  }

  .hero-copy h1,
  .section-head h2,
  .benefits-copy h2,
  .cta-copy h2 {
    font-size: 2.35rem;
  }

  .hero-text,
  .section-head p,
  .benefits-copy p,
  .cta-copy p {
    font-size: 1rem;
  }

  .screens-shell,
  .cta-box {
    padding: 20px;
  }

  .screens-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .screens-controls {
    justify-content: flex-start;
  }

  .main-preview {
    max-width: 260px;
    border-radius: 28px;
  }

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

  .thumb-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-links {
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .logo-copy strong {
    font-size: 0.92rem;
  }
}

/* PRIVACY */

body.privacy-body {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 140, 47, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at top left,
      rgba(46, 104, 255, 0.13),
      transparent 26%
    ),
    linear-gradient(180deg, #07142f 0%, #061129 100%);
}

.privacy-main {
  padding: 70px 0 100px;
}

.privacy-hero {
  max-width: 820px;
  margin-bottom: 36px;
}

.privacy-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.privacy-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.privacy-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(18, 39, 85, 0.96),
    rgba(10, 24, 58, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.privacy-card.full {
  grid-column: 1 / -1;
}

.privacy-card h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.privacy-card p {
  margin: 0;
  color: #e8f0ff;
  line-height: 1.9;
  white-space: pre-line;
}

.privacy-card a {
  color: #8cc7ff;
  word-break: break-word;
}

.privacy-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}
