@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap');

:root {
  --font-sans: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --color-deep: #0d0815;
  --color-ink: #201129;
  --color-rose: #f9cee6;
  --color-lavender: #d7c9ff;
  --color-fog: #c7ecff;
  --color-mist: rgba(255, 255, 255, 0.08);
  --color-cream: #fff8f4;
  --color-text: #efe9ff;
  --color-muted: rgba(255, 255, 255, 0.75);
  --accent: linear-gradient(120deg, #fdb6d1, #c1b5ff, #9ee0ff);
  --shadow-soft: 0 20px 45px rgba(4, 4, 14, 0.45);
  --shadow-card: 0 12px 30px rgba(10, 7, 14, 0.4);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --space-xs: 0.35rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --transition-snappy: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

*::selection {
  background: rgba(255, 200, 240, 0.35);
  color: var(--color-deep);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--color-muted);
  background: radial-gradient(circle at 20% -10%, rgba(255, 214, 243, 0.25), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(142, 112, 255, 0.35), transparent 55%),
    linear-gradient(180deg, #0a0715 0%, #1c1026 38%, #0f0815 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.page-shell.is-loaded {
  opacity: 1;
}

.page-shell.is-leaving {
  opacity: 0;
}

body.no-scroll {
  overflow: hidden;
}

.ambient-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.blur-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: drift 18s ease-in-out infinite;
}

.blob-one {
  background: rgba(195, 145, 255, 0.85);
  top: -80px;
  left: 15%;
}

.blob-two {
  background: rgba(255, 181, 222, 0.8);
  right: 8%;
  top: 10%;
  animation-delay: 1.8s;
}

.blob-three {
  background: rgba(134, 214, 255, 0.65);
  bottom: -10%;
  left: 20%;
  animation-delay: 3.2s;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, 60px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-20px, -30px, 0) scale(1);
  }
}

main,
footer,
nav,
section,
header {
  position: relative;
  z-index: 1;
}

.navbar {
  position: sticky;
  top: 1.5rem;
  margin: 0 auto var(--space-lg);
  width: min(1200px, calc(100% - 2.5rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(12, 9, 18, 0.55);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(5, 4, 8, 0.55);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  z-index: 50;
}

.navbar.navbar-scrolled {
  background: rgba(7, 5, 12, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-logo {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-text);
}

.nav-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 0.35rem;
  transition: color var(--transition-snappy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width var(--transition-snappy);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--color-mist);
  color: var(--color-deep);
  font-size: 1.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-snappy), box-shadow var(--transition-snappy), background var(--transition-snappy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background-image: var(--accent);
  color: var(--color-deep);
  box-shadow: 0 15px 30px rgba(205, 172, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--color-text);
}

.btn-ghost:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  width: min(1200px, 100% - 2.5rem);
  margin: var(--space-xl) auto;
  padding: var(--space-xl) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: rgba(16, 11, 23, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 182, 222, 0.2), transparent 55%);
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-sm);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
}

.lede {
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  margin: var(--space-lg) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-value {
  font-weight: 600;
  color: #fff;
}

.hero-visual {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-card);
  position: relative;
}

.hero-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(110%);
}

.frame-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(4, 4, 12, 0.8);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.floating-points {
  position: relative;
  min-height: 120px;
}

.floating-orb {
  position: absolute;
  width: var(--size, 70px);
  height: var(--size, 70px);
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  box-shadow: 0 20px 30px rgba(12, 9, 20, 0.35);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -18px, 0);
  }
}

.section {
  width: min(1200px, 100% - 2.5rem);
  margin: var(--space-xl) auto;
  padding: var(--space-lg) clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: rgba(12, 8, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-soft);
}

.section.highlight {
  background: rgba(16, 9, 24, 0.8);
}

.section-heading {
  max-width: 640px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: var(--space-lg);
}

.about-panel {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.about-panel h3 {
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-list li {
  padding-left: 0.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.about-list strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.about-note {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-note a {
  color: var(--color-fog);
  font-weight: 600;
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proof-list li {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-value {
  display: block;
  font-weight: 600;
  color: #fff;
}

.proof-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.brand-faq {
  background: rgba(13, 7, 18, 0.78);
}

.card-grid,
.tools-grid,
.timeline-grid,
.pricing-grid,
.sample-grid,
.process-steps,
.form-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid {
  margin-top: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.glass-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  min-height: 220px;
}

.gallery {
  background: rgba(9, 5, 16, 0.8);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 1.5rem;
  margin-top: var(--space-lg);
}

.gallery-card {
  position: relative;
  margin: 0 0 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  break-inside: avoid;
  cursor: pointer;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.gallery-card img,
.sample-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  filter: saturate(110%) contrast(102%);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.gallery-card::after,
.sample-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(10, 6, 18, 0) 40%, rgba(8, 5, 12, 0.75));
  opacity: 0;
  transition: opacity var(--transition-snappy);
}

.gallery-card:hover,
.sample-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 25px 40px rgba(8, 4, 12, 0.55);
}

.gallery-card:hover img,
.sample-card:hover img {
  transform: scale(1.05);
  filter: saturate(125%) contrast(110%);
}

.gallery-card:hover::after,
.sample-card:hover::after {
  opacity: 1;
}

.gallery-card figcaption,
.sample-card figcaption {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

.process-steps {
  margin-top: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.process-steps li {
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.55);
}

.quote-card {
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.cta {
  background: linear-gradient(135deg, rgba(255, 182, 222, 0.13), rgba(110, 77, 164, 0.4));
}

.cta-inner {
  text-align: center;
}

.footer {
  width: min(1200px, 100% - 2.5rem);
  margin: var(--space-lg) auto var(--space-xl);
  padding: var(--space-md) clamp(1.25rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 6, 14, 0.9);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
}

.page-hero {
  width: min(900px, 100% - 2.5rem);
  margin: var(--space-xl) auto var(--space-lg);
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.story-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.timeline-grid {
  margin-top: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.timeline-grid article {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tools-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: var(--space-lg);
}

.pricing-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-card);
}

.pricing-card h2 {
  font-size: 2rem;
}

.pricing-card ul {
  padding-left: 1.25rem;
}

.pricing-note {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.sample-grid {
  margin-top: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sample-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.addons .glass-card {
  min-height: unset;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.commission-form {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

label span {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border var(--transition-snappy), background var(--transition-snappy);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.form-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 2, 6, 0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
}

.lightbox.is-visible {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  position: relative;
  max-width: min(960px, 90vw);
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.lightbox-content {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  background: rgba(0, 0, 0, 0.4);
}

.lightbox-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-controls button {
  pointer-events: all;
  background: rgba(10, 7, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform var(--transition-snappy);
}

.lightbox-controls button:hover {
  transform: scale(1.05);
}

.close {
  position: absolute;
  top: -52px;
  right: 0;
  background: rgba(10, 7, 16, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.lightbox-figure figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 820px) {
  .navbar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 1.5rem;
    flex-direction: column;
    background: rgba(7, 5, 12, 0.95);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero,
  .section,
  .footer {
    width: calc(100% - 1.5rem);
    padding: var(--space-lg) 1.5rem;
  }

  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 540px) {
  .hero-stats {
    flex-direction: column;
  }

  .gallery-masonry {
    column-count: 1;
  }

  figcaption {
    font-size: 0.9rem;
  }

  .navbar {
    width: calc(100% - 1.5rem);
    top: 0.5rem;
  }
}