/* styles.css */

:root {
  --bg: #08111f;
  --bg-soft: #0f172a;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f3f4f6;
  --muted: rgba(243, 244, 246, 0.74);
  --accent: #3b82f6;
  --accent2: #2563eb;
  --accent3: #60a5fa;
  --success: #10b981;
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  --shadow-hover: 0 28px 80px rgba(0, 0, 0, 0.5);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(59, 130, 246, 0.16), transparent 60%),
    radial-gradient(700px 400px at 100% 10%, rgba(37, 99, 235, 0.10), transparent 60%),
    linear-gradient(180deg, #08111f 0%, #0b1220 45%, #09111d 100%);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.logo span {
  color: var(--accent3);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-weight: 800;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 72px;
  background:
    radial-gradient(1000px 560px at 20% 0%, rgba(37, 99, 235, 0.22), transparent 60%),
    radial-gradient(900px 420px at 90% 35%, rgba(96, 165, 250, 0.14), transparent 60%);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7, 12, 24, 0.42), rgba(7, 12, 24, 0.84)),
    linear-gradient(to right, rgba(7, 12, 24, 0.55), rgba(7, 12, 24, 0.18));
}

.hero .container,
.hero-inner,
.hero-copy,
.hero-card {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.14);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 0 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy .lead {
  max-width: 58ch;
  margin: 0 0 24px;
  font-size: 1.08rem;
  color: rgba(243, 244, 246, 0.82);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

/* ================= TYPOGRAPHY ================= */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 0.9rem;
}

/* ================= BUTTONS ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.34);
}

.btn.primary:hover {
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.42);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn.full {
  width: 100%;
}

/* ================= STATS ================= */

.stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  min-width: 130px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.25rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

/* ================= HERO CARD / FORM ================= */

.hero-card {
  max-width: 440px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-card h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

form {
  display: grid;
  gap: 12px;
  max-width: 500px;
}

label,
form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(243, 244, 246, 0.45);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.8);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(229, 231, 235, 0.9) 50%),
    linear-gradient(135deg, rgba(229, 231, 235, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

select option {
  background: #0b1220;
  color: var(--text);
}

.hidden {
  display: none;
}

/* ================= SECTIONS ================= */

.section {
  padding: 88px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.04));
}

.section-head {
  margin-bottom: 24px;
}

.price {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.desc {
  color: var(--muted);
}

.small-note {
  font-size: 14px;
  color: var(--muted);
}

/* ================= GRID / CARDS ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.45), transparent);
  opacity: 0.7;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(96, 165, 250, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.card h3 {
  margin: 0 0 8px;
}

.card.add-ons {
  grid-column: 1 / -1;
}

/* ================= THUMBS ================= */

.thumb {
  width: 100%;
  height: 340px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.project-card:hover .thumb {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.03);
}

/* ================= LINKS / LISTS ================= */

.link {
  display: inline-block;
  margin-top: 16px;
  color: #dbeafe;
  font-weight: 900;
  transition: transform 0.18s ease, color 0.18s ease;
}

.link:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 6px 0;
}

.tag {
  display: inline-block;
  padding: 3px 8px;
  margin-left: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 11px;
  vertical-align: middle;
}

/* ================= DETAILS / PACKAGES ================= */

.more {
  margin-top: 16px;
}

.more summary {
  list-style: none;
  cursor: pointer;
}

.more summary::-webkit-details-marker {
  display: none;
}

.more-btn {
  display: inline-flex;
}

.more[open] .more-btn {
  margin-bottom: 6px;
}

.more-panel {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.pkg {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.pkg strong {
  color: var(--text);
}

.discount-box {
  border-top: none;
  margin-top: 0;
  padding-top: 14px;
}

/* ================= ABOUT / CONTACT ================= */

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #dbeafe;
  font-weight: 800;
  transition: color 0.18s ease, transform 0.18s ease;
}

.social-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* ================= FOOTER ================= */

.footer {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 6px 0;
}

/* ================= VIDEO PAGE ================= */

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.video-thumb .thumb {
  margin: 0;
}

.play-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox:target {
  display: block;
}

.lightbox-back {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1100px, 92vw);
  height: min(88vh, 800px);
  margin: 6vh auto;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.video-player {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #000;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.20);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 3;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  user-select: none;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

/* ================= CUSTOM STICKER PAGE ================= */

.custom-order-wrap {
  max-width: 780px;
}

.custom-order-intro {
  max-width: 700px;
  margin-bottom: 24px;
}

.custom-sticker-form {
  display: grid;
  gap: 16px;
  max-width: 780px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.custom-sticker-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.custom-sticker-form label {
  display: grid;
  gap: 8px;
  margin-top: 0;
  font-size: 12px;
  font-weight: 900;
  color: var(--text);
}

.custom-sticker-form .full-width {
  grid-column: 1 / -1;
}

.custom-sticker-form input,
.custom-sticker-form textarea,
.custom-sticker-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.20);
  color: var(--text);
}

.custom-sticker-form input[type="file"] {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
}

.custom-sticker-form textarea {
  min-height: 120px;
  resize: vertical;
}

.custom-sticker-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.custom-sticker-form .btn {
  width: fit-content;
  min-width: 180px;
}

.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 900;
}

#estimated-price {
  color: #c7d2fe;
  font-size: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding: 84px 0 56px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-card {
    max-width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .card.add-ons {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .header-inner {
    gap: 10px;
  }

  .nav {
    gap: 12px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-copy .lead {
    font-size: 1rem;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .thumb,
  .video-thumb .thumb {
    height: 250px;
  }

  .lightbox-nav {
    padding: 10px 14px;
    font-size: 44px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-inner {
    width: 94vw;
    height: min(82vh, 700px);
    margin: 9vh auto;
  }

  .custom-sticker-form .form-grid {
    grid-template-columns: 1fr;
  }

  .custom-sticker-form .btn {
    width: 100%;
  }
}