:root {
  --ink: #25272d;
  --text: #101522;
  --muted: #69707d;
  --soft: #f4f6f8;
  --soft-2: #eef2f4;
  --paper: #ffffff;
  --yellow: #f2b705;
  --yellow-2: #ffd84d;
  --blue: #4f7cff;
  --mint: #35c59f;
  --line: #dde3e7;
  --shadow: 0 1px 0 rgba(16, 21, 34, .04);
  --green: #1f9f72;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.65;
  overflow-x: hidden
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #f8fafb
}


a {
  color: #c99300;
  text-decoration: none
}

a:hover {
  color: #8c6800
}

.container {
  width: min(1420px, calc(100% - 32px));
  margin-inline: auto
}

.narrow {
  max-width: 760px
}

p,
li {
  max-width: 70ch
}

.text-center p,
.vault-card p,
.pricing-card p,
.screenshot-card p,
.footer p {
  max-width: none
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -8px
}

.col,
.col-md-6 {
  padding-inline: 8px;
  flex: 1 0 0
}

.g-3 {
  gap: 0
}

.text-center {
  text-align: center
}

.d-flex {
  display: flex
}

.flex-column {
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

.gap-2 {
  gap: .5rem
}

.gap-3 {
  gap: 1rem
}

.align-items-center {
  align-items: center
}

.justify-content-between {
  justify-content: space-between
}

.ms-auto {
  margin-left: auto
}

.ms-2 {
  margin-left: .5rem
}

.ms-lg-3 {
  margin-left: 1rem
}

.mt-3 {
  margin-top: 1rem
}

.mt-4 {
  margin-top: 1.5rem
}

.mb-0 {
  margin-bottom: 0
}

.mb-2 {
  margin-bottom: .5rem
}

.mb-3 {
  margin-bottom: 1rem
}

.mb-4 {
  margin-bottom: 1.5rem
}

.my-4 {
  margin-block: 1.5rem
}

.py-5 {
  padding-block: 3rem
}

.w-100 {
  width: 100%
}

.small,
small {
  font-size: .86rem
}

.table-responsive {
  overflow: auto
}

.vault-nav {
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: none
}

.navbar {
  position: sticky;
  top: 0
}

.navbar .container,
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.navbar .container {
  justify-content: space-between
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink)
}

.navbar-brand picture,
.book-cover picture {
  display: block
}

.navbar-brand img {
  display: block;
  width: min(450px, 46vw);
  height: auto;
  filter: none;


}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0
}

.navbar-collapse {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  margin-left: auto
}

#nav {
  margin-left: auto
}

.nav-link {
  display: block;
  padding: 1rem .45rem;
  color: #2e333b;
  font-weight: 750
}

.nav-link.active,
.nav-link:hover {
  color: #000
}

.nav-link.active {
  box-shadow: inset 0 -3px 0 var(--yellow)
}

.navbar-toggler {
  display: none;
  width: 42px;
  height: 42px;
  border: 0px solid #c99a00;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto
}

.navbar-toggler-icon,
.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: #25272d;
  position: relative
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
  content: "";
  position: absolute;
  left: 0
}

.navbar-toggler-icon:before {
  top: -8px
}

.navbar-toggler-icon:after {
  top: 8px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: .78rem 1.15rem;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition: .16s ease;
  background: transparent;
  font-size: 1.4rem
}

.btn-lg {
  padding: 1rem 1.45rem;
  font-size: 1.4rem
}

.btn-sm {
  padding: .48rem .82rem;
  font-size: .85rem
}

.btn-vault {
  background: var(--yellow);
  border-color: #d19d00;
  color: #1d2026;
  box-shadow: none;
  font-size: 1.4rem
}

.btn-vault:hover {
  background: #ffcb21;
  color: #111
}

.btn-ghost {
  border-color: #cfd7dd;
  color: #222;
  background: #fff
}

.btn-ghost:hover {
  border-color: #aeb8c0;
  background: #f6f8f9
}

.btn-outline-danger {
  border-color: #e99b9b;
  color: #b62c2c
}

.form-control,
.form-select {
  width: 100%;
  border: 1px solid #dce3e8;
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  padding: .85rem .95rem
}

.form-control:focus,
.form-select:focus {
  outline: 3px solid rgba(242, 183, 5, .24)
}

