:root {
  --open-beta-blue: #075fb7;
  --open-beta-blue-dark: #064b91;
  --open-beta-navy: #111d2b;
  --open-beta-text: #151b24;
  --open-beta-muted: #4d5968;
  --open-beta-border: #bac5d2;
  --open-beta-soft-blue: #eef6ff;
}

.open-beta-shell,
.open-beta-shell * {
  box-sizing: border-box;
}

.open-beta-shell {
  min-width: 320px;
  margin: 0;
  color: var(--open-beta-text);
  background: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.open-beta-shell h1,
.open-beta-shell h2,
.open-beta-shell h3,
.open-beta-shell p,
.open-beta-shell dl,
.open-beta-shell dd,
.open-beta-shell ul,
.open-beta-shell ol {
  margin-top: 0;
}

.open-beta-shell a:focus-visible,
.open-beta-shell button:focus-visible,
.open-beta-shell summary:focus-visible,
.open-beta-shell input:focus-visible,
.open-beta-shell select:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.open-beta-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  clip-path: inset(50%);
  color: #fff;
  background: var(--open-beta-blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

.open-beta-skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  padding: 10px 16px;
  clip-path: none;
  color: #fff;
}

.open-beta-site-header {
  position: relative;
  z-index: 50;
  min-height: 64px;
  color: #fff;
  background: var(--open-beta-navy);
}

.open-beta-site-header__inner {
  display: flex;
  align-items: center;
  width: min(100% - 48px, 1280px);
  min-height: 64px;
  margin: 0 auto;
}

.open-beta-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  flex: 0 0 auto;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}

.open-beta-brand:hover,
.open-beta-brand:focus {
  color: #fff;
  text-decoration: none;
}

.open-beta-brand i {
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
}

.open-beta-desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
}

.open-beta-desktop-nav a,
.open-beta-header-login {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
}

.open-beta-desktop-nav a:hover,
.open-beta-desktop-nav a:focus,
.open-beta-header-login:hover,
.open-beta-header-login:focus {
  color: #dbeafe;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.open-beta-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: clamp(24px, 3vw, 48px);
}

.open-beta-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 20px;
  border: 1px solid #1e73cf;
  border-radius: 4px;
  color: #fff;
  background: #0d63b9;
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
}

.open-beta-header-cta:hover,
.open-beta-header-cta:focus {
  border-color: #2d87e5;
  color: #fff;
  background: #084f95;
  text-decoration: none;
}

.open-beta-mobile-menu {
  display: none;
  margin-left: auto;
}

.open-beta-mobile-menu summary {
  min-height: 44px;
  padding: 10px 32px 10px 12px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.open-beta-mobile-menu nav {
  position: absolute;
  top: 64px;
  right: 16px;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid #46566b;
  border-radius: 6px;
  background: var(--open-beta-navy);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.open-beta-mobile-menu nav a {
  min-height: 44px;
  padding: 9px 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.open-beta-mobile-menu__cta {
  margin-top: 8px;
  border-radius: 4px;
  background: var(--open-beta-blue);
  text-align: center;
}

.open-beta-site-footer {
  color: #fff;
  background: var(--open-beta-navy);
}

.open-beta-site-footer__inner {
  display: grid;
  gap: 40px;
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  padding: 46px 0 52px;
  grid-template-columns: 1.35fr repeat(3, 1fr) 1fr;
}

.open-beta-footer-brand p,
.open-beta-footer-copyright {
  margin: 10px 0 0;
  color: #d4dde7;
  font-size: .88rem;
}

.open-beta-site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.open-beta-site-footer nav strong {
  margin-bottom: 4px;
}

.open-beta-site-footer nav a {
  color: #e4eaf1;
  font-size: .9rem;
  text-decoration: none;
}

.open-beta-site-footer nav a:hover,
.open-beta-site-footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}

.open-beta-footer-copyright {
  line-height: 1.75;
  text-align: right;
}

.open-beta-page {
  color: var(--open-beta-text);
  background: #fff;
}

.open-beta-container {
  width: min(100% - 48px, 1200px);
  margin-right: auto;
  margin-left: auto;
}

.open-beta-reading-width {
  max-width: 1120px;
}

.open-beta-form-width {
  max-width: 940px;
}

.open-beta-message-wrap {
  width: min(100% - 48px, 1200px);
  margin: 20px auto 0;
}

.open-beta-hero {
  padding: 56px 0 58px;
  border-bottom: 1px solid #dce5ee;
  background: linear-gradient(115deg, #fff 0%, #f6faff 56%, #edf4fb 100%);
}

.open-beta-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(40px, 5vw, 68px);
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr);
}

.open-beta-hero-copy {
  min-width: 0;
}

.open-beta-hero-copy h1 {
  margin: 0 0 24px;
  color: #101318;
  font-size: clamp(2.5rem, 4.2vw, 3.45rem);
  line-height: 1.3;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.open-beta-hero-copy p {
  max-width: 640px;
  margin-bottom: 13px;
  color: #202a36;
  line-height: 1.8;
}

.open-beta-hero-copy .open-beta-hero-lead {
  margin-bottom: 11px;
  font-size: 1.04rem;
}

.open-beta-hero-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 32px 0 12px;
}

.open-beta-primary-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 340px);
  min-height: 56px;
  padding: 13px 26px !important;
  border: 1px solid var(--open-beta-blue) !important;
  border-radius: 5px !important;
  color: #fff !important;
  background: var(--open-beta-blue) !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  line-height: 1.35;
  text-decoration: none !important;
  box-shadow: 0 5px 13px rgba(7, 95, 183, .16);
}

