/* DiscVault landing — matches the app's cinema-dark palette. */
:root {
  --ink:#0c0d10; --panel:#16181d; --panel2:#1e2128; --edge:#2a2e37;
  --mute:#8b93a3; --text:#f3f4f6; --accent:#f5a524; --accent-dim:#b9791a;
  --bluray:#3b82f6; --dvd:#9ca3af; --green:#22c55e;
  --maxw:1080px;
  --radius:18px;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0; background:var(--ink); color:var(--text);
  font:16px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
.wrap { max-width:var(--maxw); margin:0 auto; padding:0 20px; }
section { padding:72px 0; }
h1,h2,h3 { line-height:1.15; margin:0; letter-spacing:-0.02em; }
h2.section-title { font-size:30px; margin-bottom:8px; }
.section-sub { color:var(--mute); margin:0 0 36px; font-size:17px; }
.eyebrow { color:var(--accent); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }

/* Header */
header {
  position:sticky; top:0; z-index:50;
  background:rgba(12,13,16,.72); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--edge);
}
header .wrap { display:flex; align-items:center; justify-content:space-between; height:62px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:800; font-size:18px; }
.brand img { width:30px; height:30px; border-radius:8px; }
.nav { display:flex; align-items:center; gap:26px; }
.nav a.link { color:var(--mute); font-size:15px; font-weight:600; }
.nav a.link:hover { color:var(--text); }

/* Buttons */
.btn {
  display:inline-flex; align-items:center; gap:8px; font-weight:800; font-size:15px;
  padding:11px 20px; border-radius:999px; cursor:pointer; border:1px solid transparent;
  transition:opacity .15s, transform .15s;
}
.btn:hover { opacity:.9; }
.btn:active { transform:scale(.98); }
.btn-accent { background:var(--accent); color:#000; }
.btn-ghost { background:var(--panel2); color:var(--text); border-color:var(--edge); }
.btn-lg { padding:15px 28px; font-size:17px; }

/* Hero */
.hero { position:relative; overflow:hidden; padding-top:84px; padding-bottom:80px; text-align:center; }
.hero::before {
  content:""; position:absolute; inset:-40% 0 auto 0; height:560px;
  background:radial-gradient(60% 60% at 50% 0%, rgba(245,165,36,.16), transparent 70%);
  pointer-events:none;
}
.hero-icon { width:96px; height:96px; border-radius:24px; margin:0 auto 22px; box-shadow:0 12px 40px rgba(0,0,0,.5); }
.hero h1 { font-size:clamp(38px,6vw,60px); }
.hero .tagline { font-size:clamp(18px,2.4vw,23px); color:var(--text); margin:16px auto 8px; max-width:680px; }
.hero .lede { color:var(--mute); max-width:600px; margin:0 auto 30px; font-size:17px; }
.hero-cta { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.trust { margin-top:26px; color:var(--mute); font-size:14px; display:flex; gap:10px 18px; justify-content:center; flex-wrap:wrap; }
.trust span { display:inline-flex; align-items:center; gap:7px; }
.dot-accent::before { content:"●"; color:var(--accent); font-size:10px; }

/* Format chips */
.formats { display:flex; gap:10px; justify-content:center; margin-top:24px; flex-wrap:wrap; }
.chip { font-size:12px; font-weight:800; letter-spacing:.04em; padding:5px 12px; border-radius:999px; border:1px solid var(--edge); }
.chip.uhd { color:var(--accent); border-color:rgba(245,165,36,.5); }
.chip.bd { color:var(--bluray); border-color:rgba(59,130,246,.5); }
.chip.dvd { color:var(--dvd); border-color:rgba(156,163,175,.5); }

/* Feature grid */
.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:16px; }
.card {
  background:var(--panel); border:1px solid var(--edge); border-radius:var(--radius); padding:22px;
  transition:border-color .2s, transform .2s;
}
.card:hover { border-color:rgba(245,165,36,.4); transform:translateY(-2px); }
.card .ic { width:42px; height:42px; border-radius:12px; background:rgba(245,165,36,.12); display:flex; align-items:center; justify-content:center; margin-bottom:14px; font-size:22px; }
.card h3 { font-size:18px; margin-bottom:6px; }
.card p { color:var(--mute); font-size:15px; margin:0; }

/* Screenshots */
.shots { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:760px; margin:0 auto; }
@media (max-width:760px){ .shots { grid-template-columns:repeat(2,1fr); } }
/* Phone-bezel mockup (CSS only) */
.shot {
  position:relative;
  aspect-ratio:9 / 19.5;
  background:#0a0b0f;                 /* bezel */
  border:1px solid #23262e;
  border-radius:30px;
  padding:7px;                        /* bezel thickness */
  box-shadow:0 16px 38px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.6), inset 0 0 0 1.5px #000;
  transition:transform .2s;
}
.shot:hover { transform:translateY(-3px); }
.shot img { width:100%; height:100%; object-fit:cover; border-radius:23px; display:block; background:var(--panel2); }
/* camera punch-hole */
.shot::after {
  content:""; position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width:7px; height:7px; border-radius:50%; background:#000;
  box-shadow:0 0 0 1.5px rgba(255,255,255,.06); z-index:2;
}
/* side power button */
.shot::before {
  content:""; position:absolute; right:-2px; top:24%; width:3px; height:44px;
  border-radius:0 3px 3px 0; background:#23262e; z-index:1;
}

/* Pricing */
.tiers { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:16px; max-width:760px; margin:0 auto; }
.tier { background:var(--panel); border:1px solid var(--edge); border-radius:var(--radius); padding:26px; }
.tier.pro { border-color:rgba(245,165,36,.5); background:linear-gradient(180deg,rgba(245,165,36,.06),transparent); }
.tier h3 { font-size:20px; }
.tier .price { font-size:34px; font-weight:800; margin:8px 0 2px; }
.tier .price small { font-size:15px; color:var(--mute); font-weight:600; }
.tier ul { list-style:none; padding:0; margin:18px 0 0; }
.tier li { padding:7px 0 7px 26px; position:relative; color:var(--text); font-size:15px; }
.tier li::before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:800; }
.tier .note { margin-top:16px; font-size:13px; color:var(--mute); }

/* Steps */
.steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; }
.step { background:var(--panel); border:1px solid var(--edge); border-radius:var(--radius); padding:22px; }
.step .num { width:30px; height:30px; border-radius:999px; background:var(--accent); color:#000; font-weight:800; display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.step h3 { font-size:16px; margin-bottom:6px; }
.step p { color:var(--mute); font-size:14px; margin:0; }

/* Callout */
.callout { background:var(--panel); border:1px solid var(--edge); border-radius:var(--radius); padding:34px; text-align:center; }
.callout h2 { font-size:26px; margin-bottom:8px; }
.callout p { color:var(--mute); max-width:560px; margin:0 auto 22px; }

/* Footer */
footer { border-top:1px solid var(--edge); padding:44px 0; color:var(--mute); font-size:14px; }
footer .wrap { display:flex; flex-wrap:wrap; gap:24px; justify-content:space-between; align-items:flex-start; }
footer a { color:var(--mute); }
footer a:hover { color:var(--text); }
.foot-links { display:flex; gap:20px; flex-wrap:wrap; }
.tmdb-attr { max-width:340px; }
.tmdb-attr img { height:18px; margin-bottom:8px; }
.tmdb-attr p { margin:0; font-size:12px; line-height:1.5; }

@media (max-width:640px){
  section { padding:54px 0; }
  .nav .link { display:none; }
}