label {
  display: block;
  color: #4f5966;
  font-weight: 800;
  margin-bottom: .35rem
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem
}

.alert-danger {
  background: #fff0ef;
  color: #9f2525;
  border: 1px solid #ffd1cc
}

.alert-info {
  background: #eaf9f3;
  color: #126947;
  border: 1px solid #c3ecd9
}

.form-check {
  display: flex;
  gap: .6rem;
  align-items: flex-start
}

.hero {
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #F2EDE8;
  background-image: url("../img/bg/diagonal.png");
  background-repeat: repeat-x !important;
  background-position: center top;
}




.hero:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line)
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 4rem;
  align-items: center;
  padding: 4.8rem 0 6.4rem
}

.eyebrow {
  color: #9f7900;
  text-transform: uppercase;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: .8rem
}

.eyebrow.dark {
  color: #9a7600
}

.hero h1,
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 5.7vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 1.05rem;
  letter-spacing: 0;
  color: #24262b
}

.hero .lead {
  font-size: 1.22rem;
  color: #303946;
  max-width: 62ch;
  margin-bottom: 2rem
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0 0 1.6rem
}

.platform-strip span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 38px;
  padding: .45rem .7rem;
  border: 1px solid #cfd7dd;
  border-radius: 8px;
  background: #fff;
  color: #25272d;
  font-weight: 850
}

.hero-note {
  margin-top: 1.2rem;
  color: #4b5562;
  font-weight: 800
}

.band {
  padding: 6rem 0;
  border-top: 1px solid var(--line)
}

.paper-band {
  background: #fff;
  color: var(--text)
}

.paper-band h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 2rem);
  line-height: 1.05
}

.paper-band p {
  font-size: 1.15rem;
  color: #48515c
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.4rem
}

.section-head h2,
.band h2,
.page-hero h1 {
  font-family: Georgia, serif
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  margin: 0;
  color: #24262b
}

.page-hero {
  min-height: 550px;
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 4rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
  background-color: #F2EDE8;
  background-image: url("../img/bg/diagonal.png");
  background-size: contain;
}

.page-hero:after {
  content: "";
  position: absolute;
  z-index: 0;
  right: max(24px, calc((100vw - 1520px) / 2));
  top: 50%;
  width: min(48vw, 750px);
  aspect-ratio: 1023 / 607;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none
}


.page-hero.overview:after {
  background-image: url("../img/bg/hero/overview.png");
}

.page-hero.features:after {
  background-image: url("../img/bg/hero/features.png");
}

.page-hero.gallery:after {
  background-image: url("../img/bg/hero/gallery.png");
}

.page-hero.pricing:after {
  background-image: url("../img/bg/hero/pricing.png");
}

.page-hero.support:after {
  background-image: url("../img/bg/hero/support.png");
}

.page-hero.customerarea:after {
  background-image: url("../img/bg/hero/customerarea.png");
}

.page-hero.register:after {
  background-image: url("../img/bg/hero/register.png");
}

.page-hero.passwordreset:after {
  background-image: url("../img/bg/hero/passwordreset.png");
}

.page-hero.about:after {
  background-image: url("../img/bg/hero/about.png");
}


.page-hero.checkout:after {
  background-image: url("../img/bg/hero/checkout.png");
}

.page-hero.story-planning-software:after {
  background-image: url("../img/bg/hero/story-planning-software.png");
}

.page-hero.resources:after {
  background-image: url("../img/bg/hero/resources.png");
}

.about-origin {
  background: #fff
}

.about-copy h2,
.about-book h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  margin: .2rem 0 1rem
}

.about-copy p,
.about-book p {
  font-size: 1.12rem;
  color: #48515c
}

.about-principles {
  border: 1px solid #25272d;
  border-radius: 8px;
  background: #fff9df;
  padding: 1.5rem;
  box-shadow: 8px 8px 0 #25272d
}

.about-principles span {
  display: inline-flex;
  margin-bottom: .7rem;
  font-size: .78rem;
  font-weight: 900;
  color: #8d6800;
  letter-spacing: .04em
}

.about-book-band {
  background: #f7f9fa
}

