:root {
  --inner-max: 1040px;
}

.inner-page main {
  overflow: clip;
}

.inner-hero {
  padding: 42px 0 52px;
  background: linear-gradient(180deg, var(--pale), var(--white));
  border-bottom: 1px solid var(--line);
}

.inner-hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.inner-hero h1,
.checkout-hero h1 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-size: clamp(2.15rem, 9vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.inner-lead {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.inner-hero-actions {
  margin-top: 26px;
  display: grid;
  gap: 15px;
}

.inner-hero-actions .button {
  width: 100%;
}

.inner-meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.inner-product-frame {
  max-width: 390px;
  margin-inline: auto;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.inner-product-frame img {
  width: 100%;
  border: 1px solid #cbd8e1;
  border-radius: 5px;
}

.inner-product-frame figcaption {
  padding: 12px 4px 2px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.inner-section {
  padding: var(--section) 0;
}

.inner-section.alt {
  background: var(--pale);
  border-block: 1px solid var(--line);
}

.inner-container {
  max-width: var(--inner-max);
}

.inner-section h2,
.support-panel h2,
.checkout-panel h2 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: clamp(1.75rem, 7vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.inner-section h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
}

.inner-section p {
  margin-top: 0;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted);
}

.fact-grid,
.card-grid,
.boundary-grid,
.contact-grid,
.support-layout,
.checkout-layout {
  display: grid;
  gap: 18px;
}

.fact-card,
.plain-card,
.contact-card,
.support-panel,
.checkout-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.fact-card strong,
.fact-card span {
  display: block;
}

.fact-card strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.fact-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.plain-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.module-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.module-item {
  padding: 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  background: var(--white);
}

.module-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--cyan);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
}

.module-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.disclosure-box,
.warning-box,
.status-box,
.placeholder-note {
  padding: 18px;
  border-radius: 10px;
}

.disclosure-box {
  color: var(--navy);
  background: var(--pale);
  border-left: 4px solid var(--cyan);
}

.warning-box {
  color: var(--warning);
  background: var(--warning-bg);
  border: 1px solid #ecd79a;
}

.status-box {
  color: var(--navy);
  background: #eefbfe;
  border: 1px solid #a9e4ef;
}

.placeholder-note {
  color: var(--muted);
  background: #f7fafc;
  border: 1px dashed #aebfca;
}

.disclosure-box p,
.warning-box p,
.status-box p,
.placeholder-note p {
  margin: 0;
}

.tick-list,
.cross-list,
.compact-list,
.link-list,
.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.tick-list li,
.cross-list li {
  position: relative;
  padding-left: 31px;
}

.tick-list li::before,
.cross-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.tick-list li::before {
  content: "✓";
  color: var(--white);
  background: var(--cyan-dark);
}

.cross-list li::before {
  content: "!";
  color: var(--warning);
  border: 1.5px solid currentColor;
}

.compact-list {
  padding-left: 20px;
  list-style: disc;
}

.link-list a,
.support-list a {
  color: var(--cyan-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.preview-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(238px, 74vw);
  gap: 14px;
  margin-inline: calc(var(--gutter) * -1);
  padding: 4px var(--gutter) 18px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
}

.preview-grid .preview-card {
  scroll-snap-align: start;
}

.page-price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-price strong {
  color: var(--cyan-dark);
  font-size: 2.75rem;
  line-height: 1;
}

.page-price span {
  color: var(--muted);
  font-size: 14px;
}

.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}

.journey-list li {
  position: relative;
  padding: 0 0 24px 66px;
}

.journey-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 54px;
  bottom: -10px;
  width: 2px;
  background: var(--cyan);
  opacity: .5;
}

.journey-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--cyan-dark);
  border-radius: 50%;
  font-weight: 900;
}

.journey-list p {
  margin: 0;
  color: var(--muted);
}

.mini-definition {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.mini-definition div {
  padding: 14px 0;
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--line);
}

.mini-definition dt {
  color: var(--navy);
  font-weight: 800;
}

.mini-definition dd {
  margin: 0;
  color: var(--muted);
}

.faq-page-list {
  border-top: 1px solid var(--line);
}

