:root{
  --tgr-ink:#0b1225;
  --tgr-sub:#4b5563;
  --tgr-muted:#6b7280;

  --tgr-card: rgba(255,255,255,.70);
  --tgr-bd: rgba(255,255,255,.46);
  --tgr-shadow: 0 10px 34px rgba(15,23,42,.08);

  --tgr-ac:#2ca5e0;
  --tgr-ac2:#6ed0ff;

  --tgr-green:#16a34a;
}

.tgr-wrap{
  width:min(920px, 92vw);
  margin:0 auto;
  padding:clamp(14px, 2.8vw, 22px) 0 70px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--tgr-ink);
}
.tgr-wrap *{ box-sizing:border-box; }

/* HERO (short & premium) */
.tgr-hero{
  background:
    radial-gradient(860px 230px at -10% -30%, rgba(44,165,224,.20), transparent 60%),
    radial-gradient(760px 240px at 110% -40%, rgba(110,208,255,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.52));
  border:1px solid var(--tgr-bd);
  box-shadow: 0 18px 58px rgba(44,165,224,.12);
  border-radius:22px;
  padding:14px 14px 12px;
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  position:relative;
  overflow:hidden;
  margin-bottom:12px;
}
.tgr-hero::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  padding:1px;
  background: linear-gradient(135deg, rgba(44,165,224,.45), rgba(110,208,255,.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:.85;
  pointer-events:none;
}

.tgr-hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.tgr-mark{
  width:38px; height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(44,165,224,.18), rgba(110,208,255,.16));
  border:1px solid rgba(44,165,224,.25);
  box-shadow: 0 12px 30px rgba(44,165,224,.16);
  color:#0b2a3b;
  font-size:18px;
  flex:0 0 auto;
}

.tgr-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.tgr-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  color:#0b1225;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(148,163,184,.35);
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
  white-space:nowrap;
}

.tgr-title{
  font-size: clamp(18px, 2.4vw, 24px);
  line-height:1.16;
  margin:4px 0 6px;
  font-weight:900;
  letter-spacing:-.02em;
}
.tgr-desc{
  margin:0;
  color:var(--tgr-sub);
  font-size:13.3px;
  line-height:1.52;
}

.tgr-jump{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.tgr-jump-link{
  text-decoration:none;
  color:#0b1225;
  font-size:12.5px;
  padding:7px 10px;
  border-radius:12px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.34);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tgr-jump-link:hover{
  transform: translateY(-1px);
  border-color: rgba(44,165,224,.45);
  box-shadow: 0 14px 30px rgba(44,165,224,.12);
}

/* Card base */
.tgr-card{
  background: var(--tgr-card);
  border:1px solid var(--tgr-bd);
  border-radius:18px;
  box-shadow: var(--tgr-shadow);
  padding:14px 14px 16px;
  margin:12px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.tgr-h2{
  margin:0 0 10px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:900;
  letter-spacing:-.01em;
  color:#0f172a;
}
.tgr-h2-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--tgr-ac), var(--tgr-ac2));
  box-shadow: 0 8px 18px rgba(44,165,224,.25);
  flex:0 0 auto;
}
.tgr-h3{
  margin:0 0 6px;
  font-size:13.5px;
  font-weight:900;
  color:#0f172a;
}
.tgr-p{
  margin:0 0 10px;
  color:var(--tgr-sub);
  font-size:13.4px;
  line-height:1.55;
}

/* Note / callout */
.tgr-note{
  background: rgba(44,165,224,.08);
  border:1px solid rgba(44,165,224,.22);
  border-left:4px solid rgba(44,165,224,.55);
  border-radius:14px;
  padding:10px 12px;
  font-size:13px;
  color:#0b1225;
  margin:10px 0;
}
.tgr-callout{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  background: rgba(110,208,255,.10);
  border:1px solid rgba(110,208,255,.22);
  border-radius:16px;
  padding:12px;
  color:#0b1225;
  font-size:13px;
  line-height:1.5;
}
.tgr-callout-ic{
  width:34px; height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(148,163,184,.30);
  color:#0b2a3b;
  flex:0 0 auto;
}

/* visible links */
.tgr-link{
  color: var(--tgr-ac);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.tgr-link:hover{ filter: brightness(.95); }

/* Lists (no bullets) */
.tgr-list{
  list-style:none !important;
  padding:0 !important;
  margin:0 !important;
  display:grid;
  gap:8px;
}
.tgr-list li{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.30);
  border-radius:16px;
  padding:10px 12px;
  color:var(--tgr-sub);
  font-size:13.2px;
  line-height:1.5;
}

/* Steps */
.tgr-steps{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.tgr-step{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 10px;
  border-radius:16px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.30);
}
.tgr-step-no{
  width:26px; height:26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--tgr-ac), var(--tgr-ac2));
  color:#fff;
  font-size:12px;
  font-weight:900;
  box-shadow: 0 12px 26px rgba(44,165,224,.20);
  flex:0 0 auto;
}
.tgr-step-body p{ margin:0; }

/* Panels (compact) */
.tgr-panels{
  margin-top:10px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.tgr-panel{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.30);
  border-radius:16px;
  padding:12px;
}
@media (max-width:900px){
  .tgr-panels{ grid-template-columns:1fr; }
}

