:root {
  --ink: #07192c;
  --ink-2: #17334d;
  --muted: #62758a;
  --navy: #061b31;
  --navy-2: #0a2947;
  --blue: #1268e8;
  --blue-2: #0753c7;
  --cyan: #12c8d2;
  --cyan-soft: #dffbfc;
  --ice: #eef8fc;
  --surface: #f6f9fc;
  --white: #ffffff;
  --line: #d6e2ec;
  --line-strong: #b9ccdc;
  --success: #07886f;
  --warning: #b26a06;
  --danger: #d7364e;
  --shadow-sm: 0 10px 28px rgba(8, 35, 59, .08);
  --shadow-md: 0 22px 56px rgba(8, 35, 59, .12);
  --shadow-lg: 0 42px 100px rgba(5, 27, 49, .18);
  --page: 1240px;
  --header-h: 78px;
}

* { box-sizing: border-box; letter-spacing: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { color: #fff; background: var(--blue); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
svg { flex: 0 0 auto; width: 18px; height: 18px; stroke-width: 1.8; }
h1, h2, h3, h4, p { margin-top: 0; }
main { overflow: clip; }

/* Core controls */
.primary-btn,
.ghost-btn,
.icon-btn,
.tab,
.side-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  font-weight: 700;
  line-height: 1.2;
  transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.primary-btn::before,
.ghost-btn::before,
.tab::before,
.side-link::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.30), transparent 36%);
  transition: opacity .22s ease;
}
.primary-btn:hover::before,
.ghost-btn:hover::before,
.tab:hover::before,
.side-link:hover::before { opacity: 1; }
.primary-btn {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 28px rgba(6, 27, 49, .18);
}
.primary-btn:hover { background: var(--blue); border-color: var(--blue); box-shadow: 0 15px 34px rgba(18, 104, 232, .25); transform: translateY(-2px); }
.ghost-btn { color: var(--ink); background: rgba(255,255,255,.76); border-color: var(--line); }
.ghost-btn:hover { color: var(--blue); background: #fff; border-color: #8fb8ea; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.primary-btn.large, .ghost-btn.large { min-height: 52px; padding: 0 24px; font-size: 16px; }
.is-pressed { transform: translateY(1px) scale(.985) !important; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.badge.ok { color: var(--success); background: #e5faf5; }
.badge.warn { color: var(--warning); background: #fff4dc; }

/* Welcome */
.welcome-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: #06192d;
  transition: opacity .4s ease, visibility .4s ease;
}
.welcome-active { overflow: hidden; }
.welcome-complete .welcome-screen { visibility: hidden; opacity: 0; pointer-events: none; }
.welcome-ambient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 15%, rgba(22,200,210,.14) 49%, transparent 76%),
    radial-gradient(ellipse at 50% 55%, rgba(18,104,232,.28), transparent 42%);
  animation: ambientShift 1.8s ease both;
}
.welcome-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6ff5f7, transparent);
  transform: translate(-50%, 72px);
  animation: welcomeLine 1.55s .12s ease both;
}
.welcome-core { position: relative; z-index: 2; display: grid; justify-items: center; }
.welcome-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(120,238,241,.66);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #0b2f50, #0d6f89);
  box-shadow: 0 0 48px rgba(18,200,210,.22);
  font-size: 22px;
  font-weight: 900;
  animation: markReveal .8s ease both;
}
.welcome-name { margin-top: 22px; font-size: 36px; font-weight: 800; line-height: 1; animation: rise .7s .25s ease both; }
.welcome-subtitle { margin-top: 12px; color: #82dde4; font-size: 11px; font-weight: 800; animation: rise .7s .4s ease both; }
.welcome-loader { width: 210px; height: 2px; margin-top: 25px; overflow: hidden; background: rgba(255,255,255,.12); }
.welcome-loader i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--cyan), #fff); transform-origin: left; animation: loadLine 1.5s .18s ease both; }
.welcome-core small { margin-top: 13px; color: #8ca7bc; font-size: 11px; }

/* Shared header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
  padding: 0 max(28px, calc((100vw - var(--page)) / 2));
  border-bottom: 1px solid rgba(197,215,228,.72);
  background: rgba(255,255,255,.92);
  box-shadow: 0 5px 24px rgba(7,25,44,.04);
  backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow .25s ease, min-height .25s ease, background .25s ease;
}
.site-header.is-scrolled { min-height: 68px; background: rgba(255,255,255,.97); box-shadow: 0 12px 35px rgba(7,25,44,.09); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(145deg, #071b31 0 64%, #0d9eaa 64% 100%);
  box-shadow: 0 10px 22px rgba(6,27,49,.20);
  font-size: 13px;
  font-weight: 900;
}
.brand strong { display: block; font-size: 19px; line-height: 1.08; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 700; }
.landing-header .brand > span:last-child { display: grid; gap: 5px; }
.landing-header .brand small { display: flex; align-items: center; gap: 7px; margin: 0; color: #14778a; font-size: 10px; font-weight: 850; line-height: 1; }
.landing-header .brand small::before { width: 15px; height: 2px; content: ""; background: var(--cyan); }
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid #e0e9f0;
  border-radius: 7px;
  background: #f5f8fb;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 5px;
  color: #3e556b;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.main-nav a:hover { color: var(--blue); background: #fff; box-shadow: 0 5px 15px rgba(7,25,44,.07); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.landing-header > .primary-btn { justify-self: end; width: max-content; }
.session-badge { max-width: 280px; overflow: hidden; color: var(--success); font-size: 12px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }

/* Industry line */
.brand-carousel {
  position: relative;
  z-index: 20;
  display: flex;
  height: 38px;
  overflow: hidden;
  color: #bdd1e0;
  background: #071c31;
  border-bottom: 1px solid rgba(114,225,232,.18);
}
.brand-track { display: flex; flex: 0 0 auto; align-items: center; gap: 30px; padding-right: 30px; animation: marquee 48s linear infinite; }
.brand-track span { color: #52dce2; font-size: 11px; font-weight: 900; }
.brand-track strong { font-size: 12px; font-weight: 600; white-space: nowrap; }
.brand-memory {
  position: fixed;
  right: 11px;
  top: 45%;
  z-index: 30;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #7992a8;
  font-size: 9px;
  writing-mode: vertical-rl;
  pointer-events: none;
}
.brand-memory span { color: #0d7fa0; font-weight: 900; }
.brand-memory i { width: 1px; height: 24px; background: #a7c1d3; }

/* Homepage hero */
.mission-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 790px;
  padding: 76px max(28px, calc((100vw - var(--page)) / 2)) 148px;
  overflow: hidden;
  background: #f5fafc;
}
.hero-art {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(248,252,254,.98) 0%, rgba(248,252,254,.94) 31%, rgba(248,252,254,.52) 53%, rgba(248,252,254,.04) 78%),
    url("assets/okkai-growth-architecture.png");
  background-position: center, center;
  background-size: cover;
}
.hero-art::after {
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  content: "";
  background: linear-gradient(transparent, rgba(246,251,253,.98));
}
.mission-copy { position: relative; z-index: 2; width: 650px; max-width: 56vw; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #0e7d91;
  font-size: 14px;
  font-weight: 900;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--cyan); }
.flagship-slogan { margin: 0; font-weight: 760; line-height: 1.08; }
.flagship-pretitle { display: block; margin-bottom: 22px; color: #526f84; font-size: 17px; font-weight: 850; }
.flagship-line { display: block; max-width: 650px; color: var(--ink); font-size: 58px; }
.flagship-line + .flagship-line { margin-top: 13px; }
.flagship-line b { position: relative; color: var(--blue); font-weight: 800; }
.flagship-line b::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  z-index: -1;
  height: 13px;
  content: "";
  background: rgba(18,200,210,.20);
  transform: skewX(-10deg);
}
.flagship-line-shift { font-size: 39px; line-height: 1.25; }
.flagship-line-shift b { color: var(--ink); }
.flagship-outcome {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 17px 0;
  border-top: 1px solid rgba(111,148,172,.30);
  border-bottom: 1px solid rgba(111,148,172,.30);
}
.flagship-outcome span { display: flex; align-items: baseline; gap: 8px; }
.flagship-outcome small { color: #557185; font-size: 14px; font-weight: 850; }
.flagship-outcome b { color: var(--navy); font-size: 21px; }
.flagship-outcome i { width: 1px; height: 22px; background: #c4d5e1; }
.hero-text { max-width: 600px; margin: 25px 0 0; color: #405a70; font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.hero-proofbar {
  position: absolute;
  right: max(28px, calc((100vw - var(--page)) / 2));
  bottom: 42px;
  left: max(28px, calc((100vw - var(--page)) / 2));
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(91,131,160,.30);
  border-bottom: 1px solid rgba(91,131,160,.30);
  background: rgba(255,255,255,.54);
  backdrop-filter: blur(14px);
}
.hero-proofbar article { display: grid; grid-template-columns: 30px auto; column-gap: 10px; padding: 18px 20px; border-right: 1px solid rgba(91,131,160,.24); }
.hero-proofbar article:last-child { border-right: 0; }
.hero-proofbar small { grid-row: span 2; align-self: center; color: #00aebb; font-size: 12px; font-weight: 900; }
.hero-proofbar b { font-size: 16px; }
.hero-proofbar span { color: #536f82; font-size: 13px; }

/* Shared homepage sections */
.customer-question-section,
.work-section,
.plans-section,
.guarantee-section,
.case-section,
.landing-cta {
  position: relative;
  padding: 112px max(28px, calc((100vw - var(--page)) / 2));
}
.section-title { max-width: 760px; margin-bottom: 50px; }
.section-title h2,
.landing-cta h2 { margin: 0; font-size: 40px; line-height: 1.2; }
.section-title .eyebrow { margin-bottom: 16px; }

/* Okk AI advantage: brand thesis, efficiency contrast and market-entry paths */
.customer-question-section {
  overflow: hidden;
  padding-bottom: 0;
  background: linear-gradient(180deg, #fff 0 56%, #edf8fb 56% 100%);
}
.customer-question-section::before { position: absolute; top: 72px; right: -110px; width: 360px; height: 360px; content: "OKK"; color: rgba(9,74,111,.035); font-size: 150px; font-weight: 950; line-height: 1; writing-mode: vertical-rl; pointer-events: none; }
.ai-demand-compass {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(430px,.92fr);
  align-items: center;
  min-height: 570px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid #163f5c;
  border-radius: 8px;
  color: #fff;
  background: #061b30;
  box-shadow: 0 30px 70px rgba(5,30,52,.2);
}
.ai-demand-compass::before { position: absolute; top: 44px; bottom: 44px; left: 57%; width: 1px; content: ""; pointer-events: none; background: linear-gradient(180deg, transparent, rgba(63,203,213,.24), transparent); }
.ai-demand-copy { position: relative; z-index: 2; min-width: 0; padding: 60px 0 58px 58px; }
.market-signal-kicker { display: block; color: #77edf0; font-size: 12px; font-weight: 900; letter-spacing: 0; }
.ai-demand-copy h3 { max-width: 650px; margin: 17px 0 24px; font-size: 34px; line-height: 1.35; }
.ai-demand-copy h3 strong { color: #6ce5e9; }
.ai-platform-line { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0 0 28px; color: #c8d9e2; font-size: 14px; }
.ai-platform-line strong { position: relative; font-weight: 750; }
.ai-platform-line strong + strong::before { position: absolute; top: .6em; left: -12px; width: 3px; height: 3px; content: ""; border-radius: 50%; background: #36d3da; }
.demand-facts { display: grid; grid-template-columns: 1.12fr .88fr 1.12fr; max-width: 700px; border-top: 1px solid rgba(151,198,215,.24); border-bottom: 1px solid rgba(151,198,215,.24); }
.demand-facts > span { display: grid; align-content: center; min-height: 106px; padding: 18px 20px; }
.demand-facts > span:first-child { padding-left: 0; }
.demand-facts > span + span { border-left: 1px solid rgba(151,198,215,.24); }
.demand-facts small { color: #a8c0ce; font-size: 12px; font-weight: 800; }
.demand-facts b { margin-top: 8px; color: #fff; font-size: 30px; line-height: 1; }
.demand-facts b em { margin-left: 4px; color: #67e0e5; font-size: 11px; font-style: normal; }
.demand-shift { max-width: 680px; margin: 25px 0 0; color: #c0d3dd; font-size: 16px; line-height: 1.8; }
.demand-conclusion { display: flex; align-items: center; gap: 14px; max-width: 690px; margin: 22px 0 0; padding: 19px 22px; border-left: 3px solid #45d8de; background: linear-gradient(90deg, rgba(35,193,203,.17), rgba(35,193,203,.025)); font-size: 20px; font-weight: 850; line-height: 1.55; }
.demand-conclusion svg { flex: 0 0 auto; width: 22px; color: #66e5e9; }
.demand-conclusion strong { color: #6ce8ec; font-weight: 950; }
.data-disclaimer { display: block; margin-top: 14px; color: #7895a6; font-size: 10px; line-height: 1.6; }
.demand-compass { position: relative; z-index: 1; width: min(520px,92%); aspect-ratio: 1; overflow: clip; justify-self: center; }
.demand-compass::before, .demand-compass::after { position: absolute; border-radius: 50%; content: ""; pointer-events: none; }
.demand-compass::before { inset: 7%; border: 1px solid rgba(97,223,229,.2); box-shadow: inset 0 0 52px rgba(25,184,194,.06), 0 0 58px rgba(25,184,194,.05); }
.demand-compass::after { inset: 31%; border: 1px solid rgba(97,223,229,.18); background: rgba(8,44,69,.28); }
.compass-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.compass-ring-outer { inset: 14%; border: 1px dashed rgba(100,226,232,.28); box-shadow: inset 0 0 32px rgba(48,205,213,.04); animation: compassSpin 32s linear infinite; }
.compass-ring-middle { inset: 25%; border: 1px dotted rgba(112,223,229,.22); animation: compassSpinReverse 22s linear infinite; }
.compass-cross { position: absolute; top: 50%; left: 50%; background: linear-gradient(90deg, transparent, rgba(80,210,219,.2) 28%, rgba(80,210,219,.2) 72%, transparent); transform-origin: center; }
.compass-cross-x { width: 72%; height: 1px; transform: translate(-50%,-50%); }
.compass-cross-y { width: 72%; height: 1px; transform: translate(-50%,-50%) rotate(90deg); }
.compass-platform { position: absolute; z-index: 3; display: grid; place-items: center; align-content: center; gap: 4px; width: 104px; height: 104px; overflow: hidden; border: 1px solid rgba(89,218,225,.42); border-radius: 50%; text-align: center; background: linear-gradient(145deg, rgba(12,55,81,.98), rgba(6,31,51,.98)); box-shadow: inset 0 0 30px rgba(26,201,209,.08), 0 10px 30px rgba(0,12,25,.22); transform: translate(-50%,-50%); animation: compassNodePulse 4.8s ease-in-out infinite; }
.compass-platform::before { position: absolute; inset: -35%; content: ""; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 74%, rgba(100,235,239,.26) 84%, transparent 94%); animation: compassSpin 6.5s linear infinite; }
.compass-platform::after { position: absolute; inset: 8px; content: ""; border: 1px solid rgba(100,229,234,.15); border-radius: 50%; box-shadow: inset 0 0 18px rgba(81,226,232,.05); }
.compass-platform strong, .compass-platform small { position: relative; z-index: 1; display: block; letter-spacing: 0; }
.compass-platform strong { color: #f1feff; font-size: 17px; font-weight: 900; line-height: 1.1; }
.compass-platform small { min-width: 42px; padding-top: 5px; border-top: 1px solid rgba(102,229,234,.25); color: #8fdce2; font-size: 11px; font-weight: 800; line-height: 1; }
.compass-east { animation-delay: -1.2s; }
.compass-south { animation-delay: -2.4s; }
.compass-west { animation-delay: -3.6s; }
.compass-north { top: 18%; left: 50%; }
.compass-east { top: 50%; left: 82%; }
.compass-south { top: 82%; left: 50%; }
.compass-west { top: 50%; left: 18%; }
.compass-core { position: absolute; top: 50%; left: 50%; z-index: 4; display: grid; place-items: center; align-content: center; width: 164px; height: 164px; border: 1px solid rgba(103,232,236,.58); border-radius: 50%; background: linear-gradient(145deg, #0b3a59, #082943); box-shadow: inset 0 0 42px rgba(39,196,205,.12), 0 0 48px rgba(39,196,205,.14); transform: translate(-50%,-50%); }
.compass-core small { max-width: 112px; color: #a9c7d2; font-size: 11px; font-weight: 800; text-align: center; }
.compass-core strong { margin: 8px 0 6px; color: #74edf0; font-size: 36px; line-height: 1; }
.compass-core span { color: #e0f3f5; font-size: 12px; font-weight: 850; }
.advantage-stage {
  --advantage-row-inset: 10px;
  position: relative;
  display: grid;
  grid-template-areas: "thesis contrast" "paths paths" "decision decision";
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 34px 58px;
  padding-top: 72px;
}
.advantage-thesis { grid-area: thesis; padding: var(--advantage-row-inset) 0 32px; border-bottom: 1px solid #bdd4df; }
.advantage-thesis > span { display: block; color: #087d92; font-size: 12px; font-weight: 900; }
.advantage-thesis h3 { display: grid; gap: 4px; max-width: 720px; margin: 17px 0 22px; color: #071d31; font-size: 31px; line-height: 1.42; }
.advantage-thesis h3 > span { display: block; }
.advantage-thesis h3 strong { position: relative; display: inline-block; color: #08719a; font-weight: 950; }
.advantage-thesis h3 strong::after { position: absolute; z-index: -1; right: 0; bottom: 3px; left: 0; height: 9px; content: ""; background: rgba(25,201,209,.18); }
.advantage-thesis p { max-width: 680px; margin: 0; color: #3f5f72; font-size: 16px; line-height: 1.9; }
.advantage-contrast {
  position: relative;
  grid-area: contrast;
  align-self: stretch;
  margin-top: var(--advantage-row-inset);
  display: grid;
  grid-template-columns: minmax(0,1fr) 58px minmax(0,1fr);
  align-items: center;
  min-height: 245px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #061b30;
  box-shadow: 0 25px 60px rgba(5,36,61,.18);
}
.advantage-contrast::before { position: absolute; right: -54px; bottom: -88px; width: 260px; height: 260px; content: "AI"; color: rgba(80,229,235,.055); font-size: 190px; font-weight: 950; line-height: 1; pointer-events: none; }
.contrast-side { position: relative; z-index: 1; padding: 34px 25px; text-align: center; }
.contrast-side > span { display: block; min-height: 36px; color: #c2d3dd; font-size: 14px; font-weight: 850; }
.contrast-side > strong { display: block; margin-top: 10px; font-size: 48px; line-height: 1; }
.contrast-side > strong small { margin-left: 4px; font-size: 13px; }
.contrast-side > p { margin: 15px 0 0; color: #b8cbd6; font-size: 13px; }
.contrast-ai > span, .contrast-ai > p { color: #bff7f7; }
.contrast-ai > strong { color: #55e1e6; text-shadow: 0 0 28px rgba(44,211,219,.24); }
.contrast-pivot { position: relative; z-index: 2; display: grid; place-items: center; align-content: center; width: 58px; height: 104px; justify-self: center; overflow: hidden; border: 1px solid rgba(96,229,234,.34); border-radius: 999px; color: #dfffff; background: linear-gradient(180deg, rgba(14,70,91,.94), rgba(7,34,54,.98)); box-shadow: inset 0 0 24px rgba(66,220,227,.12), 0 0 28px rgba(34,190,201,.12); }
.contrast-pivot::before { position: absolute; inset: 5px; content: ""; border: 1px solid rgba(91,226,232,.16); border-radius: inherit; animation: contrastPulse 2.8s ease-in-out infinite; }
.contrast-pivot::after { position: absolute; top: 50%; right: 0; left: 0; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(92,231,235,.42), transparent); }
.contrast-pivot svg { width: 19px; height: 19px; margin-bottom: 7px; filter: drop-shadow(0 0 8px rgba(88,226,232,.35)); }
.contrast-pivot b { display: block; font-size: 15px; font-weight: 950; line-height: 1; text-align: center; }
.advantage-paths { grid-area: paths; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #b8d5df; border-bottom: 1px solid #b8d5df; }
.advantage-paths article { display: grid; grid-template-columns: 72px minmax(0,1fr); gap: 26px; padding: 42px 46px 42px 0; }
.advantage-paths article + article { padding-right: 0; padding-left: 46px; border-left: 1px solid #b8d5df; }
.advantage-path-number { color: #aac4cf; font-size: 34px; font-weight: 300; line-height: 1; }
.advantage-path-copy > span { display: flex; align-items: center; gap: 8px; color: #087c91; font-size: 12px; font-weight: 900; }
.advantage-path-copy > span svg { width: 15px; height: 15px; }
.advantage-path-copy h3 { margin: 12px 0 15px; color: #08243a; font-size: 26px; }
.advantage-path-copy p { margin: 0; color: #3f6073; font-size: 15px; line-height: 1.9; }
.advantage-path-copy p strong { color: #086f96; font-weight: 900; }
.advantage-decision { grid-area: decision; display: flex; align-items: center; gap: 22px; max-width: 940px; margin: 2px auto 0; color: #16384d; font-size: 20px; font-weight: 850; line-height: 1.6; text-align: center; }
.advantage-decision::before, .advantage-decision::after { width: 68px; height: 1px; content: ""; background: #8fbdca; }
.advantage-decision span { color: #08769c; font-size: 29px; font-weight: 950; }

/* Work: paired operating lanes */
.work-section {
  padding-top: 72px;
  background: linear-gradient(180deg, #eef8fc, #f8fbfd);
}
.work-compare { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border: 1px solid #c8dce9; border-radius: 8px; background: #c8dce9; box-shadow: var(--shadow-md); }
.work-compare::after { display: none; }
.work-compare article { min-height: 480px; padding: 48px; background: #fff; }
.work-compare article:last-child { color: #fff; background: var(--navy); }
.work-compare article > span { display: inline-flex; align-items: center; min-height: 30px; padding-bottom: 8px; border-bottom: 2px solid currentColor; color: #0b6dc5; font-size: 16px; font-weight: 900; }
.work-compare article:last-child > span { color: #5fe5ea; }
.work-compare h3 { margin: 20px 0 30px; font-size: 27px; line-height: 1.48; }
.work-compare ul, .pricing-card ul, .member-card ul { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
.work-compare li, .pricing-card li, .member-card li { position: relative; padding-left: 24px; }
.work-compare li { color: #49677a; font-size: 16px; line-height: 1.75; }
.work-compare article:last-child li { color: #c4d3df; }
.work-compare li::before, .pricing-card li::before, .member-card li::before { position: absolute; top: .75em; left: 0; width: 8px; height: 2px; content: ""; background: var(--cyan); }

/* Pricing */
.plans-section { background: #fff; }
.public-pricing, .member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pricing-card, .member-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.member-card:hover { border-color: #88b5df; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.pricing-card::before, .member-card::before { position: absolute; top: 0; right: 32px; left: 32px; height: 3px; content: ""; background: #b6c8d6; }
.pricing-card h3, .member-card header span { margin: 0; font-size: 27px; font-weight: 850; }
.pricing-card div > p, .member-card > p { min-height: 76px; margin: 12px 0 22px; color: var(--muted); font-size: 14px; }
.pricing-card > strong, .member-card header strong { display: block; font-size: 27px; }
.pricing-card > b, .member-card header b { display: block; margin-top: 4px; color: var(--blue); font-size: 16px; }
.pricing-card ul, .member-card ul { margin: 28px 0 32px; color: #4a687b; font-size: 15px; line-height: 1.65; }
.monthly-offer { display: grid; gap: 7px; margin-top: 25px; padding-bottom: 18px; border-bottom: 1px solid #dce8ef; }
.monthly-offer small, .annual-offer small { color: #496b80; font-size: 16px; font-weight: 850; line-height: 1.35; }
.monthly-offer strong { color: #071f34; font-size: 36px; line-height: 1; }
.monthly-offer strong em, .annual-offer strong em { margin-left: 7px; color: #226687; font-size: 14px; font-style: normal; font-weight: 850; }
.annual-price-row { display: grid; grid-template-columns: minmax(170px,1.15fr) minmax(0,.85fr); align-items: end; gap: 8px; margin-top: 17px; }
.annual-offer { display: grid; gap: 7px; margin: 0; }
.annual-offer small { color: #496b80; font-size: 16px; font-weight: 850; line-height: 1.35; }
.annual-offer strong { color: #087d92; font-size: 36px; line-height: 1; white-space: nowrap; }
.annual-offer strong em { display: inline-block; white-space: nowrap; }
.price-saving { display: flex; align-items: flex-start; flex-direction: column; gap: 7px; margin: 0; }
.price-saving del { color: #7890a0; font-size: 13px; white-space: nowrap; }
.price-saving b { display: inline-flex; align-items: center; min-height: 28px; padding: 0 8px; border: 1px solid rgba(10,158,169,.25); border-radius: 4px; color: #087e88; background: #e8fbfb; font-size: 12px; font-weight: 900; white-space: nowrap; }
.public-pricing .pricing-card ul, .member-grid .member-card ul { margin-bottom: 0; }

@media (hover: hover) and (pointer: fine) {
  .public-pricing .pricing-card:hover {
    color: #fff;
    border-color: #0b3556;
    background: linear-gradient(150deg, #071c32 0%, #0b3556 72%, #0b4965 100%);
    box-shadow: 0 24px 58px rgba(4, 28, 52, .24);
    transform: translateY(-10px) scale(1.012);
  }
  .public-pricing .pricing-card:hover::before { background: var(--cyan); }
  .public-pricing .pricing-card:hover div > p,
  .public-pricing .pricing-card:hover ul { color: #c6d5df; }
.public-pricing .pricing-card:hover > b { color: #70e9ed; }
.public-pricing .pricing-card:hover .monthly-offer small,
.public-pricing .pricing-card:hover .annual-offer small,
.public-pricing .pricing-card:hover .price-saving del { color: #afc5d1; }
.public-pricing .pricing-card:hover .monthly-offer { border-bottom-color: rgba(173,207,222,.25); }
.public-pricing .pricing-card:hover .monthly-offer strong,
.public-pricing .pricing-card:hover .annual-offer strong { color: #fff; }
.public-pricing .pricing-card:hover .monthly-offer strong em,
.public-pricing .pricing-card:hover .annual-offer strong em { color: #78e9ed; }
.public-pricing .pricing-card:hover .price-saving b { color: #91f2f4; border-color: rgba(113,232,236,.35); background: rgba(24,187,196,.12); }
}

.public-pricing .pricing-card:focus-within {
  color: #fff;
  border-color: #0b3556;
  background: linear-gradient(150deg, #071c32 0%, #0b3556 72%, #0b4965 100%);
  box-shadow: 0 24px 58px rgba(4, 28, 52, .24);
  transform: translateY(-10px) scale(1.012);
}
.public-pricing .pricing-card:focus-within::before { background: var(--cyan); }
.public-pricing .pricing-card:focus-within div > p,
.public-pricing .pricing-card:focus-within ul { color: #c6d5df; }
.public-pricing .pricing-card:focus-within > b { color: #70e9ed; }
.public-pricing .pricing-card:focus-within .monthly-offer { border-bottom-color: rgba(173,207,222,.25); }
.public-pricing .pricing-card:focus-within .monthly-offer small,
.public-pricing .pricing-card:focus-within .annual-offer small,
.public-pricing .pricing-card:focus-within .price-saving del { color: #afc5d1; }
.public-pricing .pricing-card:focus-within .monthly-offer strong,
.public-pricing .pricing-card:focus-within .annual-offer strong { color: #fff; }
.public-pricing .pricing-card:focus-within .monthly-offer strong em,
.public-pricing .pricing-card:focus-within .annual-offer strong em { color: #78e9ed; }
.public-pricing .pricing-card:focus-within .price-saving b { color: #91f2f4; border-color: rgba(113,232,236,.35); background: rgba(24,187,196,.12); }

/* Commercial sharing: customer relationship progression and healthy growth loop */
.guarantee-section { overflow: hidden; color: #fff; background: #061b31; }
.guarantee-section::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(115deg, rgba(22,200,210,.08), transparent 42%), radial-gradient(circle at 80% 50%, rgba(19,181,199,.12), transparent 34%); }
.guarantee-section > * { position: relative; z-index: 1; }
.guarantee-section .eyebrow { color: #69e8ed; }
.sharing-system { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(430px,.96fr); gap: 86px; align-items: center; }
.sharing-narrative { min-width: 0; }
.system-kicker { color: #6ce6eb; font-size: 12px; font-weight: 900; }
.sharing-narrative > h3 { max-width: 680px; margin: 18px 0 20px; font-size: 32px; line-height: 1.45; }
.sharing-narrative > p { max-width: 650px; margin: 0; color: #c1d3dd; font-size: 16px; line-height: 1.9; }
.sharing-progression { position: relative; display: grid; margin-top: 42px; }
.sharing-progression::before { position: absolute; top: 20px; bottom: 20px; left: 19px; width: 1px; content: ""; background: linear-gradient(#4be0e5, rgba(75,224,229,.18)); }
.sharing-progression article { position: relative; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 18px; min-height: 74px; }
.sharing-progression article > span { position: relative; z-index: 1; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(92,224,230,.48); border-radius: 50%; color: #69e8ed; background: #08223a; font-size: 9px; font-weight: 900; box-shadow: 0 0 0 7px rgba(8,34,58,.96); }
.sharing-progression article div { display: flex; align-items: baseline; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(177,209,222,.18); }
.sharing-progression article:last-child div { border-bottom: 0; }
.sharing-progression small { color: #b2c8d4; font-size: 14px; }
.sharing-progression strong { font-size: 23px; }
.sharing-cycle { display: grid; place-items: center; min-height: 520px; }
.cycle-orbit { position: relative; width: 410px; max-width: 100%; aspect-ratio: 1; }
.cycle-orbit::before { position: absolute; inset: 62px; content: ""; border: 1px solid rgba(91,225,231,.36); border-radius: 50%; box-shadow: inset 0 0 45px rgba(24,183,200,.07), 0 0 55px rgba(24,183,200,.05); }
.cycle-orbit::after { position: absolute; inset: 92px; content: ""; border: 1px dashed rgba(151,199,215,.2); border-radius: 50%; }
.cycle-core { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; place-items: center; align-content: center; width: 154px; height: 154px; border: 1px solid rgba(96,229,234,.38); border-radius: 50%; color: #fff; background: radial-gradient(circle at 35% 28%, #105276, #082a44 62%, #061b31); box-shadow: 0 0 0 12px rgba(35,188,201,.05), 0 20px 55px rgba(0,0,0,.28); transform: translate(-50%,-50%); }
.cycle-core small { color: #72e7eb; font-size: 11px; font-weight: 900; }
.cycle-core strong { margin: 7px 0 4px; font-size: 21px; }
.cycle-core span { color: #bdd0da; font-size: 12px; }
.cycle-node { position: absolute; z-index: 4; display: grid; place-items: center; align-content: center; width: 116px; height: 116px; overflow: clip; border: 1px solid rgba(141,199,215,.33); border-radius: 50%; color: #fff; background: #0a2a43; box-shadow: 0 15px 38px rgba(0,0,0,.22); }
.cycle-node::after { position: absolute; width: 8px; height: 8px; content: ""; border-top: 2px solid #57dce2; border-right: 2px solid #57dce2; }
.cycle-node svg { width: 19px; height: 19px; margin-bottom: 7px; color: #57dce2; }
.cycle-node span { color: #b9ced8; font-size: 12px; }
.cycle-node strong { margin-top: 4px; font-size: 17px; }
.cycle-new { top: 0; left: 50%; transform: translateX(-50%); }
.cycle-new::after { right: -35px; bottom: -9px; transform: rotate(58deg); }
.cycle-return { right: 0; bottom: 29px; }
.cycle-return::after { bottom: -24px; left: 9px; transform: rotate(168deg); }
.cycle-health { bottom: 29px; left: 0; }
.cycle-health::after { top: -24px; left: 8px; transform: rotate(-54deg); }


/* Cases */
.case-section { background: #fff; }
.case-layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: 18px; }
.case-feature { position: relative; min-height: 500px; padding: 46px; overflow: hidden; color: #fff; background: linear-gradient(145deg, #08233d, #0b4766); border-radius: 8px; }
.case-feature::after { position: absolute; right: -110px; bottom: -170px; width: 360px; height: 360px; content: "OK"; color: rgba(255,255,255,.05); font-size: 230px; font-weight: 900; line-height: 1; }
.case-brand { display: flex; align-items: center; gap: 12px; }
.case-brand b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 7px; background: var(--cyan); }
.case-brand span { color: #7ce9ed; font-size: 11px; font-weight: 900; }
.case-feature > small { display: block; margin-top: 65px; color: #64dfe5; }
.case-feature h3 { margin: 10px 0 20px; font-size: 34px; }
.case-feature p { max-width: 660px; color: #bfd0db; font-size: 15px; }
.case-data { display: flex; flex-wrap: wrap; gap: 30px; margin: 40px 0; }
.case-data span { color: #a9c2d1; font-size: 12px; }
.case-data b { display: block; color: #fff; font-size: 27px; }
.case-feature > strong { position: relative; z-index: 1; color: #62e0e6; font-size: 14px; }
.case-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.case-stack article { padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: #f7fafc; transition: border-color .25s ease, transform .25s ease; }
.case-stack article:hover { border-color: #8cb8dc; transform: translateX(5px); }
.case-stack small { color: var(--blue); font-weight: 800; }
.case-stack h3 { margin: 9px 0 13px; font-size: 22px; }
.case-stack p { color: var(--muted); font-size: 14px; }
.case-stack strong { color: #0e7d91; font-size: 13px; }

/* Closing CTA and footer */
.landing-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; color: #fff; background: linear-gradient(110deg, #0b3555, #0b6a7a); }
.landing-cta .eyebrow { color: #7cebf0; }
.landing-cta h2 { max-width: 800px; }
.landing-cta .primary-btn { color: var(--navy); background: #fff; border-color: #fff; }
.site-footer { display: flex; justify-content: space-between; gap: 30px; padding: 27px max(28px, calc((100vw - var(--page)) / 2)); color: #8ea5b6; background: #041526; font-size: 12px; }
.wecom-float[hidden] { display: none; }
.wecom-float { position: fixed; z-index: 95; right: 24px; bottom: 24px; display: grid; grid-template-columns: 42px auto; align-items: center; gap: 11px; min-height: 58px; padding: 7px 18px 7px 8px; border: 1px solid rgba(94,225,229,.48); border-radius: 999px; color: #fff; background: #06223a; box-shadow: 0 18px 45px rgba(3,24,42,.28); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.wecom-float:hover { border-color: #72e7ea; box-shadow: 0 22px 52px rgba(3,24,42,.35), 0 0 0 4px rgba(72,218,224,.1); transform: translateY(-4px); }
.wecom-float-icon { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #052239; background: #64e0e4; }
.wecom-float-icon::after { position: absolute; top: -1px; right: -1px; width: 9px; height: 9px; content: ""; border: 2px solid #06223a; border-radius: 50%; background: #3fd5a4; }
.wecom-float-icon svg { width: 19px; height: 19px; }
.wecom-float-copy { display: grid; gap: 2px; }
.wecom-float-copy small { color: #87aabc; font-size: 9px; }
.wecom-float-copy strong { font-size: 12px; }

/* Authentication */
.auth-page { min-height: 100vh; background: #eef7fb; }
.auth-page .site-header { position: relative; color: var(--ink); background: rgba(255,255,255,.90); }
.auth-entry-nav { justify-self: end; }
.auth-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 90px;
  min-height: calc(100vh - var(--header-h));
  padding: 64px max(28px, calc((100vw - var(--page)) / 2));
  overflow: hidden;
}
.auth-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4,26,47,.93) 0 43%, rgba(4,26,47,.70) 54%, rgba(238,247,251,.58) 72%, #eef7fb 100%),
    url("assets/okkai-growth-architecture.png") center / cover no-repeat;
}
.auth-copy { position: relative; z-index: 1; max-width: 590px; color: #fff; }
.auth-copy .eyebrow { color: #65e2e8; }
.auth-copy h1 { margin: 0; font-size: 43px; line-height: 1.28; }
.auth-copy > p:not(.eyebrow) { margin: 24px 0 0; color: #b9cbd8; font-size: 15px; line-height: 1.9; }
.auth-points { display: grid; margin-top: 32px; border-top: 1px solid rgba(186,215,229,.24); }
.auth-points article { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(186,215,229,.18); color: #dce8ef; font-size: 13px; }
.auth-points svg { color: #5be0e6; }
.auth-card { position: relative; z-index: 2; padding: 30px; border: 1px solid rgba(187,210,225,.90); border-radius: 8px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
.auth-tabs, .tabs { display: flex; gap: 4px; padding: 4px; margin-bottom: 22px; border: 1px solid var(--line); border-radius: 7px; background: #eef4f8; }
.tab { flex: 1; min-height: 42px; background: transparent; font-size: 14px; }
.tab.active { color: var(--blue); background: #fff; box-shadow: 0 5px 16px rgba(7,25,44,.08); }
.auth-form { display: none; gap: 13px; }
.auth-form.active { display: grid; }
.auth-form label, .form-grid label, .task-form label { display: grid; gap: 7px; color: var(--ink-2); font-size: 14px; font-weight: 800; }
.auth-form input, .form-grid input, .form-grid textarea, .task-form input, .task-form textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #cbd9e4;
  border-radius: 6px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { resize: vertical; }
.auth-form input:focus, .form-grid input:focus, .form-grid textarea:focus, .task-form input:focus, .task-form textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(18,104,232,.10); background: #fff; }
.auth-form .primary-btn { width: 100%; margin-top: 4px; }
.captcha-row { display: grid; grid-template-columns: 1fr 96px; gap: 10px; }
.captcha-code { min-height: 48px; border: 1px solid #99c8d7; border-radius: 6px; color: #093551; background: #e4f9fb; cursor: pointer; font-size: 16px; font-weight: 900; }
.auth-message { min-height: 22px; margin-top: 12px; color: var(--success); font-size: 13px; font-weight: 700; }
.auth-message.error { color: var(--danger); }

/* Merchant application */
.app-page { background: #f4f8fb; }
.app-page .site-header { grid-template-columns: auto 1fr auto; }
.app-carousel { height: 34px; }
.app-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: end;
  gap: 70px;
  padding: 54px max(28px, calc((100vw - var(--page)) / 2)) 48px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #f4fbfd 58%, #e7f7fa 100%);
  border-bottom: 1px solid var(--line);
}
.app-hero::after { position: absolute; right: 7%; bottom: -55px; content: "OKK AI"; color: rgba(9,80,117,.045); font-size: 120px; font-weight: 900; line-height: 1; pointer-events: none; }
.app-hero > * { position: relative; z-index: 1; }
.app-hero h1 { max-width: 720px; margin: 0; font-size: 36px; line-height: 1.28; }
.app-hero h1 span { color: var(--blue); font-size: 25px; font-weight: 750; }
.login-notice { margin: 18px 0 0; color: #4f6d80; font-size: 14px; line-height: 1.75; }
.app-metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #b9d2df; border-bottom: 1px solid #b9d2df; }
.app-metrics article { min-width: 0; padding: 17px 15px; border-right: 1px solid #b9d2df; background: rgba(255,255,255,.45); }
.app-metrics article:last-child { border-right: 0; }
.app-metrics small { display: block; color: #587487; font-size: 13px; font-weight: 800; }
.app-metrics strong { display: block; margin-top: 7px; overflow: hidden; font-size: 22px; text-overflow: ellipsis; white-space: nowrap; }
.app-shell { display: grid; grid-template-columns: 210px minmax(0, 1fr); max-width: 1360px; min-height: 760px; margin: 0 auto; padding: 28px 28px 70px; }
.side-panel { position: sticky; top: 96px; align-self: start; display: grid; gap: 8px; padding: 24px 16px; border-radius: 8px 0 0 8px; color: #b7cad7; background: var(--navy); box-shadow: 0 24px 55px rgba(5,27,49,.16); }
.panel-title { padding: 3px 12px 18px; color: #9cb5c4; font-size: 13px; font-weight: 900; }
.side-link { justify-content: flex-start; min-height: 54px; padding: 0 14px; border-color: transparent; color: #d0dfe7; background: transparent; font-size: 15px; }
.side-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.side-link.active { color: #fff; background: rgba(18,104,232,.27); border-color: rgba(79,220,227,.35); box-shadow: inset 3px 0 0 var(--cyan); }
.workspace { min-width: 0; padding: 30px 34px 50px; border: 1px solid var(--line); border-left: 0; border-radius: 0 8px 8px 0; background: #fff; box-shadow: var(--shadow-sm); }
.workspace-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.workspace-head h2 { margin: 0; font-size: 27px; }
.workspace-head .eyebrow { margin-bottom: 8px; }
.activation-status { display: flex; align-items: center; gap: 10px; color: #506d80; font-size: 14px; font-weight: 750; }
.view { display: none; padding-top: 26px; }
.view.active { display: block; animation: rise .35s ease both; }
.panel { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 24px; }
.section-head h3 { margin: 0; font-size: 23px; }
.member-card { padding: 25px; }
.member-card header { display: grid; gap: 5px; }
.member-card header .monthly-offer strong { font-size: 36px; }
.member-card header .annual-offer strong { font-size: 36px; }
.member-card header .monthly-offer strong em,
.member-card header .annual-offer strong em { font-size: 14px; }
.member-grid .annual-price-row { grid-template-columns: 1fr; align-items: start; }
.member-grid .price-saving { flex-direction: row; align-items: center; flex-wrap: wrap; }
.member-card header .price-saving b { padding-right: 6px; padding-left: 6px; font-size: 13px; }
.member-card > p { min-height: 70px; }
.member-card ul { margin: 20px 0 24px; }
.platform-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.member-card > small { display: block; margin-top: 15px; font-size: 13px; line-height: 1.65; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label:nth-last-of-type(-n+4), .form-actions { grid-column: 1 / -1; }
.form-grid textarea { min-height: 110px; }
.authorization-grid { display: grid; gap: 20px; }
.auth-group { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #f8fbfd; }
.auth-group h3 { margin: 0 0 18px; font-size: 19px; }
.auth-platform-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.auth-platform { display: grid; gap: 14px; padding: 16px; border-left: 2px solid #c7d8e4; background: #fff; }
.auth-platform > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.auth-platform strong { font-size: 15px; }
.platform-actions .primary-btn, .platform-actions .ghost-btn { min-height: 38px; padding: 0 12px; font-size: 12px; }
.task-flow { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 9px; }
.task-flow article { min-height: 132px; padding: 20px; border-top: 2px solid #a9c3d5; background: #f4f8fb; }
.task-flow article:nth-of-type(3) { border-top-color: var(--blue); background: #edf4ff; }
.task-flow svg { color: var(--blue); }
.task-flow strong { display: block; margin-top: 17px; font-size: 16px; }
.task-flow span { display: block; margin-top: 5px; color: #506d80; font-size: 13px; }
.flow-arrow { color: #7790a3; text-align: center; }
.task-publish-button { min-height: 132px; padding: 18px; white-space: normal; }
.task-workbench { display: grid; grid-template-columns: minmax(340px, .88fr) minmax(0, 1.12fr); gap: 18px; margin-top: 18px; }
.task-form { display: grid; gap: 15px; }
.task-form h3 { margin: 0 0 4px; font-size: 20px; }
.task-form textarea { min-height: 100px; }
.tech-queue { min-width: 0; }
.task-list, .generated-output { display: grid; gap: 10px; }
.task-item { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px; border-left: 2px solid var(--cyan); background: #f5f9fb; }
.task-item div { display: grid; gap: 3px; }
.task-item strong { font-size: 14px; }
.task-item span:not(.badge) { color: var(--muted); font-size: 11px; }
.generated-output { margin-top: 16px; }
.copy-block { padding: 17px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.copy-block h4 { margin: 0 0 8px; font-size: 14px; }
.copy-block p { margin: 0; color: var(--muted); font-size: 12px; }
.onboarding-empty { padding: 24px; border: 1px dashed #9ec3d5; border-radius: 7px; background: #f3fbfc; }
.onboarding-empty strong { font-size: 15px; }
.onboarding-empty p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }

/* Merchant live workflow */
.operator-entry { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border: 1px solid #9adbe1; border-radius: 6px; color: #073b5a; background: #e9fbfc; font-size: 12px; font-weight: 850; }
.operator-entry[hidden] { display: none; }
.operator-entry svg { width: 16px; }
.member-card { display: flex; flex-direction: column; }
.member-card:focus-visible { outline: 3px solid rgba(18,104,232,.18); outline-offset: 3px; }
.member-fit { position: relative; min-height: 112px; padding: 20px 20px 18px; margin: 22px -25px 0; border-top: 1px solid #c7dce8; border-bottom: 1px solid #c7dce8; background: linear-gradient(110deg, #eef8fb, #f7fbfd); }
.member-fit::before { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; content: ""; background: var(--cyan); }
.member-fit small { display: block; margin-bottom: 9px; color: #176f82; font-size: 13px; font-weight: 900; }
.member-fit strong { display: block; color: #092942; font-size: 18px; line-height: 1.65; }
.member-card:hover .member-fit, .member-card:focus-within .member-fit { color: #fff; border-color: rgba(96,219,227,.35); background: linear-gradient(110deg, #0b3654, #0c4d68); }
.member-card:hover .member-fit small, .member-card:focus-within .member-fit small { color: #70e6eb; }
.member-card:hover .member-fit strong, .member-card:focus-within .member-fit strong { color: #fff; }
.platform-identity { display: grid !important; justify-content: initial !important; gap: 3px !important; }
.platform-identity span { color: #587487; font-size: 13px; font-weight: 750; }
.system-channel-note { align-self: center; color: var(--success); font-size: 13px; font-weight: 800; }
.merchant-task-history { min-width: 0; }
.merchant-task-row { display: grid; grid-template-columns: minmax(0,1fr) auto auto; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.merchant-task-row:last-child { border-bottom: 0; }
.merchant-task-row > div:first-child { min-width: 0; }
.merchant-task-row small, .merchant-task-row p { color: var(--muted); font-size: 13px; }
.merchant-task-row strong { display: block; margin: 4px 0; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.merchant-task-row p { margin: 0; }
.task-progress-stats { display: flex; gap: 16px; }
.task-progress-stats span { display: grid; gap: 3px; color: var(--muted); font-size: 12px; text-align: center; }
.task-progress-stats b { color: var(--ink); font-size: 17px; }
.app-toast { position: fixed; z-index: 5000; right: 24px; bottom: 24px; max-width: min(430px, calc(100vw - 32px)); padding: 14px 18px; border: 1px solid #91d8dd; border-radius: 6px; color: #07334e; background: #effcfc; box-shadow: 0 18px 50px rgba(3,26,47,.18); opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; font-size: 13px; font-weight: 800; }
.app-toast.show { opacity: 1; transform: none; }
.app-toast.error { border-color: #efb0b6; color: #9c2330; background: #fff3f4; }

/* Operator center */
.operator-page { min-width: 320px; color: #dceaf1; background: #061727; }
.operator-header { position: sticky; z-index: 80; top: 0; display: grid; grid-template-columns: 270px 1fr auto; align-items: center; min-height: 76px; padding: 0 24px; border-bottom: 1px solid rgba(154,205,224,.18); background: rgba(5,21,36,.96); backdrop-filter: blur(18px); }
.operator-brand { color: #fff; }
.operator-brand small { color: #78a5bd; }
.operator-header-status { display: flex; align-items: center; justify-content: center; gap: 9px; color: #9fb8c7; font-size: 12px; font-weight: 750; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #33d6c2; box-shadow: 0 0 0 5px rgba(51,214,194,.1); }
.operator-header .ghost-btn { color: #cfdee7; border-color: rgba(179,214,229,.24); background: rgba(255,255,255,.03); }
.operator-shell { display: grid; grid-template-columns: 270px minmax(0,1fr); min-height: calc(100vh - 76px); }
.operator-sidebar { position: sticky; top: 76px; align-self: start; display: grid; align-content: start; gap: 6px; min-height: calc(100vh - 76px); padding: 31px 18px; border-right: 1px solid rgba(154,205,224,.15); background: #071c30; }
.operator-nav-label { padding: 0 12px 15px; color: #5f8298; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.operator-nav { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 11px; min-height: 52px; padding: 0 13px; border: 1px solid transparent; color: #9eb7c7; background: transparent; text-align: left; }
.operator-nav svg { width: 18px; }
.operator-nav span { font-size: 13px; font-weight: 800; }
.operator-nav b { display: grid; place-items: center; min-width: 24px; height: 20px; padding: 0 6px; border-radius: 10px; color: #79a1b8; background: rgba(255,255,255,.05); font-size: 10px; }
.operator-nav:hover, .operator-nav.active { color: #fff; border-color: rgba(60,195,212,.24); background: rgba(18,104,232,.15); }
.operator-nav.active { box-shadow: inset 3px 0 0 var(--cyan); }
.provider-health { display: grid; gap: 4px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(154,205,224,.13); }
.provider-health > strong { padding: 0 11px 8px; color: #5f8298; font-size: 10px; }
.provider-health > span { display: grid; grid-template-columns: 17px 1fr; align-items: center; gap: 2px 8px; padding: 9px 11px; }
.provider-health svg { grid-row: 1 / 3; width: 15px; color: #35cfb9; }
.provider-health .missing svg, .provider-health .missing small { color: #ff8791; }
.provider-health b { color: #cadbe4; font-size: 11px; }
.provider-health small { color: #6f96ab; font-size: 9px; }
.operator-workspace { min-width: 0; padding: 36px 38px 70px; color: #10263a; background: #eef5f8; }
.operator-topline { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; max-width: 1540px; margin: 0 auto 28px; }
.operator-topline .eyebrow { margin-bottom: 8px; }
.operator-topline h1 { margin: 0; font-size: 28px; }
.operator-metrics { display: flex; border-top: 1px solid #aac6d4; border-bottom: 1px solid #aac6d4; }
.operator-metrics span { min-width: 105px; padding: 11px 16px; border-right: 1px solid #c5d9e3; color: #688397; font-size: 10px; }
.operator-metrics span:last-child { border-right: 0; }
.operator-metrics b { display: block; margin-top: 3px; color: #0b2b44; font-size: 18px; }
.operator-view { display: none; max-width: 1540px; margin: 0 auto; }
.operator-view.active { display: block; animation: rise .28s ease both; }
.task-console { display: grid; grid-template-columns: 350px minmax(0,1fr); min-height: 760px; border: 1px solid #c7d9e3; background: #fff; box-shadow: 0 22px 55px rgba(7,35,56,.08); }
.task-inbox { border-right: 1px solid #d4e2e9; background: #f7fafc; }
.console-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 17px 20px; border-bottom: 1px solid #d4e2e9; }
.console-head strong { font-size: 13px; }
.console-head span { color: var(--muted); font-size: 10px; }
.console-head select { width: auto; min-height: 34px; padding: 5px 9px; font-size: 11px; }
.operator-task-list { display: grid; max-height: 705px; overflow: auto; }
.operator-task-item { display: grid; grid-template-columns: 5px minmax(0,1fr) auto; gap: 12px; align-items: center; min-height: 96px; padding: 15px 17px; border: 0; border-bottom: 1px solid #dde7ed; color: #142b3f; background: transparent; text-align: left; }
.operator-task-item:hover, .operator-task-item.active { background: #edf7fa; }
.task-status-mark { width: 4px; height: 36px; border-radius: 2px; background: #9eb5c4; }
.task-status-mark.submitted { background: #e7a52a; }
.task-status-mark.publishing { background: var(--blue); }
.task-status-mark.completed { background: var(--success); }
.operator-task-item span:nth-child(2) { min-width: 0; }
.operator-task-item small, .operator-task-item em { display: block; overflow: hidden; color: #738c9c; font-size: 9px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.operator-task-item strong { display: block; margin: 5px 0; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.operator-task-item > b { color: #527489; font-size: 10px; }
.task-detail { min-width: 0; padding: 27px 30px 40px; overflow: auto; }
.operator-empty { display: grid; place-items: center; align-content: center; min-height: 350px; color: #718c9e; text-align: center; }
.operator-empty.compact { min-height: 130px; }
.operator-empty svg { width: 34px; height: 34px; margin-bottom: 14px; color: #66b9c7; }
.operator-empty strong { color: #17354b; font-size: 15px; }
.operator-empty p { margin: 7px 0 0; font-size: 11px; }
.detail-command { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid #d5e2e9; }
.detail-command h2 { max-width: 660px; margin: 12px 0 5px; font-size: 24px; }
.detail-command p { margin: 0; color: var(--muted); font-size: 12px; }
.task-command-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.task-command-buttons button { min-height: 39px; padding: 0 12px; font-size: 11px; }
.task-facts { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); margin: 22px 0; border-top: 1px solid #bcd1dd; border-bottom: 1px solid #bcd1dd; }
.task-facts span { padding: 15px; border-right: 1px solid #d4e2e9; }
.task-facts span:last-child { border-right: 0; }
.task-facts small { display: block; color: var(--muted); font-size: 9px; }
.task-facts b { display: block; margin-top: 4px; font-size: 14px; }
.task-brief { padding: 22px 0; }
.task-brief h3 { margin: 0 0 14px; font-size: 15px; }
.task-brief p { margin: 7px 0; color: #527084; font-size: 12px; line-height: 1.7; }
.connection-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; color: var(--muted); font-size: 11px; }
.connection-chips span { padding: 6px 9px; border: 1px solid #b9d5df; border-radius: 12px; color: #166478; background: #f0fbfc; }
.content-variants { border-top: 1px solid #d4e2e9; }
.variant-stack { display: grid; gap: 12px; padding-top: 16px; }
.variant-editor { padding: 18px; border-left: 3px solid #51cbd3; background: #f5f9fb; }
.variant-editor header { display: flex; justify-content: space-between; margin-bottom: 11px; }
.variant-editor header span { font-size: 13px; font-weight: 850; }
.variant-editor header b { color: #49758b; font-size: 9px; }
.variant-editor input, .variant-editor textarea, .publish-result input { width: 100%; padding: 10px 12px; border: 1px solid #c7d9e3; border-radius: 5px; outline: none; color: #142b3f; background: #fff; font: inherit; font-size: 12px; }
.variant-editor textarea { min-height: 130px; margin: 8px 0; resize: vertical; line-height: 1.7; }
.variant-editor button { min-height: 34px; font-size: 10px; }
.section-command { display: flex; justify-content: space-between; padding: 25px 28px; border-bottom: 1px solid #c5dae4; background: #fff; }
.section-command h2 { margin: 0; font-size: 22px; }
.section-command p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.review-list, .publish-queue { display: grid; background: #fff; }
.review-row { display: grid; grid-template-columns: minmax(0,1fr) 180px auto; align-items: center; gap: 24px; padding: 21px 28px; border-bottom: 1px solid #d9e5eb; }
.review-row small, .review-row p { display: block; margin: 0; color: var(--muted); font-size: 10px; }
.review-row strong { display: block; margin: 4px 0; font-size: 15px; }
.review-row > span { color: var(--muted); font-size: 10px; }
.review-row > div:last-child { display: flex; gap: 8px; }
.publish-row { display: grid; grid-template-columns: 72px minmax(0,1fr) 100px minmax(240px,.7fr); align-items: center; gap: 20px; padding: 19px 25px; border-bottom: 1px solid #d9e5eb; }
.publish-mode { color: #1e7184; font-size: 9px; font-weight: 900; }
.publish-row small, .publish-row p { display: block; margin: 0; color: var(--muted); font-size: 10px; }
.publish-row strong { display: block; margin: 4px 0; font-size: 14px; }
.publish-result { display: flex; align-items: center; gap: 7px; }
.publish-result button { flex: 0 0 auto; min-height: 36px; padding: 0 11px; font-size: 10px; }
.publish-result a { color: var(--blue); font-size: 11px; font-weight: 800; }
.report-command { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; padding: 36px; color: #dceaf1; background: linear-gradient(115deg, #08223a, #0a4662); }
.report-intro h2 { margin: 8px 0 16px; color: #fff; font-size: 27px; }
.report-intro > p:last-child { max-width: 530px; color: #b1cbd8; font-size: 12px; line-height: 1.8; }
.report-process { display: grid; grid-template-columns: 1fr 28px 1fr 28px 1fr; align-items: center; gap: 8px; }
.report-process > span { display: grid; align-content: center; min-height: 116px; padding: 18px; border-top: 2px solid rgba(75,221,228,.78); background: rgba(2,20,34,.35); }
.report-process > span b { color: #57dce2; font-size: 11px; }
.report-process > span strong { margin: 8px 0 4px; color: #fff; font-size: 14px; }
.report-process > span small { color: #90afbf; font-size: 9px; }
.report-process > svg { width: 17px; color: #58b7c8; }
.template-intake { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 250px; border: 1px solid #c6d9e3; border-top: 0; background: #fff; box-shadow: 0 16px 42px rgba(7,35,56,.07); }
.template-intake-copy { padding: 32px 35px; border-right: 1px solid #d6e4ea; }
.template-kicker, .report-archive-head span { color: #16889a; font-size: 9px; font-weight: 900; }
.template-intake h3 { margin: 8px 0 9px; font-size: 21px; }
.template-intake-copy > p { max-width: 570px; margin: 0 0 23px; color: #5f7b8d; font-size: 11px; line-height: 1.75; }
.template-download { display: grid; grid-template-columns: 36px minmax(0,1fr) 22px; align-items: center; gap: 13px; max-width: 520px; min-height: 68px; padding: 12px 15px; border: 1px solid #b9d7e2; color: #0a3956; background: #f1fafb; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.template-download:hover { border-color: #4dcbd5; background: #e8f9fa; transform: translateY(-2px); }
.template-download > svg:first-child { width: 27px; color: #0aa7b8; }
.template-download > svg:last-child { width: 17px; color: #3c7588; }
.template-download span { min-width: 0; }
.template-download strong, .template-download small { display: block; }
.template-download strong { font-size: 12px; }
.template-download small { margin-top: 4px; overflow: hidden; color: #6d8998; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.template-upload-zone { display: grid; align-content: center; gap: 13px; padding: 32px 36px; background: #f6fafc; }
.template-file-picker { display: grid; grid-template-columns: 44px minmax(0,1fr); align-items: center; gap: 15px; min-height: 94px; padding: 18px; border: 1px dashed #88b9ca; color: #173e55; background: #fff; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease; }
.template-file-picker:hover { border-color: #1bb9c6; box-shadow: inset 0 0 0 2px rgba(27,185,198,.08); }
.template-file-picker > svg { width: 32px; color: #12a5b6; }
.template-file-picker strong, .template-file-picker small { display: block; }
.template-file-picker strong { font-size: 13px; }
.template-file-picker small { margin-top: 5px; overflow: hidden; color: #718b9b; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.template-upload-zone .primary-btn { min-height: 45px; }
.template-upload-zone .primary-btn svg { width: 16px; }
.template-upload-zone .primary-btn:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.template-status { min-height: 18px; margin: 0; color: #6d8797; font-size: 9px; }
.template-status.ready { color: #087d8f; }
.template-status.working { color: #1567b6; }
.template-status.success { color: #14805f; }
.template-status.error { color: #b73543; }
.manual-report-entry { margin-top: 18px; border: 1px solid #c7dae3; background: #fff; }
.manual-report-entry summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 60px; padding: 0 24px; color: #17384e; cursor: pointer; list-style: none; }
.manual-report-entry summary::-webkit-details-marker { display: none; }
.manual-report-entry summary span { display: flex; align-items: center; gap: 10px; }
.manual-report-entry summary svg { width: 17px; color: #168c9d; }
.manual-report-entry summary strong { font-size: 12px; }
.manual-report-entry summary small { color: #7b929f; font-size: 9px; }
.manual-report-entry[open] summary { border-bottom: 1px solid #d6e4ea; }
.manual-report-entry .report-form { padding: 24px; }
.manual-report-entry .report-form label { color: #47677a; }
.manual-report-entry .report-form input { border-color: #bdd3de; color: #17384e; background: #f8fbfc; }
.manual-report-entry .report-form input:focus { border-color: #34bac7; }
.report-archive-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 36px; padding-bottom: 14px; border-bottom: 1px solid #b9ced9; }
.report-archive-head h2 { margin: 5px 0 0; font-size: 24px; }
.report-archive-head p { margin: 0; color: #6f8898; font-size: 10px; }
.report-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.report-form label { display: grid; gap: 6px; color: #b9d0dc; font-size: 10px; font-weight: 800; }
.report-form label:nth-child(4) { grid-column: 1 / -1; }
.report-form input { width: 100%; min-height: 43px; padding: 9px 12px; border: 1px solid rgba(175,217,230,.3); border-radius: 5px; outline: 0; color: #fff; background: rgba(3,21,36,.42); font-size: 12px; }
.report-form input:focus { border-color: #58dbe2; box-shadow: 0 0 0 3px rgba(88,219,226,.1); }
.report-form button { align-self: end; min-height: 43px; }
.report-list { display: grid; gap: 14px; margin-top: 18px; }
.competition-report { padding: 26px 28px; border: 1px solid #c6d9e3; background: #fff; box-shadow: 0 12px 32px rgba(7,35,56,.05); }
.competition-report header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.competition-report header small, .competition-report header p { color: var(--muted); font-size: 10px; }
.competition-report h3 { margin: 5px 0; font-size: 20px; }
.competition-report header p { margin: 0; }
.report-scope { display: grid; grid-template-columns: repeat(3,1fr); margin: 23px 0; border-top: 1px solid #b8d0dc; border-bottom: 1px solid #b8d0dc; }
.report-scope > span { padding: 20px; border-right: 1px solid #d2e1e8; }
.report-scope > span:last-child { border-right: 0; }
.report-scope small, .report-scope em { display: block; color: var(--muted); font-size: 9px; font-style: normal; }
.report-scope strong { display: block; margin: 7px 0; color: #0a3652; font-size: 28px; }
.competition-report footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 9px; }
.report-view-button { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; padding: 0 12px; border: 1px solid #a9cbd7; color: #0b6075; background: #f3fafb; font-size: 10px; font-weight: 850; }
.report-view-button:hover { border-color: #38bdc8; color: #074659; background: #e9f8f9; }
.report-view-button svg { width: 14px; }

/* Formal competition report */
.report-dialog { width: min(1040px, calc(100vw - 40px)); max-height: calc(100vh - 40px); padding: 0; border: 0; color: #102b3e; background: #edf4f7; box-shadow: 0 40px 110px rgba(0,17,31,.45); }
.report-dialog::backdrop { background: rgba(1,13,24,.78); backdrop-filter: blur(5px); }
.report-dialog-toolbar { position: sticky; z-index: 2; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 68px; padding: 0 20px 0 25px; border-bottom: 1px solid #bfd2dc; background: rgba(248,251,252,.97); }
.report-dialog-toolbar > div:first-child span, .report-dialog-toolbar > div:first-child strong { display: block; }
.report-dialog-toolbar > div:first-child span { color: #16889a; font-size: 8px; font-weight: 900; }
.report-dialog-toolbar > div:first-child strong { margin-top: 3px; font-size: 13px; }
.report-dialog-actions { display: flex; gap: 7px; }
.report-dialog-actions button { min-height: 38px; padding: 0 12px; font-size: 10px; }
.report-dialog-actions .icon-btn { width: 38px; padding: 0; }
.formal-report { width: min(900px, calc(100% - 50px)); margin: 28px auto 55px; background: #fff; box-shadow: 0 20px 50px rgba(5,34,52,.12); }
.formal-report-cover { position: relative; min-height: 310px; padding: 38px 48px; overflow: hidden; color: #fff; background: #071f36; }
.formal-report-cover::after { position: absolute; right: -90px; bottom: -150px; width: 420px; height: 420px; border: 48px solid rgba(41,201,210,.1); border-radius: 50%; content: ""; }
.formal-report-brand { display: flex; align-items: center; gap: 11px; }
.formal-report-brand > span { display: grid; place-items: center; width: 39px; height: 39px; color: #fff; background: linear-gradient(145deg, #0b2c4a 55%, #0db6c2 56%); font-size: 12px; font-weight: 900; }
.formal-report-brand strong, .formal-report-brand small { display: block; }
.formal-report-brand strong { font-size: 17px; }
.formal-report-brand small { margin-top: 2px; color: #77a8bc; font-size: 7px; }
.formal-report-number { position: absolute; top: 40px; right: 48px; text-align: right; }
.formal-report-number small, .formal-report-number strong { display: block; }
.formal-report-number small { color: #6f9baf; font-size: 7px; }
.formal-report-number strong { margin-top: 4px; color: #b7d5df; font-size: 10px; }
.formal-report-cover > p { margin: 62px 0 8px; color: #48d6dd; font-size: 11px; font-weight: 900; }
.formal-report-cover h1 { position: relative; z-index: 1; max-width: 680px; margin: 0; font-size: 36px; line-height: 1.25; }
.formal-report-meta { position: absolute; z-index: 1; bottom: 34px; display: flex; gap: 23px; color: #a9c7d3; font-size: 9px; }
.formal-report-section { padding: 38px 48px 0; }
.formal-section-title { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid #c9dbe3; }
.formal-section-title > span { color: #10a6b5; font-size: 11px; font-weight: 900; }
.formal-section-title small, .formal-section-title h2 { display: block; }
.formal-section-title small { color: #6b8797; font-size: 7px; font-weight: 900; }
.formal-section-title h2 { margin: 3px 0 0; font-size: 16px; }
.formal-business-profile dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.formal-business-profile dl > div { padding: 17px 0; border-bottom: 1px solid #e0e9ed; }
.formal-business-profile dl > div:nth-child(odd) { padding-right: 24px; border-right: 1px solid #e0e9ed; }
.formal-business-profile dl > div:nth-child(even) { padding-left: 24px; }
.formal-business-profile dt { color: #718b99; font-size: 8px; }
.formal-business-profile dd { margin: 5px 0 0; font-size: 11px; font-weight: 800; }
.formal-metrics { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 22px; border-top: 1px solid #b8d1dc; border-bottom: 1px solid #b8d1dc; }
.formal-metrics article { padding: 24px; border-right: 1px solid #d1e0e6; }
.formal-metrics article:last-child { border-right: 0; }
.formal-metrics small { color: #657f8f; font-size: 9px; }
.formal-metrics strong { display: block; margin: 8px 0 4px; color: #0b4260; font-size: 31px; }
.formal-metrics p { margin: 0; color: #668696; font-size: 8px; }
.formal-source-table { margin-top: 20px; border: 1px solid #cbdce4; }
.formal-source-table > div { display: grid; grid-template-columns: 1.3fr repeat(3,.8fr) .7fr; align-items: center; min-height: 43px; border-bottom: 1px solid #dce7eb; }
.formal-source-table > div:last-child { border-bottom: 0; }
.formal-source-table > div:first-child { min-height: 34px; color: #668292; background: #f2f7f9; font-size: 8px; font-weight: 900; }
.formal-source-table span, .formal-source-table strong, .formal-source-table b { padding: 0 14px; font-size: 9px; }
.formal-source-table b.ready { color: #13815f; }
.formal-source-table b.failed { color: #b73948; }
.formal-report-note { margin: 35px 48px 0; padding: 20px 22px; border-left: 3px solid #19b7c2; color: #526f80; background: #f3f8fa; }
.formal-report-note strong { color: #173c53; font-size: 10px; }
.formal-report-note p { margin: 7px 0 0; font-size: 9px; line-height: 1.75; }
.formal-report-footer { display: flex; justify-content: space-between; margin-top: 36px; padding: 18px 48px; border-top: 1px solid #d8e4e9; color: #748d9b; font-size: 7px; }

/* Public content pool */
.public-content-page { background: #edf5f8; }
.content-header { display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 0 max(22px, calc((100vw - 1120px) / 2)); border-bottom: 1px solid var(--line); background: #fff; }
.content-shell { max-width: 980px; min-height: 70vh; margin: 0 auto; padding: 70px 28px; }
.published-article { padding: 55px 65px; border: 1px solid #c8dae3; background: #fff; box-shadow: 0 24px 60px rgba(7,35,56,.08); }
.article-source { display: flex; justify-content: space-between; color: #18798e; font-size: 10px; font-weight: 900; }
.published-article h1 { max-width: 800px; margin: 25px 0 18px; font-size: 36px; line-height: 1.32; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid #cddde5; color: var(--muted); font-size: 11px; }
.article-body { padding: 34px 0; color: #314d61; font-size: 16px; line-height: 2; }
.merchant-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding: 1px; background: #cadde6; }
.merchant-proof div { padding: 18px; background: #f3f8fa; }
.merchant-proof small { display: block; color: var(--muted); font-size: 9px; }
.merchant-proof strong { display: block; margin-top: 6px; font-size: 12px; }
.merchant-proof p { grid-column: 1 / -1; margin: 0; padding: 18px; color: var(--muted); background: #fff; font-size: 11px; }
.content-loading, .content-error { display: grid; place-items: center; align-content: center; min-height: 420px; gap: 12px; text-align: center; }
.content-loading span { width: 34px; height: 34px; border: 3px solid #c7dce5; border-top-color: var(--blue); border-radius: 50%; animation: spin .8s linear infinite; }
.content-error p { color: var(--muted); }

/* Reveal */
.reveal-ready { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-ready.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --page: 1040px; }
  .site-header { gap: 16px; }
  .main-nav a { padding: 0 10px; font-size: 12px; }
  .mission-copy { width: 590px; max-width: 60vw; }
  .flagship-line { font-size: 50px; }
  .flagship-line-shift { font-size: 34px; }
  .advantage-stage { grid-template-columns: minmax(0,1fr) 410px; gap: 30px 42px; }
  .advantage-thesis h3 { font-size: 28px; }
  .sharing-system { gap: 50px; }
  .app-page .main-nav { display: none; }
  .app-shell { grid-template-columns: 190px minmax(0,1fr); }
  .member-grid { grid-template-columns: 1fr; }
  .task-workbench { grid-template-columns: 1fr; }
  .operator-header { grid-template-columns: 230px 1fr auto; }
  .operator-shell { grid-template-columns: 230px minmax(0,1fr); }
  .task-console { grid-template-columns: 310px minmax(0,1fr); }
  .task-command-buttons { max-width: 310px; }
  .report-command { gap: 28px; }
}

@media (max-width: 1080px) {
  .advantage-stage {
    --advantage-row-inset: 0px;
    grid-template-areas: "thesis" "contrast" "paths" "decision";
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 62px;
  }
  .work-section { padding-top: 62px; }
  .advantage-contrast { min-height: 225px; }
  .public-pricing { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto 1fr auto; padding: 0 22px; }
  .landing-header .main-nav { display: none; }
  .mission-hero { min-height: 780px; padding: 64px 28px 160px; }
  .hero-art { background-image: linear-gradient(90deg, rgba(248,252,254,.98) 0%, rgba(248,252,254,.84) 58%, rgba(248,252,254,.18) 100%), url("assets/okkai-growth-architecture.png"); background-position: center, 64% center; }
  .mission-copy { width: 590px; max-width: 78vw; }
  .flagship-line { font-size: 48px; }
  .flagship-line-shift { font-size: 32px; }
  .hero-proofbar { right: 28px; left: 28px; }
  .hero-proofbar article { padding: 14px 10px; }
  .customer-question-section, .work-section, .plans-section, .guarantee-section, .case-section, .landing-cta { padding: 82px 28px; }
  .customer-question-section { padding-bottom: 0; }
  .work-section { padding-top: 62px; }
  .section-title h2, .landing-cta h2 { font-size: 34px; }
  .ai-demand-compass { grid-template-columns: 1fr; min-height: 0; }
  .ai-demand-compass::before { display: none; }
  .ai-demand-copy { padding: 48px 48px 24px; }
  .demand-compass { width: min(500px,86vw); margin: 0 auto 34px; }
  .advantage-stage { --advantage-row-inset: 0px; grid-template-areas: "thesis" "contrast" "paths" "decision"; grid-template-columns: 1fr; gap: 34px; padding-top: 62px; }
  .advantage-contrast { min-height: 225px; }
  .advantage-decision { display: grid; justify-items: center; gap: 5px; max-width: 660px; text-align: center; }
  .advantage-decision::before, .advantage-decision::after { display: none; }
  .advantage-decision span { display: block; white-space: nowrap; }
  .sharing-system, .case-layout { grid-template-columns: 1fr; }
  .work-compare { grid-template-columns: 1fr; }
  .work-compare article { min-height: 0; }
  .public-pricing { grid-template-columns: 1fr; }
  .sharing-cycle { min-height: 470px; }
  .landing-cta { grid-template-columns: 1fr; }
  .auth-shell { grid-template-columns: 1fr; gap: 38px; padding: 54px 28px 70px; }
  .auth-page .auth-entry-nav { display: flex; }
  .auth-shell::before { background: linear-gradient(180deg, rgba(4,26,47,.91) 0 42%, rgba(238,247,251,.86) 66%, #eef7fb 100%), url("assets/okkai-growth-architecture.png") center / cover no-repeat; }
  .auth-copy { max-width: 700px; }
  .auth-card { max-width: 620px; width: 100%; justify-self: center; }
  .app-hero { grid-template-columns: 1fr; gap: 32px; padding: 45px 28px; background: linear-gradient(145deg, #fff, #e9f8fb); }
  .app-shell { grid-template-columns: 1fr; padding: 22px; }
  .side-panel { position: static; grid-template-columns: repeat(4,1fr); gap: 5px; padding: 8px; border-radius: 8px 8px 0 0; }
  .panel-title { display: none; }
  .side-link { justify-content: center; min-height: 49px; padding: 0 8px; font-size: 12px; }
  .workspace { border-left: 1px solid var(--line); border-radius: 0 0 8px 8px; }
  .task-flow { grid-template-columns: 1fr 1fr; }
  .flow-arrow { display: none; }
  .task-publish-button { min-height: 90px; }
  .operator-header { grid-template-columns: 1fr auto; }
  .operator-header-status { display: none; }
  .operator-shell { grid-template-columns: 1fr; }
  .operator-sidebar { position: sticky; z-index: 60; top: 76px; grid-template-columns: repeat(4,1fr); min-height: 0; padding: 8px; border-right: 0; border-bottom: 1px solid rgba(154,205,224,.2); }
  .operator-nav-label, .provider-health { display: none; }
  .operator-nav { grid-template-columns: 18px 1fr auto; min-height: 46px; padding: 0 9px; }
  .operator-workspace { padding: 27px 22px 55px; }
  .task-console { grid-template-columns: 280px minmax(0,1fr); }
  .task-detail { padding: 24px 22px; }
  .detail-command { display: grid; }
  .task-command-buttons { justify-content: flex-start; max-width: none; }
  .review-row { grid-template-columns: 1fr auto; }
  .review-row > span { display: none; }
  .publish-row { grid-template-columns: 60px minmax(0,1fr) 90px; }
  .publish-result { grid-column: 2 / -1; }
  .report-command { grid-template-columns: 1fr; }
  .template-intake { grid-template-columns: 1fr; }
  .template-intake-copy { border-right: 0; border-bottom: 1px solid #d6e4ea; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  :root { --header-h: 68px; }
  .site-header { grid-template-columns: auto auto; justify-content: space-between; min-height: 68px; padding: 0 16px; }
  .brand { gap: 9px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 9px; }
  .site-header > .primary-btn { min-height: 42px; padding: 0 13px; font-size: 12px; }
  .site-header > .primary-btn svg { display: none; }
  .header-actions { gap: 6px; }
  .header-actions .session-badge, .header-actions .ghost-btn { display: none; }
  .brand-carousel { height: 34px; }
  .brand-track { gap: 22px; }
  .brand-memory { display: none; }
  .mission-hero { min-height: 770px; padding: 52px 20px 220px; align-items: start; }
  .hero-art { background-image: linear-gradient(180deg, rgba(248,252,254,.98) 0 58%, rgba(248,252,254,.70) 77%, rgba(248,252,254,.96) 100%), url("assets/okkai-growth-architecture.png"); background-position: center, 67% bottom; }
  .mission-copy { width: 100%; max-width: none; }
  .eyebrow { font-size: 12px; margin-bottom: 15px; }
  .flagship-pretitle { margin-bottom: 14px; font-size: 14px; }
  .flagship-line { font-size: 38px; line-height: 1.13; }
  .flagship-line + .flagship-line { margin-top: 10px; }
  .flagship-line-shift { font-size: 26px; line-height: 1.34; }
  .flagship-line b::after { height: 9px; }
  .flagship-outcome { gap: 12px; margin-top: 23px; padding: 13px 0; }
  .flagship-outcome span { gap: 5px; }
  .flagship-outcome b { font-size: 17px; }
  .flagship-outcome small { font-size: 12px; }
  .hero-text { margin-top: 20px; font-size: 14px; line-height: 1.82; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 23px; }
  .hero-actions .primary-btn, .hero-actions .ghost-btn { min-width: 0; padding: 0 10px; font-size: 12px; }
  .hero-actions svg { width: 15px; }
  .hero-proofbar { right: 20px; bottom: 20px; left: 20px; grid-template-columns: 1fr 1fr; }
  .hero-proofbar article { padding: 11px 8px; border-right: 1px solid rgba(91,131,160,.24); border-bottom: 1px solid rgba(91,131,160,.24); }
  .hero-proofbar article:nth-child(2) { border-right: 0; }
  .hero-proofbar article:nth-child(n+3) { border-bottom: 0; }
  .hero-proofbar small { font-size: 10px; }
  .hero-proofbar b { font-size: 14px; }
  .hero-proofbar span { font-size: 11px; }
  .customer-question-section, .work-section, .plans-section, .guarantee-section, .case-section, .landing-cta { padding: 68px 20px; }
  .customer-question-section { padding-bottom: 0; }
  .work-section { padding-top: 48px; }
  .section-title { margin-bottom: 35px; }
  .section-title h2, .landing-cta h2 { font-size: 29px; line-height: 1.28; }
  .ai-demand-compass { margin-bottom: 0; }
  .ai-demand-copy { padding: 32px 22px 16px; }
  .ai-demand-copy h3 { margin: 14px 0 20px; font-size: 27px; }
  .market-signal-kicker { font-size: 10px; }
  .ai-platform-line { gap: 8px 16px; margin-bottom: 23px; font-size: 12px; }
  .ai-platform-line strong + strong::before { left: -10px; }
  .demand-facts { grid-template-columns: 1fr 1fr 1fr; }
  .demand-facts > span { min-height: 92px; padding: 14px 10px; text-align: center; }
  .demand-facts > span:first-child { padding-left: 4px; }
  .demand-facts small { min-height: 31px; font-size: 10px; line-height: 1.4; }
  .demand-facts b { font-size: 24px; }
  .demand-facts b em { display: block; margin: 4px 0 0; font-size: 9px; }
  .demand-shift { margin-top: 20px; font-size: 14px; }
  .demand-conclusion { gap: 11px; margin-top: 17px; padding: 15px 16px; font-size: 16px; }
  .demand-conclusion svg { width: 19px; }
  .data-disclaimer { font-size: 9px; }
  .demand-compass { width: min(340px,94vw); margin-bottom: 24px; }
  .compass-platform { width: 78px; height: 78px; }
  .compass-platform::after { inset: 6px; }
  .compass-platform { gap: 3px; }
  .compass-platform strong { font-size: 14px; }
  .compass-platform small { min-width: 34px; padding-top: 4px; font-size: 9px; }
  .compass-core { width: 120px; height: 120px; }
  .compass-core small { max-width: 86px; font-size: 9px; }
  .compass-core strong { font-size: 26px; }
  .compass-core span { font-size: 10px; }
  .advantage-stage { padding-top: 48px; }
  .advantage-thesis { padding-bottom: 25px; }
  .advantage-thesis h3 { margin-top: 12px; font-size: 22px; }
  .advantage-thesis > span { font-size: 11px; }
  .advantage-thesis p { font-size: 14px; line-height: 1.85; }
  .advantage-contrast { grid-template-columns: minmax(0,1fr) 42px minmax(0,1fr); min-height: 205px; }
  .contrast-side { padding: 28px 12px; }
  .contrast-side > span { min-height: 38px; font-size: 12px; }
  .contrast-side > strong { font-size: 35px; }
  .contrast-side > strong small { font-size: 10px; }
  .contrast-side > p { font-size: 11px; }
  .contrast-pivot { width: 42px; height: 82px; }
  .contrast-pivot svg { width: 15px; height: 15px; margin-bottom: 5px; }
  .contrast-pivot b { font-size: 12px; }
  .advantage-paths { grid-template-columns: 1fr; }
  .advantage-paths article { grid-template-columns: 46px minmax(0,1fr); gap: 15px; padding: 28px 0; }
  .advantage-paths article + article { padding: 28px 0; border-top: 1px solid #b8d5df; border-left: 0; }
  .advantage-path-number { font-size: 24px; }
  .advantage-path-copy h3 { margin: 9px 0 11px; font-size: 21px; }
  .advantage-path-copy > span { font-size: 11px; }
  .advantage-path-copy p { font-size: 14px; line-height: 1.8; }
  .advantage-decision { gap: 4px; font-size: 15px; text-align: center; }
  .advantage-decision::before, .advantage-decision::after { display: none; }
  .advantage-decision span { font-size: 21px; }
  .work-compare article { padding: 32px 24px; }
  .work-compare article > span { font-size: 15px; }
  .work-compare h3 { font-size: 22px; }
  .work-compare li { font-size: 15px; }
  .public-pricing .pricing-card.member-card { padding: 25px; }
  .public-pricing .pricing-card .member-fit { margin-right: -25px; margin-left: -25px; }
  .monthly-offer strong, .member-card header .monthly-offer strong { font-size: 32px; }
  .monthly-offer small, .annual-offer small { font-size: 15px; }
  .annual-price-row { grid-template-columns: minmax(155px,1.15fr) minmax(0,.85fr); gap: 8px; }
  .annual-offer strong, .member-card header .annual-offer strong { font-size: 32px; }
  .price-saving { gap: 7px; }
  .sharing-narrative > h3 { font-size: 25px; }
  .sharing-narrative > p { font-size: 15px; }
  .sharing-progression { margin-top: 32px; }
  .sharing-progression small { font-size: 13px; }
  .sharing-progression strong { font-size: 21px; }
  .sharing-cycle { min-height: 390px; }
  .cycle-orbit { width: 330px; }
  .cycle-orbit::before { inset: 50px; }
  .cycle-orbit::after { inset: 72px; }
  .cycle-core { width: 122px; height: 122px; }
  .cycle-core small { font-size: 9px; }
  .cycle-core strong { font-size: 18px; }
  .cycle-core span { font-size: 10px; }
  .cycle-node { width: 94px; height: 94px; }
  .cycle-node svg { width: 16px; height: 16px; margin-bottom: 5px; }
  .cycle-node span { font-size: 10px; }
  .cycle-node strong { font-size: 14px; }
  .cycle-return, .cycle-health { bottom: 20px; }
  .case-feature { min-height: 450px; padding: 30px 24px; }
  .case-feature > small { margin-top: 45px; }
  .case-feature h3 { font-size: 28px; }
  .case-data { gap: 20px; }
  .case-stack article { padding: 27px 23px; }
  .site-footer { flex-direction: column; gap: 5px; padding: 24px 20px; }
  .auth-page .site-header { grid-template-columns: auto 1fr; }
  .auth-page .brand small { display: none; }
  .auth-entry-nav { justify-self: end; }
  .auth-entry-nav a { min-height: 36px; padding: 0 9px; font-size: 11px; }
  .auth-entry-nav a svg { display: none; }
  .auth-shell { gap: 32px; padding: 44px 20px 58px; }
  .auth-shell::before { background: linear-gradient(180deg, rgba(4,26,47,.92) 0 39%, rgba(238,247,251,.92) 62%, #eef7fb 100%), url("assets/okkai-growth-architecture.png") 65% center / cover no-repeat; }
  .auth-copy h1 { font-size: 31px; }
  .auth-copy > p:not(.eyebrow) { font-size: 13px; }
  .auth-card { padding: 21px 18px; }
  .app-page .site-header { grid-template-columns: auto auto; }
  .app-page .site-header > .main-nav { display: none; }
  .app-hero { padding: 36px 20px 32px; }
  .app-hero h1 { font-size: 25px; }
  .app-hero h1 span { display: block; margin-top: 8px; font-size: 18px; white-space: nowrap; }
  .app-metrics { grid-template-columns: 1fr 1fr; }
  .app-metrics article:nth-child(2) { border-right: 0; }
  .app-metrics article:nth-child(-n+2) { border-bottom: 1px solid #b9d2df; }
  .app-shell { padding: 14px 12px 45px; }
  .side-panel { grid-template-columns: 1fr 1fr; }
  .side-link { font-size: 12px; }
  .workspace { padding: 22px 17px 36px; }
  .workspace-head { align-items: flex-start; }
  .activation-status { display: grid; justify-items: end; font-size: 11px; }
  .panel { padding: 21px 16px; }
  .section-head { align-items: flex-start; }
  .form-grid, .auth-platform-list, .task-flow { grid-template-columns: 1fr; }
  .form-grid label, .form-grid label:nth-last-of-type(-n+4), .form-actions { grid-column: auto; }
  .task-flow article, .task-publish-button { min-height: 86px; }
  .platform-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .member-fit { min-height: 0; }
  .merchant-task-row { grid-template-columns: 1fr auto; }
  .task-progress-stats { grid-row: 2; grid-column: 1 / -1; justify-content: flex-start; }
  .operator-header { min-height: 68px; padding: 0 14px; }
  .operator-header .header-actions .ghost-btn { display: none; }
  .operator-header .header-actions .primary-btn { min-height: 40px; padding: 0 10px; font-size: 10px; }
  .operator-sidebar { top: 68px; grid-template-columns: repeat(4, minmax(0,1fr)); overflow-x: auto; }
  .operator-nav { display: flex; justify-content: center; min-width: 70px; padding: 0 5px; }
  .operator-nav span { font-size: 9px; }
  .operator-nav b { display: none; }
  .operator-workspace { padding: 22px 12px 44px; }
  .operator-topline { display: grid; }
  .operator-topline h1 { font-size: 23px; }
  .operator-metrics { width: 100%; }
  .operator-metrics span { min-width: 0; flex: 1; padding: 9px 11px; }
  .task-console { grid-template-columns: 1fr; }
  .task-inbox { border-right: 0; border-bottom: 1px solid #d4e2e9; }
  .operator-task-list { max-height: 300px; }
  .task-detail { padding: 20px 16px 32px; }
  .task-facts { grid-template-columns: 1fr 1fr; }
  .task-facts span:nth-child(2) { border-right: 0; }
  .task-facts span:nth-child(-n+2) { border-bottom: 1px solid #d4e2e9; }
  .review-row { grid-template-columns: 1fr; padding: 18px; }
  .review-row > div:last-child { justify-content: flex-start; }
  .publish-row { grid-template-columns: 52px 1fr; padding: 16px; }
  .publish-row > .badge { grid-row: 1; grid-column: 2; justify-self: end; }
  .publish-row > div:nth-child(2) { grid-column: 1 / -1; }
  .publish-result { grid-column: 1 / -1; }
  .report-command { padding: 27px 20px; }
  .report-process { grid-template-columns: 1fr; }
  .report-process > span { min-height: 86px; }
  .report-process > svg { justify-self: center; transform: rotate(90deg); }
  .template-intake-copy, .template-upload-zone { padding: 25px 20px; }
  .template-file-picker { grid-template-columns: 34px minmax(0,1fr); min-height: 86px; padding: 15px; }
  .template-file-picker > svg { width: 26px; }
  .manual-report-entry summary { padding: 0 16px; }
  .manual-report-entry summary small { display: none; }
  .report-archive-head { display: grid; gap: 8px; }
  .report-form { grid-template-columns: 1fr; }
  .report-form label:nth-child(4) { grid-column: auto; }
  .report-scope { grid-template-columns: 1fr; }
  .report-scope > span { border-right: 0; border-bottom: 1px solid #d2e1e8; }
  .report-scope > span:last-child { border-bottom: 0; }
  .competition-report { padding: 22px 18px; }
  .competition-report footer { display: grid; }
  .report-dialog { width: 100vw; max-height: 100vh; }
  .report-dialog-toolbar { padding: 0 12px; }
  .report-dialog-toolbar > div:first-child { display: none; }
  .report-dialog-actions { width: 100%; }
  .report-dialog-actions button { flex: 1; padding: 0 7px; }
  .report-dialog-actions .icon-btn { flex: 0 0 38px; }
  .formal-report { width: calc(100% - 20px); margin: 10px auto 25px; }
  .formal-report-cover { min-height: 295px; padding: 28px 24px; }
  .formal-report-number { top: 29px; right: 24px; }
  .formal-report-cover > p { margin-top: 58px; }
  .formal-report-cover h1 { font-size: 28px; }
  .formal-report-meta { right: 24px; bottom: 27px; left: 24px; flex-wrap: wrap; gap: 9px 16px; }
  .formal-report-section { padding: 30px 22px 0; }
  .formal-business-profile dl { grid-template-columns: 1fr; }
  .formal-business-profile dl > div:nth-child(odd), .formal-business-profile dl > div:nth-child(even) { padding: 14px 0; border-right: 0; }
  .formal-metrics { grid-template-columns: 1fr; }
  .formal-metrics article { border-right: 0; border-bottom: 1px solid #d1e0e6; }
  .formal-metrics article:last-child { border-bottom: 0; }
  .formal-source-table { overflow-x: auto; }
  .formal-source-table > div { min-width: 560px; }
  .formal-report-note { margin: 28px 22px 0; }
  .formal-report-footer { padding: 18px 22px; }
  .published-article { padding: 35px 22px; }
  .published-article h1 { font-size: 27px; }
  .merchant-proof { grid-template-columns: 1fr; }
  .merchant-proof p { grid-column: auto; }
  .wecom-float { right: 14px; bottom: 14px; grid-template-columns: 42px; width: 56px; min-height: 56px; padding: 7px; }
  .wecom-float-copy { display: none; }
}

@media print {
  @page { size: A4; margin: 9mm; }
  body * { visibility: hidden !important; }
  .report-dialog, .report-dialog * { visibility: visible !important; }
  .report-dialog { position: absolute; inset: 0; display: block; width: 100%; max-height: none; margin: 0; overflow: visible; background: #fff; box-shadow: none; }
  .report-dialog-toolbar { display: none; }
  .formal-report { width: 100%; margin: 0; box-shadow: none; }
  .formal-report-cover { min-height: 250px; padding: 28px 34px; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .formal-report-cover > p { margin-top: 45px; }
  .formal-report-meta { bottom: 26px; }
  .formal-report-section { padding: 28px 34px 0; break-inside: avoid; }
  .formal-report-note { margin: 26px 34px 0; break-inside: avoid; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .formal-report-footer { padding: 15px 34px; }
}

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

@keyframes marquee { to { transform: translateX(-100%); } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes markReveal { from { opacity: 0; transform: scale(.75) rotate(-5deg); } to { opacity: 1; transform: none; } }
@keyframes loadLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes welcomeLine { 0% { width: 0; opacity: 0; } 35% { opacity: 1; } 100% { width: 70vw; opacity: 0; } }
@keyframes ambientShift { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes compassSpin { to { transform: rotate(360deg); } }
@keyframes compassSpinReverse { to { transform: rotate(-360deg); } }
@keyframes compassOrbit { from { transform: translate(-50%,-50%) rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); } }
@keyframes compassNodePulse { 0%, 100% { box-shadow: inset 0 0 30px rgba(26,201,209,.08), 0 10px 30px rgba(0,12,25,.22), 0 0 0 rgba(66,220,227,0); transform: translate(-50%,-50%) scale(1); } 50% { box-shadow: inset 0 0 34px rgba(26,201,209,.14), 0 12px 34px rgba(0,12,25,.26), 0 0 22px rgba(66,220,227,.14); transform: translate(-50%,-50%) scale(1.035); } }
@keyframes contrastPulse { 0%, 100% { opacity: .45; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.04); } }
