/* ==========================================================================
   Pickd — About, Support and the legal pages
   Transcribed from Pickd About.dc.html and Pickd Support.dc.html.
   ========================================================================== */

:root {
  --base: #05050c;
  --surface: #16162a;
  --accent: #7634dc;
  --accent-soft: #a082ff;
  --accent-bright: #b39aff;
  --lavender: #c9b6ff;
  --accent-rgb: 118, 52, 220;
}
@supports (color: oklch(63% 0.28 290)) {
  :root {
    --accent: oklch(63% 0.28 290);
    --accent-soft: oklch(70% 0.20 290);
    --accent-bright: oklch(74% 0.18 290);
  }
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--base); scroll-behavior: smooth; }
body {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { color: var(--lavender); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 12px 20px; background: var(--surface); color: #fff;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Header — sticky and solid here, unlike the homepage's transparent scrim,
   because these pages have no 3D scene to float over.
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(5, 5, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.logo-lockup { display: block; height: 30px; width: auto; overflow: visible; }
.logo-link { display: block; line-height: 0; }
.brand .beta {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 1.6px; text-transform: uppercase; color: #fff;
}
.site-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13.5px; color: #fff;
}
.nav-link:hover { color: #fff; opacity: .78; }
.nav-link[aria-current="page"] { color: var(--accent-bright); }

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  color: #fff; border: none; border-radius: 50px;
  background: var(--accent); cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, opacity .18s ease;
}
.btn-nav {
  font-size: 13.5px; padding: 11px 20px;
  box-shadow: 0 8px 26px rgba(var(--accent-rgb), 0.4);
}
.btn-nav:hover { transform: translateY(-1px); color: #fff; }
.btn-lg {
  font-size: 15px; padding: 19px 34px;
  box-shadow: 0 10px 34px rgba(var(--accent-rgb), 0.42);
}
.btn-lg:hover { transform: translateY(-2px); color: #fff; }

main { flex: 1; }

.eyebrow {
  font-size: 11.5px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--accent-bright); margin: 0 0 26px;
}
.label {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 11.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.page-hero { position: relative; padding: 130px 40px 96px; }
.page-hero .glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.22), transparent 66%);
  filter: blur(60px); pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(42px, 5.6vw, 84px); line-height: 0.96;
  letter-spacing: -2.6px; margin: 0 0 28px; text-wrap: balance;
}
.page-hero .sub {
  font-size: 22px; line-height: 1.5; color: rgba(255, 255, 255, 0.6);
  max-width: 620px; margin: 0; text-wrap: pretty;
}

.why { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 96px 40px; }
.why-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: 64px;
}
.why-label { position: sticky; top: 120px; }
.why-body { display: flex; flex-direction: column; gap: 28px; max-width: 720px; }
.why-body .lead {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.28;
  letter-spacing: -0.8px; color: #fff; margin: 0; text-wrap: pretty;
}
.why-body p {
  font-size: 20px; line-height: 1.62; color: rgba(255, 255, 255, 0.68);
  margin: 0; text-wrap: pretty;
}

.shot-band { padding: 0 40px 96px; }
.shot-band-inner {
  position: relative; max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: center; padding: 70px 40px;
  border-radius: 40px; border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #120b1e, #05050c);
}
.shot-band-inner .glow {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.3), transparent 68%);
  filter: blur(52px); pointer-events: none;
}
.shot-band picture { position: relative; display: block; width: 320px; }
.shot-band img {
  display: block; width: 100%; height: auto;
  border-radius: 42px; border: 8px solid var(--surface);
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 0 130px rgba(var(--accent-rgb), 0.22);
}

.how { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 100px 40px; }
.how-inner { max-width: 1180px; margin: 0 auto; }
.how .eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  letter-spacing: 0.2em; margin-bottom: 22px;
}
.how h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(34px, 3.8vw, 54px); line-height: 1.02;
  letter-spacing: -1.8px; margin: 0 0 64px; max-width: 760px; text-wrap: balance;
}
.how-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.how-card {
  padding: 34px 32px 38px; border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}
