:root {
  --blue-950: #082f49;
  --blue-900: #0b4267;
  --blue-800: #005a94;
  --blue-700: #0875b5;
  --blue-100: #dff1fb;
  --blue-50: #f1f8fc;
  --gold: #f5b82e;
  --gold-soft: #fff6d9;
  --ink: #152b3a;
  --muted: #5c6f7b;
  --line: #d7e1e7;
  --surface: #ffffff;
  --canvas: #f6f8f9;
  --success: #237a57;
  --warning: #a45b13;
  --danger: #a33c3c;
  --radius: 8px;
  --shadow: 0 14px 36px rgba(8, 47, 73, 0.09);
  --container: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--canvas); color: var(--ink); }
body.menu-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: white;
  background: var(--blue-950);
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 72px 0; }
.section--compact { padding: 48px 0; }
.section--white { background: var(--surface); }
.section--blue { color: white; background: var(--blue-950); }
.section--tint { background: var(--blue-50); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section--blue .eyebrow { color: #8bd4f5; }
.eyebrow::before { width: 24px; height: 3px; content: ""; border-radius: 4px; background: var(--gold); }
h1, h2, h3 { margin: 0; color: var(--blue-950); letter-spacing: -0.025em; line-height: 1.12; }
h1 { font-size: clamp(2.25rem, 5.2vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); }
h3 { font-size: 1.12rem; }
.section--blue h1, .section--blue h2, .section--blue h3 { color: white; }
p { line-height: 1.7; }
.lead { margin: 18px 0 0; max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.section--blue .lead { color: #c9e0eb; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 32px; }
.section-heading__copy { max-width: 720px; }
.text-link { color: var(--blue-800); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(10, 63, 97, 0.1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}
.utility-bar { padding: 7px 0; color: white; background: var(--blue-950); font-size: 0.76rem; }
.utility-bar__inner { display: flex; justify-content: space-between; gap: 20px; }
.utility-bar p { margin: 0; line-height: 1.4; }
.utility-bar strong { color: #ffd66e; }
.nav-shell { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__mark {
  display: block;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(8, 47, 73, 0.15);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { display: block; color: var(--blue-950); font-size: 1rem; font-weight: 850; line-height: 1.1; }
.brand__tagline { display: block; margin-top: 3px; color: var(--muted); font-size: 0.7rem; font-weight: 650; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 10px 11px; border-radius: 6px; color: #365260; font-size: 0.86rem; font-weight: 700; text-decoration: none; }
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { color: var(--blue-800); background: var(--blue-50); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: white; cursor: pointer; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  content: "";
  border-radius: 2px;
  background: var(--blue-950);
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle__lines { position: relative; }
.menu-toggle__lines::before { position: absolute; top: -6px; left: 0; }
.menu-toggle__lines::after { position: absolute; top: 6px; left: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; }

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: white;
  background: var(--blue-800);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.btn:hover { transform: translateY(-1px); background: var(--blue-900); box-shadow: 0 8px 20px rgba(0, 90, 148, 0.18); }
.btn--gold { color: var(--blue-950); background: var(--gold); }
.btn--gold:hover { background: #e9aa1b; }
.btn--outline { border-color: #b9ccd7; color: var(--blue-900); background: white; }
.btn--outline:hover { color: white; background: var(--blue-900); }
.btn--small { min-height: 38px; padding: 9px 13px; font-size: 0.8rem; }

.hero { position: relative; overflow: hidden; padding: 78px 0 58px; color: white; background: var(--blue-900); }
.hero::after { position: absolute; right: -8%; bottom: -52%; width: 520px; height: 520px; content: ""; border: 80px solid rgba(255,255,255,.045); border-radius: 50%; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); gap: 68px; align-items: center; }
.hero h1 { max-width: 760px; color: white; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { color: #d2e5ee; }
.hero-search { display: flex; max-width: 680px; margin-top: 30px; padding: 6px; border-radius: var(--radius); background: white; box-shadow: 0 16px 40px rgba(1, 25, 40, .25); }
.hero-search input { min-width: 0; flex: 1; padding: 12px 14px; border: 0; outline: 0; color: var(--ink); background: transparent; }
.hero-search input::placeholder { color: #758894; }
.hero__note { display: flex; gap: 8px; margin: 13px 0 0; color: #bcd4df; font-size: .78rem; }
.hero__note::before { color: var(--gold); content: "●"; }
.hero-panel { padding: 26px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.08); box-shadow: var(--shadow); }
.hero-panel__label { margin: 0 0 18px; color: #b9d5e1; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.check-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.check-list__icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--blue-950); background: var(--gold); font-size: .8rem; font-weight: 900; }
.check-list strong { display: block; color: white; font-size: .9rem; }
.check-list span:last-child { display: block; margin-top: 3px; color: #c1d9e4; font-size: .78rem; line-height: 1.5; }

.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 23px 24px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--blue-950); font-size: .9rem; }
.trust-item span { display: block; margin-top: 5px; color: var(--muted); font-size: .76rem; line-height: 1.45; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 5px 20px rgba(8,47,73,.045); }
.service-card { position: relative; min-height: 220px; padding: 26px; overflow: hidden; }
.service-card__number { color: #bed2dd; font-size: .78rem; font-weight: 850; letter-spacing: .1em; }
.service-card h3 { margin-top: 22px; font-size: 1.24rem; }
.service-card p { margin: 10px 0 22px; color: var(--muted); font-size: .9rem; }
.service-card a { color: var(--blue-800); font-size: .84rem; font-weight: 800; text-decoration: none; }
.service-card::after { position: absolute; right: -24px; bottom: -42px; width: 105px; height: 105px; content: ""; border: 20px solid var(--blue-50); border-radius: 50%; }

.records-grid { display: grid; min-width: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.record-card { display: flex; min-width: 0; min-height: 318px; flex-direction: column; padding: 22px; }
.record-card__top { display: flex; align-items: start; justify-content: space-between; gap: 15px; }
.record-card__identity { display: flex; min-width: 0; align-items: center; gap: 13px; }
.record-card__name { font-size: 1.08rem; }
.record-card__company { margin: 6px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.badge { display: inline-flex; width: fit-content; padding: 5px 8px; border-radius: 999px; color: var(--blue-800); background: var(--blue-100); font-size: .66rem; font-weight: 850; line-height: 1.1; }
.badge--low { color: var(--success); background: #e4f4ec; }
.badge--high { color: var(--danger); background: #fbeaea; }
.badge--medium { color: var(--warning); background: #fff0dd; }
.record-card__signals { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 17px; }
.status-chip { display: inline-flex; width: fit-content; align-items: center; padding: 5px 8px; border-radius: 999px; color: #465e6b; background: #edf2f4; font-size: .67rem; font-weight: 800; line-height: 1.25; }
.status-chip--good { color: var(--success); background: #e4f4ec; }
.status-chip--watch { color: var(--warning); background: #fff0dd; }
.status-chip--danger { color: var(--danger); background: #fbeaea; }
.record-card__meta { display: grid; min-width: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 16px; }
.meta-item { padding: 10px; border-radius: 6px; background: var(--canvas); }
.meta-item span { display: block; color: var(--muted); font-size: .65rem; text-transform: uppercase; }
.meta-item strong { display: block; margin-top: 4px; color: var(--blue-950); font-size: .8rem; }
.record-card__link { margin-top: auto; padding-top: 17px; color: var(--blue-800); font-size: .8rem; font-weight: 800; text-decoration: none; }
.ola-app-icon { position: relative; display: grid; flex: 0 0 auto; place-items: center; overflow: hidden; border: 1px solid #c8d7df; border-radius: 8px; color: white; background: linear-gradient(145deg, var(--blue-800), var(--blue-950)); font-weight: 900; letter-spacing: -.03em; box-shadow: 0 4px 12px rgba(8,47,73,.12); }
.ola-app-icon > span { position: relative; z-index: 0; }
.ola-app-icon img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; background: white; }
.ola-app-icon--card { width: 52px; height: 52px; font-size: .83rem; }
.ola-app-icon--hero { width: 96px; height: 96px; border-radius: 12px; font-size: 1.35rem; box-shadow: 0 16px 34px rgba(0,0,0,.22); }

.ola-detail-hero { padding: 52px 0; color: white; background: var(--blue-900); }
.ola-detail-hero__inner { display: flex; align-items: center; gap: 24px; }
.ola-detail-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.35rem); }
.ola-detail-hero p:not(.eyebrow) { margin: 8px 0 0; color: #c9dfea; }
.ola-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.ola-hero-chips .status-chip { background: rgba(255,255,255,.12); color: white; }
.ola-hero-chips .status-chip--good { color: #aee5cc; }
.ola-hero-chips .status-chip--watch { color: #ffd48c; }
.ola-hero-chips .status-chip--danger { color: #ffb4b4; }
.ola-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 26px; align-items: start; }
.ola-detail-main { display: grid; gap: 18px; }
.ola-detail-section { padding: 26px; }
.ola-section-head { margin-bottom: 22px; }
.ola-section-head h2 { font-size: 1.3rem; }
.ola-section-head p { margin: 7px 0 0; color: var(--muted); font-size: .82rem; }
.ola-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; border-top: 1px solid var(--line); }
.ola-field { min-width: 0; padding: 13px 14px 13px 0; border-bottom: 1px solid var(--line); }
.ola-field:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line); }
.ola-field dt { color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .035em; text-transform: uppercase; }
.ola-field dd { overflow-wrap: anywhere; margin: 6px 0 0; color: var(--blue-950); font-size: .84rem; font-weight: 720; line-height: 1.45; }
.ola-field dd a { color: var(--blue-800); text-underline-offset: 3px; }
.ola-callout { margin-top: 18px; padding: 16px; border-left: 4px solid var(--blue-700); border-radius: 0 var(--radius) var(--radius) 0; background: var(--blue-50); }
.ola-callout--warning { border-left-color: var(--gold); background: var(--gold-soft); }
.ola-callout strong { color: var(--blue-950); font-size: .82rem; }
.ola-callout p { margin: 6px 0 0; color: #3e5663; font-size: .82rem; line-height: 1.65; }
.official-channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-bottom: 20px; }
.official-channel { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; border: 1px solid #bfd2dd; border-radius: var(--radius); color: var(--blue-800); background: white; text-decoration: none; }
.official-channel:hover { border-color: var(--blue-700); background: var(--blue-50); }
.official-channel strong, .official-channel small { display: block; }
.official-channel strong { font-size: .8rem; }
.official-channel small { margin-top: 3px; color: var(--muted); font-size: .66rem; }
.empty-inline { margin-bottom: 20px; padding: 14px; border-radius: var(--radius); color: var(--muted); background: var(--canvas); font-size: .82rem; }
.store-status-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.store-status { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--canvas); }
.store-status__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.store-status__head h3 { font-size: .95rem; }
.store-status__head .official-channel { min-height: auto; padding: 7px 9px; font-size: .7rem; }
.store-status__head .official-channel small { display: none; }
.store-status .ola-field-grid { grid-template-columns: 1fr; margin-top: 12px; }
.store-status .ola-field { padding: 10px 0; border-left: 0; }
.store-status__note { margin: 12px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }
.ola-risk-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ola-risk-summary > div { padding: 13px; border-radius: var(--radius); background: var(--canvas); }
.ola-risk-summary span, .ola-risk-summary strong { display: block; }
.ola-risk-summary > div > span { margin-bottom: 7px; color: var(--muted); font-size: .67rem; font-weight: 750; text-transform: uppercase; }
.ola-risk-summary strong { color: var(--blue-950); font-size: .82rem; }
.risk-factor-list { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.risk-factor-list li { display: grid; grid-template-columns: 38px 1fr; gap: 10px; align-items: start; padding: 11px; border-radius: var(--radius); background: var(--canvas); }
.risk-factor-impact { display: grid; min-height: 30px; place-items: center; border-radius: 6px; color: var(--danger); background: #fbeaea; font-size: .73rem; font-weight: 900; }
.risk-factor-impact.is-positive { color: var(--success); background: #e4f4ec; }
.risk-factor-list strong, .risk-factor-list small { display: block; }
.risk-factor-list strong { font-size: .8rem; }
.risk-factor-list small { margin-top: 3px; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.ola-details { margin-top: 18px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); }
.ola-details summary { color: var(--blue-800); font-size: .8rem; font-weight: 800; cursor: pointer; }
.ola-details p { margin: 13px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }
.ola-detail-rail { position: sticky; top: 118px; display: grid; gap: 14px; }
.ola-rail-card { padding: 22px; }
.ola-rail-card h2 { font-size: 1.15rem; }
.ola-rail-card dl { margin: 16px 0 20px; }
.ola-rail-card .ola-field { padding: 10px 0; border-left: 0; }
.ola-rail-card .btn { width: 100%; }
.ola-rail-card .btn + .btn { margin-top: 9px; }
.ola-muted { color: var(--muted); font-size: .82rem; }

.safety-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.safety-layout__intro { position: sticky; top: 132px; }
.steps { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.step__number { color: var(--gold); font-size: 1rem; font-weight: 900; }
.step h3 { font-size: 1.06rem; }
.step p { margin: 8px 0 0; color: #c3dce7; font-size: .86rem; }

.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: flex; min-height: 260px; flex-direction: column; padding: 24px; }
.article-card__category { color: var(--blue-700); font-size: .69rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 { margin-top: 17px; font-size: 1.18rem; }
.article-card p { margin: 12px 0 22px; color: var(--muted); font-size: .87rem; }
.article-card__footer { display: flex; margin-top: auto; align-items: center; justify-content: space-between; gap: 16px; color: #70818b; font-size: .72rem; }
.article-card__footer a { color: var(--blue-800); font-weight: 850; text-decoration: none; }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px 38px; border-radius: var(--radius); color: white; background: var(--blue-800); box-shadow: var(--shadow); }
.cta-band h2 { color: white; font-size: clamp(1.5rem, 3vw, 2.15rem); }
.cta-band p { margin: 8px 0 0; color: #d3e8f2; }

.page-hero { padding: 60px 0; color: white; background: var(--blue-900); }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.3rem); }
.page-hero .lead { color: #c9dfea; }
.toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.toolbar input, .toolbar select { min-height: 44px; padding: 10px 13px; border: 1px solid #becdd6; border-radius: var(--radius); color: var(--ink); background: white; }
.toolbar input { min-width: min(100%, 330px); flex: 1; }
.database-toolbar select { min-width: 180px; }
.result-count { margin: 0 0 18px; color: var(--muted); font-size: .83rem; }
.empty-state { grid-column: 1 / -1; padding: 42px 24px; border: 1px dashed #b8c9d3; border-radius: var(--radius); text-align: center; background: white; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: .9rem; }
.loading-card { min-height: 208px; background: linear-gradient(90deg, #fff 20%, #f2f6f8 45%, #fff 70%); background-size: 200% 100%; animation: loading 1.35s infinite; }
@keyframes loading { to { background-position: -200% 0; } }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 38px; align-items: start; }
.article-body, .detail-aside { padding: 30px; }
.article-body h2 { margin: 32px 0 12px; font-size: 1.5rem; }
.article-body h3 { margin: 26px 0 10px; }
.article-body p, .article-body li { color: #3d5360; font-size: .96rem; line-height: 1.8; }
.article-body a { color: var(--blue-800); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 18px 0 26px; color: var(--muted); font-size: .8rem; }
.detail-aside h3 { margin-bottom: 12px; }
.detail-aside p { color: var(--muted); font-size: .84rem; }
.disclosure-box { padding: 18px; border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; background: var(--gold-soft); }
.disclosure-box p { margin: 0; color: #664e19; font-size: .82rem; }

/* V2 member and community wiring */
.community-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 30px; align-items: start; }
.community-main, .community-feed, .community-sidebar, .community-replies, .community-widgets, .profile-main, .profile-side { display: grid; gap: 18px; }
.community-sidebar { position: sticky; top: 120px; }
.community-tabs, .auth-tabs { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.community-tabs a, .auth-tabs a { padding: 9px 12px; border-radius: 6px; color: var(--muted); font-size: .82rem; font-weight: 800; text-decoration: none; }
.community-tabs a:hover, .community-tabs a.is-active, .auth-tabs a:hover, .auth-tabs a.is-active { color: var(--blue-800); background: var(--blue-50); }
.community-topic-card, .community-thread, .community-reply, .community-compose, .community-reply-form { padding: 24px; }
.community-topic-card__meta, .community-topic-card__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; color: var(--muted); font-size: .72rem; }
.community-topic-card h3 { margin-top: 12px; }
.community-topic-card h3 a { text-decoration: none; }
.community-topic-card p { margin: 10px 0 18px; color: #425965; font-size: .9rem; }
.community-topic-card__footer a { margin-left: auto; color: var(--blue-800); font-weight: 800; text-decoration: none; }
.community-topic-card__footer strong { padding: 3px 7px; border-radius: 999px; color: var(--success); background: #e4f4ec; }
.community-thread h2 { margin-top: 16px; }
.community-thread__body { white-space: pre-wrap; color: #344e5c; font-size: 1rem; }
.community-reply.is-child { margin-left: 34px; border-left: 4px solid var(--blue-100); }
.community-reply p { white-space: pre-wrap; }
.replying-to, .reply-note { color: var(--blue-700); font-size: .76rem; }
.community-actions, .filters, .compact-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 14px; }
.community-actions button, .comment-vote-btn, .comment-action-link, .text-button { padding: 6px 9px; border: 1px solid var(--line); border-radius: 5px; color: var(--blue-900); background: white; font: inherit; font-size: .75rem; font-weight: 750; cursor: pointer; }
.community-actions button:hover, .community-actions button.is-active, .comment-vote-btn:hover, .comment-vote-btn.active { border-color: var(--blue-700); color: white; background: var(--blue-800); }
.text-button { margin-top: 10px; border: 0; color: var(--blue-800); background: transparent; }
.stack-form { display: grid; gap: 15px; }
.stack-form h2 { margin-bottom: 5px; }
.stack-form label { display: grid; gap: 7px; color: var(--blue-950); font-size: .8rem; font-weight: 750; }
.stack-form input:not([type="checkbox"]), .stack-form select, .stack-form textarea, .comment-form textarea, .select { width: 100%; min-height: 44px; padding: 11px 12px; border: 1px solid #b9cad4; border-radius: var(--radius); color: var(--ink); background: white; font: inherit; font-weight: 400; }
.stack-form textarea, .comment-form textarea { resize: vertical; line-height: 1.55; }
.check-control { display: flex !important; grid-template-columns: none; align-items: start; gap: 9px !important; font-weight: 600 !important; }
.check-control input { margin-top: 3px; }
.form-status { min-height: 1.4em; margin: 0; color: var(--muted); font-size: .78rem; }
.notice { padding: 16px; border-radius: var(--radius); color: #314b59; background: var(--blue-50); }
.notice p { margin-top: 0; }
.notice .btn { margin-top: 8px; }
.profile-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 30px; align-items: start; }
.profile-main > .card, .profile-side > .card { padding: 26px; }
.profile-side { position: sticky; top: 120px; }
.profile-side .btn { width: 100%; margin-top: 10px; }
.btn--danger { background: var(--danger); }
.btn--danger:hover { background: #842d2d; }
.auth-shell { display: grid; grid-template-columns: minmax(0, 560px) 340px; justify-content: center; gap: 30px; align-items: start; }
.auth-card { padding: 28px; }
.auth-tabs { margin-bottom: 22px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted); font-size: .75rem; }
.auth-divider::before, .auth-divider::after { height: 1px; flex: 1; content: ""; background: var(--line); }
.auth-card > .btn { width: 100%; }
.community-widgets > h2 { margin-bottom: 4px; }
.rating-box, .comments-box, .post-community-section { border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.post-community-section { display: grid; gap: 18px; padding: 0; border: 0; background: transparent; }
.rating-box, .comments-box { padding: 24px; }
.community-vote-head h3 { font-size: 1.2rem; }
.community-vote-head p, .small { color: var(--muted); font-size: .78rem; }
.community-count-meta { color: var(--muted); font-size: .72rem; font-weight: 650; }
.vote-stars { display: flex; gap: 3px; margin-top: 12px; }
.vote-star { padding: 3px; border: 0; color: #c8d2d7; background: transparent; font-size: 1.8rem; cursor: pointer; }
.vote-star.active, .vote-star.preview { color: var(--gold); }
.comments-list { display: grid; gap: 12px; margin: 18px 0; }
.comment, .public-comment { padding: 15px; border: 1px solid var(--line); border-radius: 6px; background: var(--canvas); }
.comment.reply-item, .public-comment.reply-item { margin-left: 28px; }
.comment-meta, .meta { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; color: var(--muted); font-size: .72rem; }
.comment-form { display: grid; gap: 12px; margin-top: 18px; }
.comment-form label { display: grid; gap: 7px; }
.comment-vote-row { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; }
.comment-role-badge, .featured-comment-badge { padding: 3px 6px; border-radius: 999px; color: var(--blue-900); background: var(--blue-100); font-size: .65rem; font-weight: 800; }
.uuph-backlink { margin: 0 0 18px; }
.uuph-backlink a { color: var(--blue-800); font-weight: 800; }
.uuph-profile-points-redemption, .uuph-profile-redemption-status { display: grid; gap: 10px; }
.uuph-profile-redemption-head, .uuph-profile-redemption-row, .uuph-profile-reward-row { display: flex; justify-content: space-between; gap: 15px; }
.uuph-profile-reward-table { display: grid; gap: 8px; padding: 12px; border-radius: 6px; background: var(--canvas); }
.uuph-profile-gcash-link { color: var(--blue-800); font-size: .75rem; font-weight: 750; }
.uuph-gcash-profile-section { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); }
.uuph-gcash-profile-section summary { cursor: pointer; font-weight: 800; }
.uuph-gcash-upload-row { display: grid; gap: 12px; margin-top: 12px; }
.uuph-gcash-preview img { max-width: 180px; }
.public-member-card { max-width: 760px; margin: 0 auto; padding: 30px; }
.public-member-head { display: flex; gap: 18px; align-items: center; margin-bottom: 22px; }
.public-member-head > img, .public-member-head > span { display: grid; width: 72px; height: 72px; flex: 0 0 auto; place-items: center; overflow: hidden; border-radius: 50%; color: white; background: var(--blue-800); font-size: 1.6rem; font-weight: 900; object-fit: cover; }
.public-member-head p, .public-member-head small { margin: 5px 0 0; color: var(--muted); }
.member-badges { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0; }
.member-badges span { padding: 5px 9px; border-radius: 999px; color: var(--blue-900); background: var(--blue-100); font-size: .7rem; font-weight: 800; }
.public-member-card .community-actions a { color: var(--blue-800); font-size: .78rem; font-weight: 800; }

.site-footer { color: #c8dbe4; background: #061f30; }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, .8fr); gap: 46px; padding: 58px 0 42px; }
.footer-brand .brand__name { color: white; }
.footer-brand .brand__tagline { color: #9fb7c3; }
.footer-brand > p { max-width: 390px; margin: 20px 0 0; color: #9fb7c3; font-size: .83rem; }
.footer-group h3 { color: white; font-size: .83rem; letter-spacing: .04em; }
.footer-group ul { display: grid; gap: 10px; margin: 17px 0 0; padding: 0; list-style: none; }
.footer-group a { color: #a9c0cb; font-size: .8rem; text-decoration: none; }
.footer-group a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-disclosure { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-disclosure p { margin: 0; color: #91aab6; font-size: .73rem; line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 28px; color: #7f9aa8; font-size: .72rem; }
.back-to-top { position: fixed; z-index: 40; right: 20px; bottom: 20px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: var(--radius); color: white; background: var(--blue-800); box-shadow: 0 10px 24px rgba(8,47,73,.25); opacity: 0; transform: translateY(12px); pointer-events: none; cursor: pointer; transition: opacity 160ms ease, transform 160ms ease; }
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.noscript { padding: 18px; color: white; text-align: center; background: var(--danger); }

@media (max-width: 1000px) {
  .desktop-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 8px 20px 18px; border-bottom: 1px solid var(--line); background: white; box-shadow: 0 18px 28px rgba(8,47,73,.13); }
  .mobile-menu.is-open { display: grid; }
  .mobile-menu .nav-link { padding: 13px 12px; border-bottom: 1px solid #edf1f3; }
  .mobile-menu .btn { margin-top: 10px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-panel { max-width: 680px; }
  .records-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-layout { grid-template-columns: 1fr; gap: 34px; }
  .safety-layout__intro { position: static; }
  .footer-main { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
  .community-layout, .profile-grid { grid-template-columns: minmax(0, 1fr) 310px; }
  .ola-detail-layout { grid-template-columns: minmax(0, 1fr) 270px; }
  .record-card__meta { grid-template-columns: 1fr 1fr; }
  .record-card__meta .meta-item:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 50px 0; }
  .section--compact { padding: 34px 0; }
  .site-header { position: relative; top: auto; backdrop-filter: none; }
  .utility-bar { display: none; }
  .nav-shell { min-height: 68px; }
  .brand__mark { width: 39px; height: 39px; }
  .brand__tagline { display: none; }
  .hero { padding: 50px 0 40px; }
  .hero__grid { gap: 30px; }
  .hero-search { display: grid; }
  .hero-search .btn { width: 100%; }
  .hero-panel { padding: 20px; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 18px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item:first-child { padding-left: 18px; }
  .section-heading { display: block; }
  .section-heading .text-link { display: inline-block; margin-top: 18px; }
  .card-grid, .records-grid, .articles-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 190px; }
  .safety-layout { gap: 26px; }
  .step { grid-template-columns: 42px 1fr; gap: 12px; padding: 20px; }
  .cta-band { display: block; padding: 28px 24px; }
  .cta-band .btn { width: 100%; margin-top: 20px; }
  .page-hero { padding: 44px 0; }
  .detail-layout { grid-template-columns: 1fr; }
  .ola-detail-hero { padding: 38px 0; }
  .ola-detail-hero__inner { align-items: flex-start; gap: 16px; }
  .ola-app-icon--hero { width: 72px; height: 72px; border-radius: 10px; font-size: 1rem; }
  .ola-detail-layout { grid-template-columns: 1fr; }
  .ola-detail-rail { position: static; }
  .ola-field-grid, .official-channel-grid, .store-status-grid { grid-template-columns: 1fr; }
  .ola-field, .ola-field:nth-child(even) { padding: 12px 0; border-left: 0; }
  .ola-risk-summary { grid-template-columns: 1fr 1fr; }
  .ola-risk-summary > div:last-child { grid-column: 1 / -1; }
  .record-card__top { align-items: flex-start; }
  .record-card__identity { align-items: flex-start; }
  .record-card__meta { grid-template-columns: 1fr 1fr; }
  .record-card__meta .meta-item:last-child { grid-column: 1 / -1; }
  .community-layout, .profile-grid, .auth-shell { grid-template-columns: 1fr; }
  .community-sidebar, .profile-side { position: static; }
  .community-reply.is-child, .comment.reply-item, .public-comment.reply-item { margin-left: 12px; }
  .article-body, .detail-aside { padding: 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-bottom: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto; animation-duration: .01ms; animation-iteration-count: 1; transition-duration: .01ms; }
}
