/* HobbyLand — Coming Soon Landing */

:root {
  --pink: #EC4899;
  --orange: #FB923C;
  --purple: #A855F7;
  --gradient: linear-gradient(135deg, #FB923C 0%, #EC4899 50%, #A855F7 100%);
  --gradient-soft: linear-gradient(135deg, rgba(251,146,60,.12) 0%, rgba(236,72,153,.12) 50%, rgba(168,85,247,.12) 100%);
  --ink: #0F172A;
  --slate: #475569;
  --muted: #94A3B8;
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --bg-tint: #FFF1F7;
  --border: #E2E8F0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow-md: 0 4px 6px rgba(15,23,42,.05), 0 10px 15px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 40px rgba(15,23,42,.10), 0 30px 60px rgba(15,23,42,.08);
  --shadow-phone: 0 30px 80px rgba(15,23,42,.18), 0 0 0 1px rgba(15,23,42,.06);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* BILINGUAL */
[data-lang] { display: none; }
html[lang="az"] [data-lang="az"],
html[lang="en"] [data-lang="en"] { display: revert; }

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(226,232,240,.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.header-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}
.header-nav a { transition: color .15s ease; }
.header-nav a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .header-nav { display: none; }
}

/* LANG TOGGLE */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: all .2s ease;
}
.lang-toggle[data-active="az"] .lang-opt[data-lang-set="az"],
.lang-toggle[data-active="en"] .lang-opt[data-lang-set="en"] {
  background: var(--gradient);
  color: white;
  box-shadow: 0 2px 8px rgba(236,72,153,.3);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
@media (min-width: 768px) {
  .hero { padding: 140px 0 80px; }
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  animation: bob 12s ease-in-out infinite;
  will-change: transform;
}
.orb-1 {
  width: 380px; height: 380px;
  background: var(--orange);
  top: -80px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 420px; height: 420px;
  background: var(--pink);
  top: 200px; right: -120px;
  animation-delay: -4s;
}
.orb-3 {
  width: 360px; height: 360px;
  background: var(--purple);
  bottom: -100px; left: 30%;
  animation-delay: -8s;
}
@keyframes bob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-25px, 20px) scale(0.97); }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-tint);
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 880px;
  position: relative;
  z-index: 2;
}
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--slate);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

/* STORE BADGES */
.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}
.store-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  min-width: 168px;
  opacity: 0.55;
  cursor: not-allowed;
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.store-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.store-text small {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.store-text strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.store-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* SCREENSHOT SHOT (images already include their own phone bezels) */
.phone {
  position: relative;
  display: block;
  background: transparent;
  border-radius: 28px;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 0;
  padding: 0;
  box-shadow: 0 20px 50px rgba(15,23,42,.15), 0 4px 12px rgba(15,23,42,.06);
  width: 100%;
  max-width: 100%;
}
.phone:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}
.phone:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(15,23,42,.20), 0 6px 16px rgba(15,23,42,.08);
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(135deg, #fdf2f8, #fff7ed, #faf5ff);
}

/* Single-phone images (1, 2, 4) — narrow portrait */
.phone-single {
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .phone-single { max-width: 340px; }
}

/* Composite images (3, 5, 6, 7, 8) — wide multi-phone showcases */
.phone-composite {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .phone-composite { max-width: 640px; }
}

/* Hero phone — composite shown wide */
.phone-hero {
  margin: 32px auto 0;
  max-width: 720px;
  width: 100%;
  border-radius: 24px;
}

.phone-tilt {
  transform: rotate(-3deg);
}
.phone-tilt:hover {
  transform: rotate(-3deg) translateY(-4px);
}

.phone-sm {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

/* HERO PHONE WRAPPER */
.hero-phone {
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

/* SECTION BASE */
section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  section { padding: 120px 0; }
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.section-title.center { text-align: center; margin-bottom: 48px; }
.section-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-sub.center { text-align: center; }
.section-body {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0 0 16px;
}

/* TWO COLUMN (What Is) */
.what-is {
  background: var(--bg-soft);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.col-visual {
  display: flex;
  justify-content: center;
}

/* HOW IT WORKS — STEPS */
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
.step:last-child { margin-bottom: 0; }
@media (min-width: 880px) {
  .step { grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 120px; }
  .step-left .step-visual { order: 1; }
  .step-left .step-text { order: 2; }
}
.step-text { max-width: 480px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gradient);
  color: white;
  font-size: 24px;
  font-weight: 800;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(236,72,153,.3);
}
.step-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.2;
}
.step-body {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}
.step-visual {
  display: flex;
  justify-content: center;
}

/* FEATURES */
.features {
  background: var(--bg-soft);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236,72,153,.3);
  box-shadow: var(--shadow-md);
}
.feature-emoji {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.feature-body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  justify-items: center;
  align-items: end;
}
@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }
}
.gallery-item {
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-item figcaption {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* COMING SOON (dark) */
.coming {
  position: relative;
  background: var(--ink);
  color: white;
  text-align: center;
  overflow: hidden;
}
.coming-inner { position: relative; z-index: 2; }
.coming-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 24px;
}
.coming-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: #CBD5E1;
  max-width: 560px;
  margin: 0 auto 16px;
}
.coming-follow {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}
.orb-dark {
  opacity: 0.18;
}
.orb-d1 {
  width: 500px; height: 500px;
  background: var(--pink);
  top: -100px; left: -150px;
}
.orb-d2 {
  width: 460px; height: 460px;
  background: var(--purple);
  bottom: -120px; right: -100px;
}
.store-row-dark { margin-bottom: 0; }
.store-badge-dark {
  background: white;
  color: var(--ink);
}

/* FOOTER */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 2fr; gap: 64px; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-brand-text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer-brand-text small {
  font-size: 13px;
  color: var(--slate);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 560px) {
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.footer-col a {
  font-size: 14px;
  color: var(--slate);
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom small {
  font-size: 13px;
  color: var(--muted);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox.open {
  display: flex;
  animation: fadeIn .2s ease;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.2);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* LEGAL PAGES */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.legal .legal-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}
.legal h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.legal p, .legal li {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}
.legal ul {
  padding-left: 22px;
  margin: 12px 0 16px;
}
.legal li { margin-bottom: 8px; }
.legal a { color: var(--pink); text-decoration: underline; }
.legal strong { color: var(--ink); }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .orb { animation: none; }
  .badge-dot { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
