:root{
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #fbfbfe;
  --surface-3: #f1f4fa;

  --text: #0b1220;
  --muted: #4b5565;
  --subtle: #64748b;

  --border: rgba(15,23,42,.10);
  --border-2: rgba(15,23,42,.14);

  --shadow-sm: 0 1px 2px rgba(2,6,23,.06);
  --shadow: 0 10px 30px rgba(2,6,23,.10);
  --shadow-lg: 0 18px 60px rgba(2,6,23,.14);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;

  --accent: #4f46e5;
  --accent-2: #0ea5a7;
  --accent-ink: #eef2ff;

  --danger: #e11d48;
  --success: #16a34a;
  --warn: #f59e0b;

  --max: 1120px;
  --wrap-pad: 16px;

  --h1: clamp(26px, 3.2vw, 44px);
  --h2: clamp(18px, 1.8vw, 22px);
  --body: 16px;
  --small: 13px;

  --lh: 1.65;
  --lh-tight: 1.20;

  --focus: rgba(79,70,229,.35);

  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text", Inter, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

@media (prefers-color-scheme: dark){
  :root{
    --bg: #0b1020;
    --surface: #0f172a;
    --surface-2: #0c1427;
    --surface-3: #111c34;

    --text: #f8fafc;
    --muted: rgba(248,250,252,.78);
    --subtle: rgba(248,250,252,.60);

    --border: rgba(248,250,252,.10);
    --border-2: rgba(248,250,252,.16);

    --shadow-sm: 0 1px 2px rgba(0,0,0,.25);
    --shadow: 0 18px 50px rgba(0,0,0,.40);
    --shadow-lg: 0 28px 80px rgba(0,0,0,.55);

    --accent: #8b87ff;
    --accent-2: #2dd4bf;
    --accent-ink: rgba(139,135,255,.18);

    --focus: rgba(139,135,255,.42);
  }
}

*{ box-sizing: border-box; }

html,body{
  height:100%;
}

html{
  background: var(--bg);
}

body{
  margin:0;
  min-height: 100vh;
  font-family: var(--sans);
  font-size: var(--body);
  line-height: var(--lh);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(79,70,229,.12), transparent 55%),
    radial-gradient(900px 480px at 85% 0%, rgba(14,165,167,.10), transparent 52%),
    linear-gradient(180deg, var(--bg), var(--bg));
}

a{
  color: inherit;
  text-decoration: none;
}

img{
  max-width:100%;
  display:block;
}

::selection{
  background: rgba(79,70,229,.18);
}

.wrap{
  width: min(var(--max), calc(100% - var(--wrap-pad)*2));
  margin: 0 auto;
}

.page{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px 0 70px;
}

@media (min-width: 980px){
  .page{
    grid-template-columns: 1.65fr 1fr;
    gap: 22px;
    padding: 22px 0 90px;
  }
}

@media (max-width: 980px){
  .page{
    gap: 14px;
    padding: 14px 0 74px;
  }
}

@media (max-width: 520px){
  :root{ --wrap-pad: 14px; }
  .page{ padding: 12px 0 74px; }
}

.topbar,
.header,
.pageHeader,
header.siteHeader,
header.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border-bottom: 1px solid var(--border);
}

.topbar .wrap,
.header .wrap,
.pageHeader .wrap,
header.siteHeader .wrap,
header.topbar .wrap{
  padding-top: max(8px, env(safe-area-inset-top));
  padding-bottom: 10px;
}

.topbar__inner,
.header__inner,
.pageHeader__inner,
.siteHeader__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
}

@media (max-width: 720px){
  .topbar__inner,
  .header__inner,
  .pageHeader__inner,
  .siteHeader__inner{
    min-height: 54px;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }
}

.brand{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1;
  display:flex;
  align-items:center;
  gap:10px;
  white-space: nowrap;
}

.brand::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--accent), color-mix(in srgb, var(--accent) 55%, #000 0%));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 18%, transparent);
}

.nav,
.siteNav,
.headerNav{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

@media (max-width: 720px){
  .nav,
  .siteNav,
  .headerNav{
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 2px;
  }
  .nav::-webkit-scrollbar,
  .siteNav::-webkit-scrollbar,
  .headerNav::-webkit-scrollbar{
    height: 0;
  }
}

.nav__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}

.nav__link:hover{
  background: color-mix(in srgb, var(--surface-3) 75%, transparent);
  color: var(--text);
  transform: translateY(-1px);
}

.nav__link--active{
  background: color-mix(in srgb, var(--accent-ink) 70%, transparent);
  color: var(--text);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}

.headerActions,
.topbarActions,
.siteActions{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 720px){
  .headerActions,
  .topbarActions,
  .siteActions{
    width: 100%;
    justify-content: flex-start;
  }
}

.card{
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.card:hover{
  box-shadow: var(--shadow);
  border-color: var(--border-2);
  transform: translateY(-1px);
}

@media (max-width: 720px){
  .card{
    padding: 16px;
    border-radius: 20px;
  }
}

@media (max-width: 520px){
  .card{
    padding: 14px;
    border-radius: 18px;
  }
}

.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px){
  .grid{
    gap: 16px;
  }
}