.faq-page-list details {
  border-bottom: 1px solid var(--line);
}

.faq-page-list summary {
  min-height: 60px;
  padding: 15px 48px 15px 0;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-page-list summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  font-size: 27px;
  transition: transform .18s ease;
}

.faq-page-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-page-list details > div {
  padding: 0 44px 22px 0;
  color: var(--muted);
}

.faq-page-list details p:last-child {
  margin-bottom: 0;
}

.story-band {
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
}

.story-band h2 {
  color: var(--white);
}

.story-band p {
  margin-bottom: 0;
  color: #d3e9f2;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.support-form {
  display: grid;
  gap: 17px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label {
  color: var(--navy);
  font-weight: 800;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #aebfca;
  border-radius: 8px;
}

.field-group textarea {
  min-height: 150px;
  resize: vertical;
}

.field-help {
  color: var(--muted);
  font-size: 13px;
}

.button[disabled],
.placeholder-button {
  color: #5d6c78;
  background: #e8eef2;
  border-color: #e8eef2;
  box-shadow: none;
  cursor: not-allowed;
}

.button[disabled]:hover,
.placeholder-button:hover {
  color: #5d6c78;
  background: #e8eef2;
  border-color: #e8eef2;
  transform: none;
}

.checkout-hero {
  padding: 38px 0 30px;
  background: var(--pale);
  border-bottom: 1px solid var(--line);
}

.checkout-hero p {
  margin: 0;
  color: var(--muted);
}

.support-layout,
.checkout-layout {
  align-items: start;
}

.support-panel h2,
.checkout-panel h2 {
  font-size: 1.55rem;
}

.order-title {
  display: grid;
  gap: 4px;
}

.order-title strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.order-title span {
  color: var(--muted);
  font-size: 14px;
}

.order-price {
  margin: 22px 0;
  padding-block: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-block: 1px solid var(--line);
}

.order-price strong {
  color: var(--cyan-dark);
  font-size: 2.5rem;
}

.order-price span {
  color: var(--muted);
}

.support-panel .button,
.checkout-panel .button {
  width: 100%;
  margin-top: 20px;
}

.terms-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.terms-list li {
  padding-left: 25px;
  position: relative;
  color: var(--muted);
}

.terms-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--cyan-dark);
  font-weight: 900;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.policy-links a {
  color: var(--cyan-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.prototype-label {
  margin: 0 0 18px;
  display: inline-flex;
  padding: 6px 10px;
  color: var(--navy);
  background: #dff6fb;
  border: 1px solid #a9e4ef;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}

.no-margin {
  margin: 0 !important;
}

@media (min-width: 600px) {
  .inner-hero-actions {
    grid-template-columns: max-content max-content;
    align-items: center;
  }

  .inner-hero-actions .button {
    width: auto;
  }

  .fact-grid,
  .card-grid,
  .boundary-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact-grid.four-up {
    grid-template-columns: 1fr 1fr;
  }

  .preview-grid {
    margin-inline: 0;
    padding-inline: 0;
    grid-auto-columns: minmax(220px, 1fr);
  }
}

@media (min-width: 922px) {
  .inner-hero {
    padding: 72px 0 82px;
  }

  .inner-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: 74px;
  }

  .inner-hero h1,
  .checkout-hero h1 {
    font-size: clamp(3.25rem, 5vw, 4.4rem);
  }

  .inner-lead {
    font-size: 1.22rem;
  }

  .fact-grid.four-up {
    grid-template-columns: repeat(4, 1fr);
  }

  .module-grid {
    grid-template-columns: 1fr 1fr;
  }

  .module-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .boundary-grid {
    gap: 34px;
  }

  .journey-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .journey-list li {
    padding: 66px 0 0;
  }

  .journey-list li:not(:last-child)::after {
    left: 48px;
    right: -28px;
    top: 25px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .mini-definition div {
    grid-template-columns: minmax(180px, .35fr) 1fr;
    gap: 24px;
  }

  .support-layout,
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
  }

  .checkout-summary {
    position: sticky;
    top: 106px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-page-list summary::after {
    transition: none;
  }
}
