:root {
  --bg: #0a0f0b;
  --bg-soft: #111815;
  --card: rgba(20, 29, 24, 0.78);
  --card-strong: rgba(25, 36, 29, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f7f5;
  --muted: #a8b4ad;
  --green: #23a34a;
  --green-2: #57c62c;
  --lime: #c7f36b;
  --orange: #ffb11f;
  --gold: #ffd85f;
  --red: #ff5f57;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 84px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(47, 155, 73, 0.12),
      transparent 26%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 177, 31, 0.09),
      transparent 24%
    ),
    linear-gradient(180deg, #08100a 0%, #0d140f 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
a.btn {
  cursor: pointer;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 85%);
  pointer-events: none;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -2;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: 80px;
  left: -80px;
  background: rgba(37, 163, 74, 0.18);
}

.orb-2 {
  width: 300px;
  height: 300px;
  right: -40px;
  top: 220px;
  background: rgba(255, 177, 31, 0.16);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  backdrop-filter: blur(18px);
  background: rgba(10, 15, 11, 0.7);
  border-bottom: 1px solid var(--line);
}

.header.scrolled {
  background: rgba(8, 13, 9, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-badge {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(35, 163, 74, 0.3);
}

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

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-2), var(--orange));
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

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

.btn {
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transition: 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

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

.btn-small {
  padding: 12px 18px;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 16px 26px;
  font-size: 1rem;
}

.btn-solid {
  background: linear-gradient(135deg, var(--orange), #ffcb2f);
  color: #16130a;
  box-shadow: 0 12px 30px rgba(255, 177, 31, 0.28);
}

.btn-solid:hover {
  box-shadow: 0 16px 40px rgba(255, 177, 31, 0.36);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: 0.25s ease;
}

.hero {
  padding: 60px 0 40px;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

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

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--lime);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.3px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(199, 243, 107, 0.08);
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -2px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--green-2), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-card {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 6px;
  color: white;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.phone-stack {
  position: relative;
  height: 720px;
}

.phone-main,
.phone-side {
  position: absolute;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(180deg, #1b241f, #101612);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.phone-main {
  width: 320px;
  right: 20px;
  top: 40px;
  z-index: 3;
}

.phone-side {
  width: 220px;
  left: 10px;
  top: 180px;
  z-index: 2;
  transform: rotate(-8deg);
  opacity: 0.92;
}

.phone-main img,
.phone-side img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  width: 220px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(18, 27, 22, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: floatY 5.5s ease-in-out infinite;
}

.card-live {
  right: 0;
  top: 0;
}

.card-stats {
  left: 0;
  bottom: 70px;
  animation-delay: 1.3s;
}

.mini-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--lime);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.floating-card strong {
  display: block;
  font-size: 1.65rem;
  margin-bottom: 6px;
}

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

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

.section-dark {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.03)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.028)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.45rem;
  font-weight: 800;
}

.feature-icon.green {
  background: rgba(35, 163, 74, 0.16);
  color: var(--green-2);
}
.feature-icon.orange {
  background: rgba(255, 177, 31, 0.16);
  color: var(--orange);
}
.feature-icon.lime {
  background: rgba(199, 243, 107, 0.16);
  color: var(--lime);
}
.feature-icon.gold {
  background: rgba(255, 216, 95, 0.16);
  color: var(--gold);
}
.feature-icon.teal {
  background: rgba(65, 219, 174, 0.16);
  color: #41dbae;
}
.feature-icon.red {
  background: rgba(255, 95, 87, 0.16);
  color: var(--red);
}

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

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

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

.step-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 4.3rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}

.step-card h3 {
  margin: 36px 0 10px;
  font-size: 1.45rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
}

.screen-card:hover {
  transform: translateY(-8px) scale(1.015);
}

.screen-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 9/19;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}
.screen-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.screen-card.tall {
  grid-row: span 2;
}

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

.review-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.featured-review {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 177, 31, 0.1),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03)
    );
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 2px;
}

.review-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.review-card strong {
  color: var(--text);
}

.cta-section {
  padding-top: 70px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 177, 31, 0.12),
      transparent 30%
    ),
    radial-gradient(circle at left, rgba(35, 163, 74, 0.12), transparent 26%),
    rgba(16, 24, 19, 0.78);
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

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

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

.footer {
  padding: 36px 0 50px;
  border-top: 1px solid var(--line);
  background: rgba(8, 12, 9, 0.5);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-text {
  margin: 0;
  color: var(--muted);
}

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

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

.footer-links a:hover {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.privacy-body {
  min-height: 100vh;
}

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

.privacy-card {
  max-width: 860px;
  margin: 40px auto 0;
  padding: 34px;
  border-radius: 28px;
  background: rgba(18, 27, 22, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.privacy-placeholder {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.privacy-content {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.privacy-content p {
  margin: 0;
  color: rgba(244, 247, 243, 0.88);
  line-height: 1.85;
  font-size: 1.02rem;
}

.privacy-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(153, 213, 82, 0.45);
}

.privacy-content a:hover {
  color: var(--text);
  border-bottom-color: rgba(244, 247, 243, 0.55);
}

.privacy-effective {
  padding-top: 6px;
  font-weight: 700;
  color: var(--text);
}

.privacy-card .btn {
  margin-top: 10px;
}

.privacy-dummy {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.dummy-line {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
}

.dummy-line.wide {
  width: 100%;
}
.dummy-line.short {
  width: 62%;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-visual {
    order: -1;
  }

  .phone-stack {
    height: 640px;
    max-width: 520px;
    margin: 0 auto;
  }

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

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(14, 20, 16, 0.96);
    border: 1px solid var(--line);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions .btn-small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-copy h1 {
    letter-spacing: -1px;
  }

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

  .phone-stack {
    height: auto;
    display: grid;
    gap: 18px;
  }

  .phone-main,
  .phone-side,
  .floating-card {
    position: static;
    width: 100%;
    transform: none !important;
    animation: none;
  }

  .phone-side {
    max-width: 260px;
    justify-self: center;
  }

  .screen-card.tall {
    grid-row: auto;
  }

  .cta-actions,
  .hero-actions,
  .hero-stats {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    text-align: center;
  }

  .stat-card {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header {
    height: 74px;
  }

  :root {
    --header-height: 74px;
  }

  .hero {
    padding-top: 34px;
  }

  .section {
    padding: 82px 0;
  }

  .privacy-card,
  .cta-box,
  .feature-card,
  .step-card,
  .review-card {
    padding: 22px;
  }
}
/* SCREENS */

.screens-wrapper {
  width: 100%;
  overflow: hidden;
}

.screens-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.screens-row img {
  flex: 0 0 auto;
  width: 240px;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  scroll-snap-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.screens-row img:hover {
  transform: scale(1.05);
}

.screens-row::-webkit-scrollbar {
  height: 6px;
}

.screens-row::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 999px;
}
