:root{ 
  --ink:#0f172a;
  --muted:#6b7280;
  --border:#e5e7eb;
  --bg:#ffffff;
  --soft:#f8fafc;
  --navy:#0b1220;
  --accent:#f59e0b;
  --accentSoft:#fff7ed;

  --radius:18px;
  --pill:999px;
  --shadow:0 18px 45px rgba(15,23,42,.09);
  --shadow2:0 28px 70px rgba(15,23,42,.16);
  --max:1120px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.section{padding:72px 0}
.skipLink{
  position:absolute;
  left:16px;
  top:-40px;
  background:#111827;
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  z-index:1000;
  transition:top .16s ease;
}
.skipLink:focus{top:14px}
.kicker{
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}
h1{font-size:clamp(2.2rem,3vw + 1rem,3.1rem);line-height:1.08;letter-spacing:-.03em}
h2{font-size:1.8rem;letter-spacing:-.02em;line-height:1.2}
h3{font-size:1.05rem;line-height:1.25}
p{color:var(--muted)}
.small{font-size:.86rem;color:var(--muted)}
.small a{color:inherit;text-decoration:none}
.small a:hover{text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:2px}
strong{color:var(--ink)}

.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:var(--pill);
  background:var(--accentSoft);
  border:1px solid rgba(245,158,11,.28);
  font-size:.82rem;color:#7c2d12;
  font-weight:600;
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--accent)}
.accent{color:var(--accent)}
.spacer{height:14px}

.card{
  border:1px solid rgba(229,231,235,.9);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 14px 34px rgba(15,23,42,.05);
}
.pad{padding:22px}

