/* ═══════════════════════════════════════════════════════════════
   ISKMOR — Landing Page (index.php)
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg:    #07090f;
  --panel: #0c0f1a;
  --ink:   #d8dce8;
  --muted: #5c687a;
  --border:rgba(255,255,255,.08);
  --amber: #d4a847;
  --shadow:0 8px 48px rgba(0,0,0,.7);
}

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(212,168,71,.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 90%, rgba(122,110,192,.05) 0%, transparent 50%),
    radial-gradient(ellipse 30% 20% at 10% 70%, rgba(74,141,181,.04) 0%, transparent 45%);
}

/* subtle grid bg */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 80%);
}

/* ─── WRAPPER ─── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TOPBAR ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,9,15,.9);
  border-bottom: 1px solid rgba(212,168,71,.12);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 132px;
  height: 46px;
  overflow: hidden;
  border-radius: 12px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(212,168,71,.18));
}

.logo {
  color: var(--amber);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(212,168,71,.35);
}

.brand .rune {
  color: rgba(212,168,71,.4);
  font-size: .65rem;
  letter-spacing: .2em;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 9px;
  border: 1px solid transparent;
  transition: color .13s, background .13s, border-color .13s;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.07);
  text-decoration: none;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 10px;
  border: 1px solid rgba(212,168,71,.35);
  background: rgba(212,168,71,.1);
  color: var(--amber);
  font-weight: 700;
  font-size: .84rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .14s, border-color .14s, box-shadow .14s, transform .12s;
  white-space: nowrap;
}

.btn:hover {
  background: rgba(212,168,71,.2);
  border-color: rgba(212,168,71,.6);
  box-shadow: 0 0 20px rgba(212,168,71,.14);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--amber);
}

.btn.ghost {
  border-color: rgba(255,255,255,.1);
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.btn.ghost:hover {
  color: var(--ink);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

.btn.xl { padding: 12px 26px; font-size: .94rem; }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,71,.4), transparent);
}

.hero-text h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 2.5vw + 1.2rem, 3.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.04em;
  color: var(--ink);
}

.hero-text h1 em {
  font-style: normal;
  color: var(--amber);
  text-shadow: 0 0 40px rgba(212,168,71,.3);
}

.hero-tagline {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: .7;
  margin-bottom: 10px;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 28px;
  max-width: 500px;
  line-height: 1.72;
}

.hero .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* monster showcase */
.hero-art {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .glow-ring {
  position: absolute;
  width: 300px; height: 300px;
  border: 1px solid rgba(212,168,71,.08);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(212,168,71,.06);
  animation: slowSpin 20s linear infinite;
}

.hero-art .glow-ring-2 {
  width: 200px; height: 200px;
  animation-duration: 15s;
  animation-direction: reverse;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

.hero-art .center-glow {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,71,.12) 0%, transparent 70%);
  position: absolute;
}

.hero-art img.monster-float {
  width: 44%;
  max-width: 210px;
  position: absolute;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.7));
}

.hero-art .f1 { left: 0; bottom: 0; animation: float1 6s ease-in-out infinite; z-index: 2; }
.hero-art .f2 { left: 28%; bottom: 24px; animation: float2 7.5s ease-in-out infinite .4s; z-index: 3; }
.hero-art .f3 { right: 0; bottom: -4px; animation: float1 6.8s ease-in-out infinite .8s; z-index: 2; }

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) scale(1.02); }
  50% { transform: translateY(-18px) scale(1); }
}

/* ─── FEATURES ─── */
.features { padding: 72px 0; }

.section-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: .7;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-title span { color: var(--amber); }

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 44px;
  line-height: 1.6;
}

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

.feat-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 22px 18px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,71,.2), transparent);
}

.feat-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(0deg, rgba(212,168,71,.02), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}

.feat-card:hover {
  border-color: rgba(212,168,71,.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.feat-card:hover::after { opacity: 1; }

.feat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
  filter: saturate(0.9);
}

.feat-card h3 {
  margin: 0 0 8px;
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.feat-card p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

/* ─── HOW SECTION ─── */
.how { padding: 72px 0; position: relative; }

.how::before {
  content: "";
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.steps li {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  transition: border-color .15s, transform .15s;
}

.steps li:hover {
  border-color: rgba(212,168,71,.18);
  transform: translateY(-2px);
}

.step-num {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid rgba(212,168,71,.35);
  background: rgba(212,168,71,.1);
  color: var(--amber);
  font-weight: 900;
  font-size: .88rem;
  margin-bottom: 12px;
}

.steps h4 {
  margin: 0 0 7px;
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
}

.steps p {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.65;
}

.actions-center {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── GALLERY ─── */
.gallery { padding: 72px 0; }

.gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}

.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 999px; }

.gallery-shot {
  flex: 0 0 220px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color .15s, transform .15s;
}

.gallery-shot:hover {
  border-color: rgba(212,168,71,.2);
  transform: scale(1.02);
}

.gallery-shot img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  background: var(--panel);
  display: block;
}

.gallery-shot figcaption {
  padding: 10px 14px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
}

/* placeholder when no img */
.gallery-shot .img-placeholder {
  width: 100%; height: 145px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--panel), rgba(212,168,71,.05));
  font-size: 2.5rem;
  opacity: .5;
}

/* ─── STATS SECTION ─── */
.stats { padding: 72px 0; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,71,.3), transparent);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -.05em;
  text-shadow: 0 0 30px rgba(212,168,71,.3);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
  margin-top: 32px;
  background: rgba(7,9,15,.9);
}

.site-footer .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.footer-logo img {
  width: 118px;
  height: 42px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 16px rgba(212,168,71,.14));
}

.footer-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .13s;
}

.footer-links a:hover { color: var(--amber); }

.footer-copy {
  text-align: right;
  color: var(--muted);
  font-size: .76rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 240px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .site-footer .wrap { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 640px) {
  .nav a:not(.btn) { display: none; }
  .hero { padding: 60px 0 48px; }
  .hero-text h1 { font-size: 2.2rem; }
  .features-grid { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
