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

:root {
  --bg: #0b0b14;
  --bg-2: #11111d;
  --card: #161627;
  --border: #262640;
  --text: #f1f1f5;
  --text-dim: #a4a4b8;
  --muted: #7a7a92;
  --primary: #8b5cf6;
  --primary-2: #ec4899;
  --primary-3: #06b6d4;
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
  --gradient-soft: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(236,72,153,0.18));
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(0,0,0,0.35);
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(236, 72, 153, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--card); }
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 20, 0.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 36px; height: 36px; border-radius: 9px; }
.brand-name { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14px; color: var(--text-dim); transition: color 0.2s ease; }
.nav a:hover { color: var(--text); }
@media (max-width: 720px) { .nav a:not(.btn) { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(139,92,246,0.25), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(236,72,153,0.18), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(6,182,212,0.15), transparent 50%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c4b5fd;
  background: var(--gradient-soft);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(139,92,246,0.3);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 18px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 28px;
}
.lead strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  list-style: none;
  display: flex; gap: 36px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 540px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 22px; font-weight: 700; }
.hero-stats span { font-size: 13px; color: var(--muted); }

/* Hero card — uses Final banner.png */
.hero-card {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 420px;
}
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow), 0 0 0 8px rgba(139,92,246,0.08);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.hero-banner:hover { transform: rotate(0deg) scale(1.02); }
.hero-banner img { width: 100%; height: auto; display: block; }

.floating-bubble {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.bubble-1 { top: 8%; left: -10px; animation-delay: 0s; }
.bubble-2 { bottom: 8%; right: -10px; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { min-height: 320px; }
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 12px;
}
.section-head p { color: var(--text-dim); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ---------- Features ---------- */
.features { padding: 90px 0; background: var(--bg-2); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.4);
}
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: var(--gradient-soft);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(139,92,246,0.25);
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.feature-card p { color: var(--text-dim); font-size: 15px; }

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; }
.gallery-grid {
  display: grid;
  /* portrait 9:16 thumbnails laid out 4 across on desktop, fewer on mobile */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 16px 40px rgba(139,92,246,0.25);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #0b0b14;
}
.gallery-item figcaption {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--bg-2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.about-card h2 {
  font-size: 26px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.about-card p { color: var(--text-dim); margin-bottom: 12px; }
.muted { color: var(--muted); font-size: 14px; }
.muted a { color: var(--text-dim); border-bottom: 1px dashed var(--border); }
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 10px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 720px) { .about-inner { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta { padding: 100px 0; text-align: center; }
.cta-inner {
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(236,72,153,0.18));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 24px;
  padding: 60px 24px;
  max-width: 880px;
}
.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta p { color: var(--text-dim); margin-bottom: 28px; font-size: 17px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.brand-icon-sm { width: 24px; height: 24px; border-radius: 6px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 14px; color: var(--text-dim); }
.footer-links a:hover { color: var(--text); }

/* ---------- Pricing ---------- */
.pricing { padding: 90px 0; background: var(--bg-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.plan:hover { transform: translateY(-4px); }
.plan-featured {
  border-color: rgba(139, 92, 246, 0.6);
  background: linear-gradient(180deg, rgba(139,92,246,0.12), rgba(236,72,153,0.06)), var(--card);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.22);
  transform: translateY(-6px);
}
.plan-featured:hover { transform: translateY(-10px); }
.plan-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.4);
}
.plan-head h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.plan-tag { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-price .currency { font-size: 22px; font-weight: 700; color: var(--text-dim); }
.plan-price .amount { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; }
.plan-price .period { color: var(--muted); font-size: 14px; margin-left: 4px; }
.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.plan-features li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  color: var(--text-dim);
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}
.plan-btn { width: 100%; justify-content: center; }
.payment-note { text-align: center; margin-top: 28px; font-size: 14px; }

/* ---------- Payment modal ---------- */
.pay-modal {
  position: fixed; inset: 0;
  background: rgba(5, 5, 12, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 100;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.pay-modal.is-open { opacity: 1; visibility: visible; }
.pay-dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.2s ease;
}
.pay-modal.is-open .pay-dialog { transform: scale(1); }
.pay-close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
}
.pay-close:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.pay-dialog h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pay-summary {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
}
.pay-summary > div {
  display: flex; justify-content: space-between; align-items: center;
}
.pay-summary strong { color: var(--text); }
.pay-total { padding-top: 8px; border-top: 1px solid var(--border); font-size: 16px; }
.pay-total strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}
.pay-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.pay-field span { font-size: 13px; color: var(--text-dim); font-weight: 500; }
.pay-field input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pay-field input:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}
.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-submit { width: 100%; justify-content: center; margin-top: 8px; }
.pay-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.small { font-size: 12px; text-align: center; margin-top: 12px; }

/* ---------- Legal / Contact ---------- */
.legal { padding: 90px 0; }
.legal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.legal-card h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.legal-card p { color: var(--text-dim); margin-bottom: 14px; }
.legal-list { display: grid; grid-template-columns: 130px 1fr; gap: 8px 16px; }
.legal-list dt { color: var(--muted); font-size: 14px; font-weight: 500; padding-top: 2px; }
.legal-list dd { color: var(--text); font-size: 15px; line-height: 1.5; }
.legal-list dd a { color: var(--text-dim); border-bottom: 1px dashed var(--border); }
.contact-list { list-style: none; margin: 16px 0 22px; }
.contact-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { color: var(--text); margin-right: 6px; }
@media (max-width: 720px) { .legal-inner { grid-template-columns: 1fr; } .legal-list { grid-template-columns: 1fr; } .legal-list dt { margin-top: 8px; } }

/* Keep responsive nav tidy on small screens with the new Pricing link */
@media (max-width: 720px) {
  .nav a:not(.btn) { display: none; }
  .nav { gap: 12px; }
}
