:root {
  --paper: #f7f6f3;
  --paper-deep: #eeece7;
  --ink: #231815;
  --muted: #6f6965;
  --line: rgba(35, 24, 21, 0.16);
  --coral: #ff6c5c;
  --pink: #e851ae;
  --violet: #735cdd;
  --blue: #5d8fe7;
  --gradient: linear-gradient(100deg, var(--blue), var(--violet) 38%, var(--pink) 68%, var(--coral));
  --sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic UI", Meiryo, sans-serif;
  --jp: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--jp);
  line-height: 1.85;
  letter-spacing: 0.01em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
::selection { color: white; background: var(--pink); }

.theme-switcher {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 2.5vw;
  color: rgba(255,255,255,.66);
  background: #171312;
  font: 700 9px/1 var(--mono);
  letter-spacing: .14em;
}
.theme-options { display: flex; align-self: stretch; }
.theme-button {
  min-width: 122px;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.15);
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
}
.theme-button:last-child { border-right: 1px solid rgba(255,255,255,.15); }
.theme-button span { margin-right: 8px; opacity: .6; }
.theme-button[aria-pressed="true"] { color: var(--ink); background: var(--paper); }
.theme-button:disabled { cursor: not-allowed; opacity: .34; }
.theme-status { justify-self: end; }

.site-header {
  position: fixed;
  inset: 48px 0 auto;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 14px 2.5vw;
  border-bottom: 1px solid rgba(35, 24, 21, 0.08);
  background: rgba(247, 246, 243, 0.7);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 700; font-size: 14px; }
.brand-mark { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid; border-radius: 50%; font-size: 11px; }
.brand small { font: 700 9px/1 var(--mono); letter-spacing: .14em; padding-left: 10px; border-left: 1px solid var(--line); }
.global-nav { display: flex; gap: 34px; }
.global-nav a, .header-cta { font: 700 10px/1.2 var(--mono); letter-spacing: .1em; }
.global-nav a { position: relative; padding: 8px 0; }
.global-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .25s; }
.global-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; padding: 14px 18px; color: white; background: var(--ink); }
.header-cta span, .button span { padding-left: 18px; }

.grid-bg {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(35,24,21,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,24,21,.042) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  overflow: hidden;
  padding: 174px 4.5vw 72px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-no, .card-index, .plan-name, .resource-type {
  margin: 0;
  font: 700 10px/1.4 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .closing h2 {
  margin: 24px 0 0;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -.075em;
}
.hero h1 { max-width: 850px; font-size: clamp(56px, 6.35vw, 108px); line-height: .92; }
.hero h1 em, .concept-statement em {
  font-style: normal;
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-lead { margin: 38px 0 0; font-size: clamp(16px, 1.35vw, 21px); font-weight: 600; line-height: 1.75; }
.cta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 245px; padding: 15px 20px; border: 1px solid var(--ink); font-weight: 700; font-size: 14px; transition: transform .2s, color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--ink); }
.button-light { background: var(--paper); }
.trust-list { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 28px 0 0; padding: 0; list-style: none; color: var(--muted); font: 700 10px/1.4 var(--mono); letter-spacing: .05em; }
.trust-list li::before { content: "●"; margin-right: 7px; color: var(--coral); font-size: 7px; vertical-align: 1px; }
.hero-visual { position: absolute; z-index: 1; inset: 0 0 0 42%; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--paper) 0%, transparent 32%); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; mix-blend-mode: multiply; }
.hero-visual .rpo-art { display: none; }
.corporate-art { display: none; }
.visual-caption { position: absolute; z-index: 2; right: 4vw; bottom: 40px; margin: 0; font: 700 9px/1 var(--mono); letter-spacing: .16em; }
.scroll-cue { position: absolute; left: 4.5vw; bottom: 28px; display: flex; align-items: center; gap: 12px; font: 700 9px/1 var(--mono); letter-spacing: .14em; }
.scroll-cue span { width: 44px; height: 1px; background: var(--ink); }
.page-index { position: absolute; right: 4.5vw; bottom: 22px; margin: 0; font: 700 9px/1 var(--mono); letter-spacing: .12em; }

.section { position: relative; padding: 150px 4.5vw; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 90px 170px minmax(0, 1fr); align-items: start; }
.section-heading .section-no { grid-column: 1; grid-row: 1; }
.section-heading .eyebrow { grid-column: 2; grid-row: 1; }
.section-heading h2 { grid-column: 2 / 4; grid-row: 2; max-width: 1050px; font-size: clamp(48px, 6vw, 88px); line-height: .98; }
.section-intro { grid-column: 3; max-width: 570px; margin: 34px 0 0; font-size: 15px; }

.issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 94px 0 0 90px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.issue-grid article { min-height: 280px; padding: 26px; border-right: 1px solid var(--ink); }
.issue-grid article:first-child { border-left: 1px solid var(--ink); }
.issue-grid span, .deliverables span, .strength-list span, .flow-list span { font: 700 11px/1 var(--mono); }
.issue-grid h3 { margin: 52px 0 12px; font: 500 clamp(26px, 2.4vw, 38px)/1.2 var(--sans); letter-spacing: -.04em; }
.issue-grid p { max-width: 280px; margin: 0; font-size: 13px; color: var(--muted); }
.stat-band { display: grid; grid-template-columns: 1fr 2fr; align-items: center; gap: 56px; margin: 72px 0 0 90px; padding: 32px 0; border-top: 1px solid var(--line); }
.stat-number { margin: 0; font: 500 clamp(86px, 10vw, 150px)/.8 var(--sans); letter-spacing: -.08em; color: transparent; background: var(--gradient); background-clip: text; -webkit-background-clip: text; }
.stat-number span { font-size: .35em; letter-spacing: -.03em; }
.stat-band strong { font-size: 18px; }
.stat-band div p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }

.concept { overflow: hidden; }
.cycle { display: grid; grid-template-columns: repeat(4, 1fr); margin: 96px 0 0 90px; padding: 0; list-style: none; border: 1px solid var(--ink); }
.cycle li { position: relative; min-height: 270px; padding: 24px; border-right: 1px solid var(--ink); background: rgba(247,246,243,.76); }
.cycle li:last-child { border-right: 0; }
.cycle li:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -15px; top: 50%; display: grid; width: 30px; height: 30px; place-items: center; transform: translateY(-50%); background: var(--paper); font: 700 15px/1 var(--mono); }
.cycle span { display: block; font: 500 44px/1 var(--sans); letter-spacing: -.06em; }
.cycle small { display: block; margin-top: 8px; font: 700 9px/1 var(--mono); letter-spacing: .13em; color: var(--muted); }
.cycle h3 { margin: 72px 0 0; font: 500 32px/1 var(--sans); }
.cycle p { margin: 10px 0 0; font-size: 12px; color: var(--muted); }
.concept-statement { margin: 130px 0 0 26%; font: 500 clamp(34px, 4.8vw, 72px)/1.14 var(--sans); letter-spacing: -.055em; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 90px 0 0 90px; border-top: 1px solid var(--ink); }
.value-grid article { padding: 26px 30px 48px 0; border-bottom: 1px solid var(--ink); }
.value-grid article + article { padding-left: 30px; border-left: 1px solid var(--ink); }
.value-grid h3 { margin: 76px 0 20px; font: 500 clamp(36px, 3vw, 48px)/1 var(--sans); letter-spacing: -.05em; }
.value-grid strong { display: block; min-height: 60px; font-size: 16px; }
.value-grid article > p:last-child { color: var(--muted); font-size: 13px; }

.dark-section { color: white; background: var(--ink); }
.dark-section .section-heading .section-no, .dark-section .section-heading .eyebrow { color: #bbb2ac; }
.deliverables { display: grid; grid-template-columns: repeat(3, 1fr); margin: 90px 0 0 90px; border-top: 1px solid rgba(255,255,255,.5); border-left: 1px solid rgba(255,255,255,.5); }
.deliverables article { min-height: 210px; padding: 24px; border-right: 1px solid rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.5); }
.deliverables h3 { margin: 52px 0 4px; font: 500 30px/1 var(--sans); }
.deliverables p { margin: 0; color: #bbb2ac; font-size: 12px; }

.strength-list { margin: 90px 0 0 90px; border-top: 1px solid var(--ink); }
.strength-list article { display: grid; grid-template-columns: 100px minmax(220px, .8fr) 1.2fr; align-items: baseline; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--ink); }
.strength-list h3 { margin: 0; font: 500 30px/1 var(--sans); letter-spacing: -.04em; }
.strength-list p { max-width: 560px; margin: 0; color: var(--muted); font-size: 13px; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 10px; margin: 90px 0 0 90px; }
.plan-grid article { position: relative; min-height: 365px; padding: 30px; border: 1px solid var(--ink); background: rgba(247,246,243,.85); }
.plan-grid .featured { min-height: 405px; color: white; background: var(--ink); }
.plan-tag { position: absolute; inset: 0 0 auto; margin: 0; padding: 9px 20px; text-align: center; color: var(--ink); background: var(--gradient); font: 700 9px/1 var(--mono); letter-spacing: .15em; }
.featured .plan-name { margin-top: 22px; color: #bbb2ac; }
.plan-grid h3 { margin: 22px 0 0; font: 500 clamp(25px, 2.2vw, 35px)/1.2 var(--sans); letter-spacing: -.05em; }
.plan-price { margin: 98px 0 0; font: 500 clamp(36px, 3.8vw, 58px)/1 var(--sans); letter-spacing: -.06em; }
.plan-price span { display: block; margin-bottom: 12px; font: 700 10px/1 var(--mono); letter-spacing: .12em; }
.plan-price small { font-size: .35em; letter-spacing: 0; }
.plan-grid article > p:last-child { margin-top: 18px; color: var(--muted); font-size: 12px; }
.featured > p:last-child { color: #bbb2ac; }
.fine-print { margin: 20px 0 0 90px; font-size: 11px; color: var(--muted); }

.flow-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 90px 0 0 90px; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.flow-list li { position: relative; padding: 24px 22px 34px 0; border-bottom: 1px solid var(--ink); }
.flow-list li + li { padding-left: 22px; border-left: 1px solid var(--ink); }
.flow-list h3 { margin: 66px 0 12px; font: 500 20px/1.25 var(--sans); letter-spacing: -.03em; }
.flow-list p { margin: 0; color: var(--muted); font-size: 11px; }

.faq-list { margin: 90px 0 0 90px; border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--ink); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 2px; cursor: pointer; list-style: none; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font: 300 28px/1 var(--sans); transition: transform .25s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 720px; margin: 0; padding: 0 0 30px; color: var(--muted); font-size: 13px; }

.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin: 90px 0 0 90px; border: 1px solid var(--ink); }
.resource-grid article { min-height: 360px; padding: 34px; background: rgba(247,246,243,.86); }
.resource-grid article + article { border-left: 1px solid var(--ink); }
.resource-grid h3 { max-width: 460px; margin: 80px 0 16px; font: 500 clamp(26px, 2.5vw, 38px)/1.25 var(--sans); letter-spacing: -.05em; }
.resource-grid article > p:nth-of-type(2) { max-width: 520px; color: var(--muted); font-size: 13px; }
.resource-grid a { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 18px; border-top: 1px solid; font-weight: 700; font-size: 13px; }

