:root {
  --continuum-ink: #17343b;
  --continuum-soft: #62787c;
  --continuum-teal: #2f7774;
  --continuum-deep: #27545b;
  --continuum-gold: #b99b55;
  --continuum-line: #dbe5e2;
  --continuum-paper: #ffffff;
  --continuum-wash: #f5faf8;
}

/* Current feature previews share one visual contract across Rhythm, Program,
   Summary, Visit, and Log. The content mirrors the member screens but remains
   a non-interactive public example. */
.feature-preview {
  --preview-accent: #2f706c;
  --preview-accent-deep: #214f57;
  --preview-soft: #edf6f3;
  overflow: hidden;
  color: #17343b;
  border: 1px solid #cbdad6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(31,73,76,.11);
  font-family: var(--ui-font);
}
.feature-preview[data-feature="program"] { --preview-accent: #8a7137; --preview-accent-deep: #4d644e; --preview-soft: #f5f1e6; }
.feature-preview[data-feature="summary"] { --preview-accent: #547a75; --preview-accent-deep: #27545b; --preview-soft: #eef4f2; }
.feature-preview[data-feature="visit"] { --preview-accent: #9a7b38; --preview-accent-deep: #2e5b61; --preview-soft: #f5f2e9; }
.feature-preview[data-feature="log"] { --preview-accent: #446e7a; --preview-accent-deep: #27545b; --preview-soft: #eef4f5; }

.feature-preview-chrome {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  color: #d7e5e2;
  background: #173d46;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}
.feature-preview-chrome > div { display: flex; align-items: center; gap: 7px; }
.feature-preview-chrome i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.feature-preview-chrome i:first-child { background: #d8c58d; }
.feature-preview-chrome span { margin-left: 6px; }
.feature-preview-chrome small {
  padding: 4px 8px;
  color: #173d46;
  border-radius: 999px;
  background: #d8c58d;
  font-size: 7px;
  letter-spacing: .08em;
}

.feature-preview-product {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 21px 28px;
  border-bottom: 1px solid #d7e2df;
  background: #fff;
}
.feature-preview-product > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  align-items: baseline;
}
.feature-preview-product > div > small {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--preview-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}
.feature-preview-product strong {
  font: 400 29px var(--uro-wordmark, Georgia, "Times New Roman", serif);
  letter-spacing: .01em;
}
.feature-preview-product p {
  margin: 0;
  color: #6a7c7f;
  font-family: "Noto Serif JP","Yu Mincho",serif;
  font-size: 10px;
}
.feature-preview-product > span {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--preview-accent-deep);
  border: 1px solid #cbdad6;
  border-radius: 999px;
  background: var(--preview-soft);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
}

.feature-preview-tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(110px,1fr);
  overflow-x: auto;
  border-bottom: 1px solid #d7e2df;
  background: #fbfdfc;
  scrollbar-width: none;
}
.feature-preview-tabs::-webkit-scrollbar { display: none; }
.feature-preview-tabs span {
  position: relative;
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  color: #7a8c8e;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.feature-preview-tabs span + span { border-left: 1px solid #e3ebe9; }
.feature-preview-tabs span[aria-current="page"] { color: var(--preview-accent-deep); background: #fff; }
.feature-preview-tabs span[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 27%;
  bottom: 0;
  left: 27%;
  height: 2px;
  background: var(--preview-accent);
}
.feature-preview-tabs-wide { grid-auto-columns: minmax(105px,1fr); }

.feature-preview-stage {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(280px,.85fr);
  gap: 20px;
  padding: 25px 28px;
  background: #f4f7f6;
}
.feature-preview-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #d5e0dd;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(32,73,76,.055);
}
.feature-preview-card > header > small,
.feature-preview-scenes header small,
.program-preview-family small,
.summary-preview-outputs small {
  display: block;
  color: var(--preview-accent);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .15em;
}
.feature-preview-card h3 {
  margin: 6px 0 0;
  font: 500 20px "Noto Serif JP","Yu Mincho",serif;
}
.feature-preview-card > header p {
  margin: 7px 0 0;
  color: #6f8184;
  font-size: 9px;
  line-height: 1.7;
}
.feature-preview-action {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 17px;
  color: #fff;
  border-radius: 9px;
  background: var(--preview-accent-deep);
  font-size: 9px;
  font-weight: 900;
}

.feature-preview-scenes {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
  padding: 0 28px 28px;
  background: #f4f7f6;
}
.feature-preview-scenes > article {
  min-width: 0;
  min-height: 188px;
  padding: 18px;
  border: 1px solid #d5e0dd;
  border-radius: 13px;
  background: #fff;
}
.feature-preview-scenes header b {
  display: block;
  margin-top: 5px;
  font: 500 14px "Noto Serif JP","Yu Mincho",serif;
}
.feature-preview-scenes > article > p {
  margin: 11px 0 0;
  color: #718285;
  font-size: 8px;
}

.preview-timeline { display: grid; gap: 0; margin: 12px 0 0; padding: 0; list-style: none; }
.preview-timeline li {
  display: grid;
  grid-template-columns: 52px 8px minmax(0,1fr);
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #e8efed;
}
.preview-timeline time { color: #5d7579; font-size: 8px; }
.preview-timeline li > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f6f9f;
  box-shadow: 0 0 0 3px #eaf2f8;
}
.preview-timeline li > i[data-tone="drink"] { background: #2d8f88; }
.preview-timeline li > i[data-tone="leak"] { background: #d07a32; }
.preview-timeline li > i[data-tone="catheter"] { background: #7656a6; }
.preview-timeline li > i[data-tone="sleep"] { background: #687078; }
.preview-timeline li > span { overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }

.preview-line-chart { width: 100%; height: 82px; display: block; margin-top: 13px; overflow: visible; }
.preview-line-chart .grid { fill: none; stroke: #dfe8e5; stroke-width: 1; }
.preview-line-chart .line { fill: none; stroke: var(--preview-accent); stroke-width: 3; stroke-linecap: round; }
.preview-line-chart circle { fill: #fff; stroke: #b99b55; stroke-width: 2.5; }

.preview-mini-table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 13px;
  border-top: 1px solid #cad8d4;
  border-left: 1px solid #cad8d4;
}
.preview-mini-table span,
.preview-mini-table b {
  min-width: 0;
  padding: 7px 5px;
  overflow: hidden;
  border-right: 1px solid #cad8d4;
  border-bottom: 1px solid #cad8d4;
  font-size: 7px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.preview-mini-table span { color: #fff; background: var(--preview-accent-deep); }
.preview-mini-table b { font-weight: 600; background: #fff; }

/* Uro Rhythm */
.rhythm-preview-actions {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 9px;
  margin-top: 18px;
}
.rhythm-preview-actions article {
  min-width: 0;
  min-height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 11px 7px;
  border: 1px solid #d6e1de;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}
.rhythm-preview-actions article > i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  background: #2f6f9f;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}
.rhythm-preview-actions article[data-kind="drink"] > i { background: #2d8f88; }
.rhythm-preview-actions article[data-kind="leak"] > i { background: #d07a32; }
.rhythm-preview-actions article[data-kind="catheter"] > i { background: #7656a6; }
.rhythm-preview-actions b { font-size: 9px; }
.rhythm-preview-actions small { color: #758588; font-size: 7px; white-space: nowrap; }
.rhythm-preview-entry > header { position: relative; padding-right: 28px; }
.rhythm-preview-entry > header > span { position: absolute; top: 0; right: 0; color: #748588; font-size: 17px; }
.rhythm-preview-entry > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 17px 0 10px; }
.rhythm-preview-entry label { padding: 10px; border: 1px solid #dbe5e2; border-radius: 9px; background: #fbfdfc; }
.rhythm-preview-entry label small { display: block; color: #728386; font-size: 7px; }
.rhythm-preview-entry label b { display: block; margin-top: 5px; color: #2b5960; font-size: 13px; }
.rhythm-preview-entry label b i { font-size: 7px; font-style: normal; }
.rhythm-preview-entry > p { margin: 0 0 12px; padding: 10px; color: #849193; border: 1px dashed #d2ddda; border-radius: 8px; font-size: 8px; }
.rhythm-preview-three-day > strong { display: block; margin-top: 14px; color: #2c5b59; font: 400 28px Georgia,serif; }
.rhythm-preview-three-day > strong small { color: #718285; font: 8px var(--ui-font); }
.rhythm-preview-three-day dl { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; margin: 11px 0 0; }
.rhythm-preview-three-day dl div { min-width: 0; padding: 9px; border-radius: 8px; background: #f3f8f6; }
.rhythm-preview-three-day dt { color: #718285; font-size: 7px; }
.rhythm-preview-three-day dd { margin: 4px 0 0; color: #28585d; font: 400 17px Georgia,serif; }
.rhythm-preview-three-day dd small { margin-left: 2px; font: 7px var(--ui-font); }

/* Uro Log */
.log-preview-start { display: grid; align-content: start; }
.log-preview-start label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 21px 0 13px;
  padding: 13px;
  border: 1px solid #d4dfdc;
  border-radius: 10px;
  background: #fbfdfc;
}
.log-preview-start label small { color: #718285; font-size: 8px; }
.log-preview-start label b { color: #2b5960; font-size: 12px; }
.log-preview-start .feature-preview-action { width: 100%; box-sizing: border-box; }
.log-preview-select > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 17px; }
.log-preview-select > div > span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px;
  border: 1px solid #d8e2df;
  border-radius: 10px;
  background: #fbfdfc;
}
.log-preview-select i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--preview-accent-deep);
  font-size: 7px;
  font-style: normal;
}
.log-preview-select b { font-size: 8px; }
.log-preview-flow ol { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin: 14px 0 4px; padding: 0; border-top: 1px solid #dce5e2; border-bottom: 1px solid #dce5e2; list-style: none; }
.log-preview-flow li { min-width: 0; display: grid; place-items: center; gap: 4px; padding: 8px 3px; color: #778789; text-align: center; }
.log-preview-flow li+li { border-left: 1px solid #e6ecea; }
.log-preview-flow li i { width: 19px; height: 19px; display: grid; place-items: center; color: #6b7f82; border: 1px solid #bfd0cc; border-radius: 50%; font-size: 7px; font-style: normal; }
.log-preview-flow li b { font-size: 7px; }
.log-preview-flow li[data-complete="true"] i { color: #fff; border-color: #527b74; background: #527b74; }
.log-preview-flow li[data-current="true"] { color: #27545b; background: #f2f7f5; }
.log-preview-flow li[data-current="true"] i { color: #fff; border-color: #b18e43; background: #b18e43; }
.log-preview-flow > div > span[data-selected="true"] { border-color: #8fb2aa; background: #f0f7f5; }
.preview-medication { display: grid; gap: 7px; margin-top: 13px; }
.preview-medication > span { display: grid; grid-template-columns: auto 1fr; gap: 3px 8px; padding: 8px; border: 1px solid #dce5e2; border-radius: 8px; }
.preview-medication i { grid-row: 1 / 3; align-self: center; padding: 4px 5px; color: #fff; border-radius: 999px; background: var(--preview-accent); font-size: 6px; font-style: normal; }
.preview-medication b { font-size: 8px; }
.preview-medication small { color: #778689; font-size: 7px; }

/* Uro Program */
.program-preview-task > div {
  display: grid;
  grid-template-columns: 54px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #ded8c9;
  border-radius: 12px;
  background: #fbfaf5;
}
.program-preview-task > div > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: #496857;
  font: 400 19px Georgia,serif;
  font-style: normal;
}
.program-preview-task > div span small { color: #8a7137; font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.program-preview-task > div span b { display: block; margin-top: 5px; font: 500 13px "Noto Serif JP","Yu Mincho",serif; }
.program-preview-task > div span p { margin: 5px 0 0; color: #718078; font-size: 8px; line-height: 1.6; }
.program-preview-status dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 15px 0 0; }
.program-preview-status dl div { padding: 9px 5px; border-radius: 8px; background: #f7f8f4; text-align: center; }
.program-preview-status dt { color: #78857e; font-size: 7px; }
.program-preview-status dd { margin: 5px 0 0; color: #3b5b4c; font: 400 18px Georgia,serif; }
.program-preview-status dd small { margin-left: 2px; font: 7px var(--ui-font); }
.program-preview-progress { margin-top: 16px; }
.program-preview-progress > b { color: #3f5f50; font: 400 29px Georgia,serif; }
.program-preview-progress > b small { font-size: 10px; }
.program-preview-progress > i { height: 5px; display: block; margin-top: 8px; overflow: hidden; border-radius: 99px; background: #e4e7df; }
.program-preview-progress > i span { height: 100%; display: block; background: #b3944f; }
.program-preview-progress > p { margin: 7px 0 0; color: #76827c; font-size: 7px; }
.program-preview-family {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
  padding: 0 28px 28px;
  background: #f4f7f6;
}
.program-preview-family article {
  position: relative;
  min-height: 146px;
  padding: 17px;
  overflow: hidden;
  border: 1px solid #d7dfdb;
  border-radius: 13px;
  background: #fff;
}
.program-preview-family article::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: #527d71; }
.program-preview-family article[data-program="prostate"]::before { background: #416f85; }
.program-preview-family article[data-program="pelvic"]::before { background: #7b647e; }
.program-preview-family article[data-program="stone"]::before { background: #a47c43; }
.program-preview-family b { display: block; margin-top: 10px; font: 500 14px "Noto Serif JP","Yu Mincho",serif; }
.program-preview-family p { min-height: 38px; margin: 7px 0 12px; color: #71807b; font-size: 8px; line-height: 1.6; }
.program-preview-family span { color: #476b5e; font-size: 8px; font-weight: 900; }
.program-preview-summary ol { display: grid; gap: 0; margin: 15px 0 0; padding: 0; list-style: none; }
.program-preview-summary li { display: grid; grid-template-columns: 27px 1fr; gap: 9px; align-items: center; padding: 10px 0; border-top: 1px solid #e4e8e4; }
.program-preview-summary li > i { width: 25px; height: 25px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #496857; font-size: 8px; font-style: normal; font-weight: 900; }
.program-preview-summary li b,.program-preview-summary li small { display: block; }
.program-preview-summary li b { font-size: 9px; }
.program-preview-summary li small { margin-top: 2px; color: #75817c; font-size: 7px; }
.program-preview-current { display: grid; grid-template-columns: 1.18fr .82fr; gap: 14px; padding: 0 28px 28px; background: #f4f7f6; }
.program-preview-current > article { min-width: 0; padding: 20px; border: 1px solid #d5e0dd; border-radius: 14px; background: #fff; }
.program-preview-current header small { display: block; color: #8a7137; font-size: 7px; font-weight: 900; letter-spacing: .15em; }
.program-preview-current header b { display: block; margin-top: 5px; font: 500 15px "Noto Serif JP","Yu Mincho",serif; }
.program-preview-current dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 14px 0 0; }
.program-preview-current dl div { min-width: 0; padding: 10px 7px; border-radius: 8px; background: #f4f7f5; text-align: center; }
.program-preview-current dt { color: #76837e; font-size: 7px; }
.program-preview-current dd { margin: 4px 0 0; color: #34584b; font: 400 18px Georgia,serif; }
.program-preview-current dd small { margin-left: 2px; font: 7px var(--ui-font); }
.program-preview-current ul { display: grid; gap: 0; margin: 12px 0; padding: 0; list-style: none; }
.program-preview-current li { display: grid; grid-template-columns: 28px minmax(0,1fr) auto; gap: 8px; align-items: center; padding: 8px 0; border-top: 1px solid #e5e9e6; }
.program-preview-current li i { color: #8a7137; font-size: 7px; font-style: normal; font-weight: 900; }
.program-preview-current li span,.program-preview-current li b { font-size: 8px; }
.program-preview-current li b { color: #34584b; }
.program-preview-current .feature-preview-action { width: 100%; box-sizing: border-box; }

/* Uro Program sales page */
.program-sales-page { --jewel-luts:#23776f; --jewel-prostate:#b17a24; --jewel-pelvic:#765789; --jewel-stone:#3f6680; }
.program-offer-hero {
  position: relative;
  padding: 74px 0 84px;
  overflow: hidden;
  color: #fff;
  border-bottom: 0;
  background:
    radial-gradient(circle at 85% 12%,rgba(224,194,120,.18),transparent 26%),
    radial-gradient(circle at 12% 88%,rgba(84,145,139,.22),transparent 31%),
    linear-gradient(135deg,#112f38,#1a424b 54%,#173740);
}
.program-offer-hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -260px;
  bottom: -330px;
  opacity: .08;
  transform: rotate(24deg);
  border: 1px solid #d9c17e;
  background: linear-gradient(135deg,#d9c17e,transparent 55%);
  clip-path: polygon(50% 0,100% 32%,84% 100%,16% 100%,0 32%);
}
.continuum-page-shell.program-offer-hero-grid { position: relative; z-index: 1; display: block; }
.program-offer-hero .continuum-page-kicker { color: #dec887; }
.program-offer-hero h1 { border-color: rgba(222,200,135,.62); }
.program-offer-hero h1 em { color: #9fd4c8; }
.program-offer-hero .continuum-page-lead { max-width: 850px; color: rgba(255,255,255,.73); }
.program-offer-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.program-offer-actions a { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; color: #16343c; border: 1px solid #e2cf94; border-radius: 999px; background: #e2cf94; font: 800 13px var(--ui-font); text-decoration: none; }
.program-offer-actions a+ a { color: #fff; border-color: rgba(255,255,255,.3); background: transparent; }
.program-offer-actions a:hover,.program-offer-actions a:focus-visible { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }
.program-offer-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; max-width: 850px; margin: 31px 0 0; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.15); }
.program-offer-facts div { min-width: 0; padding: 17px 19px; background: rgba(14,43,51,.72); }
.program-offer-facts dt { color: #c9dbd6; font-size: 11px; }
.program-offer-facts dd { margin: 7px 0 0; font: 500 20px "Noto Serif JP","Yu Mincho",serif; }
.program-offer-facts dd small { display: block; margin-top: 4px; color: #d8c888; font: 11px var(--ui-font); }
.program-offer-status { max-width: 850px; margin: 15px 0 0; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.7; }

.program-promise { padding: 64px 0; border-bottom: 1px solid rgba(23,61,70,.1); background: linear-gradient(135deg,#f4f0e6,#fff 58%,#edf4f1); }
.program-promise-panel { display: block; }
.program-promise-copy>p:first-child { margin: 0; color: #95732d; font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.program-promise-copy h2 { max-width: 880px; margin: 12px 0 0; color: #173d46; font: 500 clamp(28px,3.6vw,43px)/1.52 "Noto Serif JP","Yu Mincho",serif; letter-spacing: -.025em; }
.program-promise-copy>p:nth-of-type(2) { max-width: 860px; margin: 20px 0 0; color: #52686c; font-size: 14px; line-height: 2; }
.program-promise-copy>div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.program-promise-copy>div span { padding: 8px 12px; color: #31565e; border: 1px solid rgba(39,84,91,.18); border-radius: 999px; background: rgba(255,255,255,.66); font-size: 11px; font-weight: 800; }

.program-package { padding: 92px 0; background: #fff; }
.program-package-intro { max-width: 760px; margin: 20px 0 0; color: #52686c; font-size: 14px; line-height: 2; }
.program-package-flow { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 0; padding: 0; border-top: 1px solid #cfddd9; border-left: 1px solid #cfddd9; list-style: none; }
.program-package-flow li { min-height: 188px; display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 27px 25px; border-right: 1px solid #cfddd9; border-bottom: 1px solid #cfddd9; }
.program-package-flow li>i { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #27545b; font: 400 13px Georgia,serif; font-style: normal; }
.program-package-flow small { color: #9a772f; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.program-package-flow h3 { margin: 7px 0 0; font: 500 21px "Noto Serif JP","Yu Mincho",serif; }
.program-package-flow p { margin: 11px 0 0; color: #61777a; font-size: 13px; line-height: 1.8; }
.program-package-plus { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; margin-top: 22px; padding: 28px 30px; color: #fff; border-radius: 18px; background: linear-gradient(120deg,#173d46,#27545b 62%,#32665f); }
.program-package-plus span { color: #dec887; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.program-package-plus h3 { margin: 8px 0 6px; font: 500 22px "Noto Serif JP","Yu Mincho",serif; }
.program-package-plus p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.8; }
.program-package-plus a { min-width: 190px; padding: 13px 17px; color: #173d46; border-radius: 999px; background: #e4d197; font-size: 12px; font-weight: 900; text-align: center; text-decoration: none; }

.program-trial {
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 92% 8%,rgba(57,132,122,.12),transparent 29%),
    linear-gradient(145deg,#f0f6f3,#fff 58%,#f6f2e8);
}
.program-trial-heading {
  display: grid;
  grid-template-columns: minmax(0,1fr) 390px;
  gap: 70px;
  align-items: end;
  margin-bottom: 35px;
}
.program-trial-heading small { color: #98752f; font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.program-trial-heading h2 { margin: 11px 0 0; color: #173d46; font: 500 clamp(32px,4vw,47px)/1.45 "Noto Serif JP","Yu Mincho",serif; }
.program-trial-heading p { margin: 0; color: #607579; font-size: 13px; line-height: 2; }
.program-trial-grid { display: grid; grid-template-columns: 1.15fr .95fr .9fr; gap: 14px; }
.program-trial-grid>article {
  min-width: 0;
  min-height: 410px;
  padding: 28px 27px;
  border: 1px solid rgba(39,84,91,.17);
  border-radius: 21px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 54px rgba(23,61,70,.08),inset 0 1px 0 #fff;
}
.program-trial-grid header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 15px; border-bottom: 1px solid #d8e3e0; }
.program-trial-grid header span { color: #285b5d; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.program-trial-grid header small { color: #98752f; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.program-trial-grid h3 { margin: 23px 0 0; color: #183b43; font: 500 24px/1.65 "Noto Serif JP","Yu Mincho",serif; }
.program-trial-grid p { margin: 15px 0 0; color: #566d71; font-size: 13px; line-height: 1.9; }
.program-trial-lesson ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 21px 0 0; padding: 0; list-style: none; }
.program-trial-lesson li { padding: 8px 10px; color: #285b5d; border: 1px solid #cbdcd7; border-radius: 999px; background: #eef6f3; font-size: 10px; font-weight: 800; }
.program-trial-action dl { display: grid; gap: 8px; margin: 20px 0 10px; }
.program-trial-action dl div { padding: 12px 13px; border: 1px solid #dce6e3; border-radius: 10px; background: #f8fbfa; }
.program-trial-action dt { color: #7a898a; font-size: 9px; }
.program-trial-action dd { margin: 5px 0 0; color: #284f55; font-size: 12px; font-weight: 700; line-height: 1.65; }
.program-trial-action>small { color: #7c898a; font-size: 9px; }
.program-trial-sheet { color: #fff; background: linear-gradient(145deg,#173d46,#28595d)!important; }
.program-trial-sheet header { border-color: rgba(255,255,255,.16); }
.program-trial-sheet header span { color: #fff; }
.program-trial-sheet header small { color: #dec887; }
.program-trial-sheet h3 { color: #fff; }
.program-trial-sheet ol { display: grid; gap: 0; margin: 21px 0 0; padding: 0; list-style: none; }
.program-trial-sheet li { display: grid; grid-template-columns: 28px minmax(0,1fr) auto; gap: 8px; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.16); }
.program-trial-sheet li i { color: #dec887; font-size: 9px; font-style: normal; font-weight: 900; }
.program-trial-sheet li span { color: rgba(255,255,255,.66); font-size: 10px; }
.program-trial-sheet li b { font-size: 10px; }
.program-trial-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 19px; }
.program-trial-footer p { max-width: 560px; margin: 0; color: #718083; font-size: 10px; line-height: 1.75; }
.program-trial-footer>div { display: flex; flex-wrap: wrap; gap: 9px; }
.program-trial-footer a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 17px; color: #fff; border: 1px solid #27545b; border-radius: 999px; background: #27545b; font-size: 11px; font-weight: 900; text-decoration: none; }
.program-trial-footer a+a { color: #27545b; background: transparent; }

.program-jewels { padding: 94px 0 98px; color: #fff; background:
  radial-gradient(circle at 8% 8%,rgba(89,184,151,.14),transparent 30%),
  radial-gradient(circle at 92% 92%,rgba(84,154,203,.15),transparent 34%),
  linear-gradient(145deg,#0b2730,#143944 54%,#0c2932); }
.program-jewels-heading { display: grid; grid-template-columns: minmax(0,1fr) 390px; gap: 70px; align-items: end; margin-bottom: 42px; }
.program-jewels-heading small { color: #dec887; font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.program-jewels-heading h2 { margin: 11px 0 0; font: 500 clamp(32px,4vw,47px)/1.45 "Noto Serif JP","Yu Mincho",serif; }
.program-jewels-heading p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 2; }
.program-jewel-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.program-jewel-grid>a {
  --jewel-color:var(--jewel-luts);
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 34px 35px 31px;
  overflow: hidden;
  color: #fff;
  border: 1px solid color-mix(in srgb,var(--jewel-color) 62%,#fff);
  border-radius: 24px;
  background:
    linear-gradient(145deg,color-mix(in srgb,var(--jewel-color) 24%,rgba(255,255,255,.17)),rgba(255,255,255,.07) 46%,rgba(255,255,255,.025)),
    radial-gradient(circle at 88% 14%,color-mix(in srgb,var(--jewel-color) 38%,transparent),transparent 31%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -1px 0 rgba(255,255,255,.07),
    0 24px 64px rgba(2,20,27,.24);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  text-decoration: none;
  transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.program-jewel-grid>a:hover,.program-jewel-grid>a:focus-visible { transform: translateY(-4px); border-color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.4),0 30px 72px rgba(2,20,27,.34); }
.program-jewel-grid>a[data-program="prostate"] { --jewel-color:var(--jewel-prostate); }
.program-jewel-grid>a[data-program="pelvic"] { --jewel-color:var(--jewel-pelvic); }
.program-jewel-grid>a[data-program="stone"] { --jewel-color:var(--jewel-stone); }
.program-jewel-grid>a>span { color: color-mix(in srgb,var(--jewel-color) 42%,#fff); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.program-jewel-grid h3 { margin: 15px 0 0; font: 400 38px Georgia,serif; }
.program-jewel-grid strong { display: block; max-width: 430px; margin-top: 18px; font: 500 22px/1.6 "Noto Serif JP","Yu Mincho",serif; }
.program-jewel-grid p { max-width: 440px; margin: 12px 0 0; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.85; }
.program-jewel-grid>a>small { margin-top: auto; padding-top: 24px; color: #fff; border-top: 1px solid rgba(255,255,255,.15); font-size: 11px; font-weight: 900; }
.program-jewel-gem {
  position: absolute;
  width: 36px;
  height: 30px;
  top: 33px;
  right: 34px;
  display: block;
  filter: drop-shadow(0 7px 8px rgba(0,0,0,.28));
}
.program-jewel-gem::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(22% 7%,78% 7%,97% 35%,70% 75%,50% 93%,30% 75%,3% 35%);
  background:
    linear-gradient(137deg,rgba(255,255,255,.9) 0 14%,transparent 15% 100%),
    conic-gradient(from 180deg at 50% 35%,color-mix(in srgb,var(--jewel-color) 70%,#061b25),color-mix(in srgb,var(--jewel-color) 96%,#fff),color-mix(in srgb,var(--jewel-color) 66%,#061b25),color-mix(in srgb,var(--jewel-color) 94%,#fff),color-mix(in srgb,var(--jewel-color) 70%,#061b25));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
}
.program-jewel-gem::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 13px;
  height: 7px;
  clip-path: polygon(15% 0,100% 0,70% 100%,0 72%);
  background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(255,255,255,.08));
}
.program-current-preview { border-top: 0; }
.feature-preview[data-feature="program"][data-demo-theme="pelvic"] { --preview-accent: #765789; --preview-accent-deep: #493650; --preview-soft: #f2edf4; }
.feature-preview[data-demo-theme="pelvic"] .program-demo-progress span { background: linear-gradient(90deg,#765789,#b79bc4); }
.feature-preview[data-demo-theme="pelvic"] .program-demo-panel>aside { background: linear-gradient(145deg,#493650,#765789); }
.program-demo-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.program-demo-controls>div { display: flex; flex-wrap: wrap; gap: 7px; }
.program-demo-controls button {
  min-height: 38px;
  padding: 0 13px;
  color: #547075;
  border: 1px solid #cad9d5;
  border-radius: 999px;
  background: #fff;
  font: 800 10px var(--ui-font);
  cursor: pointer;
}
.program-demo-controls button span { margin-right: 5px; color: #9a772f; }
.program-demo-controls button[aria-current] { color: #fff; border-color: #27545b; background: #27545b; }
.program-demo-controls>p { flex: 0 0 auto; display: flex; align-items: center; gap: 7px; margin: 0; }
.program-demo-controls>p>span { min-width: 92px; color: #607579; font: 800 10px var(--ui-font); }
.program-demo-controls>p button { min-height: 34px; padding: 0 11px; }
.feature-preview[data-demo-player] { position: relative; }
.program-demo-tabs { grid-auto-columns: minmax(118px,1fr); }
.program-demo-tabs button {
  position: relative;
  min-height: 50px;
  padding: 0 16px;
  color: #7a8c8e;
  border: 0;
  border-left: 1px solid #e3ebe9;
  background: transparent;
  font: 800 10px var(--ui-font);
  white-space: nowrap;
  cursor: pointer;
}
.program-demo-tabs button:first-child { border-left: 0; }
.program-demo-tabs button[aria-current="page"] { color: var(--preview-accent-deep); background: #fff; }
.program-demo-tabs button[aria-current="page"]::after { content: ""; position: absolute; right: 27%; bottom: 0; left: 27%; height: 2px; background: var(--preview-accent); }
.program-demo-progress { height: 4px; overflow: hidden; background: #e3ebe8; }
.program-demo-progress span { width: 0; height: 100%; display: block; background: linear-gradient(90deg,#2f7774,#b99b55); transition: width .1s linear; }
.program-demo-panels { min-height: 415px; background: #f4f7f6; }
.program-demo-panel { min-height: 415px; display: grid; grid-template-columns: minmax(0,1fr) 210px; gap: 18px; padding: 28px; animation: program-demo-enter .35s ease both; }
.program-demo-panel[hidden] { display: none; }
.program-demo-panel>aside { align-self: stretch; display: grid; align-content: center; gap: 9px; padding: 22px; color: #fff; border-radius: 16px; background: linear-gradient(145deg,#173d46,#2d5f61); }
.program-demo-panel>aside span { color: #dec887; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.program-demo-panel>aside b { padding: 10px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: rgba(255,255,255,.07); font-size: 11px; }
.program-demo-panel>aside small { margin-top: 5px; color: rgba(255,255,255,.61); font-size: 8px; line-height: 1.6; }
.program-demo-screen-copy { padding: 25px 27px; border: 1px solid #d5e0dd; border-radius: 16px; background: #fff; box-shadow: 0 10px 26px rgba(32,73,76,.055); }
.program-demo-screen-copy>small { color: #8a7137; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.program-demo-screen-copy h3 { margin: 8px 0 0; font: 500 25px "Noto Serif JP","Yu Mincho",serif; }
.program-demo-screen-copy>p { margin: 10px 0 0; color: #6d7d7f; font-size: 11px; line-height: 1.75; }
.program-demo-screen-copy ul { display: grid; gap: 0; margin: 20px 0 0; padding: 0; list-style: none; }
.program-demo-screen-copy li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; padding: 11px 0; border-top: 1px solid #e2e9e6; }
.program-demo-screen-copy li i { width: 27px; height: 27px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #496857; font-size: 8px; font-style: normal; font-weight: 900; }
.program-demo-screen-copy li b,.program-demo-screen-copy li small { display: block; }
.program-demo-screen-copy li b { font-size: 11px; }
.program-demo-screen-copy li small { margin-top: 3px; color: #748285; font-size: 9px; }
.program-demo-panel>.program-preview-current { display: block; padding: 0; background: transparent; }
.program-demo-panel>.program-preview-current>article { min-height: 100%; padding: 25px 27px; }
.program-demo-panel>.feature-preview-card { padding: 25px 27px; }
.program-demo-status { margin: 0; padding: 12px 20px; color: #597075; border-top: 1px solid #d7e2df; background: #fff; font-size: 9px; font-weight: 900; letter-spacing: .05em; }
@keyframes program-demo-enter { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.program-connections { padding: 94px 0; background: #fff; }
.program-connection-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid #b99b55; border-bottom: 1px solid #d7e2df; }
.program-connection-grid article { min-height: 240px; padding: 28px 25px; }
.program-connection-grid article+article { border-left: 1px solid #d7e2df; }
.program-connection-grid span { color: #a07d33; font: 400 15px Georgia,serif; }
.program-connection-grid h3 { margin: 18px 0 0; font: 500 24px "Noto Serif JP","Yu Mincho",serif; }
.program-connection-grid p { margin: 15px 0 0; color: #61777a; font-size: 13px; line-height: 1.9; }
.program-offer-close { padding: 82px 0; color: #fff; background: #173d46; }
.program-offer-close .continuum-page-shell>div { max-width: 850px; }
.program-offer-close span { color: #dec887; font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.program-offer-close h2 { margin: 11px 0 0; font: 500 clamp(31px,4vw,46px)/1.45 "Noto Serif JP","Yu Mincho",serif; }
.program-offer-close p { margin: 20px 0 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.9; }
.program-offer-close>div>div>div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.program-offer-close a { min-height: 46px; display: inline-flex; align-items: center; padding: 0 18px; color: #173d46; border: 1px solid #dec887; border-radius: 999px; background: #dec887; font-size: 12px; font-weight: 900; text-decoration: none; }
.program-offer-close a+a { color: #fff; border-color: rgba(255,255,255,.32); background: transparent; }
.program-offer-close small { display: block; margin-top: 18px; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.7; }

/* Uro Summary */
.summary-preview-steps {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  border-bottom: 1px solid #d7e2df;
  background: #fff;
}
.summary-preview-steps > span {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  color: #77888a;
  border-right: 1px solid #e4ebe9;
  font-size: 7px;
  font-weight: 800;
}
.summary-preview-steps > span:last-child { border-right: 0; }
.summary-preview-steps i {
  width: 19px;
  height: 19px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #66817d;
  border: 1px solid #bdcfca;
  border-radius: 50%;
  font-size: 7px;
  font-style: normal;
}
.summary-preview-steps span[data-complete="true"] i { color: #fff; border-color: #5a857b; background: #5a857b; }
.summary-preview-steps span[data-current="true"] { color: #27545b; background: #f3f8f6; }
.summary-preview-steps span[data-current="true"] i { color: #fff; border-color: #b19048; background: #b19048; }
.summary-preview-stage { grid-template-columns: minmax(225px,.55fr) minmax(0,1.45fr); align-items: start; }
.summary-preview-choice article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
  padding: 12px;
  border: 1px solid #d7e2df;
  border-radius: 10px;
}
.summary-preview-choice article[aria-current="true"] { border-color: #5e8881; background: #f2f7f5; }
.summary-preview-choice article span { display: grid; grid-template-columns: auto 1fr; column-gap: 8px; }
.summary-preview-choice article i {
  grid-row: 1 / 3;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #27545b;
  font-size: 7px;
  font-style: normal;
}
.summary-preview-choice article b { font-size: 9px; }
.summary-preview-choice article small { color: #758588; font-size: 7px; }
.summary-preview-choice article em { padding: 5px 7px; color: #27545b; border-radius: 999px; background: #d8c58d; font-size: 7px; font-style: normal; font-weight: 900; }
.summary-preview-choice > p { margin: 13px 0 0; color: #7b898b; font-size: 8px; }
.summary-preview-import > div { display: grid; gap: 7px; margin: 14px 0; }
.summary-preview-import > div > span { display: grid; grid-template-columns: 23px minmax(0,1fr); column-gap: 8px; padding: 9px 10px; border: 1px solid #dbe4e1; border-radius: 9px; background: #fbfdfc; }
.summary-preview-import > div > span[data-selected="true"] { border-color: #8fb3aa; background: #f1f7f5; }
.summary-preview-import > div i { width: 21px; height: 21px; display: grid; grid-row: 1/3; place-items: center; align-self: center; color: #fff; border-radius: 50%; background: #557c75; font-size: 7px; font-style: normal; font-weight: 900; }
.summary-preview-import > div span:not([data-selected="true"]) i { color: #637a7d; border: 1px solid #b9cac6; background: #fff; }
.summary-preview-import > div b { font-size: 8px; }
.summary-preview-import > div small { margin-top: 2px; color: #778789; font-size: 7px; }
.summary-preview-import .feature-preview-action { width: 100%; box-sizing: border-box; }
.feature-preview .summary-demo-sheet { border-radius: 3px; }
.summary-preview-outputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 28px 28px;
  background: #f4f7f6;
}
.summary-preview-outputs article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid #d5e0dd;
  border-radius: 12px;
  background: #fff;
}
.summary-preview-outputs article small { grid-column: 1 / -1; margin-bottom: 5px; }
.summary-preview-outputs b { font: 500 13px "Noto Serif JP","Yu Mincho",serif; }
.summary-preview-outputs span { color: #738386; font-size: 8px; }

/* Visit */
.visit-preview-stage { grid-template-columns: minmax(0,1.3fr) minmax(230px,.7fr); align-items: center; }
.visit-preview-paper {
  padding: 22px 25px;
  border-top: 5px solid #27545b;
  background: #fff;
  box-shadow: 0 12px 30px rgba(34,65,65,.12);
}
.visit-preview-paper > header { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 11px; border-bottom: 2px solid #27545b; }
.visit-preview-paper header small { color: #8a7137; font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.visit-preview-paper header h3 { margin: 4px 0 1px; font: 600 18px "Noto Serif JP","Yu Mincho",serif; }
.visit-preview-paper header p { margin: 0; color: #6e7e80; font-size: 7px; }
.visit-preview-paper header > span { align-self: start; padding: 5px 8px; color: #27545b; border-radius: 999px; background: #d8c58d; font-size: 7px; font-weight: 900; }
.visit-preview-paper > section { padding: 10px 0; border-bottom: 1px solid #dce4e2; }
.visit-preview-paper > section small,.visit-preview-paper > div section small { display: block; color: #27545b; font-size: 7px; font-weight: 900; }
.visit-preview-paper > section b,.visit-preview-paper > div section b { display: block; margin-top: 5px; font-size: 10px; }
.visit-preview-paper p { margin: 5px 0 0; font-size: 8px; line-height: 1.6; }
.visit-preview-paper > div { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #dce4e2; }
.visit-preview-paper > div section { padding: 10px 0; }
.visit-preview-paper > div section + section { padding-left: 14px; border-left: 1px solid #dce4e2; }
.visit-preview-phone {
  width: min(100%,250px);
  justify-self: center;
  padding: 9px 14px 18px;
  border: 7px solid #173d46;
  border-radius: 29px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(23,61,70,.2);
}
.visit-preview-phone > div { height: 15px; display: grid; place-items: start center; }
.visit-preview-phone > div span { width: 55px; height: 5px; border-radius: 99px; background: #173d46; }
.visit-preview-phone > header { padding: 9px 3px 11px; border-bottom: 1px solid #dbe4e2; }
.visit-preview-phone header small { display: block; color: #8a7137; font-size: 6px; font-weight: 900; letter-spacing: .14em; }
.visit-preview-phone header b { display: block; margin-top: 4px; font: 500 15px "Noto Serif JP","Yu Mincho",serif; }
.visit-preview-phone > article { display: flex; gap: 8px; align-items: center; padding: 10px 3px; border-bottom: 1px solid #edf1f0; }
.visit-preview-phone > article > i { width: 21px; height: 21px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #4d8175; font-size: 8px; font-style: normal; }
.visit-preview-phone article span { display: grid; gap: 2px; }
.visit-preview-phone article b { font-size: 8px; }
.visit-preview-phone article small { color: #758587; font-size: 6px; }
.visit-preview-phone > p { margin: 12px 0 8px; color: #658077; font-size: 7px; text-align: center; }
.visit-preview-phone .feature-preview-action { width: 100%; box-sizing: border-box; }
.visit-preview-flow {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  padding: 0 28px 28px;
  background: #f4f7f6;
}
.visit-preview-flow article { display: flex; gap: 10px; align-items: center; padding: 14px; border: 1px solid #d5e0dd; border-radius: 12px; background: #fff; }
.visit-preview-flow article > i { width: 28px; height: 28px; display: grid; flex: 0 0 auto; place-items: center; color: #fff; border-radius: 50%; background: var(--preview-accent-deep); font: 400 12px Georgia,serif; font-style: normal; }
.visit-preview-flow article span { display: grid; gap: 3px; }
.visit-preview-flow article b { font-size: 8px; }
.visit-preview-flow article small { color: #748486; font-size: 7px; }

@media (max-width: 760px) {
  .feature-preview { border-radius: 16px; box-shadow: 0 20px 52px rgba(31,73,76,.1); }
  .feature-preview-chrome { min-height: 36px; padding: 0 13px; }
  .feature-preview-product { min-height: 0; align-items: flex-start; flex-direction: column; gap: 12px; padding: 18px 16px; }
  .feature-preview-product > div { display: block; }
  .feature-preview-product strong { display: block; margin-top: 5px; font-size: 25px; }
  .feature-preview-product p { margin-top: 5px; font-size: 9px; line-height: 1.6; }
  .feature-preview-product > span { align-self: flex-start; }
  .feature-preview-tabs { grid-auto-columns: minmax(92px,1fr); }
  .feature-preview-tabs-wide { grid-auto-columns: minmax(86px,1fr); }
  .feature-preview-tabs span { min-height: 47px; padding: 0 11px; font-size: 9px; }
  .feature-preview-stage { grid-template-columns: 1fr; gap: 12px; padding: 14px; }
  .feature-preview-card { padding: 18px 15px; border-radius: 13px; }
  .feature-preview-scenes { grid-template-columns: 1fr; gap: 10px; padding: 0 14px 14px; }
  .feature-preview-scenes > article { min-height: 0; padding: 16px; }
  .rhythm-preview-actions { grid-template-columns: 1fr 1fr; }
  .rhythm-preview-actions article { min-height: 84px; }
  .rhythm-preview-entry > div { grid-template-columns: 1fr 1fr; }
  .program-preview-family { grid-template-columns: 1fr 1fr; gap: 9px; padding: 0 14px 14px; }
  .program-preview-family article { min-height: 130px; padding: 15px 13px; }
  .program-preview-family p { min-height: 44px; }
  .summary-preview-steps { grid-template-columns: repeat(6,92px); overflow-x: auto; scrollbar-width: none; }
  .summary-preview-steps::-webkit-scrollbar { display: none; }
  .summary-preview-steps > span { min-height: 50px; }
  .summary-preview-stage { grid-template-columns: 1fr; }
  .summary-preview-outputs { grid-template-columns: 1fr; gap: 9px; padding: 0 14px 14px; }
  .feature-preview .summary-demo-sheet { padding: 19px 15px; }
  .visit-preview-stage { grid-template-columns: 1fr; }
  .visit-preview-phone { width: min(78%,250px); }
  .visit-preview-flow { grid-template-columns: 1fr; gap: 8px; padding: 0 14px 14px; }
}

@media (max-width: 420px) {
  .feature-preview-chrome span { display: none; }
  .program-preview-family { grid-template-columns: 1fr; }
  .program-preview-family article { min-height: 112px; }
  .program-preview-family p { min-height: 0; }
  .summary-preview-outputs article { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-preview *, .feature-preview *::before, .feature-preview *::after { scroll-behavior: auto !important; }
  .program-demo-panel { animation: none; }
}

body { color: var(--continuum-ink); background: var(--continuum-paper); }
.continuum-page-main { overflow: hidden; background: #fff; }
.continuum-page-shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.continuum-breadcrumb { padding: 26px 0 0; color: #77898c; font-family: var(--ui-font); font-size: 11px; }
.continuum-breadcrumb a { color: #42686d; text-decoration: none; }
.continuum-breadcrumb span { margin: 0 9px; color: #b99b55; }

.continuum-page-hero { padding: 64px 0 76px; border-bottom: 1px solid var(--continuum-line); }
.continuum-page-hero-grid { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 68px; align-items: start; }
.continuum-page-index { padding-top: 5px; color: var(--continuum-gold); border-top: 1px solid var(--continuum-gold); font-family: Georgia, "Times New Roman", serif; }
.continuum-page-index strong { display: block; margin-top: 17px; color: var(--continuum-deep); font-size: 62px; font-weight: 400; line-height: 1; }
.continuum-page-index span { display: block; margin-top: 11px; font-family: var(--ui-font); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.continuum-page-index.program strong { font-size: 30px; line-height: 1.2; }
.continuum-page-kicker { margin: 0 0 18px; color: #8a7137; font-family: var(--ui-font); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.continuum-page-hero h1 { width: fit-content; margin: 0; padding-bottom: 14px; border-bottom: 1px solid var(--continuum-gold); font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: clamp(42px, 6vw, 70px); font-weight: 500; line-height: 1.32; letter-spacing: -.045em; }
.continuum-page-hero h1 em { color: var(--continuum-teal); font-style: normal; }
.continuum-page-lead { max-width: 780px; margin: 28px 0 0; color: #4f696e; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: clamp(16px, 1.7vw, 20px); line-height: 2; }

.continuum-page-flow { border-bottom: 1px solid var(--continuum-line); background: #fff; }
.continuum-page-flow .continuum-page-shell { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.continuum-page-flow a { min-height: 66px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; color: #73878a; border-right: 1px solid #edf1ef; font-family: var(--ui-font); font-weight: 800; text-decoration: none; }
.continuum-page-flow a span { color: #294f56; font-family: Georgia, "Times New Roman", serif; font-size: 13px; font-weight: 400; letter-spacing: .04em; line-height: 1; }
.continuum-page-flow a small { font-size: 8px; letter-spacing: .12em; line-height: 1; white-space: nowrap; }
.continuum-page-flow a.program span { font-size: 12px; }
.continuum-page-flow a:first-child { border-left: 1px solid #edf1ef; }
.continuum-page-flow a[aria-current="page"] { position: relative; color: var(--continuum-deep); background: var(--continuum-wash); }
.continuum-page-flow a[aria-current="page"]::after { content: ""; position: absolute; right: 22%; bottom: 0; left: 22%; height: 2px; background: var(--continuum-gold); }

.continuum-page-reasons { padding: 90px 0 86px; }
.continuum-page-section-head { max-width: 760px; margin-bottom: 44px; }
.continuum-page-section-head small { color: #8a7137; font-family: var(--ui-font); font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.continuum-page-section-head h2 { margin: 12px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: clamp(30px, 4vw, 46px); font-weight: 500; line-height: 1.45; }
.continuum-reason-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--continuum-gold); border-bottom: 1px solid var(--continuum-line); }
.continuum-reason-grid article { min-height: 310px; padding: 34px 34px 38px; }
.continuum-reason-grid article + article { border-left: 1px solid var(--continuum-line); }
.continuum-reason-grid small { color: #8a7137; font-family: var(--ui-font); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.continuum-reason-grid h2 { margin: 18px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 24px; font-weight: 500; line-height: 1.55; }
.continuum-reason-grid p { margin: 20px 0 0; color: var(--continuum-soft); font-size: 14px; line-height: 2; }

.feature-showcase { padding: 90px 0 92px; border-top: 1px solid #e2eae7; background: #f5faf8; }
.feature-showcase-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr); gap: 72px; align-items: end; margin-bottom: 40px; }
.feature-showcase-heading small { color: #8a7137; font-family: var(--ui-font); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.feature-showcase-heading h2 { margin: 12px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: clamp(32px, 4.1vw, 48px); font-weight: 500; line-height: 1.45; }
.feature-showcase-heading > p { margin: 0; color: #61767a; font-size: 13px; line-height: 2; }
.feature-showcase-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 24px; }
.feature-showcase-footer p { margin: 0; color: #728486; font-size: 10px; line-height: 1.8; }
.feature-showcase-footer a { min-width: 168px; padding: 13px 20px; color: #fff; border: 1px solid #27545b; background: #27545b; font-family: var(--ui-font); font-size: 11px; font-weight: 800; text-align: center; text-decoration: none; }
.feature-showcase-footer a::after { content: " →"; color: #d8c58d; }
.feature-showcase-footer a:hover,.feature-showcase-footer a:focus-visible { color: #27545b; background: #fff; }

.rhythm-demo { overflow: hidden; border: 1px solid #cfddda; border-radius: 24px; background: #fff; box-shadow: 0 32px 80px rgba(31,73,76,.11); }
.rhythm-demo-top { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 24px 30px; color: #fff; background: linear-gradient(135deg,#173d46,#2d696b); }
.rhythm-demo-top > div:first-child { display: grid; grid-template-columns: auto auto; gap: 5px 12px; align-items: center; }
.rhythm-demo-top small { grid-column: 1/-1; color: #c9dfda; font: 800 8px var(--ui-font); letter-spacing: .17em; }
.rhythm-demo-top strong { font: 500 24px "Noto Serif JP","Yu Mincho",serif; }
.rhythm-demo-top > div:first-child span { padding: 4px 9px; color: #173d46; border-radius: 999px; background: #d9c78f; font: 800 8px var(--ui-font); }
.rhythm-demo-top > div:last-child { display: flex; gap: 7px; }
.rhythm-demo-top button { min-height: 36px; padding: 0 12px; color: #eff8f5; border: 1px solid rgba(255,255,255,.24); border-radius: 9px; background: rgba(255,255,255,.08); font: 700 9px var(--ui-font); }
.rhythm-demo-sleep { display: flex; align-items: center; gap: 16px; padding: 16px 30px; color: #49676c; border-bottom: 1px solid #dce7e4; background: #f7fbfa; font: 11px var(--ui-font); }
.rhythm-demo-sleep span { display: flex; align-items: center; gap: 7px; }
.rhythm-demo-sleep b { color: #173d46; font-size: 15px; }
.rhythm-demo-sleep i { height: 2px; flex: 1; border-radius: 2px; background: linear-gradient(90deg,#294f6d,#d5b361); }
.rhythm-demo-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 20px 30px 8px; }
.rhythm-demo-actions span { min-height: 50px; display: flex; align-items: center; gap: 9px; padding: 0 13px; color: #315d62; border: 1px solid #d4e0dd; border-radius: 12px; background: #fff; font: 800 10px var(--ui-font); box-shadow: 0 7px 18px rgba(38,79,80,.05); }
.rhythm-demo-actions b { width: 25px; height: 25px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #2f706c; font-size: 15px; }
.rhythm-demo-body { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(270px,.65fr); gap: 24px; padding: 22px 30px 30px; }
.rhythm-demo-body > section { min-width: 0; }
.rhythm-demo-body > section > header { padding-bottom: 12px; border-bottom: 1px solid #dce6e3; }
.rhythm-demo-body > section small,.rhythm-demo-body aside > small { color: #8a7137; font: 900 7px var(--ui-font); letter-spacing: .16em; }
.rhythm-demo-body h3 { margin: 5px 0 0; font: 500 19px "Noto Serif JP","Yu Mincho",serif; }
.rhythm-demo-body ol { margin: 0; padding: 0; list-style: none; }
.rhythm-demo-body li { display: grid; grid-template-columns: 56px 9px 1fr; gap: 12px; align-items: start; padding: 14px 0; border-bottom: 1px solid #edf2f0; }
.rhythm-demo-body time { color: #41636a; font: 10px var(--ui-font); }
.rhythm-demo-body li i { width: 7px; height: 7px; margin-top: 3px; border: 2px solid #6ba298; border-radius: 50%; box-shadow: 0 0 0 4px #edf6f3; }
.rhythm-demo-body li b { font: 500 12px "Noto Serif JP","Yu Mincho",serif; }
.rhythm-demo-body li p { margin: 3px 0 0; color: #6a7d80; font-size: 9px; }
.rhythm-demo-body aside { padding: 22px; border: 1px solid #d8e4e1; border-radius: 15px; background: #f8fbfa; }
.rhythm-demo-body aside dl { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 18px 0; }
.rhythm-demo-body aside dl div { padding: 12px; border-radius: 10px; background: #fff; }
.rhythm-demo-body aside dt { color: #718386; font: 8px var(--ui-font); }
.rhythm-demo-body aside dd { margin: 4px 0 0; color: #244f56; font: 400 22px Georgia,serif; }
.rhythm-demo-body aside dd small { margin-left: 3px; color: #61777a; font: 8px var(--ui-font); letter-spacing: 0; }
.rhythm-demo-body aside > p { margin: 0; color: #638078; font: 8px var(--ui-font); }
.rhythm-demo-body aside > p span { color: #4a8a74; }

.summary-demo { display: grid; grid-template-columns: minmax(250px,.55fr) minmax(0,1.35fr); gap: 28px; align-items: start; padding: 30px; border: 1px solid #cfddda; border-radius: 24px; background: #eaf2f0; box-shadow: 0 32px 80px rgba(31,73,76,.11); }
.summary-demo > aside { padding: 22px; border-radius: 16px; background: #173d46; box-shadow: 0 18px 44px rgba(21,57,64,.16); }
.summary-demo > aside header small { color: #d8c58d; font: 900 8px var(--ui-font); letter-spacing: .16em; }
.summary-demo > aside h3 { margin: 7px 0 16px; color: #fff; font: 500 20px "Noto Serif JP","Yu Mincho",serif; }
.summary-demo > aside label { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; color: #fff; border-top: 1px solid rgba(255,255,255,.12); }
.summary-demo > aside label span,.summary-demo > aside label b,.summary-demo > aside label small { display: block; }
.summary-demo > aside label b { font: 800 11px var(--ui-font); }
.summary-demo > aside label small { margin-top: 3px; color: #bcd0cd; font: 8px var(--ui-font); }
.summary-demo > aside label i { min-width: 31px; padding: 5px 7px; color: #173d46; border-radius: 999px; background: #d8c58d; font: 900 8px var(--ui-font); font-style: normal; text-align: center; }
.summary-demo > aside button { width: 100%; min-height: 42px; margin-top: 18px; color: #173d46; border: 0; border-radius: 9px; background: #fff; font: 900 10px var(--ui-font); }
.summary-demo-sheet { padding: 28px 32px; color: #202829; background: #fff; box-shadow: 0 12px 36px rgba(38,66,67,.12); }
.summary-demo-sheet > header { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 12px; border-bottom: 3px solid #214f57; }
.summary-demo-sheet > header small { color: #8a7137; font: 900 7px var(--ui-font); letter-spacing: .15em; }
.summary-demo-sheet > header h3 { margin: 4px 0 1px; font: 600 20px "Noto Serif JP","Yu Mincho",serif; }
.summary-demo-sheet > header p { margin: 0; color: #617376; font-size: 8px; }
.summary-demo-sheet > header > span { color: #7b5e2b; font: 800 8px/1.6 var(--ui-font); text-align: right; }
.summary-demo-sheet section { padding: 11px 0; border-bottom: 1px solid #dce4e2; }
.summary-demo-sheet h4 { display: flex; align-items: center; gap: 7px; margin: 0 0 7px; color: #27545b; font: 800 10px var(--ui-font); }
.summary-demo-sheet h4 i { width: 19px; height: 19px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #27545b; font-size: 7px; font-style: normal; }
.summary-demo-sheet section > p { margin: 0; font-size: 9px; line-height: 1.65; }
.summary-demo-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.summary-demo-sheet dl { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 0; }
.summary-demo-sheet dl div { padding: 7px; background: #f2f6f5; }
.summary-demo-sheet dt { color: #65777a; font-size: 7px; }
.summary-demo-sheet dd { margin: 2px 0 0; color: #214f57; font: 400 18px Georgia,serif; }
.summary-demo-sheet dd small { margin-left: 2px; font: 7px var(--ui-font); }
.summary-demo-sheet table { width: 100%; border-collapse: collapse; font-size: 8px; }
.summary-demo-sheet th,.summary-demo-sheet td { padding: 5px 7px; border: 1px solid #dce4e2; text-align: left; }
.summary-demo-sheet th { color: #fff; background: #27545b; }

.program-demo { overflow: hidden; border: 1px solid #cfddda; border-radius: 24px; background: #fff; box-shadow: 0 32px 80px rgba(31,73,76,.11); }
.program-demo > header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 25px 31px; color: #fff; background: linear-gradient(135deg,#183c45,#326d67); }
.program-demo > header small { color: #d8c58d; font: 900 8px var(--ui-font); letter-spacing: .16em; }
.program-demo > header h3 { margin: 6px 0 4px; font: 500 24px "Noto Serif JP","Yu Mincho",serif; }
.program-demo > header p { margin: 0; color: #c9dcda; font-size: 9px; }
.program-demo > header > strong { font: 400 42px Georgia,serif; }
.program-demo > header > strong small { margin-left: 4px; color: #d8e5e2; font: 10px var(--ui-font); letter-spacing: 0; }
.program-demo-progress { height: 5px; background: #dce7e4; }
.program-demo-progress i { height: 100%; display: block; background: #c4a45b; }
.program-demo-body { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(270px,.7fr); gap: 28px; padding: 30px; }
.program-demo-body > section > small,.program-demo-body > aside > small { color: #8a7137; font: 900 8px var(--ui-font); letter-spacing: .16em; }
.program-demo-body h4 { margin: 6px 0 17px; font: 500 20px "Noto Serif JP","Yu Mincho",serif; }
.program-demo-body > section article { display: grid; grid-template-columns: 32px 1fr auto; gap: 13px; align-items: center; padding: 15px 0; border-top: 1px solid #e0e8e6; }
.program-demo-body > section article > i { width: 30px; height: 30px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #4e877e; font: 900 9px var(--ui-font); font-style: normal; }
.program-demo-body article b { font: 800 11px var(--ui-font); }
.program-demo-body article p { margin: 3px 0 0; color: #6b7d80; font-size: 9px; }
.program-demo-body article > span { color: #315f65; border-bottom: 1px solid #b99b55; font: 800 8px var(--ui-font); }
.program-demo-body > aside { padding: 21px; border-radius: 15px; background: #f4f8f7; }
.program-demo-body > aside dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 17px 0; }
.program-demo-body > aside dl div { padding: 11px 6px; background: #fff; text-align: center; }
.program-demo-body > aside dt { color: #738486; font-size: 7px; }
.program-demo-body > aside dd { margin: 5px 0 0; color: #27545b; font: 400 21px Georgia,serif; }
.program-demo-body > aside dd small { margin-left: 2px; font: 7px var(--ui-font); }
.program-demo-body > aside > div { padding: 15px; color: #fff; border-radius: 12px; background: #27545b; }
.program-demo-body > aside > div b { font: 800 10px var(--ui-font); }
.program-demo-body > aside > div p { margin: 5px 0 10px; color: #d2e1df; font-size: 8px; line-height: 1.6; }
.program-demo-body > aside > div span { color: #eadcae; font: 800 8px var(--ui-font); }

.uro-log-showcase { padding: 90px 0 92px; border-top: 1px solid #e2eae7; background: #f5faf8; }
.uro-log-showcase-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr); gap: 72px; align-items: end; margin-bottom: 40px; }
.uro-log-showcase-heading small { color: #8a7137; font-family: var(--ui-font); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.uro-log-showcase-heading h2 { margin: 12px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: clamp(32px, 4.1vw, 48px); font-weight: 500; line-height: 1.45; }
.uro-log-showcase-heading > p { margin: 0; color: #61767a; font-size: 13px; line-height: 2; }
.uro-log-demo { overflow: hidden; border: 1px solid #cfddda; border-radius: 22px; background: #fff; box-shadow: 0 32px 80px rgba(31, 73, 76, .11); }
.uro-log-demo-header { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: 23px 30px 21px; color: #fff; background: #27545b; }
.uro-log-demo-header > div:first-child { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: baseline; }
.uro-log-demo-header > div:first-child small { grid-column: 1 / -1; margin-bottom: 5px; color: #cfdfda; font-family: var(--ui-font); font-size: 8px; font-weight: 800; letter-spacing: .17em; }
.uro-log-demo-header strong { font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; letter-spacing: .02em; }
.uro-log-demo-header p { margin: 0; color: #d8e5e2; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 12px; }
.uro-log-demo-header > div:last-child { display: flex; align-items: center; gap: 12px; }
.uro-log-demo-badge { padding: 7px 10px; color: #eadcae; border: 1px solid rgba(234, 220, 174, .38); border-radius: 999px; font-family: var(--ui-font); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.uro-log-demo-add { min-height: 42px; display: inline-flex; align-items: center; padding: 0 17px; color: #244e55; border-radius: 8px; background: #fff; font-family: var(--ui-font); font-size: 11px; font-weight: 800; box-shadow: 0 9px 24px rgba(0, 0, 0, .12); }
.uro-log-demo-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid #d7e2df; background: #fbfdfc; }
.uro-log-demo-tabs button,.uro-log-demo-tabs > span { position: relative; min-height: 54px; display: grid; place-items: center; padding: 0; color: #7a8c8e; border: 0; background: transparent; font-family: var(--ui-font); font-size: 11px; font-weight: 800; cursor: pointer; }
.uro-log-demo-tabs button + button,.uro-log-demo-tabs > span + span { border-left: 1px solid #e3ebe9; }
.uro-log-demo-tabs button[aria-selected="true"],.uro-log-demo-tabs > span[aria-current="page"] { color: #27545b; background: #fff; }
.uro-log-demo-tabs button[aria-selected="true"]::after,.uro-log-demo-tabs > span[aria-current="page"]::after { content: ""; position: absolute; right: 27%; bottom: 0; left: 27%; height: 2px; background: #b99b55; }
.uro-log-demo-tabs button:focus-visible { outline: 2px solid #6d9c95; outline-offset: -3px; }
.uro-log-demo-body { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr); }
.uro-log-demo-overview { min-width: 0; padding: 28px 30px 30px; }
.uro-log-demo-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #b99b55; border-bottom: 1px solid #d9e3e0; }
.uro-log-demo-metrics article { min-width: 0; padding: 20px 18px 19px; }
.uro-log-demo-metrics article + article { border-left: 1px solid #dfe7e5; }
.uro-log-demo-metrics small { display: block; color: #8a7137; font-family: var(--ui-font); font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.uro-log-demo-metrics span { display: block; margin-top: 10px; color: #6a7e81; font-size: 10px; }
.uro-log-demo-metrics strong { display: block; margin-top: 5px; color: #214a52; font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 400; line-height: 1.15; }
.uro-log-demo-metrics strong sub { font-family: var(--ui-font); font-size: 9px; vertical-align: baseline; }
.uro-log-demo-metrics em { display: block; margin-top: 9px; color: #52766f; font-family: var(--ui-font); font-size: 8px; font-style: normal; }
.uro-log-demo-timeline { margin-top: 27px; }
.uro-log-demo-timeline > header { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 13px; border-bottom: 1px solid #dbe5e2; }
.uro-log-demo-timeline > header small { color: #8a7137; font-family: var(--ui-font); font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.uro-log-demo-timeline h3 { margin: 4px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 19px; font-weight: 500; }
.uro-log-demo-timeline > header > span { color: #4d7470; border-bottom: 1px solid #b99b55; font-family: var(--ui-font); font-size: 8px; font-weight: 800; }
.uro-log-demo-timeline ol { margin: 0; padding: 0; list-style: none; }
.uro-log-demo-timeline li { display: grid; grid-template-columns: 70px 10px 1fr; gap: 13px; align-items: start; padding: 16px 0; border-bottom: 1px solid #edf1f0; }
.uro-log-demo-timeline time { color: #47676d; font-family: var(--ui-font); font-size: 10px; }
.uro-log-demo-timeline i { width: 7px; height: 7px; margin-top: 4px; border: 2px solid #75a89f; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px #edf6f3; }
.uro-log-demo-timeline li div { min-width: 0; }
.uro-log-demo-timeline li small { display: block; color: #967a39; font-family: var(--ui-font); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.uro-log-demo-timeline li strong { display: block; margin-top: 4px; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 13px; font-weight: 500; }
.uro-log-demo-timeline li p { margin: 5px 0 0; overflow: hidden; color: #708285; font-size: 9px; line-height: 1.6; text-overflow: ellipsis; white-space: nowrap; }
.uro-log-demo-chart { min-width: 0; padding: 31px 27px 25px; border-left: 1px solid #d9e3e0; background: #f9fcfb; }
.uro-log-demo-chart > header { display: flex; justify-content: space-between; gap: 14px; align-items: start; }
.uro-log-demo-chart > header small { display: block; color: #8a7137; font-family: var(--ui-font); font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.uro-log-demo-chart > header strong { display: block; margin-top: 6px; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 18px; font-weight: 500; }
.uro-log-demo-chart > header > span { padding: 5px 8px; color: #52746f; border: 1px solid #cfddda; border-radius: 999px; font-family: var(--ui-font); font-size: 7px; white-space: nowrap; }
.uro-log-demo-chart > p { margin: 13px 0 4px; color: #748588; font-size: 9px; }
.uro-log-demo-chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.uro-log-demo-chart svg .grid { fill: none; stroke: #dde7e4; stroke-width: 1; }
.uro-log-demo-chart svg .trend { fill: none; stroke: #2e716d; stroke-width: 3; stroke-linecap: round; }
.uro-log-demo-chart svg .glow { fill: none; stroke: #6faaa0; stroke-width: 13; stroke-linecap: round; opacity: .12; }
.uro-log-demo-chart svg circle { fill: #fff; stroke: #b99b55; stroke-width: 3; }
.uro-log-demo-chart-labels { display: flex; justify-content: space-between; gap: 12px; margin: -7px 7px 0 29px; color: #758689; font-family: var(--ui-font); font-size: 8px; }
.uro-log-demo-chart-labels span { display: grid; gap: 4px; }
.uro-log-demo-chart-labels span:nth-child(2) { text-align: center; }
.uro-log-demo-chart-labels span:last-child { text-align: right; }
.uro-log-demo-chart-labels small { color: #325d61; font-size: 8px; font-weight: 800; }
.uro-log-demo-chart footer { margin-top: 25px; padding-top: 17px; color: #7c8c8e; border-top: 1px solid #dce6e3; font-size: 8px; line-height: 1.7; }
.uro-log-demo-panel-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; padding-bottom: 20px; border-bottom: 1px solid #d9e3e0; }
.uro-log-demo-panel-heading small { color: #8a7137; font-family: var(--ui-font); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.uro-log-demo-panel-heading h3 { margin: 7px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 23px; font-weight: 500; }
.uro-log-demo-panel-heading > span { color: #6c8184; font-family: var(--ui-font); font-size: 9px; }
.uro-log-demo-history-panel,.uro-log-demo-charts-panel { padding: 31px 34px 35px; }
.uro-log-demo-history-list { margin: 0; padding: 0; list-style: none; }
.uro-log-demo-history-list li { display: grid; grid-template-columns: 92px minmax(0,1fr) 132px; gap: 26px; align-items: center; padding: 22px 0; border-bottom: 1px solid #e2eae8; }
.uro-log-demo-history-list time { display: grid; color: #315d62; font-family: Georgia,"Times New Roman",serif; }
.uro-log-demo-history-list time strong { font-size: 18px; font-weight: 400; }
.uro-log-demo-history-list time small { margin-top: 4px; color: #8a7137; font-size: 8px; }
.uro-log-demo-history-list li div > span { color: #8a7137; font-family: var(--ui-font); font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.uro-log-demo-history-list h4 { margin: 6px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 16px; font-weight: 500; }
.uro-log-demo-history-list p { margin: 5px 0 0; color: #6f8184; font-size: 10px; line-height: 1.7; }
.uro-log-demo-history-list em { justify-self: end; padding: 7px 9px; color: #47706c; border: 1px solid #d0ddda; border-radius: 999px; font-family: var(--ui-font); font-size: 8px; font-style: normal; }
.uro-log-demo-chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 25px; }
.uro-log-demo-chart-grid article { min-width: 0; padding: 24px 25px; border: 1px solid #d7e2df; background: #fbfdfc; }
.uro-log-demo-chart-grid article > small { color: #8a7137; font-family: var(--ui-font); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.uro-log-demo-chart-grid h4 { margin: 7px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 19px; font-weight: 500; }
.uro-log-demo-bars { height: 178px; display: flex; align-items: end; justify-content: space-around; gap: 18px; margin-top: 18px; padding: 15px 18px 0; border-bottom: 1px solid #bfcfcb; background: repeating-linear-gradient(to bottom,#fbfdfc 0,#fbfdfc 43px,#e7eeec 44px); }
.uro-log-demo-bars i { position: relative; width: 44px; height: var(--value); display: flex; align-items: center; justify-content: flex-start; flex-direction: column; color: #fff; background: linear-gradient(to top,#27545b,#5b9c94); font-family: var(--ui-font); font-style: normal; }
.uro-log-demo-bars b { margin-top: 8px; font-size: 10px; }
.uro-log-demo-bars span { position: absolute; top: calc(100% + 9px); color: #6d8083; font-size: 8px; }
.uro-log-showcase-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 24px; }
.uro-log-showcase-footer p { margin: 0; color: #728486; font-size: 10px; line-height: 1.8; }
.uro-log-showcase-footer a { min-width: 168px; padding: 13px 20px; color: #fff; border: 1px solid #27545b; background: #27545b; font-family: var(--ui-font); font-size: 11px; font-weight: 800; text-align: center; text-decoration: none; }
.uro-log-showcase-footer a::after { content: " →"; color: #d8c58d; }
.uro-log-showcase-footer a:hover,
.uro-log-showcase-footer a:focus-visible { color: #27545b; background: #fff; }

.continuum-page-actions { padding: 88px 0; background: var(--continuum-wash); }
.continuum-action-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #bfd3ce; }
.continuum-action-list.single { max-width: 760px; grid-template-columns: 1fr; }
.continuum-action-list.single > :nth-child(odd) { border-right: 0; }
.continuum-page-actions.future { border-top: 1px solid var(--continuum-line); background: #fff; }
.continuum-action-list a,
.continuum-action-list article { min-height: 150px; display: block; padding: 28px 30px; color: inherit; border-bottom: 1px solid #d3e0dd; text-decoration: none; }
.continuum-action-list > :nth-child(odd) { border-right: 1px solid #d3e0dd; }
.continuum-action-list small { color: #8a7137; font-family: var(--ui-font); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.continuum-action-list h3 { margin: 11px 0 0; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 22px; font-weight: 500; }
.continuum-action-list p { margin: 11px 0 0; color: #62787c; font-size: 12px; line-height: 1.85; }
.continuum-action-list a h3::after { content: " →"; color: var(--continuum-gold); }
.continuum-action-list a:hover h3,
.continuum-action-list a:focus-visible h3 { color: var(--continuum-teal); }
.continuum-page-note { margin: 28px 0 0; color: #6d8083; font-family: var(--ui-font); font-size: 11px; line-height: 1.9; }
.continuum-page-note strong { color: #315f65; }

.continuum-page-next { padding: 74px 0 90px; background: #fff; }
.continuum-next-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--continuum-line); border-bottom: 1px solid var(--continuum-line); }
.continuum-next-grid a { min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 24px 32px; color: inherit; text-decoration: none; }
.continuum-next-grid a + a { align-items: flex-end; border-left: 1px solid var(--continuum-line); text-align: right; }
.continuum-next-grid small { color: #8a7137; font-family: var(--ui-font); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.continuum-next-grid strong { margin-top: 10px; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 20px; font-weight: 500; }
.continuum-next-grid a:hover strong,
.continuum-next-grid a:focus-visible strong { color: var(--continuum-teal); }

/* Continuum pages share the compact legal footer used across the portal. */
.legal-footer { padding: 32px 24px; font-family: var(--ui-font); font-size: 10px; line-height: 1.8; }
.legal-footer-inner { width: min(1080px, 100%); display: flex; justify-content: space-between; gap: 24px; margin: 0 auto; }
.legal-footer a { color: inherit; text-decoration: none; }
.legal-footer a:hover,
.legal-footer a:focus-visible { color: var(--continuum-deep); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 760px) {
  .continuum-page-shell { width: min(100% - 32px, 1120px); }
  .continuum-page-hero { padding: 42px 0 54px; }
  .continuum-page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .continuum-page-index { width: 92px; }
  .continuum-page-index strong { margin-top: 12px; font-size: 42px; }
  .continuum-page-index.program { width: 142px; }
  .continuum-page-index.program strong { font-size: 24px; }
  .continuum-page-hero h1 { font-size: clamp(35px, 10vw, 50px); }
  .continuum-page-lead { margin-top: 22px; font-size: 15px; line-height: 1.9; }
  .continuum-page-flow { overflow-x: auto; }
  .continuum-page-flow .continuum-page-shell { width: max-content; min-width: 100%; grid-template-columns: repeat(7, minmax(74px, auto)); padding: 0 16px; }
  .continuum-page-flow a { min-height: 58px; padding: 0 13px; }
  .continuum-page-reasons { padding: 66px 0 62px; }
  .continuum-page-section-head { margin-bottom: 30px; }
  .continuum-reason-grid { grid-template-columns: 1fr; }
  .continuum-reason-grid article { min-height: 0; padding: 29px 0 32px; }
  .continuum-reason-grid article + article { border-top: 1px solid var(--continuum-line); border-left: 0; }
  .feature-showcase { padding: 64px 0 68px; }
  .feature-showcase-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .feature-showcase-heading > p { font-size: 12px; }
  .feature-showcase-footer { align-items: stretch; flex-direction: column; gap: 16px; }
  .feature-showcase-footer a { min-width: 0; }
  .program-offer-hero { padding: 48px 0 58px; }
  .program-offer-actions { display: grid; grid-template-columns: 1fr; }
  .program-offer-facts { grid-template-columns: 1fr; }
  .program-offer-facts div { padding: 15px 17px; }
  .program-promise { padding: 48px 0 52px; }
  .program-promise-copy h2 { font-size: clamp(27px,8vw,35px); }
  .program-promise-copy h2 br { display: none; }
  .program-promise-copy>p:nth-of-type(2) { font-size: 14px; line-height: 1.9; }
  .program-package { padding: 66px 0; }
  .program-package-flow { grid-template-columns: 1fr; }
  .program-package-flow li { min-height: 0; padding: 22px 18px; }
  .program-package-plus { grid-template-columns: 1fr; gap: 20px; padding: 24px 21px; }
  .program-package-plus a { min-width: 0; }
  .program-trial { padding: 66px 0 70px; }
  .program-trial-heading { grid-template-columns: 1fr; gap: 17px; margin-bottom: 27px; }
  .program-trial-heading p { font-size: 12px; }
  .program-trial-grid { grid-template-columns: 1fr; }
  .program-trial-grid>article { min-height: 0; padding: 24px 21px; }
  .program-trial-grid h3 { font-size: 21px; }
  .program-trial-footer { align-items: stretch; flex-direction: column; }
  .program-trial-footer>div { display: grid; grid-template-columns: 1fr; }
  .program-jewels { padding: 67px 0 70px; }
  .program-jewels-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .program-jewel-grid { grid-template-columns: 1fr; }
  .program-jewel-grid>a { min-height: 360px; padding: 27px 23px 25px; border-radius: 18px; }
  .program-jewel-grid h3 { padding-right: 46px; font-size: 31px; }
  .program-jewel-grid strong { padding-right: 0; font-size: 19px; }
  .program-jewel-gem { width: 32px; height: 26px; top: 27px; right: 24px; }
  .program-demo-controls { align-items: stretch; flex-direction: column; }
  .program-demo-controls>div { display: grid; grid-template-columns: 1fr 1fr; }
  .program-demo-controls button { width: 100%; }
  .program-demo-controls>p { justify-content: space-between; }
  .program-demo-tabs { grid-auto-columns: minmax(96px,1fr); }
  .program-demo-tabs button { min-height: 48px; padding: 0 11px; font-size: 12px; }
  .program-demo-panels { min-height: 0; }
  .program-demo-panel { min-height: 0; grid-template-columns: 1fr; padding: 14px; }
  .program-demo-panel>aside { min-height: 150px; }
  .program-demo-screen-copy,.program-demo-panel>.program-preview-current>article,.program-demo-panel>.feature-preview-card { padding: 20px 17px; }
  .program-demo-screen-copy h3 { font-size: 22px; }
  .program-demo-screen-copy>p,.program-demo-screen-copy li b,.program-demo-screen-copy li small { font-size: 12px; }
  .program-demo-panel>aside span,.program-demo-panel>aside small,.program-demo-status { font-size: 12px; }
  .program-demo-panel>aside b { font-size: 13px; }
  .program-preview-current { grid-template-columns: 1fr; gap: 10px; padding: 0 14px 14px; }
  .program-preview-current > article { padding: 16px; }
  .program-preview-current dl { grid-template-columns: 1fr 1fr; }
  .program-connections { padding: 66px 0; }
  .program-connection-grid { grid-template-columns: 1fr; }
  .program-connection-grid article { min-height: 0; padding: 26px 0; }
  .program-connection-grid article+article { border-top: 1px solid #d7e2df; border-left: 0; }
  .program-offer-close { padding: 62px 0; }
  .program-offer-close>div>div>div { display: grid; grid-template-columns: 1fr; }
  .program-offer-close a { justify-content: center; }
  .rhythm-demo { border-radius: 16px; }
  .rhythm-demo-top { align-items: flex-start; flex-direction: column; padding: 20px 18px; }
  .rhythm-demo-top strong { font-size: 20px; }
  .rhythm-demo-top > div:last-child { width: 100%; display: grid; grid-template-columns: repeat(3,1fr); }
  .rhythm-demo-top button { padding: 0 7px; }
  .rhythm-demo-sleep { padding: 14px 18px; }
  .rhythm-demo-actions { grid-template-columns: 1fr 1fr; padding: 17px 18px 6px; }
  .rhythm-demo-body { grid-template-columns: 1fr; padding: 18px; }
  .summary-demo { grid-template-columns: 1fr; padding: 16px; border-radius: 16px; }
  .summary-demo-sheet { padding: 20px 16px; }
  .summary-demo-sheet > header { align-items: flex-start; flex-direction: column; }
  .summary-demo-sheet > header > span { text-align: left; }
  .summary-demo-two { grid-template-columns: 1fr; gap: 0; }
  .program-demo { border-radius: 16px; }
  .program-demo > header { padding: 20px 18px; }
  .program-demo > header h3 { font-size: 20px; }
  .program-demo-body { grid-template-columns: 1fr; padding: 22px 18px; }
  .program-demo-body > section article { grid-template-columns: 30px minmax(0,1fr); }
  .program-demo-body article > span { grid-column: 2; justify-self: start; }
  .uro-log-showcase { padding: 64px 0 68px; }
  .uro-log-showcase-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .uro-log-showcase-heading > p { font-size: 12px; }
  .uro-log-demo { border-radius: 16px; box-shadow: 0 20px 52px rgba(31, 73, 76, .1); }
  .uro-log-demo-header { min-height: 0; align-items: flex-start; gap: 12px; padding: 20px 18px; }
  .uro-log-demo-header > div:first-child { display: block; }
  .uro-log-demo-header strong { display: block; margin-top: 5px; font-size: 25px; }
  .uro-log-demo-header p { margin-top: 4px; font-size: 10px; }
  .uro-log-demo-header > div:last-child { display: grid; justify-items: end; gap: 9px; }
  .uro-log-demo-add { min-height: 36px; padding: 0 11px; font-size: 9px; }
  .uro-log-demo-badge { font-size: 7px; }
  .uro-log-demo-tabs button { min-height: 48px; }
  .uro-log-demo-body { grid-template-columns: 1fr; }
  .uro-log-demo-overview { padding: 20px 17px 24px; }
  .uro-log-demo-metrics { grid-template-columns: 1fr 1fr; }
  .uro-log-demo-metrics article { padding: 17px 13px; }
  .uro-log-demo-metrics article:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid #dfe7e5; border-left: 0; }
  .uro-log-demo-metrics strong { font-size: 22px; }
  .uro-log-demo-timeline li { grid-template-columns: 59px 8px minmax(0, 1fr); gap: 10px; }
  .uro-log-demo-timeline li p { white-space: normal; }
  .uro-log-demo-chart { padding: 27px 20px 24px; border-top: 1px solid #d9e3e0; border-left: 0; }
  .uro-log-demo-history-panel,.uro-log-demo-charts-panel { padding: 24px 18px 29px; }
  .uro-log-demo-panel-heading { align-items: flex-start; flex-direction: column; gap: 7px; padding-bottom: 16px; }
  .uro-log-demo-panel-heading h3 { font-size: 19px; }
  .uro-log-demo-history-list li { grid-template-columns: 68px minmax(0,1fr); gap: 13px; padding: 18px 0; }
  .uro-log-demo-history-list li em { grid-column: 2; justify-self: start; }
  .uro-log-demo-chart-grid { grid-template-columns: 1fr; }
  .uro-log-demo-chart-grid article { padding: 21px 18px; }
  .uro-log-demo-bars { height: 155px; }
  .uro-log-showcase-footer { align-items: stretch; flex-direction: column; gap: 16px; }
  .uro-log-showcase-footer a { min-width: 0; }
  .continuum-page-actions { padding: 62px 0; }
  .continuum-action-list { grid-template-columns: 1fr; }
  .continuum-action-list a,
  .continuum-action-list article { min-height: 0; padding: 25px 0 27px; }
  .continuum-action-list > :nth-child(odd) { border-right: 0; }
  .continuum-page-next { padding: 54px 0 66px; }
  .continuum-next-grid { grid-template-columns: 1fr; }
  .continuum-next-grid a { min-height: 104px; padding: 20px 0; }
  .continuum-next-grid a + a { align-items: flex-start; border-top: 1px solid var(--continuum-line); border-left: 0; text-align: left; }
  .legal-footer { padding: 26px 20px; }
  .legal-footer-inner { align-items: flex-start; flex-direction: column; gap: 5px; }
}

/* Public screen previews remain readable when the preview itself becomes the
   full-width mobile surface. Tiny desktop mock-up labels are raised to a
   practical minimum without changing the surrounding page typography. */
@media (max-width: 760px) {
  .feature-preview-chrome { font-size: 12px; }
  .feature-preview-chrome small { font-size: 12px; }
  .feature-preview-product > div > small,
  .feature-preview-card > header > small,
  .feature-preview-scenes header small,
  .program-preview-family small,
  .summary-preview-outputs small { font-size: 12px; }
  .feature-preview-product p { font-size: 12px; }
  .feature-preview-product > span { font-size: 12px; }
  .feature-preview-tabs span { font-size: 12px; }
  .feature-preview-card > header p { font-size: 12px; }
  .feature-preview-action { font-size: 12px; }
  .feature-preview-scenes header b { font-size: 14px; }
  .feature-preview-scenes > article > p { font-size: 12px; line-height: 1.6; }
  .preview-timeline time,
  .preview-timeline li > span { font-size: 12px; }
  .preview-mini-table span,
  .preview-mini-table b { font-size: 12px; }

  .rhythm-preview-actions article > i { font-size: 12px; }
  .rhythm-preview-actions b { font-size: 12px; }
  .rhythm-preview-actions small { font-size: 12px; }
  .rhythm-preview-entry label small { font-size: 12px; }
  .rhythm-preview-entry label b { font-size: 14px; }
  .rhythm-preview-entry label b i { font-size: 12px; }
  .rhythm-preview-entry > p { font-size: 12px; }
  .rhythm-preview-three-day > strong small,
  .rhythm-preview-three-day dt,
  .rhythm-preview-three-day dd small { font-size: 12px; }
  .rhythm-preview-three-day dd { font-size: 18px; }

  .log-preview-start label small { font-size: 12px; }
  .log-preview-start label b { font-size: 13px; }
  .log-preview-select i { font-size: 12px; }
  .log-preview-select b { font-size: 12px; }
  .log-preview-flow li i,
  .log-preview-flow li b { font-size: 12px; }
  .preview-medication i { font-size: 12px; }
  .preview-medication b { font-size: 12px; }
  .preview-medication small { font-size: 12px; }

  .program-preview-task > div span small { font-size: 12px; }
  .program-preview-task > div span b { font-size: 13px; }
  .program-preview-task > div span p { font-size: 12px; }
  .program-preview-status dt { font-size: 12px; }
  .program-preview-status dd small { font-size: 12px; }
  .program-preview-progress > p { font-size: 12px; }
  .program-preview-family b { font-size: 14px; }
  .program-preview-family p { font-size: 12px; }
  .program-preview-family span { font-size: 12px; }
  .program-preview-summary li b,
  .program-preview-summary li small,
  .program-preview-current header small,
  .program-preview-current dt,
  .program-preview-current dd small,
  .program-preview-current li i,
  .program-preview-current li span,
  .program-preview-current li b { font-size: 12px; }
  .program-preview-current header b { font-size: 15px; }
  .program-preview-current dd { font-size: 18px; }

  .summary-preview-steps > span { font-size: 12px; }
  .summary-preview-steps i { font-size: 12px; }
  .summary-preview-choice article i { font-size: 12px; }
  .summary-preview-choice article b { font-size: 12px; }
  .summary-preview-choice article small,
  .summary-preview-choice article em { font-size: 12px; }
  .summary-preview-choice > p { font-size: 12px; }
  .summary-preview-import > div i,
  .summary-preview-import > div b,
  .summary-preview-import > div small { font-size: 12px; }
  .summary-preview-outputs b { font-size: 13px; }
  .summary-preview-outputs span { font-size: 12px; }
  .feature-preview .summary-demo-sheet > header p,
  .feature-preview .summary-demo-sheet dt,
  .feature-preview .summary-demo-sheet table { font-size: 12px; }
  .feature-preview .summary-demo-sheet h4 i { font-size: 12px; }
  .feature-preview .summary-demo-sheet section > p { font-size: 12px; }

  .visit-preview-paper header small,
  .visit-preview-paper header p,
  .visit-preview-paper header > span,
  .visit-preview-paper > section small,
  .visit-preview-paper > div section small { font-size: 12px; }
  .visit-preview-paper > section b,
  .visit-preview-paper > div section b { font-size: 12px; }
  .visit-preview-paper p { font-size: 12px; }
  .visit-preview-phone header small { font-size: 12px; }
  .visit-preview-phone > article > i { font-size: 12px; }
  .visit-preview-phone article b { font-size: 12px; }
  .visit-preview-phone article small,
  .visit-preview-phone > p { font-size: 12px; }
  .visit-preview-flow article b { font-size: 12px; }
  .visit-preview-flow article small { font-size: 12px; }
}