.book-cover {
  margin: 0;
  justify-self: center;
  width: min(100%, 390px);
  border-radius: 8px;
  background: #fff;
  padding: .75rem;
  border: 1px solid var(--line);
  box-shadow: 10px 10px 0 #25272d;
  transform: rotate(-1.5deg)
}

.book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px
}

.page-hero .container {
  position: relative;
  z-index: 1;
  margin-left: max(16px, calc((100vw - 1420px) / 2));
  margin-right: auto
}

.page-hero .container.narrow {
  max-width: min(760px, 56vw)
}

.page-hero p {
  color: #48515c;
  font-size: 1.15rem
}

.launch-strip {
  background: #25272d;
  color: #fff;
  border-bottom: 1px solid #111318
}

.launch-status {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  padding-block: 1.3rem
}

.launch-status>* {
  min-width: 0
}

.launch-status h2 {
  margin: 0 0 .4rem;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  color: #fff;
  overflow-wrap: break-word
}

.launch-status p {
  margin: 0;
  color: #d8dde3;
  font-size: clamp(1.1rem, 3vw, 1.5rem)
}


.iv-badge {
  background: #f2b705;
  color: #111318;
  padding: 0px 10px;
  border-radius: 30px;
}

.launch-status .launch-date {
  margin-top: .35rem;
  color: #f4d872
}

.launch-status .eyebrow {
  margin-bottom: .45rem;
  color: var(--yellow-2)
}

.launch-meter-block {
  width: 100%;
  padding-bottom: 1.1rem
}

.launch-meter {
  position: relative;
  width: 100%;
  height: 18px;
  border: 1px solid #f2b705;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 10%),
    #111318;
  overflow: hidden
}

.launch-meter:after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(37, 39, 45, .28) 0 1px, transparent 1px 10%);
  pointer-events: none
}

.launch-meter span {
  display: block;
  height: 100%;
  background: var(--yellow)
}

.launch-scale {
  position: relative;
  height: 1.2rem;
  margin-top: .4rem;
  color: #d8dde3;
  font-size: .78rem
}

.launch-scale span {
  position: absolute;
  top: 0;
  transform: translateX(-50%)
}

.launch-scale span:first-child {
  transform: none
}

.launch-scale span:last-child {
  transform: translateX(-100%)
}

.product-visual {
  position: relative;

  align-items: center;
  justify-content: center;
  height: 620px;
  transition: transform .18s ease
}

.product-visual picture {
  display: contents
}

.product-visual img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem
}

.problem-card h2 {
  font-size: 1.35rem
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff
}

.compare-table {
  width: 100%;
  min-width: 1320px;
  border-collapse: collapse;
  font-size: .95rem
}

.compare-feature-table {
  min-width: 1460px
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: .95rem;
  text-align: left;
  vertical-align: top
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0
}

.compare-table thead th {
  background: #25272d;
  color: #fff;
  font-weight: 900
}

.compare-table tbody th {
  width: 19%;
  background: #fbfcfd;
  color: #25272d;
  font-weight: 900
}

.compare-table tbody td:first-of-type {
  background: #fff9df;
  color: #25272d;
  font-weight: 760
}

.compare-feature-table tbody th strong,
.compare-feature-table tbody th small,
.compare-table td small {
  display: block
}

.compare-feature-table tbody th small {
  margin-top: .35rem;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.35
}

.compare-table td small {
  margin-top: .28rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.3
}

.compare-status {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap
}

.compare-status i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.05rem
}

.compare-status.status-yes {
  color: #087a50
}

.compare-status.status-yes i {
  background: #0bbf7a
}

.compare-status.status-no {
  color: #bd2026
}

.compare-status.status-no i {
  background: #ff2d35
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem
}

.summary-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem
}

.summary-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding-inline: .7rem;
  border-radius: 8px;
  background: var(--yellow);
  color: #25272d;
  font-weight: 950
}

.summary-grid h3 {
  margin: 1rem 0 .45rem;
  font-family: Georgia, serif;
  color: #25272d
}

.summary-grid p {
  margin: 0;
  color: var(--muted)
}

.vault-card,
.pricing-card,
.screenshot-card,
.form-shell,
.admin-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.45rem;
  box-shadow: none
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  min-height: 430px
}

.screenshot-card p {
  margin-bottom: 0
}

