:root {
  --bg: #08080D;
  --bg-2: #12121A;
  --pink: #FF2D55;
  --purple: #8B5CF6;
  --text: #F7F4F8;
  --muted: #A9A3B5;
  --line: rgba(255, 255, 255, 0.08);
  --glow: rgba(255, 45, 85, 0.35);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

/* Atmosphere */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(255, 45, 85, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 10%, rgba(139, 92, 246, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 45, 85, 0.12), transparent 55%),
    var(--bg);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.nav-links { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 0.92rem; }
.nav-links a:hover { color: var(--text); }
.lang { display: flex; gap: 0.4rem; }
.lang a {
  font-size: 0.75rem;
  padding: 0.25rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
}
.lang a.active { color: var(--text); border-color: var(--pink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--pink), var(--purple));
  color: white;
  box-shadow: 0 12px 40px var(--glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

/* Hero — one composition */
.hero {
  min-height: calc(100vh - 4rem);
  display: grid;
  align-items: end;
  padding: 2rem 0 3.5rem;
  position: relative;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 13, 0.35) 0%, rgba(8, 8, 13, 0.78) 55%, rgba(8, 8, 13, 0.96) 100%),
    linear-gradient(90deg, rgba(8, 8, 13, 0.85) 0%, transparent 45%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  animation: riseIn 0.9s ease both;
}
.hero-copy .brand-mark {
  width: 88px;
  height: 88px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 28px var(--glow));
  animation: pulseGlow 3.5s ease-in-out infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}
.hero h1 span {
  background: linear-gradient(120deg, #fff, #ffb4c6 40%, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Sections */
section { padding: 5rem 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  animation: riseIn 0.7s ease both;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--muted); }

.shots {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.shots figure {
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform 0.35s ease;
}
.shots figure:hover { transform: translateY(-6px); }
.shots img { width: 100%; aspect-ratio: 9/16; object-fit: cover; }
.shots figcaption {
  padding: 0.65rem 0.75rem 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 1.5rem;
}
.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.feature-row p { color: var(--muted); }
.feature-row img {
  border-radius: 20px;
  border: 1px solid var(--line);
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  font-family: var(--font-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin-top: 0.6rem; }

.countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.countries span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  padding: 4.5rem 1rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 45, 85, 0.25), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.2), transparent 40%),
    var(--bg-2);
  border: 1px solid var(--line);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}
.final-cta p { color: var(--muted); margin-bottom: 1.4rem; }

footer {
  padding: 3rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-grid a { display: block; margin: 0.35rem 0; color: var(--muted); }
.footer-grid a:hover { color: var(--text); }
.footer-brand {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.blog-card {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(18, 18, 26, 0.7);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.blog-card:hover {
  border-color: rgba(255, 45, 85, 0.45);
  transform: translateY(-3px);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.blog-card p { color: var(--muted); font-size: 0.92rem; }

.article {
  max-width: 720px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}
.article h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 1rem 0;
}
.article .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.article h2 {
  font-family: var(--font-display);
  margin: 2rem 0 0.75rem;
  font-size: 1.45rem;
}
.article p, .article li { color: #d7d2e0; margin-bottom: 1rem; }
.article ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.article img {
  border-radius: 16px;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 18px var(--glow)); }
  50% { filter: drop-shadow(0 0 36px rgba(139, 92, 246, 0.55)); }
}

@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-grid, .blog-grid { grid-template-columns: 1fr; }
  .shots { grid-template-columns: repeat(6, 180px); }
  .nav-links .hide-sm { display: none; }
}


.ad-slot {
  padding: 1.25rem 0 0.5rem;
  min-height: 100px;
}
.ad-slot .adsbygoogle {
  margin-inline: auto;
}


/* In-feed AdSense: variable height inside feed grids */
.ad-infeed {
  height: auto;
  min-height: 0;
  width: 100%;
  margin: 0.5rem 0 1rem;
}
.shots .ad-infeed,
.blog-grid .ad-infeed,
.feature-list .ad-infeed {
  grid-column: 1 / -1;
}
.ad-infeed .adsbygoogle {
  display: block;
  width: 100%;
}


.ad-matched {
  padding: 1.5rem 0 2rem;
  height: auto;
  min-height: 0;
}
.ad-matched .adsbygoogle {
  display: block;
  width: 100%;
}