.open-beta-primary-action:hover,
.open-beta-primary-action:focus {
  border-color: var(--open-beta-blue-dark) !important;
  background: var(--open-beta-blue-dark) !important;
}

.open-beta-login-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--open-beta-blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.open-beta-hero-copy .open-beta-hero-billing {
  margin-bottom: 17px;
  color: var(--open-beta-muted);
  font-size: .93rem;
}

.open-beta-hero-copy .open-beta-hero-period {
  margin-bottom: 0;
  padding-top: 13px;
  border-top: 1px solid #cbd6e2;
  font-size: .93rem;
}

.open-beta-product-preview {
  overflow: hidden;
  border: 1px solid #9eacbc;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(36, 52, 70, .12);
}

.open-beta-product-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.open-beta-preview-head {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 48px;
  padding: 10px 14px;
  border-bottom: 1px solid #d1d9e2;
}

.open-beta-preview-head span,
.open-beta-preview-nav > strong {
  color: #111820;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
}

.open-beta-preview-head strong {
  overflow: hidden;
  font-size: .79rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.open-beta-preview-body {
  display: grid;
  min-height: 382px;
  grid-template-columns: 106px minmax(0, 1fr);
}

.open-beta-preview-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 8px;
  border-right: 1px solid #d1d9e2;
  background: #fbfcfe;
}

.open-beta-preview-nav > strong {
  display: none;
  padding: 0 6px 8px;
  font-size: .7rem;
}

.open-beta-preview-nav span {
  padding: 5px 6px;
  color: #506073;
  font-size: .59rem;
  white-space: nowrap;
}

.open-beta-preview-nav span i {
  width: 13px;
  color: #61768d;
  text-align: center;
}

.open-beta-preview-nav .is-active {
  color: var(--open-beta-blue-dark);
  background: #e9f3ff;
  font-weight: 700;
}

.open-beta-preview-nav .is-active i {
  color: var(--open-beta-blue);
}

.open-beta-preview-workspace {
  min-width: 0;
}

.open-beta-preview-titlebar {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 47px;
  padding: 8px 12px;
  border-bottom: 1px solid #e1e6ec;
  white-space: nowrap;
}

.open-beta-preview-titlebar strong {
  margin-right: auto;
  font-size: .7rem;
}

.open-beta-preview-titlebar span {
  padding: 7px 0;
  color: #4a5868;
  font-size: .53rem;
}

.open-beta-preview-titlebar span:first-of-type {
  border-bottom: 2px solid var(--open-beta-blue);
  color: var(--open-beta-blue-dark);
  font-weight: 700;
}

.open-beta-preview-content {
  padding: 13px;
}

.open-beta-preview-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.open-beta-preview-summary div {
  padding: 8px;
  border: 1px solid #d9e0e7;
  background: #fff;
}

.open-beta-preview-summary small,
.open-beta-preview-summary strong {
  display: block;
}

.open-beta-preview-summary small {
  color: #5a6878;
  font-size: .53rem;
}

