/* Picker page — layout + card glow (from sablon/evim.html + picker.css) */

@keyframes cardGlow{
  0%,100%{ box-shadow:0 0 0 1px rgba(var(--glow-rgb),.3), 0 0 8px 2px rgba(var(--glow-rgb),.2); }
  50%{ box-shadow:0 0 0 3px rgba(var(--glow-rgb),.9), 0 0 26px 8px rgba(var(--glow-rgb),.8), 0 0 48px 14px rgba(var(--glow-rgb),.4); }
}

.picker{
  padding:150px 0 48px;
}
.picker-head{
  max-width:640px;
  margin-bottom:48px;
}
.picker-head h1{
  font-size:clamp(28px,4vw,42px);
  margin:2px 0 14px;
}
.picker-head .accent{
  color:var(--blueprint);
  position:relative;
  display:inline-block;
}
.picker-head .accent::after{
  content:"";
  position:absolute;
  left:2px;
  right:2px;
  bottom:-8px;
  height:10px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 10'%3E%3Cpath d='M0 5 Q10 0 20 5 T40 5' stroke='%23f2a93c' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:repeat-x;
  background-size:40px 10px;
}
.picker-head p{
  color:var(--ink-soft);
  font-size:16px;
  margin-top:2px;
}

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

.picker-card{
  position:relative;
  display:block;
  width:100%;
  text-align:left;
  background:var(--paper-2);
  border:2px solid var(--blueprint);
  border-radius:var(--radius-lg);
  padding:22px 20px 20px;
  cursor:pointer;
  font-family:inherit;
  color:inherit;
  text-decoration:none;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.picker-card.glow-a{
  --glow-rgb:242,169,60;
  animation:cardGlow 2.6s ease-in-out infinite;
}
.picker-card.glow-b{
  --glow-rgb:47,85,131;
  animation:cardGlow 2.6s ease-in-out infinite;
  animation-delay:1.3s;
}
.picker-card:hover{
  transform:translateY(-4px);
  border-color:var(--safety);
  box-shadow:0 0 0 3px rgba(242,169,60,.3), var(--shadow-soft);
}
.picker-card:active{ transform:translateY(-2px) scale(.98); }

.pc-num{
  position:absolute;
  top:16px;
  right:16px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--safety-soft);
  color:var(--blueprint);
  font-family:var(--font-mono);
  font-weight:600;
  font-size:12.5px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pc-icon{
  width:40px;
  height:40px;
  border-radius:10px;
  background:var(--blueprint);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}
.pc-icon svg{ width:20px; height:20px; }
.picker-card h3{
  font-size:16.5px;
  margin-bottom:8px;
  line-height:1.3;
  padding-right:28px;
}
.pc-tag{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink-soft);
}

.picker-note{
  text-align:center;
  margin-top:36px;
  font-size:13.5px;
  color:var(--ink-soft);
  font-family:var(--font-mono);
  line-height:1.5;
  padding:0 8px;
}
.picker-note b{ color:var(--blueprint); }
.picker-note svg{
  width:12px;
  height:12px;
  vertical-align:-1px;
  margin:0 4px;
}

/* Quote CTA band */
.picker-quote{
  background:var(--blueprint);
  padding:56px 0 72px;
  margin-top:56px;
}
.picker-quote-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}
.picker-quote .eyebrow{ color:var(--safety-soft); }
.picker-quote h2{
  color:#fff;
  font-size:clamp(22px,3vw,28px);
  margin-bottom:10px;
}
.picker-quote h2 span{ color:var(--safety); }
.picker-quote p{
  color:rgba(255,255,255,.7);
  font-size:14.5px;
  max-width:420px;
}
.picker-quote-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
}
.picker-quote-actions .row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.picker-quote .btn-wa{
  font-family:var(--font-body);
  font-weight:600;
  font-size:14.5px;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#25D366;
  color:#fff;
  box-shadow:0 12px 22px -10px rgba(37,211,102,.55);
}
.picker-quote .btn-ghost{
  font-family:var(--font-body);
  font-weight:600;
  font-size:14.5px;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  border:1.5px solid rgba(255,255,255,.3);
  color:#fff;
}
.picker-quote .btn-ghost:hover{ border-color:#fff; }

/* Slim footer on picker pages */
.picker-foot{
  background:var(--ink);
  color:rgba(255,255,255,.6);
  padding:36px 0 110px;
  text-align:center;
  font-size:12.5px;
}
.picker-foot a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  font-weight:600;
}

@media (max-width:900px){
  .picker-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
}

@media (max-width:560px){
  .picker{ padding:104px 0 32px; }
  .picker-head{ margin-bottom:28px; }
  .picker-head h1{ font-size:clamp(24px,7vw,32px); }
  .picker-head p{ font-size:14.5px; }
  .picker-grid{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .picker-card{
    padding:14px 12px 12px;
    border-width:1.5px;
    border-radius:16px;
    animation:none;
    box-shadow:none;
  }
  .picker-card:hover{
    transform:none;
    box-shadow:var(--shadow-soft);
  }
  .picker-card h3{
    font-size:13.5px;
    margin-bottom:6px;
    padding-right:22px;
  }
  .pc-icon{
    width:32px;
    height:32px;
    border-radius:8px;
    margin-bottom:10px;
  }
  .pc-icon svg{ width:16px; height:16px; }
  .pc-num{
    top:10px;
    right:10px;
    width:22px;
    height:22px;
    font-size:11px;
  }
  .pc-tag{ font-size:10.5px; letter-spacing:.04em; }
  .picker-note{ margin-top:24px; font-size:12.5px; }
  .picker-quote{ padding:40px 0 56px; margin-top:36px; }
  .picker-quote-box{ flex-direction:column; align-items:flex-start; gap:20px; }
  .picker-quote-actions{ width:100%; }
  .picker-quote-actions .row{ width:100%; }
  .picker-quote .btn-wa,
  .picker-quote .btn-ghost{ justify-content:center; flex:1; text-align:center; }
}