.how-card .num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 13px;
  letter-spacing: 0.18em; color: var(--accent-bright); margin-bottom: 20px;
}
.how-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 23px;
  line-height: 1.16; letter-spacing: -0.6px; margin: 0 0 12px;
}
.how-card p {
  font-size: 16.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.6);
  margin: 0; text-wrap: pretty;
}

.hard { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 100px 40px; }
.hard-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 72px; align-items: center;
}
.hard .eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  letter-spacing: 0.2em; margin-bottom: 22px;
}
.hard h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(34px, 3.8vw, 54px); line-height: 1.02;
  letter-spacing: -1.8px; margin: 0 0 26px; text-wrap: balance;
}
.hard p {
  font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, 0.68);
  margin: 0 0 20px; max-width: 520px; text-wrap: pretty;
}
.hard p:last-child { margin-bottom: 0; }
.hard-shot { display: flex; justify-content: center; }
.hard-shot picture { display: block; width: 300px; }
.hard-shot img {
  display: block; width: 100%; height: auto;
  border-radius: 40px; border: 7px solid var(--surface);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 110px rgba(var(--accent-rgb), 0.18);
}

.closing { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 100px 40px; }
.closing-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(30px, 3.4vw, 46px); line-height: 1.06;
  letter-spacing: -1.6px; margin: 0 0 22px; text-wrap: balance;
}
.closing p {
  font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, 0.58);
  margin: 0; text-wrap: pretty;
}

.cta-band {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 120px 40px 130px;
}
.cta-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.cta-inner .glow {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.24), transparent 66%);
  filter: blur(46px); pointer-events: none;
}
.cta-content { position: relative; }
.cta-band h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(38px, 4.6vw, 60px); line-height: 1.02;
  letter-spacing: -1.8px; margin: 0 0 20px; text-wrap: balance;
}
.cta-band p {
  font-size: 19px; line-height: 1.55; color: rgba(255, 255, 255, 0.55);
  max-width: 520px; margin: 0 auto 40px; text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   Support
   -------------------------------------------------------------------------- */
.support { position: relative; padding: 120px 40px 110px; }
.support .glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 680px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2), transparent 66%);
  filter: blur(58px); pointer-events: none;
}
.support-inner { position: relative; max-width: 900px; margin: 0 auto; }
.support h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(44px, 5.4vw, 78px); line-height: 0.98;
  letter-spacing: -2.4px; margin: 0 0 26px;
}
.support .intro {
  font-size: 21px; line-height: 1.55; color: rgba(255, 255, 255, 0.62);
  max-width: 620px; margin: 0 0 18px; text-wrap: pretty;
}
.reply-time {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.45); margin: 0 0 56px;
}
.reply-dot {
  display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.9);
}

.support-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px;
}
.support-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 30px 32px 34px; border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  transition: border-color .18s ease, background-color .18s ease;
}
.support-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}
.support-card h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 19px;
  letter-spacing: -0.4px; margin: 0;
}
.support-card p {
  font-size: 15.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.55);
  margin: 0; text-wrap: pretty;
}

.support-card-primary {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; justify-content: space-between;
  gap: 24px; padding: 32px 34px; border-radius: 22px;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0.05));
}
.support-card-primary:hover {
  border-color: rgba(var(--accent-rgb), 0.75);
  background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.24), rgba(var(--accent-rgb), 0.08));
}
.support-card-primary h2 { font-size: 24px; letter-spacing: -0.6px; margin: 0 0 8px; }
.support-card-primary p { font-size: 16px; line-height: 1.5; color: rgba(255, 255, 255, 0.62); }
.support-card-primary .arrow {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px;
  color: var(--accent-bright); flex: none;
}

