/* style.css */
:root {
  --black: #070707;
  --dark: #111111;
  --card: #1d1d1d;
  --yellow: #ffd817;
  --yellow-2: #ffb900;
  --white: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 216, 23, 0.25);
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 23, 0.2), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  height: 74px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(22px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

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

.download-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.download-btn {
  height: 46px;
  padding: 0 24px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 30px rgba(255, 216, 23, 0.35);
}

.download-btn:hover,
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(255, 216, 23, 0.5);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 140px 7vw 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.55)),
    url('photo1.jpeg') center/cover;
  filter: blur(8px) brightness(0.55);
  transform: scale(1.08);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 216, 23, 0.2),
      transparent 32%
    ),
    radial-gradient(circle at 80% 70%, rgba(255, 185, 0, 0.16), transparent 36%);
}

.hero-content,
.phone-wrap {
  position: relative;
  z-index: 3;
}

.tag {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 216, 23, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 900;
}

.tag.dark {
  background: rgba(0, 0, 0, 0.06);
}

h1 {
  margin-top: 24px;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-content p,
.section-head p,
.guide-card p {
  margin-top: 22px;
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.btn {
  height: 58px;
  padding: 0 32px;
}

.btn.primary {
  background: var(--yellow);
  color: var(--black);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-stats div {
  min-width: 150px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats b {
  display: block;
  color: var(--yellow);
  font-size: 26px;
}

.hero-stats span {
  color: var(--muted);
}

.phone-wrap {
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 420px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 23, 0.3), transparent 65%);
  filter: blur(30px);
}

.phone {
  width: 300px;
  height: 640px;
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(145deg, #2a2a2a, #050505);
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  transform: rotate(-5deg);
  animation: floatPhone 5s ease-in-out infinite;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-18px);
  }
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: var(--yellow);
  color: var(--black);
  font-weight: 1000;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 54px;
  animation: marquee 18s linear infinite;
}

.marquee span {
  font-size: 20px;
  letter-spacing: 0.16em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 110px 7vw;
}

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

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

.feature-card {
  padding: 34px;
  min-height: 270px;
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 216, 23, 0.18);
  transition: 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--yellow);
  box-shadow: 0 28px 80px rgba(255, 216, 23, 0.14);
}

.icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);
  font-size: 28px;
  margin-bottom: 28px;
}

.feature-card h3 {
  font-size: 25px;
  margin-bottom: 14px;
}

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

.screens-section {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 216, 23, 0.18),
      transparent 35%
    ),
    linear-gradient(180deg, #090909, #151300);
  overflow: hidden;
}

.premium-carousel {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.carousel-stage {
  position: relative;
  width: min(1040px, 94vw);
  height: 680px;
  transform-style: preserve-3d;
}

.shot-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 285px;
  height: 610px;
  padding: 9px;
  border-radius: 42px;
  background: linear-gradient(145deg, #303030, #070707);
  border: 1px solid rgba(255, 216, 23, 0.26);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition: 0.75s cubic-bezier(0.2, 0.9, 0.18, 1);
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

.shot-card::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 34px;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.78));
}

.shot-card.active {
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateZ(170px) scale(1);
  box-shadow:
    0 0 40px rgba(255, 216, 23, 0.35),
    0 40px 110px rgba(0, 0, 0, 0.75);
}

.shot-card.prev-1 {
  opacity: 0.75;
  z-index: 4;
  filter: blur(0.4px);
  transform: translate(-95%, -50%) scale(0.82) rotateY(20deg);
}

.shot-card.next-1 {
  opacity: 0.75;
  z-index: 4;
  filter: blur(0.4px);
  transform: translate(-5%, -50%) scale(0.82) rotateY(-20deg);
}

.shot-card.prev-2 {
  opacity: 0.32;
  z-index: 3;
  filter: blur(2px);
  transform: translate(-132%, -50%) scale(0.68) rotateY(30deg);
}

.shot-card.next-2 {
  opacity: 0.32;
  z-index: 3;
  filter: blur(2px);
  transform: translate(32%, -50%) scale(0.68) rotateY(-30deg);
}

.shot-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shot-caption span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 1000;
}

.shot-caption b {
  font-size: 21px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 68px;
  height: 68px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(20, 20, 20, 0.8);
  color: var(--yellow);
  font-size: 52px;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.carousel-btn.prev {
  left: max(18px, calc(50% - 590px));
}
.carousel-btn.next {
  right: max(18px, calc(50% - 590px));
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 34px;
  background: var(--yellow);
}

.guide-section {
  background: #0b0b0b;
}

.guide-card {
  max-width: 1120px;
  margin: auto;
  padding: 54px;
  border-radius: 40px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 216, 23, 0.18),
      rgba(255, 255, 255, 0.04)
    ),
    url('photo5.jpeg') center/cover;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer {
  padding: 34px 7vw;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
  color: var(--yellow);
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

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

  .guide-card {
    flex-direction: column;
    text-align: center;
  }

  .phone {
    width: 260px;
    height: 560px;
  }

  .shot-card {
    width: 245px;
    height: 530px;
  }

  .carousel-stage {
    height: 600px;
  }

  .shot-card.prev-2,
  .shot-card.next-2 {
    opacity: 0;
  }
}
.privacy-body {
  min-height: 100vh;
  background: #050505;
  color: #fff;
}

.privacy-page {
  position: relative;
  min-height: 100vh;
  padding: 110px 7vw;
  overflow: hidden;
}

.privacy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 216, 23, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 185, 0, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #050505, #141100 55%, #050505);
  z-index: 0;
}

.privacy-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 216, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 216, 23, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent);
  z-index: 1;
}

.privacy-back {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffd817;
  color: #050505;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(255, 216, 23, 0.24);
  transition: 0.25s ease;
}

.privacy-back:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 65px rgba(255, 216, 23, 0.38);
}

.privacy-card {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 54px auto 0;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 42px;
  background: rgba(18, 18, 18, 0.78);
  border: 1px solid rgba(255, 216, 23, 0.22);
  backdrop-filter: blur(24px);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.privacy-card h1 {
  margin: 24px 0 36px;
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

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

.privacy-grid article {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 216, 23, 0.16);
}

.privacy-grid h3 {
  margin-bottom: 14px;
  color: #ffd817;
  font-size: 22px;
}

.privacy-grid p {
  color: #d7d7d7;
  font-size: 17px;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .privacy-page {
    padding: 90px 18px;
  }

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

  .privacy-card {
    border-radius: 30px;
  }
}