.open-beta-preview-summary strong {
  margin-top: 1px;
  font-size: .72rem;
}

.open-beta-preview-visuals {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
  grid-template-columns: .88fr 1.12fr;
}

.open-beta-preview-visual {
  min-width: 0;
  padding: 9px;
  border: 1px solid #e0e6ed;
}

.open-beta-preview-visual > strong {
  display: block;
  margin-bottom: 6px;
  font-size: .58rem;
}

.open-beta-preview-donut {
  position: relative;
  display: grid;
  width: 90px;
  height: 90px;
  margin: 0 auto 7px;
  border-radius: 50%;
  background: conic-gradient(#438ed9 0 48.7%, #cbd2da 48.7% 82.9%, #ef625d 82.9% 100%);
  place-items: center;
}

.open-beta-preview-donut::after {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.open-beta-preview-donut span {
  position: relative;
  z-index: 1;
  font-size: .63rem;
  font-weight: 700;
  text-align: center;
}

.open-beta-preview-donut small {
  display: block;
  font-size: .48rem;
}

.open-beta-preview-legend {
  margin: 0;
  padding: 0;
  list-style: none;
}

.open-beta-preview-legend li {
  display: grid;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
  color: #4a5868;
  font-size: .48rem;
  grid-template-columns: 7px minmax(0, 1fr) auto;
}

.open-beta-preview-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.open-beta-preview-legend .is-positive { background: #438ed9; }
.open-beta-preview-legend .is-neutral { background: #aab3be; }
.open-beta-preview-legend .is-negative { background: #ef625d; }

.open-beta-preview-ranking ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.open-beta-preview-ranking li {
  display: grid;
  align-items: center;
  gap: 5px;
  min-height: 18px;
  grid-template-columns: 52px minmax(54px, 1fr) 21px;
}

.open-beta-preview-ranking em,
.open-beta-preview-ranking b {
  overflow: hidden;
  font-size: .48rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.open-beta-preview-ranking li > span {
  display: block;
  height: 6px;
  background: #e7eef5;
}

.open-beta-preview-ranking li > span i {
  display: block;
  width: var(--bar-size);
  height: 100%;
  background: #4f99df;
}

.open-beta-preview-chat {
  position: relative;
  min-height: 64px;
  padding: 9px 10px;
  border-top: 1px solid #dbe3ec;
  background: #f8fbff;
}

.open-beta-preview-chat strong {
  display: block;
  margin-bottom: 4px;
  font-size: .56rem;
}

.open-beta-preview-chat span {
  position: absolute;
  top: 9px;
  right: 9px;
  max-width: 55%;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--open-beta-blue);
  font-size: .43rem;
}

.open-beta-preview-chat p {
  width: 68%;
  margin: 0;
  padding: 6px;
  color: #425165;
  background: #edf2f7;
  font-size: .44rem;
  line-height: 1.5;
}

.open-beta-section {
  padding: 46px 0;
  background: #fff;
}

.open-beta-divider-heading {
  display: grid;
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
}

.open-beta-divider-heading span {
  height: 1px;
  background: #9fabb8;
}

.open-beta-divider-heading h2,
.open-beta-centered-heading {
  margin: 0;
  color: #101318;
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.open-beta-capability-list {
  border-bottom: 1px solid #c8d1db;
}

.open-beta-capability-list article {
  display: grid;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 18px 28px;
  border-top: 1px solid #c8d1db;
  grid-template-columns: 54px 290px minmax(0, 1fr);
}

.open-beta-capability-list article > i {
  color: var(--open-beta-blue);
  font-size: 2rem;
  text-align: center;
}

.open-beta-capability-list h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.open-beta-capability-list p {
  margin: 0;
  color: #303b48;
  font-size: .96rem;
  line-height: 1.75;
}

.open-beta-limits-section {
  padding-top: 22px;
}

.open-beta-limits-section .open-beta-centered-heading {
  margin-bottom: 18px;
}

.open-beta-table-wrap {
  overflow-x: auto;
  border: 1px solid #9ba8b6;
  background: #fff;
}

.open-beta-limit-table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
}

.open-beta-limit-table th,
.open-beta-limit-table td {
  padding: 8px 14px;
  border-right: 1px solid #c5ced8;
  border-bottom: 1px solid #c5ced8;
  text-align: center;
  vertical-align: middle;
}

.open-beta-limit-table th:last-child,
.open-beta-limit-table td:last-child {
  border-right: 0;
}

.open-beta-limit-table thead th {
  color: #151b24;
  background: #f2f4f7;
  font-size: .94rem;
  font-weight: 700;
}

.open-beta-limit-table thead th:nth-child(2) {
  color: #fff;
  background: var(--open-beta-blue);
}

.open-beta-limit-table thead small {
  font-size: .82rem;
}

.open-beta-limit-table tbody th {
  width: 34%;
  color: #202a36;
  font-size: .93rem;
  font-weight: 400;
  text-align: left;
}

.open-beta-limit-table tbody td {
  width: 33%;
  font-size: .93rem;
}

.open-beta-limit-table tbody tr:last-child th,
.open-beta-limit-table tbody tr:last-child td {
  border-bottom: 0;
}

.open-beta-limit-footnote {
  margin: 10px 0 0;
  color: #3f4b59;
  font-size: .89rem;
}

.open-beta-flow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.open-beta-flow-list li {
  position: relative;
  display: grid;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 18px 40px 18px 16px;
  grid-template-columns: minmax(0, 1fr) 56px;
}

.open-beta-flow-list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: #172333;
  content: "›";
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.open-beta-flow-list li > div {
  display: grid;
  align-items: center;
  gap: 6px 9px;
  grid-template-columns: 28px minmax(0, 1fr);
}

.open-beta-flow-list li > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--open-beta-blue);
  font-size: .85rem;
  font-weight: 700;
}

.open-beta-flow-list h3 {
  margin: 0;
  color: var(--open-beta-blue-dark);
  font-size: .99rem;
  font-weight: 700;
  line-height: 1.5;
}

.open-beta-flow-list p {
  margin: 0;
  color: #3a4654;
  font-size: .88rem;
  line-height: 1.65;
  grid-column: 1 / -1;
}

.open-beta-flow-list li > i {
  color: var(--open-beta-blue);
  font-size: 2.45rem;
  text-align: center;
}

.open-beta-flow-note {
  margin: 4px 0 22px;
  font-size: .88rem;
  text-align: center;
}

.open-beta-after-box {
  padding: 20px 28px;
  border: 1px solid #76aee4;
  background: #f6faff;
}

.open-beta-after-box h2 {
  margin: 0 0 8px;
  color: var(--open-beta-blue-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.open-beta-after-box h2 i {
  margin-right: 8px;
}

.open-beta-after-box ul {
  margin: 0;
  padding-left: 26px;
}

.open-beta-after-box li {
  margin: 3px 0;
  color: #263341;
  font-size: .91rem;
  line-height: 1.65;
}

.open-beta-faq-section {
  padding-top: 10px;
}

.open-beta-faq-section .open-beta-centered-heading {
  margin-bottom: 16px;
}

.open-beta-faq-list {
  border: 1px solid #c2cbd5;
  border-bottom: 0;
}

.open-beta-faq-list details {
  border-bottom: 1px solid #c2cbd5;
  background: #fff;
}

.open-beta-faq-list summary {
  position: relative;
  min-height: 50px;
  padding: 12px 52px 12px 20px;
  font-size: .98rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
}

.open-beta-faq-list summary::-webkit-details-marker {
  display: none;
}

.open-beta-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 19px;
  color: #111820;
  content: "›";
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .18s ease;
}

.open-beta-faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.open-beta-faq-list details p {
  max-width: 880px;
  margin: 0;
  padding: 0 52px 18px 20px;
  color: var(--open-beta-muted);
  font-size: .94rem;
}

.open-beta-application-section {
  padding-top: 18px;
  padding-bottom: 54px;
}

.open-beta-state-panel,
.open-beta-application-form {
  padding: 28px 40px;
  border: 2px solid var(--open-beta-blue);
  background: #fff;
  text-align: center;
}

.open-beta-state-panel h2,
.open-beta-application-heading h2 {
  margin: 0 0 4px;
  color: var(--open-beta-blue-dark);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.45;
}

.open-beta-state-panel p,
.open-beta-application-heading p {
  max-width: 720px;
  margin: 0 auto 15px;
  color: #2f3a47;
}

.open-beta-state-panel .open-beta-primary-action {
  min-height: 52px;
  margin: 2px auto 8px;
}

.open-beta-state-panel small {
  display: block;
  color: var(--open-beta-muted);
}

.open-beta-state-panel .open-beta-final-period {
  margin: 7px auto 0;
  color: var(--open-beta-muted);
  font-size: .88rem;
}

.open-beta-state-panel--success {
  border-top-width: 6px;
  border-top-color: #197a4b;
}

.open-beta-application-heading {
  margin-bottom: 24px;
  text-align: center;
}

.open-beta-application-form {
  border-width: 1px;
  border-color: #9eacbc;
  text-align: left;
}

.open-beta-form-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.open-beta-field--full {
  grid-column: 1 / -1;
}

.open-beta-field label,
.open-beta-field legend {
  display: block;
  margin-bottom: 8px;
  color: #202a36;
  font-size: 1rem;
  font-weight: 700;
}

.open-beta-field label > span,
.open-beta-field legend > span {
  color: #a32118;
  font-size: .86rem;
}

.open-beta-field .form-control {
  min-height: 48px;
  border-color: #667789;
  border-radius: 4px;
  font-size: 1rem;
}

.open-beta-field small {
  display: block;
  margin-top: 6px;
  color: var(--open-beta-muted);
}

.open-beta-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.open-beta-radio-list label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #667789;
  border-radius: 4px;
  font-weight: 400;
  cursor: pointer;
}

.open-beta-radio-list input,
.open-beta-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.open-beta-application-form .errorlist {
  margin: 7px 0 0;
  padding: 0;
  color: #a32118;
  font-size: .92rem;
  list-style: none;
}

.open-beta-consent {
  margin: 28px 0 22px;
  padding: 18px;
  border: 1px solid #9eacbc;
  background: #f8fafc;
}

.open-beta-consent > label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}

.open-beta-consent input {
  margin-top: 4px;
}

.open-beta-consent a {
  color: var(--open-beta-blue-dark);
  text-decoration: underline;
}

.open-beta-submit-note {
  margin: 10px 0 0;
  color: var(--open-beta-muted);
  font-size: .92rem;
}

/*
 * The campaign shares the normal public shell. Keep the shared header and
 * footer untouched while preserving the campaign-specific type scale inside
 * the page body where the public design system has generic heading rules.
 */
body.kotopy-shell.open-beta-shell .open-beta-primary-action {
  min-height: 56px;
  border-radius: 5px !important;
  line-height: 1.35;
}

body.kotopy-shell.open-beta-shell .open-beta-hero-copy h1 {
  color: #101318;
  font-size: clamp(2.5rem, 4.2vw, 3.45rem);
  line-height: 1.3;
  letter-spacing: -.035em;
}

body.kotopy-shell.open-beta-shell .open-beta-hero-copy p {
  line-height: 1.8;
}

body.kotopy-shell.open-beta-shell .open-beta-divider-heading h2,
body.kotopy-shell.open-beta-shell .open-beta-centered-heading {
  color: #101318;
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  line-height: 1.4;
}

body.kotopy-shell.open-beta-shell .open-beta-capability-list h3 {
  font-size: 1.08rem;
  line-height: 1.5;
}

body.kotopy-shell.open-beta-shell .open-beta-capability-list p {
  line-height: 1.75;
}

body.kotopy-shell.open-beta-shell .open-beta-flow-list h3 {
  color: var(--open-beta-blue-dark);
  font-size: .99rem;
  line-height: 1.5;
}

body.kotopy-shell.open-beta-shell .open-beta-flow-list p,
body.kotopy-shell.open-beta-shell .open-beta-after-box li {
  line-height: 1.65;
}

body.kotopy-shell.open-beta-shell .open-beta-after-box h2 {
  color: var(--open-beta-blue-dark);
  font-size: 1.08rem;
}

body.kotopy-shell.open-beta-shell .open-beta-state-panel h2,
body.kotopy-shell.open-beta-shell .open-beta-application-heading h2 {
  color: var(--open-beta-blue-dark);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1.45;
}

body.kotopy-shell.open-beta-shell .open-beta-preview-summary small {
  font-size: .53rem !important;
}

body.kotopy-shell.open-beta-shell .open-beta-preview-donut small {
  font-size: .48rem !important;
}

body.kotopy-shell.open-beta-shell .open-beta-limit-table thead small {
  font-size: .82rem !important;
}

body.kotopy-shell.open-beta-shell .open-beta-field small {
  font-size: .85rem !important;
}

@media (max-width: 1180px) {
  .open-beta-desktop-nav,
  .open-beta-header-actions {
    display: none;
  }

  .open-beta-mobile-menu {
    display: block;
  }

  .open-beta-hero-grid {
    gap: 36px;
    grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  }

  .open-beta-hero-copy h1 {
    font-size: 2.55rem;
  }
}

@media (max-width: 980px) {
  .open-beta-hero-grid {
    grid-template-columns: 1fr;
  }

  .open-beta-hero-copy {
    max-width: 720px;
  }

  .open-beta-product-preview {
    width: min(100%, 690px);
    margin: 0 auto;
  }

  .open-beta-capability-list article {
    grid-template-columns: 52px 230px minmax(0, 1fr);
  }

  .open-beta-flow-list li {
    padding-right: 32px;
    padding-left: 8px;
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .open-beta-flow-list li > i {
    font-size: 2rem;
  }

  .open-beta-site-footer__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .open-beta-footer-brand,
  .open-beta-footer-copyright {
    grid-column: span 2;
  }
}

@media (max-width: 767.98px) {
  .open-beta-site-header__inner,
  .open-beta-container,
  .open-beta-message-wrap,
  .open-beta-site-footer__inner {
    width: min(100% - 28px, 1200px);
  }

  .open-beta-hero {
    padding: 42px 0 46px;
  }

  .open-beta-hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 2.8rem);
    white-space: normal;
  }

  .open-beta-preview-body {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .open-beta-preview-titlebar span:nth-of-type(n+3) {
    display: none;
  }

  .open-beta-section {
    padding: 40px 0;
  }

  .open-beta-divider-heading {
    gap: 16px;
  }

  .open-beta-capability-list article {
    align-items: start;
    gap: 6px 16px;
    padding: 20px 10px;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .open-beta-capability-list article > i {
    font-size: 1.7rem;
    grid-row: 1 / span 2;
  }

  .open-beta-capability-list p {
    grid-column: 2;
  }

  .open-beta-flow-list {
    grid-template-columns: 1fr;
  }

  .open-beta-flow-list li {
    min-height: 126px;
    padding: 14px 44px 14px 14px;
    border-bottom: 1px solid #d3dbe4;
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .open-beta-flow-list li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    z-index: 1;
    transform: translateX(50%) rotate(90deg);
  }

  .open-beta-after-box {
    padding: 20px;
  }

  .open-beta-state-panel,
  .open-beta-application-form {
    padding: 24px 18px;
  }

  .open-beta-form-grid {
    grid-template-columns: 1fr;
  }

  .open-beta-field--full {
    grid-column: auto;
  }

  .open-beta-site-footer__inner {
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .open-beta-footer-brand,
  .open-beta-footer-copyright {
    grid-column: 1 / -1;
  }

  .open-beta-footer-copyright {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .open-beta-brand {
    font-size: 1.35rem;
  }

  .open-beta-primary-action {
    width: 100%;
    min-width: 0;
  }

  .open-beta-product-preview {
    overflow: hidden;
  }

  .open-beta-preview-body {
    grid-template-columns: 1fr;
  }

  .open-beta-preview-nav {
    display: none;
  }

  .open-beta-preview-titlebar {
    gap: 9px;
  }

  .open-beta-preview-titlebar span:nth-of-type(n+2) {
    display: none;
  }

  .open-beta-preview-content {
    padding: 10px;
  }

  .open-beta-preview-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .open-beta-preview-summary div:last-child {
    display: none;
  }

  .open-beta-preview-visuals {
    grid-template-columns: .9fr 1.1fr;
  }

  .open-beta-preview-donut {
    width: 78px;
    height: 78px;
  }

  .open-beta-preview-donut::after {
    width: 44px;
    height: 44px;
  }

  .open-beta-preview-ranking li {
    grid-template-columns: 43px minmax(38px, 1fr) 18px;
  }

  .open-beta-divider-heading {
    grid-template-columns: 24px minmax(0, auto) 24px;
  }

  .open-beta-after-box li {
    margin-bottom: 8px;
  }

  .open-beta-radio-list {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .open-beta-shell *,
  .open-beta-shell *::before,
  .open-beta-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
