/* Option 1 continuation — explore, product, submit */
.option-page {
  --option-blue: #0867e8;
  --option-blue-dark: #0349aa;
  --option-ink: #090c13;
  --option-muted: #687082;
  --option-line: #dfe3ea;
  --option-soft: #f6f8fb;
  --option-yellow: #f2bb00;
  --paper: #f6f8fb;
  --paper-deep: #eaf2ff;
  --surface: #ffffff;
  --ink: #090c13;
  --muted: #687082;
  --line: #dfe3ea;
  --blue: #0867e8;
  --blue-deep: #0349aa;
  --yellow: #f2bb00;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--option-ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

.option-page :focus-visible {
  outline: 3px solid #ffcc21;
  outline-offset: 3px;
}

.option-page .option-nav a[aria-current="page"] {
  color: var(--option-blue);
  border-bottom-color: var(--option-blue);
}

.option-page .option-header__submit[aria-current="page"] {
  background: var(--option-blue-dark);
}

.option-kicker {
  margin: 0 0 16px;
  color: var(--option-blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .16em;
}

/* Shared inner-page hero */
.option-page-hero {
  overflow: hidden;
  color: var(--option-ink);
  background: #f2f7ff;
  border-bottom: 1px solid #dbe6f5;
}

.option-page-hero__grid {
  display: grid;
  min-height: 340px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: stretch;
  gap: 72px;
}

.option-page-hero__copy {
  align-self: center;
  max-width: 780px;
  padding: 58px 0 62px;
}

.option-page-hero h1 {
  margin: 0;
  color: #05070b;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.075em;
}

.option-page-hero__copy > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4f5a6b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.9;
}

.option-page-hero__fact {
  position: relative;
  display: flex;
  min-height: 280px;
  padding: 38px 40px;
  align-self: stretch;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  background: var(--option-blue);
  border-left: 1px solid #dbe6f5;
}

.option-page-hero__fact::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 9px;
  background: var(--option-yellow);
  content: "";
}

.option-page-hero__fact > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.option-page-hero__fact strong {
  margin-top: 12px;
  font-size: 92px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.08em;
}

.option-page-hero__fact p {
  margin: 8px 0 24px;
  font-size: 19px;
  font-weight: 900;
}

.option-page-hero__fact small {
  padding-top: 18px;
  color: rgb(255 255 255 / 72%);
  border-top: 1px solid rgb(255 255 255 / 28%);
  font-size: 10px;
  line-height: 1.7;
}

/* Explore */
.option-page .catalog-body {
  padding: 52px 0 104px;
  background: #fff;
}

.option-catalog-panel {
  margin-bottom: 28px;
  padding: 22px;
  background: var(--option-soft);
  border: 1px solid var(--option-line);
  border-radius: 12px;
}

.option-page .catalog-search {
  width: 100%;
  height: 62px;
  display: grid;
  padding: 0 7px 0 20px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid #afb8c6;
  border-radius: 8px;
}

.option-page .catalog-search:focus-within {
  border-color: var(--option-blue);
  box-shadow: 0 0 0 3px rgb(8 103 232 / 12%);
}

.option-page .catalog-search > img {
  width: 22px;
  height: 22px;
}