/* Mini box */
.tgr-mini{
  margin-top:10px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.30);
  border-radius:14px;
  padding:10px 12px;
  color:var(--tgr-sub);
  font-size:13px;
  line-height:1.5;
}
.tgr-mini code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size:12px;
  background: rgba(11,17,32,.96);
  color:#e5edff;
  padding:3px 8px;
  border-radius:999px;
  white-space:nowrap;
}

/* Command mini cards */
.tgr-cmds{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:10px;
}
@media (max-width:900px){
  .tgr-cmds{ grid-template-columns:1fr; }
}

.tgr-cmd{
  background: rgba(255,255,255,.80);
  border:1px solid rgba(148,163,184,.30);
  border-radius:18px;
  padding:12px;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  position:relative;
  overflow:hidden;
}
.tgr-cmd::after{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width:170px;
  height:170px;
  background: radial-gradient(circle, rgba(44,165,224,.16), transparent 62%);
  filter: blur(18px);
  pointer-events:none;
}

.tgr-cmd-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}

.tgr-tag{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:12px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.28);
  background: rgba(255,255,255,.74);
  color:#0b1225;
}

.tgr-code{
  background: rgba(11,17,32,.96);
  border-radius:16px;
  padding:12px;
  border:1px solid rgba(148,163,184,.18);
  position:relative;
  z-index:1;
}
.tgr-code code{
  display:block;
  color:#e5edff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size:13px;
  white-space:pre-wrap;
  line-height:1.5;
}

.tgr-hint{
  margin:10px 0 0;
  font-size:13px;
  color:var(--tgr-sub);
  line-height:1.5;
  position:relative;
  z-index:1;
}

/* Copy button */
.tgr-copy{
  border:none;
  cursor:pointer;
  font-size:12.5px;
  font-weight:900;
  padding:8px 10px;
  border-radius:12px;
  color:#0b1225;
  background: rgba(15,23,42,.06);
  border:1px solid rgba(148,163,184,.28);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position:relative;
  z-index:1;
}
.tgr-copy:hover{
  transform: translateY(-1px);
  background: rgba(44,165,224,.10);
  box-shadow: 0 14px 30px rgba(44,165,224,.14);
}
.tgr-copy.is-copied{
  background: rgba(22,163,74,.12);
  border-color: rgba(22,163,74,.30);
}

/* Copy blocks */
.tgr-copygrid{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.tgr-copycard{
  background: rgba(255,255,255,.80);
  border:1px solid rgba(148,163,184,.30);
  border-radius:18px;
  padding:12px;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  position:relative;
  overflow:hidden;
}
.tgr-copycard::after{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width:180px;
  height:180px;
  background: radial-gradient(circle, rgba(44,165,224,.18), transparent 62%);
  filter: blur(18px);
  pointer-events:none;
}
.tgr-copyhead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}
.tgr-copybox{
  background: rgba(11,17,32,.96);
  border-radius:16px;
  padding:12px;
  border:1px solid rgba(148,163,184,.18);
  position:relative;
  z-index:1;
}
.tgr-copybox code{
  display:block;
  color:#e5edff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size:13px;
  white-space:pre-wrap;
  line-height:1.5;
}

/* FAQ style */
.tgr-faq{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.tgr-faq li{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.30);
  border-radius:16px;
  padding:10px 12px;
  color:var(--tgr-sub);
  font-size:13.2px;
  line-height:1.5;
}

/* Services */
.tgr-svc-grid{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
@media (max-width:700px){
  .tgr-svc-grid{ grid-template-columns:1fr; gap:8px; }
}
.tgr-svc-card{
  text-decoration:none;
  color:inherit;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border-radius:18px;
  background: rgba(255,255,255,.84);
  border:1px solid rgba(148,163,184,.30);
  box-shadow: 0 14px 32px rgba(15,23,42,.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.tgr-svc-card:hover{
  transform: translateY(-1px);
  border-color: rgba(44,165,224,.45);
  box-shadow: 0 18px 44px rgba(44,165,224,.14);
}
.tgr-svc-left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.tgr-svc-ic{
  width:36px; height:36px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(44,165,224,.14), rgba(110,208,255,.12));
  border:1px solid rgba(44,165,224,.22);
  color:#0b2a3b;
  flex:0 0 auto;
}
.tgr-svc-title{
  display:block;
  font-size:13.5px;
  font-weight:900;
  color:#0f172a;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.tgr-svc-sub{
  display:block;
  margin-top:2px;
  font-size:12px;
  color:var(--tgr-muted);
  font-weight:800;
}
.tgr-svc-right{ color:#94a3b8; }

.tgr-open-cat{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(44,165,224,.16), rgba(110,208,255,.14));
  border:1px solid rgba(44,165,224,.26);
  text-decoration:none;
  color:#0b1225;
  font-weight:900;
  font-size:13px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.tgr-open-cat:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(44,165,224,.14);
}

/* Mobile tighten */
@media (max-width:600px){
  .tgr-hero{ padding:12px 12px 10px; border-radius:18px; }
  .tgr-mark{ width:36px; height:36px; border-radius:12px; }
  .tgr-badge{ font-size:11.2px; padding:6px 9px; }
  .tgr-desc{ font-size:13px; }
  .tgr-card{ padding:12px 12px 14px; border-radius:16px; }
}