/* =========================================================================
   AITECH PR — LP stylesheet
   business.r25.jp のセクションリズム（広い縦余白・階層的な見出し・カード群）を
   トレースしつつ、アクセントは AITECH オレンジ #f69c00。角丸は控えめ、絵文字なし。
   ========================================================================= */

:root {
  --orange: #f69c00;
  --orange-dark: #e08600;
  --orange-tint: #fff6e6;
  --ink: #1c2024;
  --ink-2: #4a4f57;
  --ink-3: #7b828c;
  --line: #e7e9ec;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-dark: #1b1f24;
  --radius: 6px;
  --radius-lg: 10px;
  --maxw: 1120px;
  --shadow: 0 2px 14px rgba(28, 32, 36, 0.07);
  --shadow-lg: 0 10px 40px rgba(28, 32, 36, 0.12);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
          "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.svgico { display: inline-block; vertical-align: middle; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(246,156,0,.32); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-dark); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: auto; }
.brand .brand-name { font-weight: 800; font-size: 19px; letter-spacing: .01em; }
.brand .brand-name .accent { color: var(--orange); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a.nav-link {
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: color .15s ease;
}
.nav a.nav-link:hover { color: var(--orange-dark); }
.nav .btn { padding: 11px 20px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; }

/* ---------- Section scaffolding ---------- */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .18em;
  color: var(--orange-dark); text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: 33px; font-weight: 800; line-height: 1.35; margin: 0 0 16px;
  letter-spacing: .01em;
}
.section-lead { font-size: 16px; color: var(--ink-2); margin: 0; }

/* ---------- Hero ---------- */
.hero {
  padding: 92px 0 84px;
  background:
    radial-gradient(1000px 460px at 82% -6%, var(--orange-tint), transparent 62%),
    linear-gradient(180deg, #fffdf8, #ffffff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--orange-tint); color: var(--orange-dark);
  font-size: 12.5px; font-weight: 700; padding: 7px 14px;
  border-radius: 100px; margin-bottom: 22px;
}
.hero h1 {
  font-size: 42px; line-height: 1.32; font-weight: 800; margin: 0 0 22px;
  letter-spacing: .01em;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: 17px; color: var(--ink-2); margin: 0 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--ink-3); }
.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}

/* ---------- Logo row (social proof) ---------- */
.logos-band { padding: 44px 0; border-bottom: 1px solid var(--line); }
.logos-label { text-align: center; font-size: 13px; color: var(--ink-3); font-weight: 600; margin: 0 0 24px; }
.logo-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 40px 56px;
}
.logo-row img { height: 30px; width: auto; opacity: .62; filter: grayscale(100%); }

/* ---------- Intro (AITECH PRとは) ---------- */
.intro-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; text-align: center; box-shadow: var(--shadow);
}
.stat-card .stat-ico { color: var(--orange); margin-bottom: 12px; }
.stat-card .stat-num { font-size: 30px; font-weight: 800; letter-spacing: .01em; }
.stat-card .stat-label { font-size: 14px; color: var(--ink-2); margin-top: 4px; }

/* ---------- Product blocks ---------- */
.product { padding: 72px 0; border-bottom: 1px solid var(--line); }
.product:last-of-type { border-bottom: none; }
.product-head { margin-bottom: 40px; }
.product-label {
  font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--orange-dark);
}
.product-name {
  font-size: 30px; font-weight: 800; margin: 10px 0 12px;
  display: flex; align-items: center; gap: 12px;
}
.product-name .p-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--orange-tint); color: var(--orange-dark);
}
.product-lead { font-size: 16px; color: var(--ink-2); max-width: 720px; margin: 0; }
.product-body { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.product-body.reverse .product-features { order: 2; }
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 26px; }
.feature-card {
  display: flex; gap: 16px; padding: 22px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.feature-card .f-ico {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--orange); border: 1px solid var(--line);
}
.feature-card h4 { margin: 0 0 6px; font-size: 16.5px; font-weight: 700; }
.feature-card p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.7; }
.product-see { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--orange-dark); font-size: 15px; }
.product-see:hover { gap: 11px; }
.product-shots { display: flex; flex-direction: column; gap: 18px; }
.product-shots img {
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow); width: 100%;
}