.vault-card:hover,
.pricing-card:hover,
.screenshot-card:hover {
  border-color: #c5cdd4
}

.vault-card h2,
.vault-card h3,
.pricing-card h2,
.screenshot-card h2,
.screenshot-card h3 {
  font-family: Georgia, serif;
  margin: .5rem 0;
  color: #262a31
}

.vault-card p,
.pricing-card p,
.screenshot-card p,
.muted {
  color: var(--muted)
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--yellow);
  border: 0px solid #25272d;
  box-shadow: none;
  position: relative
}

.card-icon:empty:after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #fff
}

.card-icon i {
  position: relative;
  color: #25272d;
  font-size: 2rem;
  line-height: 1
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

.overview-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.45rem;
  box-shadow: none
}

.overview-card h2 {
  font-family: Georgia, serif;
  margin-top: 0;
  color: #262a31
}

.overview-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}

.overview-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.2rem
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.split-band {
  background: #f4f7f8
}

.clean-list {

  margin: 1rem 0;
  list-style: none
}

.clean-list li {
  padding: .45rem 0 .45rem 1.65rem;
  position: relative;
  color: #37404c
}

.clean-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .9rem;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 1px solid #25272d;
  border-radius: 50%
}

.sealed-draft {
  min-height: 300px;
  border: 2px solid #25272d;
  border-radius: 10px;
  padding: 2rem;
  background: #fff;
  color: #24262b;
  box-shadow: 7px 7px 0 #25272d;
  transform: rotate(1.5deg);
  position: relative;
  overflow: hidden
}

.sealed-draft-2 {
  min-height: 300px;
  border: 2px solid #25272d;
  border-radius: 10px;
  padding: 2rem;
  background: #fff;
  color: #24262b;
  box-shadow: 7px 7px 0 #25272d;
  transform: rotate(-1.5deg);
  position: relative;
  overflow: hidden
}




.sealed-draft span {
  display: inline-block;
  background: #fff3b5;
  color: #7c6100;
  padding: .42rem .72rem;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .08em;
  border: 1px solid #f1bf19
}

.sealed-draft strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  margin-top: 2rem;
  color: #24262b
}

.sealed-draft p {
  position: relative;
  color: #4c5663
}

.showcase-card {
  transform: none
}

.showcase-card strong {
  font-size: 4.4rem
}

.compact-proof {
  background: #fffdf4
}

.layout-proof {
  background: #f8fbff
}

.flow-proof {
  background: #f5fff8
}

.export-proof {
  background: #fff8f3
}

.compact-proof:before {
  background: #dff3ff
}

.layout-proof:before {
  background: #e6edff
}

.flow-proof:before {
  background: #dff8e9
}

.export-proof:before {
  background: #ffe1cb
}

.gallery-strip,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}

.gallery-strip {
  align-items: stretch
}

.pricing-grid.editions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;

}

.masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem
}

.masonry .screenshot-card {
  height: 100%
}

.shot-placeholder {
  height: 230px;
  border-radius: 8px;
  background: #f3f6f8;
  border: 1px solid #dbe4e9;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden
}

.shot-frame {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  border: 1px solid #dbe4e9;
  background: #f3f6f8;
  overflow: hidden;
  cursor: zoom-in;
  appearance: none
}

.shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center
}

.shot-frame:focus-visible {
  outline: 3px solid #f1c84b;
  outline-offset: 3px
}

.shot-frame:after {
  content: "\F62C";
  font-family: "bootstrap-icons";
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #25272d;
  border: 1px solid rgba(37, 39, 45, .18);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease
}

.shot-frame:hover:after,
.shot-frame:focus-visible:after {
  opacity: 1;
  transform: translateY(0)
}

.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(11, 14, 18, .88);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease
}

.shot-lightbox.is-open {
  opacity: 1;
  pointer-events: auto
}

.shot-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff
}

.shot-lightbox-title {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem)
}

.shot-lightbox-close,
.shot-lightbox-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer
}

.shot-lightbox-close:hover,
.shot-lightbox-nav:hover,
.shot-lightbox-close:focus-visible,
.shot-lightbox-nav:focus-visible {
  background: #fff;
  color: #1d2026;
  outline: none
}

.shot-lightbox-body {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0
}