.faq { margin-top: 72px; padding-top: 56px; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.faq h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(26px, 3vw, 38px); letter-spacing: -1.2px; margin: 0 0 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 26px; }
.faq-list h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px;
  margin: 0 0 8px;
}
.faq-list p {
  font-size: 16.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.58); margin: 0;
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal { max-width: 760px; margin: 0 auto; padding: 88px 40px 120px; }
.legal h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(38px, 5vw, 56px); line-height: 1.04;
  letter-spacing: -1.8px; margin: 0 0 14px;
}
.legal .updated { font-size: 14px; color: rgba(255, 255, 255, 0.38); margin: 0 0 48px; }
.legal h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 23px;
  letter-spacing: -0.4px; margin: 44px 0 14px;
}
.legal h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px;
  margin: 28px 0 10px;
}
.legal p, .legal li {
  font-size: 16.5px; line-height: 1.68; color: rgba(255, 255, 255, 0.62);
}
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.legal strong { color: rgba(255, 255, 255, 0.86); font-weight: 500; }
.legal a { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 44px 40px; }
.site-footer .wrap {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-mark {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 17px; letter-spacing: 0.5px;
}
.footer-mark .pick { color: var(--accent); }
.footer-mark .d { color: #fff; }
.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.28); }
.footer-links { display: flex; gap: 24px; font-size: 13px; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, 0.45); }
.footer-links a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 24px; }
  .why-label { position: static; }
  .hard-inner { grid-template-columns: 1fr; gap: 48px; }
  .hard-shot { order: -1; }
}

@media (max-width: 760px) {
  .site-header { padding: 14px 18px; }
  .site-nav { gap: 16px; }
  .nav-link { font-size: 12.5px; }
  .btn-nav { font-size: 12.5px; padding: 10px 16px; }
  .brand .beta { font-size: 10px; }

  .page-hero { padding: 72px 22px 56px; }
  .page-hero h1 { font-size: clamp(34px, 9vw, 52px); letter-spacing: -1.6px; }
  .page-hero .sub { font-size: 18px; }

  .why { padding: 56px 22px; }
  .why-body .lead { font-size: clamp(21px, 5.6vw, 26px); }
  .why-body p { font-size: 17px; }

  .shot-band { padding: 0 22px 56px; }
  .shot-band-inner { padding: 44px 22px; border-radius: 28px; }
  .shot-band picture { width: 240px; }

  .how, .hard, .closing { padding: 56px 22px; }
  .how h2, .hard h2 { font-size: clamp(26px, 7vw, 36px); letter-spacing: -1.2px; margin-bottom: 32px; }
  .how-cards { gap: 16px; }
  .how-card { padding: 26px 24px 30px; }
  .hard p { font-size: 17px; }
  .hard-shot picture { width: 240px; }

  .cta-band { padding: 72px 22px 80px; }
  .cta-band h2 { font-size: clamp(28px, 8vw, 40px); letter-spacing: -1.2px; }
  .cta-band p { font-size: 17px; }

  .support { padding: 72px 22px 80px; }
  .support h1 { font-size: clamp(36px, 10vw, 56px); letter-spacing: -1.6px; }
  .support .intro { font-size: 18px; }
  .reply-time { margin-bottom: 36px; }
  .support-cards { grid-template-columns: 1fr; }
  .support-card { padding: 24px 22px 28px; }
  .support-card-primary { flex-direction: column; align-items: flex-start; gap: 14px; padding: 26px 22px; }
  .support-card-primary h2 { font-size: 21px; }
  .faq { margin-top: 48px; padding-top: 40px; }

  .legal { padding: 56px 22px 88px; }

  .site-footer { padding: 34px 22px; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* See css/3d.css — the nav carries Home, About and Support now, so it stays on
   phones and the Beta tag gives up the space instead. */
@media (max-width: 560px) {
  .site-header { padding: 12px 14px; }
  .brand .beta { display: none; }
  .logo-lockup { height: 26px; }
  .site-nav { gap: 13px; }
  .nav-link { font-size: 12px; }
  .btn-nav { font-size: 11.5px; padding: 9px 13px; }
}
/* Home, About and Support plus the CTA will not fit beside the wordmark on the
   narrowest phones; the current page is the one that can go, since you are
   already on it. */
@media (max-width: 400px) {
  .site-nav .nav-link[aria-current="page"] { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html, body { scroll-behavior: auto; }
  * { transition: none !important; }
}