.sidecard{
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  position: sticky;
  top: 86px;
}

@media (max-width: 980px){
  .sidecard{
    position: static;
    top: auto;
  }
}

.sidecard__title{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sideitem{
  padding: 12px 12px;
  border-radius: var(--radius);
  transition: background .18s ease, transform .18s ease;
  border: 1px solid transparent;
}

.sideitem:hover{
  background: color-mix(in srgb, var(--surface-3) 78%, transparent);
  border-color: var(--border);
  transform: translateY(-1px);
}

.sideitem a{
  font-weight: 850;
  letter-spacing: -0.01em;
}

.small{
  color: var(--subtle);
  font-size: var(--small);
  line-height: 1.45;
}

.h2{
  font-size: var(--h2);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 8px 0;
}

.h1{
  font-size: var(--h1);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: var(--lh-tight);
  margin: 0 0 10px 0;
}

.lead{
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 520px){
  .lead{ font-size: 16px; }
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: 14px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  box-shadow: 0 1px 1px rgba(2,6,23,.05);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: var(--border-2);
  box-shadow: 0 10px 26px rgba(2,6,23,.10);
}

.btn:active{
  transform: translateY(0px);
  box-shadow: 0 1px 1px rgba(2,6,23,.05);
}

.btn--primary{
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 88%, #000 0%), color-mix(in srgb, var(--accent) 55%, #000 0%));
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  color: #fff;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 28%, transparent);
}

.btn--primary:hover{
  box-shadow: 0 18px 44px color-mix(in srgb, var(--accent) 32%, transparent);
}

.btn--danger{
  background: linear-gradient(135deg, color-mix(in srgb, var(--danger) 88%, #000 0%), color-mix(in srgb, var(--danger) 55%, #000 0%));
  border-color: color-mix(in srgb, var(--danger) 38%, transparent);
  color: #fff;
}

@media (max-width: 520px){
  .btn{ height: 34px; padding: 0 12px; }
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-3) 85%, transparent);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 850;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
}

.pill > span{
  display:inline-block;
  transform: translateY(0.5px);
}

.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 1px 1px rgba(2,6,23,.05);
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
  white-space: nowrap;
}

.chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(2,6,23,.10);
  border-color: var(--border-2);
}

.chip:active{
  transform: translateY(0);
  box-shadow: 0 1px 1px rgba(2,6,23,.05);
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  padding: 12px 12px;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

textarea{
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus{
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 0 0 4px var(--focus);
  background: color-mix(in srgb, var(--surface) 98%, transparent);
}

.form{
  display:grid;
  gap: 12px;
}

.form__row{
  display:grid;
  gap: 8px;
}

.label{
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.helper{
  font-size: 13px;
  color: var(--subtle);
  line-height: 1.5;
}

.alert{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-3) 88%, transparent);
  color: var(--text);
}

.alert--error{
  border-color: color-mix(in srgb, var(--danger) 30%, transparent);
  background: color-mix(in srgb, var(--danger) 12%, var(--surface));
}

.alert--success{
  border-color: color-mix(in srgb, var(--success) 30%, transparent);
  background: color-mix(in srgb, var(--success) 12%, var(--surface));
}

.hr{
  height:1px;
  background: color-mix(in srgb, var(--border) 80%, transparent);
  margin: 14px 0;
}

.article-title{
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.article-kicker{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent) 74%, var(--muted));
}

.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-top: 10px;
  color: var(--subtle);
  font-size: 13px;
}

.article-media{
  margin-top: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}

.article-media img{
  width:100%;
  height:auto;
  display:block;
}

.article-body{
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.85;
  color: color-mix(in srgb, var(--text) 92%, var(--muted));
}

@media (max-width: 520px){
  .article-body{ font-size: 16px; line-height: 1.8; }
}

.article-body p{
  margin: 0 0 14px 0;
}

.article-body strong{
  color: var(--text);
}

.article-body a{
  color: color-mix(in srgb, var(--accent) 86%, var(--text));
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.kpi-row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 720px){
  .kpi-row{
    grid-template-columns: repeat(3, 1fr);
  }
}

.kpi{
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-sm);
}

.kpi__label{
  font-size: 12px;
  color: var(--subtle);
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.kpi__value{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
  margin-top: 4px;
}

.kpi__hint{
  font-size: 12px;
  color: var(--subtle);
  margin-top: 6px;
}

.actions-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content: space-between;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  margin-top: 14px;
  padding-top: 12px;
}

.actions-row__stats{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
  color: var(--subtle);
  font-size: 13px;
}

.actions-row__right{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  align-items:center;
}

.mini{
  font-size: 12px;
  color: var(--subtle);
}

.feedcard{
  padding: 18px;
}

@media (max-width: 720px){
  .feedcard{ padding: 16px; }
}