.shot-lightbox-img {
  max-width: min(100%, 1500px);
  max-height: 100%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
  transform: scale(.96) translateY(12px);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease
}

.shot-lightbox.is-open .shot-lightbox-img {
  transform: scale(1) translateY(0);
  opacity: 1
}

.shot-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
}

.shot-lightbox-prev {
  left: 0
}

.shot-lightbox-next {
  right: 0
}

body.shot-lightbox-open {
  overflow: hidden
}

.shot-placeholder:before {
  content: "";
  position: absolute;
  inset: 20px;
  background: linear-gradient(90deg, #fff 25%, transparent 25%), linear-gradient(rgba(69, 79, 91, .1) 1px, transparent 1px);
  background-size: 120px 100%, 100% 36px;
  border-radius: 8px
}

.shot-placeholder span {
  position: relative;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  color: #2c3138;
  background: #fff;
  padding: .45rem .8rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: none
}

.pricing-card.featured {
  border-color: #25272d;
  transform: translateY(-8px);
  box-shadow: 6px 6px 0 #25272d
}

.pricing-card {
  position: relative
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .35rem .65rem;
  border: 1px solid #25272d;
  border-radius: 999px;
  background: #fff4bf;
  color: #302500;
  font-size: .78rem;
  font-weight: 900
}

.plan-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: .75rem;
  border: 2px solid #25272d;
  border-radius: 8px;
  background: #fff4bf;
  color: #25272d;
  font-size: 1.15rem
}

.price {
  font-family: Georgia, serif;
  font-size: 3rem;
  margin: .8rem 0;
  color: #1f2530
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: baseline
}

.full-price {
  color: #6c7480;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 2px
}

.price-note {
  margin-top: -.55rem;
  font-size: .9rem
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}


.bg-card {
  min-height: 320px;
  border: 2px solid #25272d;
  border-radius: 10px;
  padding: 2rem;
  background-color: #fff4bf;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 244, 191, .5));
  color: #24262b;
  box-shadow: 7px 7px 0 #25272d;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

.bg-card strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  margin-top: 2rem;
  color: #24262b;
}

.bg-card p {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #24262b;
}


.bg-card span {
  display: inline-block;
  background: #fff3b5;
  color: #7c6100;
  padding: .42rem .72rem;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .08em;
  border: 1px solid #f1bf19;
}


.bg-card.notes-card {
  background-color: #fff4bf;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 244, 191, .5));
}

.deployment-card {
  min-height: 320px;
  border: 2px solid #25272d;
  border-radius: 10px;
  padding: 2rem;
  background: #f8fbff;
  color: #24262b;
  box-shadow: 7px 7px 0 #25272d;
  position: relative;
  overflow: hidden
}

.deployment-card:before {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #dff8e9;
  border: 2px solid #25272d
}

.deployment-card span {
  display: inline-block;
  position: relative;
  background: #fff3b5;
  color: #7c6100;
  padding: .42rem .72rem;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .08em;
  border: 1px solid #f1bf19
}

.deployment-card strong {
  display: block;
  position: relative;
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: .95;
  margin-top: 1.35rem;
  color: #24262b
}

.deployment-card p {
  position: relative;
  color: #4c5663
}

.final-cta {
  background: #fff
}

.support-band {
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%)
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem
}

.support-cards article {
  min-height: 190px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.support-cards article:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--yellow);
}

.support-cards i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--yellow);

  color: #25272d;
  font-size: 1.95rem;
  margin-bottom: 1rem;
  margin: auto;
}

.support-cards h2 {
  margin: 0 0 .45rem;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: #25272d
}

.support-cards p {
  margin: 0;
  color: var(--muted)
}

.faq-list {
  max-width: 850px;
  margin: auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: .8rem;
  background: #fff;
  box-shadow: none;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease
}

