:root {
    --bg: #0b0c0f;  /* base deep black */
    --card: #111318;
    --ink: #ffffff;
    --muted: #a9afba;
    --accent: #ff7cf0;
    --accent2: #75e3ff;
    --ring: rgba(255, 124, 240, 0.25);
}

* {
    box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;

  /* Layer order: gradients → nebula image */
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(20, 35, 70, 0.35),
      transparent 70%
    ),
    radial-gradient(
      circle at 75% 80%,
      rgba(30, 20, 60, 0.35),
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      #060608 0%,
      #0b0c0f 100%
    );
    
    /*url("../images/wdc.WebBackground-A-Dark.jpg"); */

  background-color: var(--bg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: screen;

  color: #ffffff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

  /* Animation for soft parallax drift */
  animation: studioLights 30s ease-in-out infinite alternate,
             cosmicDrift 120s linear infinite;
}

/* Your original smooth color shift */
@keyframes studioLights {
  0% {
    filter: brightness(1) contrast(1);
  }
  100% {
    filter: brightness(1.15) contrast(1.05);
  }
}

/* New drifting background movement */
@keyframes cosmicDrift {
  0% {
    background-position: center center;
  }
  50% {
    background-position: 48% 52%; /* slow diagonal drift */
  }
  100% {
    background-position: center center;
  }
}

a {
    color: #ff5e00; /* neon orange */
    text-decoration: none;
}

a:hover {
    color: #ff9d33; /* brighter orange glow on hover */
    text-shadow: 0 0 6px #ff5e00, 0 0 12px #ff9d33;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(11, 12, 15, 0.55);
    backdrop-filter: blur(10px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.2rem;
}

.brand-logo {
    width: 44px;
    height: 44px;
    display: block;
}

.nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.hero {
    padding: 72px 0 36px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--accent2);
    font-weight: 800;
    font-size: 12px;
}

h1 {
    font-size: clamp(28px, 4.6vw, 54px);
    line-height: 1.05;
    margin: 8px 0 10px;
}

.lede {
    color: #fff; /* brighter than muted */
    font-size: clamp(16px, 2.2vw, 20px); /* larger range */
    font-weight: 500; /* adds visual weight without full bold */
    line-height: 1.4;
    margin: 0 0 20px;
}

.cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    transition: transform 0.08s ease, box-shadow 0.12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #0a0a0a;
    border: none;
}

.subtle {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px;
}

.mock {
    border-radius: 18px;
    overflow: hidden;
    background: #0f1116;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    min-height: 320px;
    display: grid;
    place-items: center;
}

.mock svg {
    width: 86%;
    height: auto;
}

.section {
    padding: 42px 0;
}

.section h2 {
    font-size: clamp(22px, 3.2vw, 36px);
    margin: 0 0 8px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

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

.card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
}

.card p {
    color: var(--muted);
}

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

.feature {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    margin-top: 8px;
    flex: 0 0 10px;
}

.feature h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.feature p {
    margin: 0;
    color: var(--muted);
}

.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step {
    padding: 18px;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step h3::before {
    counter-increment: step;
    content: counter(step) " — ";
    color: var(--accent2);
}

.step h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.step p {
    margin: 0;
    color: var(--muted);
}

.tips {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 16px;
}

.tips h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--accent2);
}

.tips ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.faq details {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
}

.faq details + details {
    margin-top: 10px;
}

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

footer {
    padding: 40px 0 60px;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.fine {
    font-size: 12px; /* scales with viewport */
}

.centered-footer {
    text-align: center;
    margin: 0 auto;
    max-width: 720px; /* optional, keeps text from stretching too wide */
}

.centered-footer p {
    margin: 8px 0;
}

.neon-title {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.3;
}

/* Neon line colors */
.neon-title .line1 {
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff;
}

.neon-title .line2 {
    font-weight: 200;
    font-size: clamp(1rem, 2vw, 1.4rem); /* scales with viewport */

    color: #ff5e00; /* brighter neon orange */
    text-shadow: 0 0 8px #ff5e00, 0 0 16px #ff9d33, 0 0 24px #ff6a00;
}

.neon-title .line3 {
    font-weight: 800;
    font-size: 3rem;

    color: #39ff14; /* neon green */
    text-shadow: 0 0 8px #39ff14, 0 0 16px #66ff66;
}

.neon-subtitle {
    font-size: 1.5rem;
    line-height: 1;
}

/* Divider line */
.mini-line {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    margin: 8px 0;
    box-shadow: 0 0 6px #fff, 0 0 12px #ff00ff;
}

/* Gallery */
.gallery-title {
    text-align: center;
    margin-bottom: 14px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Base gallery card */
.gallery-card {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Background variants */
.gallery-card.back-a {
    background-image: url("./gallery/gallery-back-a.jpg");
}

.gallery-card.back-b {
    background-image: url("./gallery/gallery-back-b.jpg");
}

/* Add more .back-c, .back-d etc. as needed */

/* Product image (transparent PNG/WebP) */
.gallery-card img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 16px;
    z-index: 2; /* sits above background */
}

/* Caption styling */
.gallery-card figcaption
{
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.download-btn {
    height: 44px;
    width: auto;
}

.testimonial
{
  max-width: 600px;
  margin: 20px auto;
  padding: 16px 20px;
  background: #1c1c24;
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.testimonial blockquote
{
  margin: 0 0 12px 0;
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}

.testimonial cite
{
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #b8bdc7;
}

.bullets li {
  margin-bottom: 1.5em; /* or adjust to taste */
}


.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.video-container video {
  width: auto;          /* Don't force full width */
  height: 80vh;         /* Limit to 80% of viewport height */
  max-width: 400px;     /* Optional: limit the width */
  border-radius: 12px;  /* Optional: soft corners */
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}


/* Stack to one column on small screens */
@media (max-width: 860px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1080px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .steps,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .features {
        grid-template-columns: 1fr;
    }
}