@media (max-width: 520px){
  .feedcard{ padding: 14px; }
}

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

.feedcard__title{
  font-size: clamp(18px, 2.6vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 950;
  margin: 10px 0 10px 0;
}

.feedcard__title a{
  color: var(--text);
}

.feedcard__title a:hover{
  color: color-mix(in srgb, var(--accent) 86%, var(--text));
}

.feedcard__snippet{
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--text) 84%, var(--muted));
  margin: 0 0 12px 0;
}

@media (max-width: 520px){
  .feedcard__snippet{ font-size: 15px; line-height: 1.7; }
}

.thumb{
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  margin: 12px 0;
}

.thumb img{
  width:100%;
  height:auto;
}

.badges{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  align-items:center;
}

.badge-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 14%, transparent);
}

.badge-dot--teal{
  background: var(--accent-2);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-2) 14%, transparent);
}

.badge-dot--danger{
  background: var(--danger);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--danger) 12%, transparent);
}

.divider{
  height: 1px;
  background: color-mix(in srgb, var(--border) 75%, transparent);
  margin: 14px 0 0 0;
}

.post{
  padding: 18px;
}

@media (max-width: 720px){
  .post{ padding: 16px; }
}

@media (max-width: 520px){
  .post{ padding: 14px; }
}

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

.post__author{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.post__time{
  color: var(--subtle);
  font-size: 13px;
}

.post__text{
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
}

.quote{
  margin-top: 12px;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-3) 82%, transparent);
}

.quote__title{
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.quote__meta{
  font-size: 13px;
  color: var(--subtle);
}

.quote__link{
  display:inline-flex;
  margin-top: 10px;
  align-items:center;
  gap: 8px;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent) 86%, var(--text));
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  background: color-mix(in srgb, var(--accent-ink) 62%, transparent);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.quote__link:hover{
  border-color: color-mix(in srgb, var(--accent) 32%, transparent);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.list{
  display:grid;
  gap: 12px;
}

.comment{
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.comment__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.comment__who{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.comment__time{
  font-size: 12px;
  color: var(--subtle);
}

.comment__text{
  margin-top: 8px;
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
  line-height: 1.7;
}

.footerbar{
  margin-top: 22px;
  padding: 18px 0 30px;
  color: var(--subtle);
  font-size: 13px;
}

.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 88%, #000 0%), color-mix(in srgb, var(--accent) 55%, #000 0%));
  color: #fff;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  padding: 12px 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 44px color-mix(in srgb, var(--accent) 32%, transparent);
  transition: transform .16s ease, box-shadow .16s ease;
}

.fab:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px color-mix(in srgb, var(--accent) 36%, transparent);
}

.fab:active{
  transform: translateY(0px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent) 30%, transparent);
}

@media (max-width: 520px){
  .fab{
    right: 14px;
    bottom: 14px;
    padding: 11px 13px;
  }
}

.fade-in{
  animation: fadeInUp .35s ease both;
}

@keyframes fadeInUp{
from{ opacity:0; transform: translateY(6px); }
to{ opacity:1; transform: translateY(0px); }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow-sm);
}

.table th,
.table td{
  text-align:left;
  padding: 12px 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  vertical-align: top;
  font-size: 14px;
}

.table th{
  font-weight: 950;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface-3) 76%, transparent);
}

.table tr:last-child td{
  border-bottom: none;
}

kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-3) 84%, transparent);
  color: var(--text);
}

.muted{ color: var(--subtle); }
.center{ text-align:center; }
.right{ text-align:right; }

.stack{
  display:grid;
  gap: 12px;
}

.hero{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(1200px 420px at 0% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%),
    radial-gradient(1000px 420px at 100% 0%, color-mix(in srgb, var(--accent-2) 12%, transparent), transparent 55%),
    color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

@media (max-width: 720px){
  .hero{ padding: 16px; }
}

@media (max-width: 520px){
  .hero{ padding: 14px; border-radius: 20px; }
}

.hero__title{
  font-size: clamp(20px, 3.0vw, 34px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 6px 0;
}

.hero__subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero__actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tagrow{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-3) 82%, transparent);
  font-weight: 900;
  font-size: 13px;
  color: var(--muted);
}

.tag b{
  color: var(--text);
  font-weight: 950;
}

.notice{
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-3) 82%, transparent);
}

.notice strong{
  font-weight: 950;
}

.linklist{
  display:grid;
  gap: 8px;
  margin-top: 10px;
}

.linklist a{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.linklist a:hover{
  transform: translateY(-1px);
  border-color: var(--border-2);
  box-shadow: var(--shadow);
}

.linklist a span{
  color: var(--subtle);
  font-size: 13px;
  white-space: nowrap;
}

@supports (color: color-mix(in srgb, #000 50%, #fff)){
  .topbar,
  .header,
  .pageHeader,
  header.siteHeader,
  header.topbar{
    background: color-mix(in srgb, var(--surface) 84%, transparent);
  }
}