.btn{
  appearance:none;border:none;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 18px;border-radius:var(--pill);
  font-weight:700;font-size:.92rem;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  white-space:nowrap;
  text-decoration:none;
}
.btnPrimary{background:var(--navy);color:#fff;box-shadow:var(--shadow)}
.btnPrimary:hover{transform:translateY(-1px);box-shadow:var(--shadow2)}
.btnOutline{background:#fff;border:1px solid rgba(148,163,184,.7);color:var(--ink)}
.btnOutline:hover{transform:translateY(-1px);border-color:var(--ink)}
.btnSoft{background:var(--accentSoft);border:1px solid rgba(245,158,11,.35);color:#7c2d12}
.btnSoft:hover{transform:translateY(-1px);box-shadow:0 16px 40px rgba(245,158,11,.18)}

/* small polish for header login button */
.loginBtn{
  padding:10px 14px;
  font-size:.9rem;
}

/* =========================
   Header / Nav
========================= */
header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(229,231,235,.75);
}
.head{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 18px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  position:relative;
}
.brand{display:flex;align-items:center;gap:12px}
.logoWrap{
  width:44px;height:44px;border-radius:16px;
  border:2px solid var(--ink);
  background:#fff;
  overflow:hidden;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.logoWrap img{width:100%;height:100%;object-fit:contain}
.brandText{display:flex;flex-direction:column;gap:2px}
.brandText strong{font-size:1rem}
.brandText span{font-size:.78rem;color:var(--muted)}

nav{display:flex;align-items:center;gap:18px}
.navLink{
  font-size:.9rem;
  color:var(--muted);
  font-weight:600;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:6px 0;
  position:relative;
}
.navLink:hover{color:var(--ink)}
.navLink::after{
  content:"";position:absolute;left:0;bottom:-6px;width:0;height:2px;border-radius:999px;
  background:var(--accent);transition:width .16s ease;
}
.navLink:hover::after{width:18px}

.menuBtn{
  display:none;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:999px;
  border:1px solid var(--border);background:#fff;cursor:pointer;
}
.menuBtn span{width:16px;height:2px;background:var(--ink);border-radius:999px;position:relative}
.menuBtn span::before,.menuBtn span::after{
  content:"";position:absolute;left:0;width:100%;height:2px;background:var(--ink);border-radius:999px;
  transition:transform .16s ease, top .16s ease;
}
.menuBtn span::before{top:-5px}
.menuBtn span::after{top:5px}
.menuBtn.active span{background:transparent}
.menuBtn.active span::before{top:0;transform:rotate(45deg)}
.menuBtn.active span::after{top:0;transform:rotate(-45deg)}

/* =========================
   Hero
========================= */
.hero{padding:64px 0 46px}
.heroGrid{
  display:grid;
  grid-template-columns: minmax(0,1.35fr) minmax(0,1fr);
  gap:28px;
  align-items:center;
}
.heroTitle{margin-top:14px}
.heroText{margin-top:14px}
.heroActions{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}
.heroEmail{margin-top:10px}
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.badge{
  padding:8px 12px;border-radius:var(--pill);
  border:1px solid rgba(148,163,184,.45);
  background:#f9fafb;
  font-size:.82rem;color:#4b5563;font-weight:600;
}

.heroSide{
  background: radial-gradient(circle at top left, #eff6ff 0, #ffffff 52%);
  border:1px solid rgba(209,213,219,.75);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  overflow:hidden;
}
.heroSideTop{
  padding:18px 18px 0;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.heroSideTop .pill{
  padding:6px 10px;border-radius:var(--pill);
  background:#ecfeff;border:1px solid #a5f3fc;
  color:#0e7490;font-size:.74rem;font-weight:700;
}
.heroSideBold{font-weight:800}
.heroPhoto{margin:14px 18px 0;border-radius:14px;overflow:hidden;border:1px solid rgba(229,231,235,.9)}
.heroPhoto img{width:100%;height:auto;object-fit:cover}
.heroSideBody{padding:18px}

.checkList{list-style:none;display:flex;flex-direction:column;gap:10px;margin-top:12px}
.checkList li{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-size:.9rem}
.check{
  width:18px;height:18px;border-radius:999px;
  background:#ecfdf5;border:1px solid #bbf7d0;
  color:#047857;font-weight:800;
  display:inline-flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:.75rem;margin-top:2px;
}

/* =========================
   Layout helpers
========================= */
.grid3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:18px}
.split{display:grid;grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);gap:22px;align-items:start;margin-top:18px}

.priceTop{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.price{font-size:1.9rem;font-weight:800;letter-spacing:-.02em}
.price small{font-size:.9rem;color:var(--muted);font-weight:600}

.list{margin-top:12px;list-style:none;display:flex;flex-direction:column;gap:8px}
.list li{display:flex;gap:10px;align-items:flex-start;font-size:.9rem;color:var(--muted)}
.list li::before{content:"•";color:var(--accent);font-weight:900}

.row{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.sectionLead{margin-top:10px;max-width:780px}

/* =========================
   Trust + Process + FAQ
========================= */
.trustBand{
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top:1px solid rgba(229,231,235,.9);
  border-bottom:1px solid rgba(229,231,235,.9);
}
.trustGrid .card{height:100%}

.steps{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.stepNum{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.9rem;
  background:#eef2ff;color:#312e81;
  margin-bottom:10px;
}

.faqGrid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

/* =========================
   PRICING (stacked layout)
========================= */
.pricingStack{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}

/* If you ever use cornerTag again: ensure it never covers content behind it */
/* FIX: reserve space so absolute badge doesn't overlap headings */
.popularCard{
  position:relative;
  padding-top:44px; /* reserves space for cornerTag */
  border-color: rgba(245,158,11,.40);
  box-shadow:0 20px 55px rgba(245,158,11,.10);
}
.popularCard::before{
  content:"";
  position:absolute;inset:-1px;
  border-radius:var(--radius);
  pointer-events:none;
  box-shadow:0 0 0 1px rgba(245,158,11,.35);
}

/* Corner tag */
.cornerTag{
  position:absolute;
  top:14px;
  right:14px;
  padding:7px 10px;
  border-radius:999px;
  background:var(--accent);
  color:#111827;
  font-weight:900;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  box-shadow:0 18px 40px rgba(245,158,11,.28);
  z-index:2;
}

/* Support plans card */
.pricingPlans .plansHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

/* Plans grid: 3 across on desktop, stacked on mobile */
.plansGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}

/* Make mini cards consistent inside plans grid */
.plansGrid .miniCard{
  margin-top:0;
  height:100%;
  display:flex;
  flex-direction:column;
}
.plansGrid .miniCard .row{margin-top:auto}

/* =========================
   Standard Support Highlight (NEW)
   FIX: badge is in normal flow, never overlaps content
========================= */
.featuredPlan{
  border-color: rgba(245,158,11,.55);
  box-shadow:0 20px 60px rgba(245,158,11,.14);
  position:relative;
}
.featuredPlan .planBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  padding:7px 10px;
  border-radius:999px;
  background:var(--accent);
  color:#111827;
  font-weight:900;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  box-shadow:0 18px 40px rgba(245,158,11,.22);
  margin-bottom:10px;
}

/* Optional: subtly emphasize Standard's price */
.featuredPlan .price{
  color: var(--ink);
}

/* =========================
   Portfolio (favicon cover + hover preview)
========================= */
.portfolioCard{overflow:hidden}
.portfolioLink{
  display:block;
  color:inherit;
  text-decoration:none;
}
.portfolioMedia{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
}

/* cover favicon */
.portfolioFavicon{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding:26px;
  background: radial-gradient(circle at top left, #fff7ed 0, #ffffff 58%);
}

/* hover preview (mini desktop) */
.portfolioPreview{
  position:absolute;
  left:50%;
  bottom:12px;
  width:min(86%, 420px);
  transform:translateX(-50%) translateY(12px);
  border-radius:14px;
  border:1px solid rgba(229,231,235,.9);
  box-shadow:0 22px 70px rgba(15,23,42,.16);
  opacity:0;
  pointer-events:none; /* FIX: never block the link click */
  transition:opacity .18s ease, transform .18s ease;
  background:#fff;
}

/* show preview on hover */
.portfolioLink:hover .portfolioPreview{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* Slight lift on hover */
.portfolioLink:hover .portfolioMedia{
  box-shadow:0 18px 55px rgba(15,23,42,.12);
}

/* FIX: make sure the whole card remains clickable even with internal elements */
.portfolioLink *{
  pointer-events:none;
}
.portfolioLink{
  pointer-events:auto;
}

/* =========================
   Images / Map / Forms / Footer
========================= */
.imgCard{border-radius:var(--radius);overflow:hidden;border:1px solid rgba(229,231,235,.9)}
.mapCard{border-radius:var(--radius);overflow:hidden;border:1px solid rgba(229,231,235,.9);box-shadow:var(--shadow);margin-top:12px}
.mapFrame{border:0;width:100%;height:260px;display:block}
.mapCap{padding:12px 14px;background:#f9fafb;border-top:1px solid rgba(229,231,235,.9);display:flex;align-items:center;justify-content:space-between;gap:10px}
.mapCap strong{font-size:.92rem}
.mapCap span{font-size:.74rem;padding:5px 10px;border-radius:var(--pill);background:#ecfdf5;border:1px solid #bbf7d0;color:#047857;font-weight:800}

.form{margin-top:12px;display:flex;flex-direction:column;gap:10px}
.form input,.form select,.form textarea{
  padding:12px;border-radius:12px;border:1px solid rgba(209,213,219,.9);
  font-family:inherit;
}
.form textarea{resize:vertical}

footer{border-top:1px solid rgba(229,231,235,.9);padding:22px 0 36px;color:var(--muted);font-size:.85rem}
.foot{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.footLinks{display:flex;gap:12px;flex-wrap:wrap}
.footBtn{
  background:transparent;border:none;cursor:pointer;
  color:var(--muted);font-weight:700;font-size:.85rem;
}
.footBtn:hover{color:var(--ink)}

/* Support Button */
.supportBtn{
  position:fixed;right:18px;bottom:18px;z-index:60;
  background:var(--accent);color:#111827;
  padding:12px 16px;border-radius:var(--pill);
  font-weight:800;border:0;cursor:pointer;
  box-shadow:0 18px 50px rgba(245,158,11,.35);
  transition:transform .16s ease, box-shadow .16s ease;
}
.supportBtn:hover{transform:translateY(-1px);box-shadow:0 26px 70px rgba(245,158,11,.45)}

/* =========================
   Modals (Email)
========================= */
.modalBack{
  position:fixed;inset:0;z-index:100;
  background:rgba(15,23,42,.55);
  display:none;align-items:center;justify-content:center;
  padding:18px;
}
.modal{
  max-width:560px;width:100%;
  background:#fff;border-radius:20px;
  border:1px solid rgba(229,231,235,.9);
  box-shadow:0 40px 120px rgba(15,23,42,.35);
  overflow:hidden;
}
.modalHead{
  padding:16px 18px;
  background:var(--soft);
  border-bottom:1px solid rgba(229,231,235,.9);
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.modalSubject{font-weight:700}
.xBtn{
  width:38px;height:38px;border-radius:999px;
  border:1px solid rgba(209,213,219,.9);
  background:#fff;cursor:pointer;font-weight:900;
  display:flex;align-items:center;justify-content:center;
}
.modalBody{padding:18px}
.modalActions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.msgBox{
  margin-top:12px;
  border:1px solid rgba(229,231,235,.9);
  border-radius:14px;
  padding:12px;
  background:#fff;
  font-size:.9rem;
  color:#111827;
  white-space:pre-wrap;
}
.toast{
  margin-top:10px;
  font-size:.85rem;
  color:#047857;
  font-weight:700;
  display:none;
}

.softBand{
  background:var(--soft);
  border-top:1px solid rgba(229,231,235,.9);
  border-bottom:1px solid rgba(229,231,235,.9);
}
.softTop{
  background:var(--soft);
  border-top:1px solid rgba(229,231,235,.9);
}

.miniCard{
  box-shadow:none;
  margin-top:12px;
  border:1px solid rgba(229,231,235,.9);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
}

/* =========================
   Responsive
========================= */
@media (max-width: 920px){
  .heroGrid,.split{grid-template-columns:1fr}
  .steps,.faqGrid{grid-template-columns:1fr}
  .plansGrid{grid-template-columns:1fr}
}

@media (max-width: 820px){
  .grid3{grid-template-columns:1fr}
}

@media (max-width: 720px){
  nav{
    position:absolute;left:0;right:0;top:100%;
    background:#fff;border-bottom:1px solid rgba(229,231,235,.9);
    padding:14px 18px;
    display:flex;flex-direction:column;align-items:flex-start;gap:12px;
    opacity:0;pointer-events:none;transform:translateY(-6px);
    transition:opacity .16s ease, transform .16s ease;
  }
  nav.open{opacity:1;pointer-events:auto;transform:translateY(0)}
  .menuBtn{display:inline-flex}

  /* Portfolio hover becomes tap-friendly on mobile */
  .portfolioPreview{
    position:static;
    width:100%;
    transform:none;
    opacity:1;
    margin-top:12px;
    pointer-events:none; /* still never blocks */
  }

  /* keep the link tap working on mobile */
  .portfolioLink *{pointer-events:none}
  .portfolioLink{pointer-events:auto}
}
/* ==========================================================
   LOGIN PAGE (Centered card + subtle gradient + soft noise)
   Paste at the very bottom of styles.css
   ========================================================== */

.page-login{
  min-height:100vh;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(245,158,11,.18) 0%, rgba(245,158,11,0) 55%),
    radial-gradient(1000px 520px at 90% 20%, rgba(59,130,246,.14) 0%, rgba(59,130,246,0) 52%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f8fafc 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: clamp(26px, 6vh, 70px) 18px;
  position:relative;
  overflow-x:hidden;
}

/* Soft noise overlay */
.page-login::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.10;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.loginShell{
  width:100%;
  max-width: 460px;
  position:relative;
  z-index:1;
}

.loginCard{
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(15,23,42,.14);
  border: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.loginBrand{
  display:flex;
  justify-content:center;
  margin-top: 6px;
  margin-bottom: 10px;
}

.loginLogo{
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(15,23,42,.10));
}

.loginHead{
  text-align:center;
  margin-bottom: 8px;
}

.loginTitle{
  margin-top: 6px;
}

.loginSub{
  margin-top: 6px;
}

.loginForm{
  margin-top: 14px;
}

/* Inputs: cleaner + more premium */
.page-login .form input{
  border-radius: 14px;
  border: 1px solid rgba(209,213,219,.95);
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 20px rgba(15,23,42,.05);
  transition: box-shadow .16s ease, border-color .16s ease, transform .16s ease;
}

.page-login .form input:focus{
  outline:none;
  border-color: rgba(245,158,11,.85);
  box-shadow:
    0 10px 26px rgba(15,23,42,.08),
    0 0 0 4px rgba(245,158,11,.20);
  transform: translateY(-1px);
}

/* Password field with inline toggle */
.pwWrap{
  position:relative;
  display:flex;
  align-items:center;
}

.pwWrap input{
  width:100%;
  padding-right: 86px;
}

.pwToggle{
  position:absolute;
  right:10px;
  height:34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.55);
  background: rgba(255,255,255,.95);
  color: var(--ink);
  font-weight: 800;
  font-size: .82rem;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.pwToggle:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.45);
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
}

.loginRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 10px;
}

.remember{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  user-select:none;
  font-weight: 700;
  color: var(--muted);
  font-size: .88rem;
}

.remember input{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  box-shadow:none;
  transform:none;
}

.miniLink{
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  font-size: .88rem;
  opacity: .85;
}

.miniLink:hover{
  opacity:1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.loginBtnFull{
  width:100%;
  margin-top: 6px;
}

.loginNote{
  margin-top: 12px;
  text-align:center;
}

#loginError{
  margin-top: 10px;
  text-align:center;
  color:#b91c1c;
  font-weight: 800;
  min-height: 1.2em; /* prevents layout jump */
}

/* Accessibility helpers */
.srOnly{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Mobile polish */
@media (max-width: 520px){
  .loginCard{ padding: 18px; }
  .loginLogo{ width: 108px; }
  .loginRow{ flex-direction: column; align-items:flex-start; }
  .miniLink{ margin-left: 2px; }
}
/* ==========================================================
   DASHBOARD PROFILE + SUPPORT FORM (Google Sheet requests)
   Paste at the very bottom of styles.css
   ========================================================== */

.dashTop{margin-bottom:14px}
.dashSection{margin-top:18px}
.syncText{margin-top:6px}
.dashGrid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.dashSplit{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.statCard{position:relative}
.statHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.statValue{
  font-size:2rem;
  font-weight:800;
  margin-top:8px;
  color:var(--ink);
}
.statusPill{
  padding:6px 10px;
  border-radius:999px;
  font-size:.74rem;
  font-weight:800;
  border:1px solid rgba(148,163,184,.55);
  background:#fff;
  color:var(--ink);
}
.statusPill.good{
  border-color:#bbf7d0;
  background:#ecfdf5;
  color:#047857;
}
.statusPill.warn{
  border-color:rgba(245,158,11,.4);
  background:var(--accentSoft);
  color:#7c2d12;
}
.trendTag{
  padding:6px 10px;
  border-radius:999px;
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.02em;
  border:1px solid rgba(59,130,246,.3);
  background:#eff6ff;
  color:#1d4ed8;
}
.trendTag.up{border-color:rgba(16,185,129,.35);background:#ecfdf5;color:#047857}
.sparkline{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:6px;
  align-items:end;
  height:80px;
  margin-top:16px;
}
.sparkline span{
  display:block;
  background:linear-gradient(180deg, rgba(15,23,42,.2), rgba(245,158,11,.7));
  border-radius:999px;
}
.metricList{margin-top:10px;display:flex;flex-direction:column;gap:12px}
.metricRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
}
.metricLabel{font-size:.88rem;color:var(--muted);font-weight:700}
.metricValue{font-weight:900;color:var(--ink)}
.checkGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.checkItem{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
}
.checkDot{
  width:12px;
  height:12px;
  border-radius:999px;
  margin-top:6px;
  background:#e5e7eb;
}
.checkDot.good{background:#10b981}
.checkDot.warn{background:#f59e0b}

.profileRow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.avatar{
  width:64px;height:64px;
  border-radius:18px;
  border:1px solid rgba(229,231,235,.9);
  background: radial-gradient(circle at top left, #fff7ed 0, #ffffff 62%);
  box-shadow:0 14px 34px rgba(15,23,42,.06);
  overflow:hidden;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
}

.profileInfo{min-width:0}
.hello{margin-top:6px}
.metaLine{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  font-size:.88rem;
  color:var(--muted);
}
.metaItem{display:inline-flex;gap:6px;align-items:baseline}
.metaItem a{color:var(--ink);font-weight:800;text-decoration:none}
.metaItem a:hover{text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:2px}
.metaSep{opacity:.55}

.chipRow{display:flex;flex-wrap:wrap;gap:10px}

.pillChip{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(148,163,184,.55);
  background:#fff;
  font-size:.78rem;
  font-weight:800;
  color:var(--ink);
}
.pillChip .pillDot{
  width:8px;height:8px;border-radius:99px;
  background: var(--accent);
}
.pillChip.ok{
  border-color:#bbf7d0;
  background:#ecfdf5;
  color:#047857;
}
.pillChip.ok .pillDot{background:#10b981}
.pillChip.soft{
  border-color:rgba(245,158,11,.28);
  background:var(--accentSoft);
  color:#7c2d12;
}

.profileActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  flex-shrink:0;
}

.supportHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.supportForm{margin-top:10px}
.fieldLabel{
  display:block;
  font-weight:800;
  font-size:.86rem;
  color:var(--ink);
  margin-bottom:6px;
}

.formGrid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}

.priorityRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.prio{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(209,213,219,.95);
  background:#fff;
  font-weight:900;
  font-size:.84rem;
  cursor:pointer;
  user-select:none;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.prio input{accent-color: var(--accent)}

.prio:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 40px rgba(15,23,42,.10);
}

.prioLow{border-color: rgba(148,163,184,.65)}
.prioNormal{border-color: rgba(59,130,246,.45)}
.prioUrgent{border-color: rgba(239,68,68,.45)}

.prioLow:has(input:checked){
  background:#f8fafc;
  border-color: rgba(148,163,184,.95);
}
.prioNormal:has(input:checked){
  background:#eff6ff;
  border-color: rgba(59,130,246,.65);
}
.prioUrgent:has(input:checked){
  background:#fef2f2;
  border-color: rgba(239,68,68,.65);
}

.impactNum{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:28px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  font-weight:900;
  margin-left:6px;
}

#impact{
  width:100%;
  margin-top:6px;
}

.formError{
  margin-top:10px;
  color:#b91c1c;
  font-weight:800;
  font-size:.9rem;
  min-height:1.2em;
}

@media (max-width: 920px){
  .profileRow{flex-direction:column}
  .profileActions{justify-content:flex-start}
  .dashGrid,.dashSplit,.checkGrid{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .formGrid2{grid-template-columns:1fr}
  .avatar{width:58px;height:58px;border-radius:16px}
}