/* ---------- Booth feature (full width) ---------- */
.booth { background: var(--bg-dark); color: #fff; }
.booth .section-title { color: #fff; }
.booth .section-lead { color: #c8ccd2; }
.booth .eyebrow { color: var(--orange); }
.booth-visual {
  margin: 44px auto 0; max-width: 940px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
}

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.price-card .plan-name { font-size: 20px; font-weight: 800; }
.price-card .plan-lead { font-size: 14px; color: var(--ink-2); margin: 8px 0 20px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.price-amount .yen { font-size: 20px; font-weight: 800; }
.price-amount .num { font-size: 44px; font-weight: 800; color: var(--orange); letter-spacing: .01em; }
.price-amount .unit { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.spec-table { list-style: none; margin: 22px 0 24px; padding: 0; }
.spec-table li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.spec-table li .k { color: var(--ink-3); }
.spec-table li .v { font-weight: 700; }
.flow-title { font-size: 13px; font-weight: 800; letter-spacing: .05em; color: var(--ink-3); margin: 6px 0 16px; }
.flow { list-style: none; margin: 0 0 26px; padding: 0; counter-reset: step; }
.flow li { position: relative; padding: 0 0 20px 44px; }
.flow li:last-child { padding-bottom: 0; }
.flow li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange-tint); color: var(--orange-dark);
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.flow li:not(:last-child)::after {
  content: ""; position: absolute; left: 14.5px; top: 32px; bottom: 4px;
  width: 1.5px; background: var(--line);
}
.flow li h5 { margin: 4px 0 3px; font-size: 15px; font-weight: 700; }
.flow li p { margin: 0; font-size: 13.5px; color: var(--ink-2); }
.price-card .btn { margin-top: auto; }

/* ---------- Testimonials ---------- */
.testi-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.testi-card .q-ico { color: var(--orange); opacity: .5; margin-bottom: 12px; }
.testi-card .q-text { font-size: 14.5px; color: var(--ink); line-height: 1.85; margin: 0 0 20px; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.testi-who .t-name { font-weight: 700; font-size: 14.5px; }
.testi-who .t-company { font-size: 12.5px; color: var(--ink-3); }

/* ---------- Registered count ---------- */
.registered { text-align: center; }
.registered .big-count { font-size: 20px; color: var(--ink-2); font-weight: 600; margin-bottom: 6px; }
.registered .big-count strong { font-size: 46px; color: var(--orange); font-weight: 800; vertical-align: -4px; margin: 0 6px; }

/* ---------- Final CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; text-align: center;
}
.cta-band h2 { font-size: 32px; font-weight: 800; margin: 0 0 14px; }
.cta-band p { font-size: 16px; opacity: .95; margin: 0 0 30px; }
.cta-band .btn-primary { background: #fff; color: var(--orange-dark); box-shadow: 0 8px 26px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { background: #fff; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #b9bfc7; padding: 62px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-name { color: #fff; font-weight: 800; font-size: 19px; }
.footer-brand .brand-name .accent { color: var(--orange); }
.footer-brand p { font-size: 13.5px; margin: 14px 0 0; max-width: 280px; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; color: #b9bfc7;
  transition: border-color .15s ease, color .15s ease;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h5 { color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 13.5px; color: #b9bfc7; transition: color .15s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: #9aa1a9; }
.footer-legal a:hover { color: var(--orange); }
.footer-copy { font-size: 12.5px; color: #7b828c; }

/* ---------- Coming soon ---------- */
.coming-wrap { min-height: 62vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.coming-card { max-width: 520px; }
.coming-badge { color: var(--orange); margin-bottom: 20px; }
.coming-card h1 { font-size: 30px; font-weight: 800; margin: 0 0 14px; }
.coming-card p { font-size: 16px; color: var(--ink-2); margin: 0 0 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .product-body, .product-body.reverse .product-features { grid-template-columns: 1fr; order: 0; }
  .product-body { grid-template-columns: 1fr; }
  .price-grid, .testi-track, .intro-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 31px; }
  .section-title { font-size: 26px; }
  .nav .nav-link, .nav .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .testi-track { grid-template-columns: 1fr; }
}

/* =========================================================================
   App screens: auth / dashboard / release form / admin
   ========================================================================= */

/* ---------- Flash ---------- */
.flash-wrap { padding: 16px 0 0; }
.flash {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; margin-bottom: 10px;
  border: 1px solid;
}
.flash-success { background: #edf7ee; color: #1f7a35; border-color: #bfe3c6; }
.flash-warning { background: #fff6e6; color: #b06a00; border-color: #f4d79a; }
.flash .svgico { flex: 0 0 auto; }

/* ---------- App page shell ---------- */
.app-page { padding: 48px 0 80px; background: var(--bg-soft); min-height: 70vh; }
.app-narrow { max-width: 640px; margin: 0 auto; }

/* ---------- Auth card ---------- */
.auth-wrap { min-height: 78vh; display: flex; align-items: center; justify-content: center; padding: 56px 24px; background: var(--bg-soft); }
.auth-card {
  width: 100%; max-width: 460px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 40px 38px;
}
.auth-card.wide { max-width: 560px; }
.auth-head { text-align: center; margin-bottom: 28px; }
.auth-head h1 { font-size: 25px; font-weight: 800; margin: 0 0 8px; }
.auth-head p { font-size: 14px; color: var(--ink-2); margin: 0; }
.auth-foot { text-align: center; margin-top: 22px; font-size: 14px; color: var(--ink-2); }
.auth-foot a { color: var(--orange-dark); font-weight: 700; }

/* ---------- Forms ---------- */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.form-row label .req { color: var(--orange-dark); font-size: 12px; margin-left: 6px; }
.form-row label .opt { color: var(--ink-3); font-size: 12px; font-weight: 600; margin-left: 6px; }
.input, .select, .textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,156,0,.15);
}
.textarea { resize: vertical; min-height: 200px; line-height: 1.8; }
.field-hint { font-size: 12.5px; color: var(--ink-3); margin: 6px 0 0; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.form-alert {
  display: flex; align-items: center; gap: 9px;
  background: #fdeceb; border: 1px solid #f3c3bf; color: #b3271b;
  padding: 12px 15px; border-radius: var(--radius); font-size: 14px;
  font-weight: 600; margin-bottom: 22px;
}
.btn-danger { background: #fff; color: #b3271b; border-color: #f0c4c0; }
.btn-danger:hover { background: #fdeceb; }

/* ---------- Dashboard ---------- */
.dash-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 30px;
}
.dash-header .eyebrow { margin-bottom: 6px; }
.dash-header h1 { font-size: 27px; font-weight: 800; margin: 0; }
.dash-header .sub { color: var(--ink-2); font-size: 14px; margin: 6px 0 0; }
.summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 34px; }
.summary-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.summary-card .s-num { font-size: 30px; font-weight: 800; line-height: 1; }
.summary-card .s-label { font-size: 13px; color: var(--ink-2); margin-top: 8px; display: flex; align-items: center; gap: 6px; }

.list-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.list-head h2 { font-size: 18px; font-weight: 800; margin: 0; }

.rel-table { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.rel-row {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 18px;
  align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.rel-row:last-child { border-bottom: none; }
.rel-main .rel-title { font-weight: 700; font-size: 15.5px; }
.rel-main .rel-meta { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.rel-cat { font-size: 13px; color: var(--ink-2); }
.rel-actions { display: flex; gap: 8px; }
.rel-actions .btn { padding: 9px 16px; font-size: 13px; }

.empty-state { background: #fff; border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 48px 24px; text-align: center; color: var(--ink-2); }
.empty-state .es-ico { color: var(--orange); opacity: .5; margin-bottom: 12px; }
.empty-state p { margin: 0 0 20px; font-size: 15px; }

/* ---------- Status badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 100px;
  border: 1px solid transparent; white-space: nowrap;
}
.badge .svgico { width: 8px; height: 8px; }
.badge-draft { background: #f1f2f4; color: #5c636d; border-color: #e2e4e8; }
.badge-pending { background: #fff6e6; color: #b06a00; border-color: #f4d79a; }
.badge-published { background: #edf7ee; color: #1f7a35; border-color: #bfe3c6; }
.badge-rejected { background: #fdeceb; color: #b3271b; border-color: #f3c3bf; }

/* ---------- Admin ---------- */
.admin-bar { background: var(--bg-dark); color: #cfd4da; }
.admin-bar .header-inner { height: 58px; }
.admin-bar .brand-name { color: #fff; }
.admin-bar a { color: #cfd4da; font-size: 13px; font-weight: 600; }
.admin-bar a:hover { color: var(--orange); }
.admin-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 24px; box-shadow: var(--shadow); margin-bottom: 16px;
}
.admin-card .ac-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.admin-card .ac-title { font-weight: 700; font-size: 16px; }
.admin-card .ac-meta { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; }
.admin-card .ac-body { font-size: 14px; color: var(--ink-2); line-height: 1.8; max-height: 120px; overflow: hidden; white-space: pre-wrap; }
.admin-actions { display: flex; gap: 10px; margin-top: 16px; }

@media (max-width: 720px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .rel-row { grid-template-columns: 1fr; gap: 10px; }
  .rel-actions { flex-wrap: wrap; }
}

/* =========================================================================
   Content Hub: module grid, company-info, public mini-site, hub modules
   ========================================================================= */
.dash-header-actions, .list-head-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.app-wide { max-width: 1000px; }
.section-block { margin-top: 44px; }
.kind-tag {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--orange-dark);
  background: var(--orange-tint); border-radius: 4px; padding: 2px 7px; margin-right: 8px;
  vertical-align: middle;
}

/* ---------- Hub grid ---------- */
.hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 8px;
}
.hub-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow); color: inherit;
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease;
}
.hub-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.hub-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hub-ico {
  width: 46px; height: 46px; border-radius: 10px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange-tint); color: var(--orange-dark);
}
.hub-count { font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1; }
.hub-count span { font-size: 12px; font-weight: 600; color: var(--ink-3); margin-left: 2px; }
.hub-name { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.hub-dest {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--orange-dark); margin-bottom: 10px;
}
.hub-dest .svgico { flex: 0 0 auto; }
.hub-blurb { font-size: 13px; color: var(--ink-2); line-height: 1.7; margin: 0 0 16px; flex: 1; }
.hub-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.kpi-tag { font-size: 11.5px; font-weight: 700; color: var(--ink-3); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px; }
.hub-action { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 700; color: var(--orange-dark); }
.hub-card:hover .hub-action { gap: 8px; }

/* ---------- Panels / splits ---------- */
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 26px; box-shadow: var(--shadow); margin-bottom: 20px;
}
.panel-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 800; margin: 0 0 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.split-2 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }
.split-2 > .panel { margin-bottom: 0; }
.stack { display: flex; flex-direction: column; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.split-main { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: start; }
.split-main .main-col > .panel:last-child, .split-main .side-col > .panel:last-child { margin-bottom: 0; }

/* ---------- Assets / inline add ---------- */
.asset-list { list-style: none; margin: 0 0 16px; padding: 0; }
.asset-list li {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.asset-list li:first-child { padding-top: 0; }
.asset-info { min-width: 0; }
.asset-title { font-size: 14.5px; font-weight: 700; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.asset-url {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 4px;
  font-size: 12.5px; color: var(--ink-3); word-break: break-all;
}
.asset-url:hover { color: var(--orange-dark); }
.icon-btn {
  flex: 0 0 auto; background: none; border: 1px solid var(--line); border-radius: 6px;
  color: var(--ink-3); width: 34px; height: 34px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .15s ease, border-color .15s ease;
}
.icon-btn:hover { color: #b3271b; border-color: #f0c4c0; }
.inline-add { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 10px; align-items: center; }
.inline-add .input { padding: 10px 12px; font-size: 14px; }
.muted-note { font-size: 13.5px; color: var(--ink-3); margin: 0 0 16px; }

/* ---------- Hub item list ---------- */
.hub-item-body { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; line-height: 1.7; }
.hub-item-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.mtag { font-size: 11.5px; color: var(--ink-2); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 4px; padding: 3px 8px; }

/* ---------- Public company mini-site ---------- */
.company-hero {
  display: flex; align-items: center; gap: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 30px; box-shadow: var(--shadow); margin-bottom: 24px;
}
.company-logo {
  width: 88px; height: 88px; border-radius: 12px; flex: 0 0 auto; overflow: hidden;
  border: 1px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.company-logo img { width: 100%; height: 100%; object-fit: contain; }
.company-logo.placeholder { background: var(--orange-tint); color: var(--orange-dark); border: none; }
.company-hero-body h1 { font-size: 27px; font-weight: 800; margin: 4px 0 8px; }
.company-hero-body .pill {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--ink-2);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: 4px 12px;
}
.company-web { display: inline-flex; align-items: center; gap: 6px; margin-left: 10px; font-size: 13px; color: var(--orange-dark); font-weight: 600; }
.prose { font-size: 15px; color: var(--ink); line-height: 1.9; margin: 0; white-space: pre-wrap; }
.link-list { list-style: none; margin: 0; padding: 0; }
.link-list li { border-bottom: 1px solid var(--line); }
.link-list li:last-child { border-bottom: none; }
.link-list a {
  display: flex; align-items: center; gap: 9px; padding: 12px 0;
  font-size: 14.5px; font-weight: 600; color: var(--ink); transition: color .15s ease;
}
.link-list a:hover { color: var(--orange-dark); }
.link-list .ll-date { margin-left: auto; font-size: 12px; color: var(--ink-3); font-weight: 500; }

@media (max-width: 900px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .split-2, .split-main { grid-template-columns: 1fr; }
  .split-2 > .panel { margin-bottom: 20px; }
}
@media (max-width: 640px) {
  .hub-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .inline-add { grid-template-columns: 1fr; }
  .company-hero { flex-direction: column; text-align: center; }
}
