/* Public Video Slicer landing page. */
:root {
  --clip-bg: #0d0f14;
  --clip-panel: #171a21;
  --clip-border: #2b313d;
  --clip-text: #eceff4;
  --clip-muted: #98a2b3;
  --clip-accent: #8aaaff;
  --clip-accent-2: #70d8ca;
  --clip-accent-grad: linear-gradient(135deg, #8aaaff 0%, #a7bfff 100%);
  --clip-radius-lg: 16px;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--clip-bg);
}

.public-nav {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(18, 20, 25, 0.96);
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.public-brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.public-tools {
  display: flex;
  gap: 22px;
  margin-left: 38px;
}

.public-tools a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}
.public-tools a:hover { color: var(--text); }

.public-account-slot { margin-left: auto; }
.public-account-slot .account-info { gap: 12px; }
.public-account-slot .email { display: none; }

.public-landing {
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  background:
    radial-gradient(90% 60% at 50% -10%, rgba(108, 140, 255, 0.16) 0%, rgba(108, 140, 255, 0) 60%),
    radial-gradient(70% 50% at 90% 10%, rgba(69, 184, 172, 0.12) 0%, rgba(69, 184, 172, 0) 55%),
    var(--clip-bg);
}

.landing-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 72px 24px 82px;
}

.hero { text-align: center; }

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 13px;
  border: 1px solid rgba(108, 140, 255, 0.4);
  border-radius: 999px;
  background: rgba(108, 140, 255, 0.1);
  color: #b9c6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 16px;
  background: linear-gradient(90deg, #fff, #c6d1ff);
  background-clip: text;
  color: transparent;
  font-size: clamp(2.25rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 43rem;
  margin: 0 auto 28px;
  color: #b7c1d4;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.58;
}
.hero-sub strong { color: #fff; }

.landing-form {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto 14px;
}

.landing-form input {
  flex: 1;
  min-width: 0;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid var(--clip-border);
  border-radius: 12px;
  background: rgba(24, 27, 34, 0.9);
  color: var(--clip-text);
  font-size: 1rem;
}
.landing-form input:focus { border-color: var(--clip-accent); outline: none; box-shadow: var(--focus-ring); }

.landing-form button {
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  background: var(--clip-accent-grad);
  color: #142143;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(108, 140, 255, 0.3);
}
.landing-form button:hover { filter: brightness(1.06); }

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.ghost-cta {
  padding: 9px 18px;
  border: 1px solid rgba(69, 184, 172, 0.5);
  border-radius: 999px;
  background: rgba(69, 184, 172, 0.12);
  color: #83e9dc;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}
.ghost-cta:hover { background: rgba(69, 184, 172, 0.22); }
.hero-note { color: var(--clip-muted); font-size: 0.85rem; }

.value-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--clip-border);
  border-radius: 999px;
  background: #1b202b;
  color: #cbd5e6;
  font-size: 0.76rem;
  font-weight: 650;
}
.chip.feat::before { width: 6px; height: 6px; border-radius: 50%; background: var(--clip-accent-2); content: ""; }
.chip.time-chip { border-color: rgba(108, 140, 255, 0.5); background: rgba(108, 140, 255, 0.14); }
.chip-arrow { color: var(--clip-accent); font-weight: 800; }
.chip-to { color: #fff; font-weight: 800; }

.how { margin-top: 68px; text-align: center; }
.how h2 { margin: 0 0 26px; font-size: 1.5rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li,
.feature {
  padding: 24px 20px;
  border: 1px solid var(--clip-border);
  border-radius: var(--clip-radius-lg);
  background: linear-gradient(180deg, #171b23, #12151d);
  text-align: left;
}

.step-n {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 999px;
  background: var(--clip-accent-grad);
  color: #142143;
  font-weight: 800;
}
.steps strong { display: block; margin-bottom: 6px; color: #eef2fa; }
.steps small { color: var(--clip-muted); font-size: 0.85rem; line-height: 1.5; }

.feature-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.feature { background: #12151d; }
.feature-ic { display: block; margin-bottom: 10px; font-size: 1.7rem; }
.feature h3 { margin: 0 0 8px; font-size: 1.08rem; }
.feature p { margin: 0; color: var(--clip-muted); font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 760px) {
  .public-nav { min-height: 64px; padding: 0 14px; }
  .public-brand-mark { width: 30px; height: 30px; }
  .public-tools { display: none; }
  .public-account-slot .balance,
  .public-account-slot #redeem-toggle,
  .public-account-slot .email { display: none; }
  .public-account-slot .login-form,
  .public-account-slot .redeem-panel { position: fixed; top: 72px; right: 12px; left: 12px; width: auto; }
  .landing-inner { padding: 46px 18px 58px; }
  .landing-form { flex-direction: column; }
  .landing-form button { width: 100%; }
  .steps,
  .feature-row { grid-template-columns: 1fr; }
  .how { margin-top: 48px; }
}