.faq-list details[open] {
  border-color: rgba(242, 183, 5, .9);
  background: #fffdf2;
  box-shadow: 0 0 0 3px rgba(242, 183, 5, .16)
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: #25272d;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

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

.faq-list summary:after {
  content: "\F282";
  font-family: "bootstrap-icons";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f2f5f7;
  color: #69707d;
  font-size: .95rem;
  transition: transform .18s ease, background-color .18s ease, color .18s ease
}

.faq-list details[open] summary {
  color: #8d6800
}

.faq-list details[open] summary:after {
  transform: rotate(180deg);
  background: var(--yellow);
  color: #2d2200
}

.faq-list p {
  color: var(--muted);
  margin: .85rem 0 .1rem;
  max-width: 70ch
}

.license-box {
  display: block;
  padding: 1rem;
  border: 1px dashed rgba(242, 183, 5, .8);
  border-radius: 8px;
  background: #fff9df;
  color: #3a2d00;
  font-size: 1rem;
  overflow-wrap: anywhere
}

.footer {
  border-top: 1px solid var(--line);
  background: #f7f9fa
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.8fr);
  gap: 2.5rem;
  align-items: start
}

.footer-identity {
  max-width: 760px
}

.legal-line {
  margin: .65rem 0 0;
  color: #4f5966;
  font-size: .95rem
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem
}

.footer-columns h2 {
  margin: 0 0 .65rem;
  color: #25272d;
  font-size: .82rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase
}

.footer-columns a {
  display: block;
  margin-bottom: .45rem
}

.footer a {
  color: #8c6800
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.25rem;
  align-items: start
}

.contact-note,
.legal-page .container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem
}

.contact-note h2,
.legal-page h2 {
  margin: 0 0 .6rem;
  font-family: Georgia, serif;
  color: #25272d
}

.legal-page h2 {
  margin-top: 1.3rem
}

.legal-page h2:first-child {
  margin-top: 0
}

.legal-page p {
  color: #48515c;
  font-size: 1.05rem
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0
}

.table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text)
}

.table th,
.table td {
  padding: .8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top
}

code {
  overflow-wrap: anywhere;
  color: #6f5500
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f7f9fa
}

.login-box {
  width: min(420px, calc(100% - 32px));
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: none
}

.login-box h1 {
  font-family: Georgia, serif
}

.login-box input {
  display: block;
  width: 100%;
  margin-bottom: .8rem;
  padding: .9rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text)
}

.login-box button {
  width: 100%;
  padding: .9rem;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
  font-weight: 900
}

.error {
  color: #b62c2c
}

.admin-body {
  background: #f6f8f9
}

.admin-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh
}

.admin-side {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 1.2rem;
  position: sticky;
  top: 0;
  height: 100vh
}

.admin-side h1 {
  font-family: Georgia, serif;
  font-size: 1.4rem
}

.admin-side a {
  display: block;
  padding: .72rem;
  color: #4b5562;
  border-radius: 8px;
  font-weight: 750
}

.admin-side a:hover {
  background: #fff5c9;
  color: #111
}

.admin-main {
  padding: 1.5rem
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem
}

.admin-top span {
  font-family: Georgia, serif;
  font-size: 2rem
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem
}

.admin-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none
}

.admin-card strong {
  display: block;
  font-size: 2rem;
  color: #b48700
}

.product-edit {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1rem
}

.order-edit-form {
  min-width: 360px
}

.vault-table td form .form-control,
.vault-table td form .form-select {
  min-width: 160px
}

.saved {
  color: var(--green);
  margin-left: 1rem
}