.closing { position: relative; min-height: 92svh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 130px 24px; text-align: center; background: var(--paper); border-top: 1px solid var(--line); }
.closing-orb { position: absolute; width: min(55vw, 720px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 38% 34%, rgba(255,255,255,.9) 0 8%, rgba(255,108,92,.45) 24%, rgba(232,81,174,.30) 42%, rgba(93,143,231,.14) 62%, transparent 72%); filter: blur(4px); transform: translateY(10%); }
.closing > *:not(.closing-orb) { position: relative; z-index: 1; }
.closing h2 { font-size: clamp(58px, 7.7vw, 116px); line-height: .92; }
.closing > p:not(.section-no):not(.eyebrow):not(.assurance) { margin: 34px 0 0; font-size: 16px; font-weight: 600; }
.closing .section-no { position: absolute; left: 4.5vw; top: 38px; }
.closing .eyebrow { margin-top: 22px; }
.closing .cta-row { justify-content: center; }
.assurance { margin: 18px 0 0; color: var(--muted); font-size: 11px; }

.floating-contact { display: none; }

.site-footer { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; padding: 65px 4.5vw 30px; color: white; background: var(--ink); font-size: 11px; }
.footer-brand { display: flex; flex-direction: column; font-family: var(--sans); }
.footer-brand strong { font-size: 26px; }
.footer-brand span { color: #b9b1ab; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; font: 700 10px/1.8 var(--mono); }
.copyright { grid-column: 1 / -1; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.25); color: #8f8782; font: 700 9px/1 var(--mono); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .global-nav { display: none; }
  .brand small { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 900px; padding-top: 120px; align-items: start; }
  .hero-copy { padding-top: 40px; }
  .hero-visual { inset: 32% -15% 0 5%; opacity: .9; }
  .hero-visual::after { background: linear-gradient(180deg, var(--paper) 0%, transparent 20%); }
  .section { padding: 110px 24px; }
  .section-heading { grid-template-columns: 70px 1fr; }
  .section-heading .section-no { grid-column: 1; }
  .section-heading .eyebrow { grid-column: 2; }
  .section-heading h2 { grid-column: 1 / -1; margin-top: 28px; }
  .section-intro { grid-column: 1 / -1; }
  .issue-grid, .stat-band, .cycle, .value-grid, .deliverables, .strength-list, .plan-grid, .flow-list, .faq-list, .resource-grid { margin-left: 0; }
  .issue-grid, .value-grid, .plan-grid, .deliverables { grid-template-columns: 1fr; }
  .issue-grid article, .issue-grid article:first-child { min-height: 220px; border-left: 1px solid var(--ink); }
  .value-grid article + article { padding-left: 0; border-left: 0; }
  .cycle { grid-template-columns: repeat(2, 1fr); }
  .cycle li:nth-child(2) { border-right: 0; }
  .cycle li:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .cycle li:nth-child(2)::after { content: "↓"; top: auto; right: 50%; bottom: -15px; transform: translateX(50%); }
  .concept-statement { margin-left: 0; }
  .deliverables { grid-template-columns: repeat(2, 1fr); }
  .strength-list article { grid-template-columns: 70px 1fr; }
  .strength-list p { grid-column: 2; }
  .plan-grid { grid-template-columns: repeat(3, minmax(240px, 1fr)); overflow-x: auto; padding-bottom: 10px; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li + li { padding-left: 0; border-left: 0; }
}

@media (max-width: 640px) {
  .theme-switcher { height: 46px; grid-template-columns: auto 1fr; padding: 0 12px; }
  .theme-switcher-label, .theme-status { display: none; }
  .theme-options { width: 100%; }
  .theme-button { min-width: 0; flex: 1; padding: 0 9px; font-size: 8px; }
  .site-header { min-height: 62px; padding: 11px 16px; }
  .header-cta { padding: 12px 14px; }
  .hero { min-height: 866px; padding: 146px 20px 60px; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 58px); line-height: .94; }
  .hero-lead { margin-top: 26px; }
  .button { width: 100%; min-width: 0; }
  .trust-list { max-width: 310px; }
  .hero-visual { inset: 40% -42% -3% -8%; }
  .visual-caption { right: 18px; bottom: 30px; }
  .scroll-cue { display: none; }
  .page-index { right: 20px; }
  .section { padding: 92px 20px; }
  .section-heading h2 { font-size: clamp(44px, 12vw, 62px); }
  .section-intro { margin-top: 24px; font-size: 14px; }
  .desktop-only { display: none; }
  .issue-grid, .cycle, .value-grid, .deliverables, .strength-list, .plan-grid, .flow-list, .faq-list, .resource-grid { margin-top: 62px; }
  .stat-band { grid-template-columns: 1fr; gap: 30px; margin-top: 52px; }
  .cycle { grid-template-columns: 1fr; }
  .cycle li { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .cycle li:last-child { border-bottom: 0; }
  .cycle li:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -15px; transform: translateX(50%); }
  .cycle li:nth-child(2)::after { right: 50%; }
  .cycle h3 { margin-top: 48px; }
  .concept-statement { margin-top: 90px; font-size: 36px; }
  .deliverables { grid-template-columns: 1fr; }
  .strength-list article { grid-template-columns: 52px 1fr; gap: 10px; }
  .strength-list h3 { font-size: 26px; }
  .strength-list p { grid-column: 1 / -1; padding-left: 62px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-grid article + article { border-top: 1px solid var(--ink); border-left: 0; }
  .closing { min-height: 780px; padding: 110px 20px; }
  .closing h2 { font-size: clamp(52px, 14vw, 72px); }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* Pattern 02: RPO-inspired, warm and approachable */
html[data-theme="rpo"] {
  --paper: #ffffff;
  --paper-deep: #f3f4f8;
  --ink: #494949;
  --muted: #747474;
  --line: rgba(73, 73, 73, .13);
  --coral: #af403a;
  --pink: #cf7e83;
  --violet: #9abe9a;
  --blue: #f1c94e;
  --gradient: linear-gradient(90deg, #c67c82, #a5bd94 52%, #f0cf60);
}
html[data-theme="rpo"] body { background: #fff; }
html[data-theme="rpo"] ::selection { background: #af403a; }
html[data-theme="rpo"] .theme-switcher { background: #414141; }
html[data-theme="rpo"] .theme-button[aria-pressed="true"] { color: white; background: #af403a; }
html[data-theme="rpo"] .site-header {
  border-bottom: 0;
  background: rgba(255,255,255,.94);
  box-shadow: 0 7px 24px rgba(50,50,50,.06);
}
html[data-theme="rpo"] .brand-mark { color: white; border-color: #af403a; background: #af403a; }
html[data-theme="rpo"] .global-nav a,
html[data-theme="rpo"] .header-cta { font-family: var(--jp); font-size: 12px; letter-spacing: .04em; }
html[data-theme="rpo"] .header-cta { border-radius: 999px; background: #af403a; }
html[data-theme="rpo"] .grid-bg {
  background-color: #fff;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(240,201,78,.9) 0 8px, transparent 9px),
    radial-gradient(circle at 91% 14%, rgba(154,190,154,.8) 0 18px, transparent 19px),
    radial-gradient(circle at 78% 86%, rgba(175,64,58,.55) 0 12px, transparent 13px),
    radial-gradient(rgba(73,73,73,.08) 1.2px, transparent 1.4px);
  background-size: auto, auto, auto, 12px 12px;
  background-position: center;
}
html[data-theme="rpo"] .hero {
  min-height: 100svh;
  grid-template-columns: .9fr 1.1fr;
  background-color: #fff;
}
html[data-theme="rpo"] .hero::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -85px;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165,189,148,.18), rgba(165,189,148,.04) 64%, transparent 66%);
}
html[data-theme="rpo"] .hero h1 {
  max-width: 700px;
  font-family: var(--jp);
  font-size: clamp(50px, 5.5vw, 82px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: .025em;
}
html[data-theme="rpo"] .hero h1 em {
  color: #af403a;
  background: none;
  -webkit-text-fill-color: currentColor;
}
html[data-theme="rpo"] .hero .eyebrow { color: #af403a; font-family: var(--jp); letter-spacing: .08em; }
html[data-theme="rpo"] .hero-lead { color: #565656; font-weight: 600; }
html[data-theme="rpo"] .button { border-color: transparent; border-radius: 999px; }
html[data-theme="rpo"] .button-dark { color: white; background: #4b4b4b; }
html[data-theme="rpo"] .button-light { border: 1px solid #af403a; color: #af403a; background: #fff; }
html[data-theme="rpo"] .trust-list li:nth-child(1)::before { color: #af403a; }
html[data-theme="rpo"] .trust-list li:nth-child(2)::before { color: #9abe9a; }
html[data-theme="rpo"] .trust-list li:nth-child(3)::before { color: #f1c94e; }
html[data-theme="rpo"] .hero-visual { inset: 10% -3% 0 43%; }
html[data-theme="rpo"] .hero-visual::after { background: linear-gradient(90deg, white 0%, transparent 23%); }
html[data-theme="rpo"] .hero-visual .vision-art { display: none; }
html[data-theme="rpo"] .hero-visual .rpo-art { display: block; object-fit: contain; object-position: center bottom; mix-blend-mode: normal; }
html[data-theme="rpo"] .visual-caption { display: none; }
html[data-theme="rpo"] .scroll-cue span { background: #af403a; }

html[data-theme="rpo"] .section { padding-top: 132px; padding-bottom: 132px; border-top: 0; }
html[data-theme="rpo"] .section:nth-of-type(even) { background-color: #f4f5f9; }
html[data-theme="rpo"] .section-heading { display: block; max-width: 980px; margin: 0 auto; text-align: center; }
html[data-theme="rpo"] .section-heading .section-no { position: absolute; left: 4.5vw; top: 54px; color: #aaa; }
html[data-theme="rpo"] .section-heading .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #af403a; font-family: var(--jp); font-size: 12px; letter-spacing: .08em; }
html[data-theme="rpo"] .section-heading .eyebrow::before {
  content: "";
  width: 38px;
  height: 6px;
  border-radius: 10px;
  background: linear-gradient(90deg, #c67c82 0 33%, #a5bd94 33% 66%, #f0cf60 66%);
}
html[data-theme="rpo"] .section-heading h2 {
  margin-top: 24px;
  max-width: none;
  font-family: var(--jp);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: .04em;
}
html[data-theme="rpo"] .section-intro { max-width: 650px; margin: 26px auto 0; font-size: 14px; }

html[data-theme="rpo"] .issue-grid {
  gap: 22px;
  max-width: 1120px;
  margin: 76px auto 0;
  border: 0;
}
html[data-theme="rpo"] .issue-grid article,
html[data-theme="rpo"] .issue-grid article:first-child {
  min-height: 300px;
  padding: 32px;
  border: 0;
  border-radius: 42px;
  background: white;
  box-shadow: 0 12px 30px rgba(62,62,62,.11);
}
html[data-theme="rpo"] .issue-grid article:nth-child(1) { border-top: 7px solid #c67c82; }
html[data-theme="rpo"] .issue-grid article:nth-child(2) { border-top: 7px solid #a5bd94; }
html[data-theme="rpo"] .issue-grid article:nth-child(3) { border-top: 7px solid #f0cf60; }
html[data-theme="rpo"] .issue-grid h3 { margin-top: 62px; font-family: var(--jp); font-weight: 800; }
html[data-theme="rpo"] .stat-band {
  max-width: 1120px;
  margin: 42px auto 0;
  padding: 34px 48px;
  border: 0;
  border-radius: 34px;
  background: #f4f5f9;
}
html[data-theme="rpo"] .stat-number { color: #af403a; background: none; -webkit-text-fill-color: currentColor; }

html[data-theme="rpo"] .cycle {
  gap: 16px;
  max-width: 1120px;
  margin: 76px auto 0;
  border: 0;
}
html[data-theme="rpo"] .cycle li {
  min-height: 285px;
  padding: 26px;
  border: 0;
  border-radius: 38px;
  background: white;
  box-shadow: 0 10px 28px rgba(62,62,62,.1);
}
html[data-theme="rpo"] .cycle li:not(:last-child)::after { color: #af403a; background: transparent; }
html[data-theme="rpo"] .cycle span { color: #c67c82; }
html[data-theme="rpo"] .cycle h3 { font-family: var(--jp); font-weight: 800; }
html[data-theme="rpo"] .concept-statement { margin-left: auto; margin-right: auto; text-align: center; font-family: var(--jp); font-weight: 800; }
html[data-theme="rpo"] .concept-statement em { color: #af403a; background: none; -webkit-text-fill-color: currentColor; }

html[data-theme="rpo"] .value-grid,
html[data-theme="rpo"] .deliverables,
html[data-theme="rpo"] .plan-grid,
html[data-theme="rpo"] .resource-grid {
  gap: 22px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  border: 0;
}
html[data-theme="rpo"] .value-grid article,
html[data-theme="rpo"] .value-grid article + article,
html[data-theme="rpo"] .deliverables article,
html[data-theme="rpo"] .resource-grid article,
html[data-theme="rpo"] .resource-grid article + article {
  padding: 34px;
  border: 0;
  border-radius: 40px;
  background: white;
  box-shadow: 0 11px 28px rgba(62,62,62,.1);
}
html[data-theme="rpo"] .value-grid h3 { color: #af403a; font-family: var(--jp); font-weight: 800; }
html[data-theme="rpo"] .dark-section { color: #494949; background: #f4f5f9 !important; }
html[data-theme="rpo"] .dark-section .section-heading .section-no { color: #aaa; }
html[data-theme="rpo"] .dark-section .section-heading .eyebrow { color: #af403a; }
html[data-theme="rpo"] .deliverables { grid-template-columns: repeat(3, 1fr); }
html[data-theme="rpo"] .deliverables article { min-height: 220px; }
html[data-theme="rpo"] .deliverables h3 { color: #af403a; font-family: var(--jp); font-weight: 800; }
html[data-theme="rpo"] .deliverables p { color: #777; }

html[data-theme="rpo"] .strengths { background: #fff !important; }
html[data-theme="rpo"] .strength-list { max-width: 1020px; margin-left: auto; margin-right: auto; border: 0; }
html[data-theme="rpo"] .strength-list article {
  margin-bottom: 18px;
  padding: 30px 34px;
  border: 0;
  border-left: 7px solid #af403a;
  border-radius: 24px;
  background: #f4f5f9;
}
html[data-theme="rpo"] .strength-list article:nth-child(2) { border-left-color: #a5bd94; }
html[data-theme="rpo"] .strength-list article:nth-child(3) { border-left-color: #f0cf60; }
html[data-theme="rpo"] .strength-list article:nth-child(4) { border-left-color: #c67c82; }
html[data-theme="rpo"] .strength-list h3 { font-family: var(--jp); font-weight: 800; }

html[data-theme="rpo"] .plans { background-color: #f4f5f9 !important; }
html[data-theme="rpo"] .plan-grid article {
  min-height: 390px;
  border: 0;
  border-radius: 38px;
  background: white;
  box-shadow: 0 12px 28px rgba(62,62,62,.12);
}
html[data-theme="rpo"] .plan-grid .featured { min-height: 420px; color: #494949; border: 3px solid #af403a; background: white; }
html[data-theme="rpo"] .plan-tag { border-radius: 34px 34px 0 0; color: white; background: #af403a; }
html[data-theme="rpo"] .featured .plan-name,
html[data-theme="rpo"] .featured > p:last-child { color: #777; }
html[data-theme="rpo"] .plan-grid h3 { font-family: var(--jp); font-weight: 800; }
html[data-theme="rpo"] .plan-price { color: #af403a; }
html[data-theme="rpo"] .fine-print { max-width: 1120px; margin-left: auto; margin-right: auto; }

html[data-theme="rpo"] .flow-list {
  gap: 14px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  border: 0;
}
html[data-theme="rpo"] .flow-list li,
html[data-theme="rpo"] .flow-list li + li {
  min-height: 250px;
  padding: 25px 22px;
  border: 0;
  border-radius: 28px;
  background: #f4f5f9;
}
html[data-theme="rpo"] .flow-list span { color: #af403a; }
html[data-theme="rpo"] .flow-list h3 { font-family: var(--jp); font-weight: 800; }

html[data-theme="rpo"] .faq { background: #f4f5f9 !important; }
html[data-theme="rpo"] .faq-list { max-width: 980px; margin-left: auto; margin-right: auto; border: 0; }
html[data-theme="rpo"] .faq details { margin-bottom: 12px; padding: 0 26px; border: 0; border-radius: 18px; background: white; box-shadow: 0 5px 18px rgba(62,62,62,.06); }
html[data-theme="rpo"] .faq summary span { color: #af403a; }
html[data-theme="rpo"] .resources { background-color: #fff !important; }
html[data-theme="rpo"] .resource-grid article + article { border: 0; }
html[data-theme="rpo"] .resource-grid h3 { font-family: var(--jp); font-weight: 800; }
html[data-theme="rpo"] .resource-grid a { color: #af403a; }

html[data-theme="rpo"] .closing { color: #4b4b4b; background: #f4f5f9; }
html[data-theme="rpo"] .closing h2 { font-family: var(--jp); font-size: clamp(48px, 6vw, 82px); font-weight: 800; line-height: 1.25; letter-spacing: .04em; }
html[data-theme="rpo"] .closing-orb { background: radial-gradient(circle at 38% 34%, rgba(255,255,255,.95) 0 12%, rgba(240,207,96,.26) 25%, rgba(198,124,130,.2) 43%, rgba(165,189,148,.15) 63%, transparent 72%); }
html[data-theme="rpo"] .floating-contact {
  position: fixed;
  z-index: 18;
  right: 24px;
  bottom: 24px;
  width: 132px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-align: center;
  background: rgba(175,64,58,.94);
  box-shadow: 0 10px 28px rgba(88,39,35,.22);
}
html[data-theme="rpo"] .floating-contact small { margin-bottom: 6px; font: 600 12px/1 Georgia, serif; }
html[data-theme="rpo"] .floating-contact strong { font-size: 13px; line-height: 1.45; }

@media (max-width: 960px) {
  html[data-theme="rpo"] .hero { grid-template-columns: 1fr; }
  html[data-theme="rpo"] .hero-visual { inset: 39% -12% 0 8%; }
  html[data-theme="rpo"] .deliverables { grid-template-columns: repeat(2, 1fr); }
  html[data-theme="rpo"] .cycle { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  html[data-theme="rpo"] .hero { min-height: 880px; padding-top: 136px; }
  html[data-theme="rpo"] .hero h1 { font-size: 40px; line-height: 1.22; letter-spacing: .015em; }
  html[data-theme="rpo"] .hero-visual { inset: 48% -34% -1% -5%; }
  html[data-theme="rpo"] .hero-visual::after { background: linear-gradient(180deg, white 0%, transparent 20%); }
  html[data-theme="rpo"] .section { padding-top: 96px; padding-bottom: 96px; }
  html[data-theme="rpo"] .section-heading h2 { font-size: 36px; line-height: 1.4; }
  html[data-theme="rpo"] .issue-grid,
  html[data-theme="rpo"] .value-grid,
  html[data-theme="rpo"] .deliverables,
  html[data-theme="rpo"] .resource-grid { grid-template-columns: 1fr; }
  html[data-theme="rpo"] .cycle { grid-template-columns: 1fr; }
  html[data-theme="rpo"] .stat-band { padding: 30px; }
  html[data-theme="rpo"] .plan-grid { grid-template-columns: repeat(3, minmax(260px, 1fr)); }
  html[data-theme="rpo"] .floating-contact { width: 94px; right: 14px; bottom: 14px; }
  html[data-theme="rpo"] .floating-contact small { font-size: 10px; }
  html[data-theme="rpo"] .floating-contact strong { font-size: 11px; }
}

/* Pattern 03: Beyondge corporate palette */
html[data-theme="corporate"] {
  --paper: #ffffff;
  --paper-deep: #edf9f5;
  --ink: #24292d;
  --muted: #657078;
  --line: rgba(36, 41, 45, .16);
  --coral: #52d5ad;
  --pink: #52d5ad;
  --violet: #32b991;
  --blue: #90ead0;
  --gradient: linear-gradient(100deg, #52d5ad, #32b991);
}
html[data-theme="corporate"] body { background: #fff; }
html[data-theme="corporate"] ::selection { color: #24292d; background: #52d5ad; }
html[data-theme="corporate"] .theme-switcher { color: rgba(255,255,255,.66); background: #24292d; }
html[data-theme="corporate"] .theme-button[aria-pressed="true"] { color: #24292d; background: #52d5ad; }
html[data-theme="corporate"] .site-header {
  border-bottom: 1px solid rgba(36,41,45,.12);
  background: rgba(255,255,255,.9);
}
html[data-theme="corporate"] .brand-mark { color: #24292d; border-color: #52d5ad; background: #52d5ad; }
html[data-theme="corporate"] .header-cta { color: #24292d; background: #52d5ad; }
html[data-theme="corporate"] .grid-bg {
  background-color: #fff;
  background-image:
    linear-gradient(rgba(36,41,45,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,41,45,.045) 1px, transparent 1px);
  background-size: 64px 64px;
}
html[data-theme="corporate"] .hero {
  grid-template-columns: minmax(0, 1fr) minmax(440px, .8fr);
  background-color: #fff;
}
html[data-theme="corporate"] .hero::before {
  content: "TALENT / DIALOGUE / GROWTH";
  position: absolute;
  left: 4.5vw;
  bottom: 84px;
  color: #32b991;
  font: 700 9px/1 var(--mono);
  letter-spacing: .18em;
}
html[data-theme="corporate"] .hero .eyebrow { display: inline-block; padding: 8px 12px; color: #24292d; background: #52d5ad; }
html[data-theme="corporate"] .hero h1 { max-width: 820px; font-size: clamp(56px, 6.1vw, 102px); line-height: .94; }
html[data-theme="corporate"] .hero h1 em {
  color: #32b991;
  background: none;
  -webkit-text-fill-color: currentColor;
}
html[data-theme="corporate"] .button { border-radius: 3px; }
html[data-theme="corporate"] .button-dark { color: #24292d; border-color: #52d5ad; background: #52d5ad; }
html[data-theme="corporate"] .button-light { border-color: #24292d; background: white; }
html[data-theme="corporate"] .trust-list li::before { color: #52d5ad; }
html[data-theme="corporate"] .hero-visual { inset: 112px 0 0 56%; }
html[data-theme="corporate"] .hero-visual::after,
html[data-theme="corporate"] .hero-visual .vision-art,
html[data-theme="corporate"] .hero-visual .rpo-art,
html[data-theme="corporate"] .visual-caption { display: none; }
html[data-theme="corporate"] .corporate-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  color: white;
  background: #24292d;
}
html[data-theme="corporate"] .corporate-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
}
html[data-theme="corporate"] .corporate-art p { position: absolute; z-index: 2; left: 11%; bottom: 10%; margin: 0; }
html[data-theme="corporate"] .corporate-art small { display: block; margin-bottom: 18px; color: #52d5ad; font: 700 10px/1 var(--mono); letter-spacing: .18em; }
html[data-theme="corporate"] .corporate-art strong { display: block; font: 500 clamp(42px, 4.2vw, 68px)/.96 var(--sans); letter-spacing: -.06em; }
html[data-theme="corporate"] .orbit { position: absolute; z-index: 1; display: block; border: clamp(22px, 3vw, 48px) solid #52d5ad; border-radius: 50%; }
html[data-theme="corporate"] .orbit-a { width: 62%; aspect-ratio: 1; right: -14%; top: -10%; }
html[data-theme="corporate"] .orbit-b { width: 45%; aspect-ratio: 1; left: -12%; top: 30%; border-color: white; opacity: .9; }
html[data-theme="corporate"] .orbit-c { width: 18%; aspect-ratio: 1; right: 18%; bottom: 20%; border-width: 12px; border-color: #52d5ad; background: #52d5ad; }
html[data-theme="corporate"] .scroll-cue span { background: #52d5ad; }

html[data-theme="corporate"] .section { border-top-color: rgba(36,41,45,.13); }
html[data-theme="corporate"] .section:nth-of-type(odd) { background: #fff; }
html[data-theme="corporate"] .section-heading .eyebrow { color: #239f7a; }
html[data-theme="corporate"] .section-heading h2 { letter-spacing: -.065em; }
html[data-theme="corporate"] .issue-grid article { border-color: #24292d; background: #fff; }
html[data-theme="corporate"] .issue-grid article:first-child { border-color: #24292d; }
html[data-theme="corporate"] .issue-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: -6px;
  background: #52d5ad;
}
html[data-theme="corporate"] .stat-band { padding: 38px 48px; color: white; border: 0; background: #24292d; }
html[data-theme="corporate"] .stat-number { color: #52d5ad; background: none; -webkit-text-fill-color: currentColor; }
html[data-theme="corporate"] .stat-band div p { color: rgba(255,255,255,.65); }

html[data-theme="corporate"] .concept { background-color: #edf9f5; }
html[data-theme="corporate"] .cycle { border-color: #24292d; }
html[data-theme="corporate"] .cycle li { border-color: #24292d; background: #fff; }
html[data-theme="corporate"] .cycle span { color: #239f7a; }
html[data-theme="corporate"] .cycle li:not(:last-child)::after { color: #24292d; background: #52d5ad; }
html[data-theme="corporate"] .concept-statement em { color: #239f7a; background: none; -webkit-text-fill-color: currentColor; }

html[data-theme="corporate"] .value-grid article { position: relative; }
html[data-theme="corporate"] .value-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  background: #52d5ad;
}
html[data-theme="corporate"] .value-grid h3 { color: #24292d; }
html[data-theme="corporate"] .card-index { color: #239f7a; }

html[data-theme="corporate"] .section.dark-section { color: white; background: #24292d; }
html[data-theme="corporate"] .dark-section .section-heading .section-no { color: rgba(255,255,255,.45); }
html[data-theme="corporate"] .dark-section .section-heading .eyebrow { color: #52d5ad; }
html[data-theme="corporate"] .deliverables { border-color: rgba(82,213,173,.7); }
html[data-theme="corporate"] .deliverables article { border-color: rgba(82,213,173,.7); }
html[data-theme="corporate"] .deliverables span { color: #52d5ad; }
html[data-theme="corporate"] .deliverables p { color: rgba(255,255,255,.62); }

html[data-theme="corporate"] .strength-list article { border-color: #24292d; }
html[data-theme="corporate"] .strength-list span { display: grid; width: 48px; height: 48px; place-items: center; color: #24292d; background: #52d5ad; }
html[data-theme="corporate"] .plans { background-color: #edf9f5; }
html[data-theme="corporate"] .plan-grid article { background: rgba(255,255,255,.94); }
html[data-theme="corporate"] .plan-grid .featured { color: #24292d; border-color: #52d5ad; background: #52d5ad; }
html[data-theme="corporate"] .plan-tag { color: white; background: #24292d; }
html[data-theme="corporate"] .featured .plan-name,
html[data-theme="corporate"] .featured > p:last-child { color: #455057; }
html[data-theme="corporate"] .plan-price { color: #24292d; }

html[data-theme="corporate"] .flow-list li { border-color: #24292d; }
html[data-theme="corporate"] .flow-list li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: #52d5ad;
}
html[data-theme="corporate"] .faq { background: #edf9f5; }
html[data-theme="corporate"] .faq summary span { color: #239f7a; }
html[data-theme="corporate"] .resource-grid article { background: white; }
html[data-theme="corporate"] .resource-grid a { color: #239f7a; }
html[data-theme="corporate"] .closing { color: #24292d; background: #52d5ad; }
html[data-theme="corporate"] .closing-orb {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.58) 0 17%, rgba(255,255,255,.2) 18% 38%, transparent 39%);
}
html[data-theme="corporate"] .closing .button-dark { color: white; border-color: #24292d; background: #24292d; }
html[data-theme="corporate"] .closing .button-light { border-color: #24292d; background: transparent; }
html[data-theme="corporate"] .assurance { color: #35443f; }
html[data-theme="corporate"] .site-footer { background: #24292d; }
html[data-theme="corporate"] .floating-contact {
  position: fixed;
  z-index: 18;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 152px;
  min-height: 74px;
  padding: 16px 20px;
  flex-direction: column;
  justify-content: center;
  color: #24292d;
  background: #52d5ad;
  border: 1px solid #24292d;
  box-shadow: 8px 8px 0 #24292d;
}
html[data-theme="corporate"] .floating-contact small { margin-bottom: 3px; font: 700 9px/1 var(--mono); letter-spacing: .12em; }
html[data-theme="corporate"] .floating-contact strong { font-size: 12px; line-height: 1.45; }

@media (max-width: 960px) {
  html[data-theme="corporate"] .hero { grid-template-columns: 1fr; }
  html[data-theme="corporate"] .hero-visual { inset: 46% 0 0 26%; }
}

@media (max-width: 640px) {
  html[data-theme="corporate"] .hero { min-height: 900px; padding-top: 140px; }
  html[data-theme="corporate"] .hero h1 { font-size: 42px; line-height: .98; }
  html[data-theme="corporate"] .hero-visual { inset: 53% 0 0 20%; }
  html[data-theme="corporate"] .corporate-art strong { font-size: 36px; }
  html[data-theme="corporate"] .corporate-art p { left: 9%; bottom: 12%; }
  html[data-theme="corporate"] .stat-band { padding: 28px; }
  html[data-theme="corporate"] .floating-contact { right: 12px; bottom: 12px; width: 128px; min-height: 64px; box-shadow: 5px 5px 0 #24292d; }
}