.option-page .catalog-search input {
  min-width: 0;
  height: 100%;
  padding: 0;
  color: var(--option-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.option-page .catalog-search button {
  min-width: 90px;
  height: 48px;
  align-self: auto;
  color: #fff;
  background: var(--option-blue);
  border: 0;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.option-catalog-controls {
  display: flex;
  margin-top: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.option-page .filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.option-page .filter-chip {
  min-height: 38px;
  padding: 0 15px;
  color: #3f4a5b;
  background: #fff;
  border: 1px solid #ccd2dc;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.option-page .filter-chip:hover,
.option-page .filter-chip.is-active {
  color: #fff;
  background: var(--option-blue);
  border-color: var(--option-blue);
}

.catalog-sort {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: #687082;
  font-size: 10px;
  font-weight: 800;
}

.catalog-sort select {
  height: 38px;
  padding: 0 32px 0 12px;
  color: #263247;
  background: #fff;
  border: 1px solid #ccd2dc;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.option-page .catalog-summary {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
}

.option-page .catalog-summary p {
  margin: 0;
  color: #344054;
  font-size: 12px;
}

.option-page .catalog-summary strong {
  margin-right: 5px;
  color: var(--option-ink);
  font-size: 24px;
  font-weight: 900;
}

.option-page .catalog-summary > span {
  padding: 6px 10px;
  color: #536074;
  background: #f5f7fa;
  border: 1px solid #dfe3ea;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
}

.option-page .product-grid--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.option-page .product-card {
  min-width: 0;
  overflow: hidden;
  color: var(--option-ink);
  background: #fff;
  border: 1px solid #dce1e9;
  border-radius: 10px;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.option-page .product-card:hover {
  border-color: #b7c9e5;
  box-shadow: 0 14px 30px rgb(22 53 98 / 11%);
  transform: translateY(-4px);
}

.option-page .product-card__visual {
  position: relative;
  display: block;
  width: auto;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #edf3fb;
  border-radius: 0;
}

.option-page .product-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.option-page .product-card:hover .product-card__visual > img {
  transform: scale(1.025);
}

.option-page .product-card__visual > .status-pill {
  position: absolute;
  top: 10px;
  left: 10px;
}

.option-page .status-pill {
  padding: 5px 8px;
  color: #fff;
  background: rgb(8 18 38 / 88%);
  border: 0;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 900;
}

.option-page .product-card__body {
  padding: 18px 17px 16px;
}

.option-page .product-card__origin {
  margin: 0 0 8px;
  color: #788293;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.option-page .product-card h3 {
  min-height: 48px;
  margin: 0 0 9px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: -.035em;
}

.option-page .product-card h3 a::after {
  content: none;
}

.option-page .product-card h3 a:hover {
  color: var(--option-blue);
}

.option-page .product-card__summary {
  min-height: 61px;
  margin: 0 0 15px;
  color: #697282;
  font-size: 10px;
  line-height: 1.75;
}

.product-card__facts {
  display: flex;
  min-height: 32px;
  margin-bottom: 13px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-card__facts span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #747e8e;
  font-size: 9px;
  font-weight: 750;
}

.product-card__facts span img {
  width: 14px;
  height: 14px;
}

.product-card__facts b {
  color: var(--option-blue);
  font-size: 15px;
  font-weight: 900;
}

.option-page .product-card__meta {
  display: flex;
  padding-top: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e7eaf0;
}

.option-page .product-card__maker {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.option-page .product-card__maker img {
  width: 18px;
  height: 18px;
}

.option-page .product-card__maker span {
  overflow: hidden;
  color: #596579;
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-card__arrow {
  color: var(--option-blue);
  font-size: 18px;
  font-weight: 900;
}

.option-page .empty-state {
  padding: 90px 20px;
  text-align: center;
}

.option-page .empty-state > span {
  color: var(--option-blue);
  border-color: var(--option-blue);
}

.option-page .empty-state h2 {
  font-size: 30px;
  font-weight: 900;
}

.option-page .catalog-callout {
  padding: 58px 0;
  color: #fff;
  background: var(--option-blue);
}

.option-page .catalog-callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.catalog-callout__inner > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catalog-callout__inner > div span {
  color: #fff5bc;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.catalog-callout__inner > div b {
  font-size: 21px;
  font-weight: 900;
}

.option-page .catalog-callout a {
  border-bottom: 0;
}

/* Product detail */
.option-page .product-detail-hero {
  padding: 30px 0 76px;
  background: #f2f7ff;
  border-bottom: 1px solid #dbe6f5;
}

.option-page .breadcrumbs {
  display: flex;
  margin-bottom: 25px;
  gap: 9px;
  color: #69778b;
  font-size: 10px;
  font-weight: 700;
}

.option-page .breadcrumbs a:hover {
  color: var(--option-blue);
}

.option-page .product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(400px, .75fr);
  align-items: start;
  gap: 52px;
}

.option-page .product-detail-visual {
  position: sticky;
  top: 24px;
  min-height: 0;
  overflow: hidden;
  background: #dce9fa;
  border: 1px solid #cfd9e8;
  border-radius: 12px;
  box-shadow: 0 20px 46px rgb(24 62 118 / 13%);
}

.option-page .product-detail-visual > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.option-page .product-detail-visual .product-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
}

.product-detail-visual__caption {
  display: flex;
  min-height: 72px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  background: #0b1936;
}

.product-detail-visual__caption span {
  color: #9fc5ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.product-detail-visual__caption b {
  font-size: 11px;
  font-weight: 850;
}

.option-page .product-detail-summary {
  position: static;
  padding: 8px 0 0;
}

.option-page .product-detail-summary__origin {
  margin: 0 0 10px;
  color: var(--option-blue);
  font-size: 11px;
  font-weight: 900;
}

.option-page .product-detail-summary h1 {
  margin: 0;
  color: #05070b;
  font-size: clamp(40px, 4.1vw, 61px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.065em;
}

.option-page .product-detail-summary__lead {
  margin: 18px 0 20px;
  color: #505d70;
  font-size: 13px;
  line-height: 1.85;
}

.option-page .product-detail-summary__maker {
  display: flex;
  margin: 0 0 24px;
  padding: 13px 0;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #dce4ef;
  border-bottom: 1px solid #dce4ef;
}

.option-page .product-detail-summary__maker > img {
  width: 38px;
  height: 38px;
}

.option-page .product-detail-summary__maker b,
.option-page .product-detail-summary__maker small {
  display: block;
}

.option-page .product-detail-summary__maker b {
  font-size: 12px;
}

.option-page .product-detail-summary__maker small {
  color: #68768a;
  font-size: 9px;
}

.license-picker {
  display: grid;
  margin: 0 0 15px;
  padding: 0;
  border: 0;
  gap: 8px;
}

.license-picker legend {
  margin-bottom: 10px;
  color: #263247;
  font-size: 12px;
  font-weight: 900;
}

.license-choice {
  position: relative;
  display: grid;
  min-height: 74px;
  padding: 12px 44px 12px 14px;
  grid-template-columns: minmax(100px, .9fr) minmax(110px, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  color: #1a2537;
  background: #fff;
  border: 1px solid #ced7e4;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.license-choice:hover {
  border-color: #8db7f2;
}

.license-choice.is-selected {
  background: #fff;
  border-color: var(--option-blue);
  box-shadow: inset 0 0 0 1px var(--option-blue);
}

.license-choice.is-disabled {
  color: #8a93a1;
  background: #edf1f6;
  cursor: not-allowed;
  opacity: .78;
}

.license-choice input {
  position: absolute;
  opacity: 0;
}

.license-choice > span {
  color: var(--option-blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.license-choice > b {
  grid-row: 2;
  font-size: 13px;
  font-weight: 900;
}

.license-choice > strong {
  justify-self: end;
  font-size: 14px;
  font-weight: 900;
}

.license-choice > small {
  grid-row: 2;
  grid-column: 2;
  justify-self: end;
  color: #6b7584;
  font-size: 8px;
}

.license-choice > i {
  position: absolute;
  right: 15px;
  width: 18px;
  height: 18px;
  border: 1px solid #a9b3c2;
  border-radius: 50%;
}

.license-choice.is-selected > i {
  border: 5px solid var(--option-blue);
}

.option-page .purchase-box {
  padding: 18px;
  background: #fff;
  border: 1px solid #cbd5e3;
  border-radius: 10px;
}

.option-page .purchase-box__price {
  display: flex;
  margin-bottom: 14px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.option-page .purchase-box__price span {
  color: #5f6b7c;
  font-size: 10px;
  font-weight: 800;
}

.option-page .purchase-box__price strong {
  color: var(--option-blue);
  font-size: 25px;
  font-weight: 900;
}

.option-page .purchase-box .option-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.option-page .purchase-box > small {
  display: block;
  margin-top: 10px;
  color: #7b8594;
  font-size: 8px;
  text-align: center;
}

.option-page .product-detail-body {
  padding: 90px 0 108px;
  background: #fff;
}

.option-page .product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 82px;
}

.option-page .story-quote {
  margin-bottom: 72px;
  padding: 32px 36px;
  background: #fff8d9;
  border: 0;
  border-left: 8px solid var(--option-yellow);
  border-radius: 0 10px 10px 0;
}

.option-page .story-quote small {
  color: #805f00;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.option-page .story-quote blockquote {
  margin: 13px 0 0;
  color: #141a24;
  font-size: clamp(22px, 2.55vw, 35px);
  font-weight: 850;
  line-height: 1.62;
  letter-spacing: -.04em;
}

.option-page .detail-section {
  margin-bottom: 66px;
}

.option-page .detail-section h2 {
  margin: 0 0 20px;
  color: #111722;
  font-size: 30px;
  font-weight: 900;
}

.option-page .detail-section > p:last-child {
  color: #5a6575;
  font-size: 14px;
  line-height: 2;
}

.option-page .feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}

.option-page .feature-list li {
  display: flex;
  min-height: 62px;
  padding: 15px;
  align-items: center;
  gap: 10px;
  color: #273348;
  background: #f7f9fc;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.option-page .feature-list li::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url("icons/shield-check.svg") center / contain no-repeat;
  content: "";
}

.option-page .rights-table {
  border-top: 2px solid #15213a;
}

.option-page .rights-table > div {
  display: grid;
  min-height: 60px;
  padding: 14px 0;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #dfe3ea;
  font-size: 12px;
}

.option-page .rights-table span {
  color: #6c7788;
}

.option-page .rights-table b {
  justify-self: end;
  text-align: right;
}

.option-page .product-passport {
  position: sticky;
  top: 24px;
  padding: 28px;
  background: #f2f7ff;
  border: 1px solid #bdd2ef;
  border-radius: 12px;
  box-shadow: 10px 10px 0 #cce0fa;
}

.option-page .product-passport__top {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
}

.option-page .product-passport__top span {
  color: var(--option-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.option-page .product-passport > img {
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
}

.option-page .product-passport h2 {
  margin: 0 0 7px;
  font-size: 25px;
  font-weight: 900;
}

.option-page .product-passport > p {
  color: #68778b;
  font-size: 10px;
}

.option-page .passport-facts {
  margin: 23px 0;
  border-top: 1px solid #cdd9e9;
}

.option-page .passport-facts > div {
  display: flex;
  min-height: 46px;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #cdd9e9;
  font-size: 9px;
}

.option-page .passport-facts span {
  color: #677588;
}

.option-page .passport-facts b.ok {
  color: #087957;
}

.option-page .passport-facts b.warn {
  color: #8a6400;
}

.option-page .passport-note {
  padding: 13px;
  color: #68758a;
  background: #fff;
  border-radius: 7px;
  font-size: 8px;
  line-height: 1.75;
}

.option-page .related-section {
  padding: 78px 0 90px;
  background: var(--option-soft);
  border-top: 1px solid #e4e8ef;
}

.option-page .related-section__top {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.option-page .related-section h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
}

.option-page .related-section__top > a {
  color: var(--option-blue);
  font-size: 12px;
  font-weight: 900;
}

.option-page .related-section .product-grid--catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Submit */
.option-page .submit-intro {
  padding: 70px 0 72px;
  color: #fff;
  background: var(--option-blue);
  border-bottom: 0;
}

.option-page .submit-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 72px;
}

.option-page .submit-intro .option-kicker {
  color: #fff2a8;
}

.option-page .submit-intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.07em;
}

.submit-intro__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 83%);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.9;
}

.option-page .submit-intro__note {
  padding: 26px;
  color: #16223a;
  background: #fff;
  border: 0;
  border-top: 8px solid var(--option-yellow);
  border-radius: 9px;
  box-shadow: 0 18px 38px rgb(0 36 104 / 18%);
}

.option-page .submit-intro__note > span {
  margin: 0 0 16px;
  padding: 0;
  color: var(--option-blue);
  background: transparent;
  font-size: 9px;
  letter-spacing: .13em;
}

.option-page .submit-intro__note b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 900;
}

.option-page .submit-intro__note p {
  margin: 0;
  color: #68758a;
  font-size: 10px;
  line-height: 1.8;
}

.option-page .submit-workspace {
  padding: 64px 0 112px;
  background: var(--option-soft);
}

.option-page .submit-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 52px;
}

.option-page .submit-progress {
  position: sticky;
  top: 24px;
}

.option-page .submit-progress > p {
  margin-bottom: 14px;
  color: #344054;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.option-page .submit-progress ol {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  list-style: none;
}

.option-page .submit-progress li {
  display: flex;
  min-height: 76px;
  padding: 16px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e7eaf0;
  opacity: .43;
}

.option-page .submit-progress li:last-child {
  border-bottom: 0;
}

.option-page .submit-progress li.is-active,
.option-page .submit-progress li.is-complete {
  opacity: 1;
}

.option-page .submit-progress li > span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  color: #21304a;
  background: #fff;
  border: 1px solid #aeb8c7;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.option-page .submit-progress li.is-active > span {
  color: #fff;
  background: var(--option-blue);
  border-color: var(--option-blue);
}

.option-page .submit-progress li.is-complete > span {
  color: #141b27;
  background: var(--option-yellow);
  border-color: var(--option-yellow);
}

.option-page .submit-progress li b {
  display: block;
  font-size: 12px;
  font-weight: 900;
}

.option-page .submit-progress li small {
  color: #778294;
  font-size: 8px;
}

.option-page .submit-progress__help {
  margin-top: 16px;
  padding: 19px;
  background: #eaf3ff;
  border: 1px solid #c9ddf7;
  border-radius: 9px;
}

.option-page .submit-progress__help b {
  font-size: 11px;
  font-weight: 900;
}

.option-page .submit-progress__help p {
  margin: 8px 0 12px;
  color: #627087;
  font-size: 9px;
  line-height: 1.8;
}

.option-page .submit-progress__help a {
  color: var(--option-blue);
  font-size: 9px;
  font-weight: 900;
}

.option-page .submit-form {
  min-width: 0;
  padding: 44px;
  background: #fff;
  border: 1px solid #d8dee8;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgb(26 61 112 / 8%);
}

.option-page .form-step__heading {
  margin-bottom: 32px;
}

.option-page .form-step__heading > span {
  color: var(--option-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.option-page .form-step__heading h2 {
  margin: 8px 0 10px;
  color: #111722;
  font-size: clamp(30px, 3.7vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.055em;
}

.option-page .form-step__heading p {
  margin: 0;
  color: #68758a;
  font-size: 12px;
}

.option-page .intent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-page .intent-options label {
  position: relative;
  display: grid;
  min-height: 176px;
  padding: 20px;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  background: #fff;
  border: 1px solid #d5dbe4;
  border-radius: 9px;
  cursor: pointer;
}

.option-page .intent-options label:has(input:checked) {
  background: #f2f7ff;
  border-color: var(--option-blue);
  box-shadow: inset 0 0 0 1px var(--option-blue);
}

.option-page .intent-options__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--option-blue);
  border: 1px solid #9abbea;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 900;
}

.option-page .intent-options b {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 900;
}

.option-page .intent-options p {
  margin: 0 0 12px;
  color: #657287;
  font-size: 10px;
  line-height: 1.75;
}

.option-page .intent-options small {
  display: inline-flex;
  padding: 4px 7px;
  color: #31537e;
  background: #e8f1ff;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 850;
}

.option-page .intent-options label > i {
  right: 17px;
  bottom: 17px;
  border-color: #aab4c4;
}

.option-page .intent-options label:has(input:checked) > i {
  border-color: var(--option-blue);
}

.option-page .form-actions {
  display: flex;
  margin-top: 32px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e3e7ed;
}

.option-page .back-button {
  padding: 10px 0;
  color: #3f4b5e;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.option-page .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.option-page .field--wide {
  grid-column: 1 / -1;
}

.option-page .field > span {
  display: block;
  margin-bottom: 7px;
  color: #2b3649;
  font-size: 10px;
  font-weight: 900;
}

.option-page .field input,
.option-page .field textarea,
.option-page .field select {
  width: 100%;
  color: #182234;
  background: #f8fafc;
  border: 1px solid #cfd6e0;
  border-radius: 7px;
  outline: 0;
  font-size: 12px;
}

.option-page .field input,
.option-page .field select {
  height: 50px;
  padding: 0 13px;
}

.option-page .field textarea {
  padding: 13px;
  resize: vertical;
}

.option-page .field input:focus,
.option-page .field textarea:focus,
.option-page .field select:focus {
  border-color: var(--option-blue);
  box-shadow: 0 0 0 3px rgb(8 103 232 / 12%);
}

.option-page .field small {
  display: block;
  margin-top: 6px;
  color: #7a8494;
  font-size: 8px;
}

.option-page .review-card {
  margin-bottom: 22px;
  padding: 25px;
  background: #fff7cc;
  border: 1px solid #e2bd28;
  border-radius: 9px;
}

.option-page .review-card__top {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #755b00;
  font-size: 8px;
  font-weight: 900;
}

.option-page .review-card h3 {
  margin: 0 0 7px;
  font-size: 28px;
  font-weight: 900;
}

.option-page .review-card p {
  margin: 0;
  color: #655d43;
  font-size: 10px;
  line-height: 1.75;
}

.option-page .verification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option-page .verification-grid > div {
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #dbe1e9;
  border-radius: 7px;
}

.option-page .verification-grid span {
  color: var(--option-blue);
}

.option-page .verification-grid b {
  display: block;
  margin: 7px 0 4px;
  font-size: 11px;
  font-weight: 900;
}

.option-page .verification-grid p {
  margin: 0;
  color: #657186;
  font-size: 8px;
}

.option-page .verification-grid small {
  display: block;
  margin-top: 8px;
  color: #344054;
  font-size: 7px;
  font-weight: 850;
}

.option-page .consent {
  display: flex;
  margin-top: 20px;
  padding: 16px;
  gap: 12px;
  background: #fff;
  border: 1px solid #d7dde6;
  border-radius: 7px;
  cursor: pointer;
}

.option-page .consent > span {
  border-color: #6e7b8f;
  border-radius: 3px;
}

.option-page .consent:has(input:checked) > span {
  background: var(--option-blue);
  box-shadow: inset 0 0 0 4px #fff;
}

.option-page .consent p {
  color: #667286;
  font-size: 9px;
  line-height: 1.75;
}

.form-success {
  min-height: 500px;
  display: flex;
  padding: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success > img {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
}

.form-success > span {
  color: var(--option-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.form-success h2 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.14;
}

.form-success > p {
  max-width: 580px;
  margin: 0;
  color: #667286;
  font-size: 12px;
  line-height: 1.9;
}

.form-success > div {
  display: flex;
  margin-top: 28px;
  justify-content: center;
  gap: 10px;
}

.form-success button {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .option-page .product-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .option-page .product-detail-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(370px, .9fr);
    gap: 36px;
  }
}

@media (max-width: 980px) {
  .option-page-hero__grid {
    gap: 36px;
  }

  .option-page .product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-page .product-detail-grid,
  .option-page .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .option-page .product-detail-visual,
  .option-page .product-passport {
    position: static;
  }

  .option-page .product-detail-summary {
    max-width: 720px;
  }

  .option-page .submit-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 28px;
  }

  .option-page .submit-form {
    padding: 34px 28px;
  }
}

@media (max-width: 760px) {
  .option-page {
    padding-bottom: 0;
  }

  .option-page-hero__grid,
  .option-page .submit-intro__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .option-page-hero__copy {
    padding: 48px 0 44px;
  }

  .option-page-hero h1,
  .option-page .submit-intro h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .option-page-hero__copy > p:last-child,
  .submit-intro__lead {
    margin-top: 18px;
    font-size: 13px;
  }

  .option-page-hero__fact {
    min-height: 180px;
    margin: 0 -14px;
    padding: 28px;
  }

  .option-page-hero__fact strong {
    font-size: 66px;
  }

  .option-page-hero__fact p {
    margin-bottom: 14px;
  }

  .option-page .catalog-body {
    padding: 28px 0 70px;
  }

  .option-catalog-panel {
    padding: 13px;
  }

  .option-page .catalog-search {
    height: 54px;
    padding-left: 14px;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .option-page .catalog-search > img {
    width: 19px;
    height: 19px;
  }

  .option-page .catalog-search input {
    font-size: 13px;
  }

  .option-page .catalog-search button {
    min-width: 64px;
    height: 40px;
    font-size: 11px;
  }

  .option-catalog-controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .option-page .filter-row {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .option-page .filter-chip {
    padding-inline: 9px;
  }

  .catalog-sort {
    width: 100%;
    justify-content: space-between;
  }

  .option-page .catalog-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .option-page .product-grid--catalog,
  .option-page .related-section .product-grid--catalog {
    grid-template-columns: 1fr;
  }

  .option-page .product-card {
    display: grid;
    grid-template-columns: 46% 54%;
  }

  .option-page .product-card__visual {
    min-height: 225px;
    aspect-ratio: auto;
  }

  .option-page .product-card__body {
    display: flex;
    min-width: 0;
    padding: 14px 12px;
    flex-direction: column;
  }

  .option-page .product-card h3 {
    min-height: auto;
    font-size: 15px;
  }

  .option-page .product-card__summary {
    display: none;
  }

  .product-card__facts {
    margin-top: auto;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 5px;
  }

  .option-page .catalog-callout__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .option-page .catalog-callout .option-button {
    width: 100%;
  }

  .option-page .product-detail-hero {
    padding: 22px 0 52px;
  }

  .option-page .breadcrumbs {
    overflow: hidden;
    white-space: nowrap;
  }

  .option-page .product-detail-grid {
    gap: 28px;
  }

  .product-detail-visual__caption {
    min-height: 60px;
    padding-inline: 14px;
  }

  .product-detail-visual__caption b {
    max-width: 180px;
    text-align: right;
  }

  .option-page .product-detail-summary h1 {
    font-size: 41px;
  }

  .license-choice {
    grid-template-columns: minmax(96px, .85fr) minmax(100px, 1fr);
  }

  .option-page .product-detail-body {
    padding: 64px 0 76px;
  }

  .option-page .story-quote {
    margin-bottom: 56px;
    padding: 24px 21px;
  }

  .option-page .feature-list {
    grid-template-columns: 1fr;
  }

  .option-page .rights-table > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .option-page .rights-table b {
    justify-self: start;
    text-align: left;
  }

  .option-page .related-section {
    padding: 60px 0 72px;
  }

  .option-page .related-section__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .option-page .submit-intro {
    padding: 50px 0 0;
  }

  .option-page .submit-intro__note {
    margin: 36px -14px 0;
    padding: 24px 28px;
    border-radius: 0;
    box-shadow: none;
  }

  .option-page .submit-workspace {
    padding: 28px 0 76px;
  }

  .option-page .submit-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .option-page .submit-progress {
    position: static;
  }

  .option-page .submit-progress > p,
  .option-page .submit-progress__help {
    display: none;
  }

  .option-page .submit-progress ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .option-page .submit-progress li {
    min-width: 0;
    min-height: 86px;
    padding: 12px 5px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid #e7eaf0;
    border-bottom: 0;
    text-align: center;
  }

  .option-page .submit-progress li:last-child {
    border-right: 0;
  }

  .option-page .submit-progress li small {
    display: none;
  }

  .option-page .submit-progress li b {
    font-size: 10px;
  }

  .option-page .submit-form {
    padding: 28px 18px;
  }

  .option-page .form-step__heading h2 {
    font-size: 32px;
  }

  .option-page .intent-options,
  .option-page .field-grid,
  .option-page .verification-grid {
    grid-template-columns: 1fr;
  }

  .option-page .intent-options label {
    min-height: 156px;
  }

  .option-page .field--wide {
    grid-column: auto;
  }

  .option-page .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .option-page .form-actions .option-button {
    width: 100%;
  }

  .form-success {
    min-height: 470px;
    padding: 30px 8px;
  }

  .form-success > div {
    width: 100%;
    flex-direction: column;
  }

  .form-success .option-button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .option-page .product-card {
    grid-template-columns: 44% 56%;
  }

  .option-page .product-card__body {
    padding: 12px 10px;
  }

  .option-page .product-card h3 {
    font-size: 14px;
  }

  .product-card__facts b {
    font-size: 13px;
  }

  .license-choice {
    padding-right: 38px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 3px;
  }

  .license-choice > b,
  .license-choice > strong,
  .license-choice > small {
    grid-row: auto;
    grid-column: 1;
    justify-self: start;
  }
}

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