@media (max-width:900px) {

  .footer {
    text-align: center;
  }

  .pricing-grid.editions {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .pricing-card {
    text-align: center;
  }

  .clean-list {
    text-align: left;
  }

  .price-row {
    display: block
  }

  .full-price {
    display: inline-block;
    margin-bottom: 1rem;
  }




  .container {
    width: min(100% - 24px, 720px)
  }

  .band {
    padding: 3.2rem 0
  }

  .page-hero {
    padding: 4rem 0 2.4rem
  }

  .page-hero:after {
    position: relative;
    display: block;
    right: auto;
    top: auto;
    width: min(120vw, 620px);
    margin: 1.8rem auto 0;
    opacity: .9;
    transform: none
  }

  .page-hero .container,
  .page-hero .container.narrow {
    max-width: 720px;
    margin-inline: auto
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.04
  }

  .section-head h2,
  .band h2 {
    font-size: clamp(1.7rem, 5vw, 2.7rem);
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero,
  .page-hero {
    padding: 1rem;
    min-height: auto;


    background-repeat: repeat-x !important;
    background-size: 300%;
    background-position: center top;

  }

  .hero-grid {
    padding: 2.6rem 0 3.4rem;
    gap: 2rem
  }

  .hero .lead {
    font-size: 1.05rem
  }

  .product-visual {
    height: auto;
    min-height: 0;
    transform: none !important
  }

  .product-visual img {
    position: relative;
    inset: auto;
    transform: none;
    width: min(100%, 520px);
    margin-inline: auto
  }

  .book-cover {
    width: min(82vw, 340px);
    transform: none
  }

  .feature-grid,
  .summary-grid,
  .problem-grid,
  .gallery-strip,
  .masonry,
  .support-cards,
  .pricing-grid,
  .comparison-grid,
  .admin-cards,
  .overview-grid,
  .overview-columns {
    grid-template-columns: 1fr
  }

  .launch-status {
    grid-template-columns: 1fr
  }

  .pricing-card.featured {
    transform: none;
    box-shadow: 4px 4px 0 #25272d
  }

  .navbar .container {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .75rem
  }

  .navbar-brand img {
    width: min(220px, 58vw)
  }

  .navbar-toggler {
    display: inline-flex;
    margin-left: auto
  }

  .navbar-collapse {
    display: none;
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
    padding: .5rem 0 1rem
  }

  .navbar-collapse.show {
    display: block
  }

  .navbar-nav {
    align-items: stretch;
    flex-direction: column;
    gap: .15rem;
    width: 100%
  }

  .nav-link {
    padding: .72rem 0;
    border-bottom: 1px solid #edf1f4
  }

  .nav-link.active {
    box-shadow: inset 3px 0 0 var(--yellow);
    padding-left: .65rem
  }

  .navbar-nav .btn {
    width: 100%;
    margin-top: .5rem
  }

  .ms-lg-3,
  .ms-auto {
    margin-left: 0
  }

  .launch-status {
    gap: 1rem
  }

  .price {
    font-size: 2.45rem
  }

  .bg-card {
    min-height: 250px;
    padding: 1.5rem;
    box-shadow: 4px 4px 0 #25272d;
    width: 80%;
    margin: auto;
  }

  .sealed-draft {
    transform: rotate(3.5deg);
  }

  .sealed-draft-2 {
    transform: rotate(-3.5deg);
  }


  .sealed-draft strong,
  .deployment-card strong {
    font-size: clamp(2rem, 5vw, 5rem)
  }

  .footer .container {
    align-items: flex-start
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .admin-layout {
    grid-template-columns: 1fr
  }

  .admin-side {
    position: relative;
    height: auto
  }

  .col-md-6 {
    flex: 0 0 100%
  }
}

@media (min-width:901px) {
  .flex-md-row {
    flex-direction: row
  }
}

@media (max-width:520px) {

  .page-hero:after {
    position: relative;
    display: block;
    left: -8rem;
    top: auto;
    width: min(200vw, 600px);
    margin: 1.8rem auto 0;
    opacity: .7;
    transform: none;
  }


  .eyebrow,
  .band h2 {
    text-align: center;
  }

  .band .btn-ghost {
    margin: auto;
  }

  .container {
    width: min(100% - 40px, 480px)
  }

  .hero-grid {
    padding-top: 2.2rem
  }

  .hero-copy .btn,
  .final-cta .btn,
  .page-hero+.band .form-shell .btn {
    width: 100%
  }

  .pricing-card,
  .vault-card,
  .screenshot-card,
  .form-shell,
  .overview-card,
  .overview-list {
    padding: 1.1rem
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center
  }



  .launch-status {
    padding-block: 1rem
  }

  .launch-status h2 {
    font-size: 1.35rem
  }

  .navbar-brand img {
    width: min(250px, 100vw);
  }

  .shot-lightbox {
    padding: .75rem;
    gap: .75rem
  }

  .shot-lightbox-close,
  .shot-lightbox-nav {
    width: 40px;
    height: 40px
  }

  .shot-lightbox-nav {
    top: auto;
    bottom: .75rem;
    transform: none
  }

  .shot-lightbox-prev {
    left: .75rem
  }

  .shot-lightbox-next {
    right: .75rem
  }

  .shot-lightbox-img {
    max-height: calc(100% - 4rem)
  }
}