:root{
  --bg:#0b1120;
  --bg-soft:#101729;
  --panel:#131c31;
  --panel-2:#17223c;
  --border:rgba(255,255,255,.10);
  --text:#eef3ff;
  --muted:#b3c1df;
  --soft:#d9e3ff;
  --accent:#7aa2ff;
  --accent-2:#8ee3cf;
  --warn:#f6d38b;
  --ok:#89d8a2;
  --shadow:0 20px 50px rgba(0,0,0,.28);
  --radius:18px;
  --radius-sm:12px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 100% -10%, rgba(122,162,255,.18), transparent 60%),
    radial-gradient(900px 500px at -10% 0%, rgba(142,227,207,.12), transparent 55%),
    linear-gradient(180deg, #0b1120 0%, #0a1020 100%);
  font:16px/1.65 Inter, "Segoe UI", Roboto, Arial, sans-serif;
}
a{color:#b9d2ff;text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%}
.site-top{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background:rgba(11,17,32,.86);
  border-bottom:1px solid var(--border);
}
.site-top__inner,
.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}
.site-top__inner{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  color:var(--text);
  text-decoration:none;
  min-width:0;
}
.brand__top{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
}
.brand__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:34px;
  padding:0 10px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(122,162,255,.28), rgba(142,227,207,.18));
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
  letter-spacing:.04em;
}
.brand__meta{
  color:var(--muted);
  font-size:13px;
}
.top-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.top-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  font-weight:600;
}
.top-btn:hover{
  text-decoration:none;
  border-color:rgba(122,162,255,.55);
  background:rgba(122,162,255,.10);
}
.container{
  padding:36px 0 56px;
}
.hero{
  display:grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .9fr);
  gap:18px;
  margin-bottom:24px;
}
.hero-card,
.panel{
  background:linear-gradient(180deg, rgba(23,34,60,.90), rgba(17,24,42,.92));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{padding:28px}
.eyebrow{
  margin:0 0 8px;
  color:var(--accent-2);
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero h1{
  margin:0 0 12px;
  font-size:clamp(28px, 5vw, 44px);
  line-height:1.08;
}
.hero p{
  margin:0 0 14px;
  color:var(--soft);
  max-width:62ch;
}
.hero-list{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.hero-list .item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--soft);
}
.hero-list .dot{
  width:9px; height:9px; border-radius:999px;
  margin-top:9px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  flex:0 0 9px;
}
.meta-grid{
  display:grid;
  gap:12px;
  padding:22px;
}
.meta-card{
  padding:16px 18px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:16px;
}
.meta-card h2,
.meta-card h3{
  margin:0 0 8px;
  font-size:16px;
}
.meta-card p{
  margin:0;
  color:var(--soft);
}
.doc-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin:18px 0 24px;
}
.doc-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:20px;
}
.doc-card h2{
  margin:0;
  font-size:20px;
}
.doc-card p{
  margin:0;
  color:var(--soft);
}
.doc-card .muted{
  color:var(--muted);
  font-size:14px;
}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:auto;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(122,162,255,.35);
  background:rgba(122,162,255,.10);
  color:var(--text);
  text-decoration:none;
  font-weight:600;
}
.btn.secondary{
  background:rgba(255,255,255,.04);
  border-color:var(--border);
}
.btn:hover{text-decoration:none;background:rgba(122,162,255,.16)}
.note-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin:24px 0;
}
.note{
  padding:18px 20px;
}
.note h2, .note h3{margin:0 0 10px;font-size:18px}
.note p, .note li{color:var(--soft)}
.note ul{margin:0; padding-left:18px}
.doc-shell{
  display:grid;
  gap:18px;
}
.doc-intro{
  padding:22px 24px;
}
.doc-intro h1{
  margin:0 0 10px;
  font-size:clamp(28px, 4.8vw, 40px);
  line-height:1.1;
}
.doc-intro p{
  margin:0;
  color:var(--soft);
}
.doc-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.doc-link{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  font-size:14px;
}
.doc-link:hover{text-decoration:none;background:rgba(122,162,255,.10)}
.doc-link.is-active{
  border-color:rgba(122,162,255,.55);
  background:rgba(122,162,255,.16);
}
.doc-article{
  padding:28px;
  overflow:hidden;
}
.doc-article > *:first-child{margin-top:0}
.doc-article h2{
  margin:28px 0 12px;
  font-size:25px;
  line-height:1.2;
}
.doc-article h3{
  margin:22px 0 10px;
  font-size:19px;
}
.doc-article p{
  margin:0 0 14px;
  color:var(--soft);
}
.doc-article ul,
.doc-article ol{
  margin:0 0 16px;
  padding-left:20px;
}
.doc-article li{
  margin:0 0 10px;
  color:var(--soft);
}
.doc-article strong{color:var(--text)}
.table-wrap{
  width:100%;
  overflow:auto;
  margin:16px 0 20px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.03);
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:520px;
}
th, td{
  padding:14px 16px;
  vertical-align:top;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:var(--soft);
}
th{
  text-align:left;
  color:var(--text);
  background:rgba(255,255,255,.04);
  font-size:14px;
}
tr:last-child td{border-bottom:none}
.callout{
  margin:14px 0 18px;
  padding:18px 20px;
  border-radius:16px;
  border:1px solid rgba(122,162,255,.28);
  background:linear-gradient(180deg, rgba(122,162,255,.12), rgba(122,162,255,.06));
  color:var(--text);
}
.callout p{margin:0;color:var(--text)}
.kv{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}
.kv-card{
  padding:20px;
}
.kv-card h2{
  margin:0 0 10px;
  font-size:18px;
}
.kv-list{
  display:grid;
  gap:10px;
}
.kv-row{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:12px;
  align-items:start;
}
.kv-row dt{
  color:var(--muted);
}
.kv-row dd{
  margin:0;
  color:var(--text);
}
.pricing-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin:18px 0 24px;
}
.price-card{
  padding:22px;
}
.price-card h2{
  margin:0 0 8px;
  font-size:22px;
}
.price{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin-bottom:12px;
}
.price strong{
  font-size:30px;
  line-height:1;
}
.price span{
  color:var(--muted);
  font-size:14px;
}
.tag{
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(142,227,207,.25);
  background:rgba(142,227,207,.10);
  color:var(--text);
  font-size:13px;
  font-weight:600;
}
.accent-note{
  border-color:rgba(246,211,139,.28);
  background:linear-gradient(180deg, rgba(246,211,139,.12), rgba(246,211,139,.06));
}
.site-footer{
  margin-top:40px;
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.02);
}
.site-footer__inner{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
  padding:20px 0 40px;
  display:grid;
  gap:14px;
}
.site-footer p{
  margin:0;
  color:var(--muted);
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.footer-links a{
  display:inline-flex;
  min-height:36px;
  align-items:center;
  padding:0 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.04);
}
.footer-links a:hover{text-decoration:none;background:rgba(122,162,255,.10)}
@media (max-width: 980px){
  .hero, .note-grid, .pricing-cards, .doc-grid, .kv{grid-template-columns:1fr}
  .site-top__inner{align-items:flex-start}
}
@media (max-width: 760px){
  .site-top__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .top-actions{justify-content:flex-start}
  .container{width:min(1120px, calc(100% - 20px)); padding:24px 0 42px}
  .hero-card, .doc-article, .doc-intro{padding:20px}
  .meta-grid{padding:18px}
  .kv-row{grid-template-columns:1fr}
}
@media print{
  .site-top, .site-footer, .card-actions, .doc-nav, .top-actions{display:none !important}
  body{background:#fff;color:#000}
  .hero-card,.panel,.doc-article,.doc-intro,.note,.price-card,.meta-card,.kv-card{
    box-shadow:none;border:1px solid #cfcfcf;background:#fff;color:#000
  }
  .doc-article p, .doc-article li, th, td, .note p, .note li, .meta-card p{color:#000}
}


/* Light legal refresh 2026-04-16 */
:root{
  --bg:#ffffff;
  --bg-soft:#f8fafc;
  --panel:#ffffff;
  --panel-2:#ffffff;
  --border:#e5e7eb;
  --text:#111827;
  --muted:#6b7280;
  --soft:#374151;
  --accent:#f97316;
  --accent-2:#fb923c;
  --warn:#b45309;
  --ok:#15803d;
  --shadow:0 1px 2px rgba(0,0,0,.04), 0 16px 36px rgba(15,23,42,.06);
}
body{
  color:var(--text);
  background:#ffffff;
}
a{color:#ea580c;}
a:hover{color:#c2410c;}
.site-top{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--border);
}
.brand,
.site-footer p,
.doc-card .muted,
.price span,
.kv-row dt,
.brand__meta{color:var(--muted);}
.brand__top span:last-child,
.doc-article strong,
.kv-row dd,
.callout,
.callout p,
th,
.btn,
.top-btn,
.tag{color:var(--text);}
.brand__badge{
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
}
.top-btn,
.btn,
.footer-links a{
  background:#ffffff;
  border:1px solid var(--border);
  box-shadow:none;
}
.top-btn:hover,
.btn:hover,
.footer-links a:hover{
  background:#fff7ed;
  border-color:#fed7aa;
  text-decoration:none;
}
.hero-card,
.panel,
.meta-card,
.table-wrap,
.footer-links a{
  background:#ffffff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.meta-card{
  background:#f8fafc;
}
.hero h1,
.doc-intro h1,
.doc-card h2,
.note h2,
.note h3,
.price-card h2,
.meta-card h2,
.meta-card h3,
.kv-card h2,
.doc-article h2,
.doc-article h3{color:var(--text);}
.hero p,
.doc-card p,
.note p,
.note li,
.doc-article p,
.doc-article li,
.meta-card p,
th,
td{color:var(--soft);}
.hero-list .item{color:var(--soft);}
.hero-list .dot{background:linear-gradient(135deg, #f97316, #fb923c);}
.eyebrow{color:#ea580c;}
.table-wrap{background:#ffffff;}
th,td{border-bottom:1px solid var(--border);}
th{background:#f8fafc;}
.callout{
  border:1px solid #fed7aa;
  background:#fff7ed;
}
.tag{
  border-color:#fed7aa;
  background:#fff7ed;
  color:#9a3412;
}
.accent-note{
  border-color:#fed7aa;
  background:#fff7ed;
}
.site-footer{
  border-top:1px solid var(--border);
  background:#ffffff;
}
@media print{
  .hero-card,.panel,.doc-article,.doc-intro,.note,.price-card,.meta-card,.kv-card{border:1px solid #d1d5db;background:#fff;color:#000;box-shadow:none;}
}


.seo-breadcrumbs{max-width:1120px;margin:0 auto;padding:18px 24px 0;color:#6b7280;font-size:14px;line-height:1.4}.seo-breadcrumbs a{color:inherit;text-decoration:none}.seo-breadcrumbs span[aria-current="page"]{color:#111827}.seo-breadcrumbs__sep{margin:0 8px;color:#9ca3af}@media (max-width:720px){.seo-breadcrumbs{padding:14px 18px 0;font-size:13px}}

/* ORI guide showcase 2026-04-19 */
.guide-showcase{margin:10px 0 28px}
.guide-showcase__shell{padding:22px}
.guide-showcase__head{display:flex;gap:16px;align-items:flex-end;justify-content:space-between;margin-bottom:14px;flex-wrap:wrap}
.guide-showcase__head h2{margin:0 0 8px;font-size:clamp(24px,4vw,34px);line-height:1.08}
.guide-showcase__head p{margin:0;color:var(--soft);max-width:62ch}
.guide-scroll{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px,300px);gap:14px;overflow-x:auto;padding:4px 2px 10px;scroll-snap-type:x proximity;overscroll-behavior-x:contain;-webkit-overflow-scrolling:touch}
.guide-scroll::-webkit-scrollbar{height:10px}
.guide-scroll::-webkit-scrollbar-thumb{background:#fdba74;border-radius:999px}
.guide-card{display:flex;flex-direction:column;gap:10px;min-height:192px;padding:18px;border-radius:18px;scroll-snap-align:start;text-decoration:none;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;background:#fffaf5;border:1px solid #fed7aa;box-shadow:var(--shadow)}
.guide-card:hover{transform:translateY(-2px);text-decoration:none;border-color:#fb923c}
.guide-card__kicker{display:inline-flex;align-self:flex-start;min-height:28px;align-items:center;padding:0 10px;border-radius:999px;background:#fff;border:1px solid #fed7aa;color:#9a3412;font-size:12px;font-weight:700;letter-spacing:.03em}
.guide-card strong{font-size:18px;line-height:1.22;color:var(--text)}
.guide-card span:last-child{color:var(--soft);font-size:14px;line-height:1.55}
.guide-card__arrow{margin-top:auto;color:#c2410c;font-weight:700}
@media (max-width:760px){
  .guide-showcase__shell{padding:18px}
  .guide-scroll{grid-auto-columns:minmax(220px,84vw);padding-bottom:8px}
}
@media print{.guide-scroll{overflow:visible;grid-auto-flow:row;grid-template-columns:repeat(2,minmax(0,1fr))}}
