.v2-offer-grid {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
}

.v2-editorial-card,
.v2-form-card,
.v2-state-card,
.v2-deck-workspace {
  border: 1px solid var(--v2-line);
  background: rgba(255, 253, 248, .86);
  box-shadow: var(--v2-shadow);
  padding: clamp(1.35rem, 3vw, 2.5rem);
}

.v2-offer-hero {
  padding-block: clamp(38px, 4vw, 52px) clamp(32px, 3.5vw, 46px);
}

.v2-offer-hero-action {
  width: fit-content;
  margin-top: 1.25rem;
}

.v2-offer-hero--compact .v2-page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  align-items: center;
}

.v2-offer-hero--celtic {
  padding-block: clamp(24px, 3vw, 38px) clamp(26px, 3vw, 38px);
}

.v2-offer-hero--celtic .v2-page-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
  gap: clamp(2rem, 4vw, 4.75rem);
}

.v2-celtic-hero-title h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 4.2vw, 4.7rem);
  letter-spacing: 0;
  line-height: .94;
}

.v2-offer-hero--celtic .v2-page-intro--with-cards {
  grid-template-columns: minmax(0, 1fr) 246px;
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.v2-offer-hero--celtic .v2-offer-card-fan {
  width: 246px;
  height: 208px;
}

.v2-offer-hero--celtic .v2-offer-card {
  width: 114px;
}

.v2-offer-hero--celtic .v2-offer-card:nth-child(1),
.v2-offer-hero--celtic .v2-offer-card:nth-child(3) {
  top: 34px;
}

.v2-offer-hero--celtic .v2-offer-card:nth-child(2) {
  left: 66px;
}

.v2-offer-hero--celtic .v2-offer-card:nth-child(3) {
  left: 132px;
}

.v2-page-intro--with-cards {
  display: grid;
  grid-template-areas:
    "copy cards"
    "action cards";
  grid-template-columns: minmax(0, 1fr) 198px;
  align-items: center;
  gap: .9rem 1.4rem;
}

.v2-page-intro--with-cards > p:first-child {
  grid-area: copy;
}

.v2-page-intro--with-cards .v2-offer-hero-action {
  grid-area: action;
  margin-top: 0;
}

.v2-offer-card-fan {
  position: relative;
  grid-area: cards;
  width: 198px;
  height: 170px;
}

.v2-offer-card {
  position: absolute;
  width: 92px;
  margin: 0;
  border: 3px solid #f4ecdf;
  border-radius: 3px;
  background: var(--v2-paper);
  box-shadow: 0 13px 28px rgba(24, 19, 15, .2);
  overflow: hidden;
  transform-origin: 50% 100%;
  transition: transform .25s ease;
}

.v2-offer-card--0 {
  z-index: 1;
  top: 28px;
  left: 0;
  transform: rotate(-10deg);
}

.v2-offer-card--1 {
  z-index: 3;
  top: 0;
  left: 53px;
}

.v2-offer-card--2 {
  z-index: 2;
  top: 28px;
  left: 106px;
  transform: rotate(10deg);
}

.v2-offer-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

@media (hover: hover) {
  .v2-offer-card--0:hover {
    transform: translateY(-5px) rotate(-7deg);
  }

  .v2-offer-card--1:hover {
    transform: translateY(-7px) scale(1.025);
  }

  .v2-offer-card--2:hover {
    transform: translateY(-5px) rotate(7deg);
  }
}

.v2-offer-hero--daily {
  padding-block: clamp(34px, 4vw, 48px);
}

.v2-offer-hero--daily .v2-page-hero-grid {
  grid-template-columns: minmax(260px, .68fr) minmax(600px, 1.32fr);
  align-items: stretch;
  gap: clamp(36px, 5vw, 68px);
}

.v2-daily-hero-title {
  align-self: center;
}

.v2-offer-hero--daily h1 {
  max-width: 7.3ch;
  font-size: clamp(3.7rem, 5.5vw, 5.35rem);
  line-height: .92;
}

.v2-offer-hero--portrait {
  padding-block: clamp(34px, 4vw, 48px);
}

.v2-offer-hero--portrait .v2-page-hero-grid {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  align-items: stretch;
}

.v2-portrait-hero-title {
  align-self: center;
}

.v2-offer-hero--portrait h1 {
  max-width: none;
  font-size: clamp(3.15rem, 4.1vw, 3.7rem);
  letter-spacing: 0;
  line-height: .94;
  overflow-wrap: normal;
  word-break: normal;
}

.v2-offer-hero--alliance {
  padding-block: clamp(34px, 4vw, 48px);
}

.v2-offer-hero--alliance .v2-page-hero-grid {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  align-items: stretch;
}

.v2-alliance-hero-title {
  align-self: center;
}

.v2-offer-hero--alliance h1 {
  max-width: none;
  font-size: clamp(3.15rem, 4.1vw, 3.7rem);
  letter-spacing: 0;
  line-height: .94;
  overflow-wrap: normal;
  word-break: normal;
}

.v2-offer-gateway {
  position: relative;
  display: grid;
  grid-template-areas:
    "copy cards"
    "action cards"
    "note note";
  grid-template-columns: minmax(260px, 1fr) 320px;
  gap: 18px 28px;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(209, 173, 105, .72);
  border-top-width: 3px;
  background: var(--v2-ink);
  box-shadow: 9px 9px 0 rgba(169, 121, 37, .2);
  color: var(--v2-cream-light);
  text-decoration: none;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.v2-offer-gateway--alliance {
  background: #35171f;
  box-shadow: 9px 9px 0 rgba(116, 34, 55, .18);
}

.v2-offer-gateway--alliance .v2-offer-gateway-copy > h1 em {
  color: #e1c48c;
  font-weight: 400;
}

.v2-offer-gateway--portrait .v2-offer-gateway-copy > h1 em {
  color: #e1c48c;
  font-weight: 400;
}

.v2-offer-gateway-copy {
  display: flex;
  grid-area: copy;
  align-self: center;
  flex-direction: column;
  gap: .72rem;
}

.v2-offer-gateway-copy .v2-overline {
  color: var(--v2-gold-light);
}

.v2-offer-gateway-copy > strong,
.v2-offer-gateway-copy > h1 {
  margin: 0;
  font-family: var(--v2-serif);
  font-size: clamp(1.62rem, 2.25vw, 2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.v2-offer-gateway-copy > span:last-child {
  color: #e0d6c8;
  font-size: 1rem;
  line-height: 1.52;
}

.v2-offer-gateway .v2-offer-card-fan {
  grid-area: cards;
  align-self: center;
  justify-self: end;
  width: 320px;
  height: 260px;
}

.v2-offer-gateway .v2-offer-card {
  pointer-events: none;
  border-width: 4px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .36);
}

.v2-offer-gateway .v2-offer-card--pdf-page {
  border-width: 2px;
  border-color: #d8c49f;
  border-radius: 1px;
  background: #fffdf9;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .3);
}

.v2-offer-card--pdf-page img {
  aspect-ratio: 210 / 297;
  object-fit: cover;
}

.v2-offer-gateway .v2-offer-card--0,
.v2-offer-gateway .v2-offer-card--2 {
  top: 36px;
  width: 145px;
}

.v2-offer-gateway .v2-offer-card--0 {
  left: 0;
}

.v2-offer-gateway .v2-offer-card--1 {
  top: 0;
  left: 78px;
  width: 165px;
}

.v2-offer-gateway .v2-offer-card--2 {
  right: 0;
  left: auto;
}

.v2-offer-gateway-action {
  display: flex;
  grid-area: action;
  min-height: 64px;
  align-items: center;
  align-self: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 20px;
  border: 1px solid var(--v2-gold-light);
  background: var(--v2-cream-light);
  box-shadow: 6px 6px 0 rgba(209, 173, 105, .3);
  color: var(--v2-ink);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.v2-offer-gateway-action > span {
  color: var(--v2-burgundy);
  font-size: 1.05rem;
  transition: transform .25s ease;
}

.v2-offer-gateway-note {
  grid-area: note;
  align-self: end;
  color: #d7cdbf;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

@media (hover: hover) {
  .v2-offer-gateway:hover {
    background: #211a16;
    box-shadow: 5px 5px 0 rgba(169, 121, 37, .28);
    transform: translateY(-2px);
  }

  .v2-offer-gateway--alliance:hover {
    background: #2c1219;
    box-shadow: 12px 12px 0 rgba(116, 34, 55, .2);
  }

  .v2-offer-gateway:hover .v2-offer-card--0 {
    transform: translate(-8px, -7px) rotate(-7deg);
  }

  .v2-offer-gateway:hover .v2-offer-card--1 {
    transform: translateY(-11px) scale(1.025);
  }

  .v2-offer-gateway:hover .v2-offer-card--2 {
    transform: translate(8px, -7px) rotate(7deg);
  }

  .v2-offer-gateway:hover .v2-offer-gateway-action > span {
    transform: translateX(4px);
  }
}

.v2-offer-page {
  padding-block: clamp(42px, 5vw, 68px);
}

.v2-offer-page--direct {
  padding-block: clamp(36px, 4vw, 60px);
  background: #fffdf8;
}

.v2-offer-page--direct .v2-offer-grid {
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  gap: clamp(2rem, 4vw, 4.75rem);
}

.v2-offer-page--direct .v2-editorial-card {
  padding: .25rem 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.v2-offer-purchase-column {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 1.6rem;
}

.v2-direct-mobile-summary {
  display: none;
}

.v2-direct-offer-heading .v2-overline {
  margin: 0;
}

.v2-direct-offer-heading .v2-direct-price {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .45rem .72rem;
  border: 1px solid rgba(116, 34, 55, .3);
  background: rgba(116, 34, 55, .04);
  color: var(--v2-burgundy);
  font-size: .9rem;
  line-height: 1;
}

.v2-direct-offer-heading h1 {
  max-width: 11ch;
  margin: .55rem 0 0;
  font-family: var(--v2-serif);
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .96;
}

.v2-direct-offer-heading > p:not(.v2-overline) {
  max-width: 610px;
  margin: 1.25rem 0 0;
  color: #51483f;
  font-family: var(--v2-serif);
  font-size: 1.08rem;
  line-height: 1.55;
}

.v2-direct-offer-heading > strong {
  display: block;
  width: fit-content;
  margin-top: 1.2rem;
  padding-block: .72rem;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  color: #8a651f;
  font-size: .69rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-direct-offer-result {
  margin-top: 2rem;
}

.v2-offer-page--direct .v2-direct-offer-result h2 {
  margin: 0;
  font-family: var(--v2-sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-offer-page--portrait .v2-direct-offer-result h2,
.v2-offer-page--alliance .v2-direct-offer-result h2 {
  max-width: 18ch;
  color: var(--v2-ink);
  font-family: var(--v2-serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
}

.v2-direct-offer-result ul {
  margin: .7rem 0 0;
  padding: 0;
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-direct-offer-result li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: .55rem;
  padding: .72rem 0;
  border-top: 1px solid var(--v2-line);
  font-family: var(--v2-serif);
  font-size: 1rem;
  line-height: 1.35;
}

.v2-direct-offer-result li span {
  color: var(--v2-gold);
}

.v2-direct-pdf-preview {
  width: 100%;
  max-width: 680px;
  margin: 0;
}

.v2-direct-pdf-preview figcaption {
  display: grid;
  gap: .28rem;
  padding-top: .85rem;
  border-top: 1px solid var(--v2-gold);
}

.v2-direct-pdf-preview figcaption span {
  color: var(--v2-gold);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-direct-pdf-preview figcaption strong {
  color: #5f554b;
  font-family: var(--v2-serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.v2-direct-pdf-pages {
  position: relative;
  height: 370px;
  margin-top: .85rem;
  overflow: hidden;
}

.v2-direct-pdf-page {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 205px;
  height: 290px;
  border: 1px solid rgba(139, 101, 8, .55);
  background: #fff;
  object-fit: contain;
  box-shadow: 0 16px 30px rgba(27, 22, 18, .16);
}

.v2-direct-pdf-page--1 {
  z-index: 3;
  top: 4px;
  width: 235px;
  height: 333px;
  transform: translateX(-50%);
}

.v2-direct-pdf-page--2 {
  z-index: 1;
  transform: translateX(-116%) rotate(-5deg);
  transform-origin: 100% 90%;
}

.v2-direct-pdf-page--3 {
  z-index: 1;
  transform: translateX(16%) rotate(5deg);
  transform-origin: 0 90%;
}

.v2-direct-card-preview {
  position: relative;
  width: 380px;
  height: 240px;
  margin-top: .9rem;
}

.v2-direct-card-preview img {
  position: absolute;
  top: 15px;
  left: 127px;
  width: 126px;
  height: 202px;
  border: 3px solid #f5ead7;
  object-fit: cover;
  box-shadow: 0 12px 22px rgba(27, 22, 18, .14);
}

.v2-direct-card-preview img:first-child {
  left: 18px;
  transform: rotate(-7deg);
}

.v2-direct-card-preview img:nth-child(2) {
  z-index: 2;
  top: 2px;
}

.v2-direct-card-preview img:nth-child(3) {
  left: 236px;
  transform: rotate(7deg);
}

.v2-direct-card-preview--below-form {
  margin: 1.25rem auto 0;
}

.v2-direct-ethics {
  max-width: 560px;
  margin: 1rem 0 0;
  color: #74685d;
  font-size: .75rem;
  line-height: 1.55;
}

.v2-offer-page--celtic {
  padding-block: clamp(30px, 3.5vw, 48px) clamp(46px, 5vw, 68px);
}

.v2-offer-grid--celtic {
  grid-template-columns: minmax(280px, .76fr) minmax(520px, 1.24fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.v2-celtic-editorial {
  padding-top: .35rem;
}

.v2-offer-grid--celtic .v2-editorial-card h2 {
  max-width: 12ch;
}

.v2-form-card--celtic,
.v2-form-card--intuitive {
  padding: clamp(1.35rem, 2.1vw, 1.9rem);
}

.v2-form-card--celtic h2,
.v2-form-card--intuitive h2 {
  max-width: 15ch;
}

.v2-offer-page--daily {
  padding-block: clamp(46px, 5vw, 70px);
  background: #fffdf8;
}

.v2-offer-grid--daily {
  display: block;
  grid-template-columns: minmax(0, 1fr);
}

.v2-daily-reading-heading {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(320px, 1.18fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.v2-daily-reading-heading h2 {
  margin: .42rem 0 0;
  font-size: clamp(2.35rem, 4.25vw, 3.7rem);
  letter-spacing: 0;
  line-height: .98;
}

.v2-daily-reading-heading h2 em {
  color: var(--v2-burgundy);
  font-weight: 400;
}

.v2-daily-reading-heading > p {
  max-width: 520px;
  margin: 0 0 .25rem;
  color: #5e5146;
  font-family: var(--v2-serif);
  font-size: 1.16rem;
  letter-spacing: 0;
  line-height: 1.55;
}

.v2-daily-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-daily-benefits li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-left: 1px solid var(--v2-line);
}

.v2-daily-benefits li:first-child {
  padding-left: 0;
  border-left: 0;
}

.v2-daily-benefits li > span {
  color: var(--v2-gold);
  font-family: var(--v2-serif);
  font-size: 2.45rem;
  line-height: .9;
}

.v2-daily-benefits strong {
  display: block;
  font-family: var(--v2-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.v2-daily-benefits p {
  margin: .55rem 0 0;
  color: #675c52;
  font-size: .92rem;
  line-height: 1.55;
}

.v2-daily-reading-footer {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(360px, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2rem;
}

.v2-daily-reading-action {
  min-width: 310px;
  min-height: 58px;
  font-size: .82rem;
  letter-spacing: .05em;
}

.v2-daily-space-note {
  max-width: 610px;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid var(--v2-line);
}

.v2-daily-space-note > p {
  margin: 0;
}

.v2-daily-space-title {
  color: var(--v2-ink);
  font-family: var(--v2-serif);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.35;
}

.v2-daily-space-title span {
  margin-right: .45rem;
  color: var(--v2-gold);
}

.v2-daily-space-title + p {
  margin-top: .5rem;
  color: #5e5146;
  font-size: .9rem;
  line-height: 1.6;
}

.v2-daily-method-note {
  margin-top: .8rem !important;
  padding-top: .75rem;
  border-top: 1px solid var(--v2-line);
  color: #74685d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.v2-selection-hero {
  padding-block: clamp(28px, 3vw, 42px) clamp(24px, 2.5vw, 34px);
}

.v2-selection-hero h1 {
  font-size: clamp(2.55rem, 4vw, 4.15rem);
}

.v2-editorial-card {
  background: var(--v2-paper);
}

.v2-editorial-card--open {
  padding: .55rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.v2-offer-grid--daily .v2-editorial-card--open {
  display: block;
}

.v2-editorial-card h2,
.v2-form-card h2 {
  font-family: var(--v2-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: .3rem 0 0;
}

.v2-offer-page--portrait {
  padding-block: clamp(46px, 5vw, 70px);
  background: #fffdf8;
}

.v2-offer-grid--portrait {
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.v2-offer-grid--portrait .v2-editorial-card--open {
  display: block;
  padding-top: .35rem;
}

.v2-portrait-reading-heading h2 {
  max-width: 11ch;
  margin-top: .42rem;
  font-size: clamp(2.25rem, 3.4vw, 3.05rem);
  letter-spacing: 0;
  line-height: .98;
}

.v2-portrait-reading-heading h2 em {
  color: var(--v2-burgundy);
  font-weight: 400;
}

.v2-portrait-reading-heading > p:last-child {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: #5e5146;
  font-family: var(--v2-serif);
  font-size: 1.05rem;
  line-height: 1.55;
}

.v2-portrait-benefits {
  display: grid;
  grid-template-columns: 1fr;
  margin: 1.7rem 0 0;
  padding: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-portrait-benefits li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: .75rem;
  min-width: 0;
  padding: 1.05rem 0;
  border-top: 1px solid var(--v2-line);
  border-left: 0;
}

.v2-portrait-benefits li:first-child {
  border-top: 0;
}

.v2-portrait-benefits li > span {
  color: var(--v2-gold);
  font-family: var(--v2-serif);
  font-size: 1.75rem;
  line-height: 1;
}

.v2-portrait-benefits strong {
  display: block;
  font-family: var(--v2-serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.18;
}

.v2-portrait-benefits p {
  margin: .45rem 0 0;
  color: #675c52;
  font-size: .84rem;
  line-height: 1.5;
}

.v2-benefits--compact {
  margin-top: 1.25rem;
}

.v2-benefits--compact li {
  padding: .9rem 0;
}

.v2-benefits--compact li > span {
  font-size: 1.4rem;
}

.v2-portrait-ethics {
  margin: 1.15rem 0 0;
  padding-left: .8rem;
  border-left: 2px solid var(--v2-gold);
  color: #74685d;
  font-size: .76rem;
  line-height: 1.5;
}

.v2-portrait-contents summary {
  color: var(--v2-ink);
  font-size: .9rem;
}

.v2-portrait-contents ol {
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-portrait-contents li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: .25rem .75rem;
  padding: .9rem 0;
  border-top: 1px solid var(--v2-line);
}

.v2-portrait-contents li > span {
  grid-row: 1 / 3;
  color: var(--v2-gold);
  font-family: var(--v2-serif);
  font-size: 1.15rem;
}

.v2-portrait-contents strong {
  color: var(--v2-ink);
  font-family: var(--v2-serif);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: 0;
}

.v2-portrait-contents small {
  color: #74685d;
  font-size: .76rem;
  line-height: 1.45;
}

.v2-form-card--portrait {
  scroll-margin-top: 86px;
  border-top: 3px solid var(--v2-gold);
  background: var(--v2-paper);
}

.v2-form-card--portrait h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: 0;
}

.v2-form-card--portrait > p:not(.v2-overline) {
  max-width: 52ch;
  margin: 1rem 0 0;
  color: #5e5146;
  line-height: 1.55;
}

.v2-form-card--portrait .v2-reading-input-form {
  gap: .9rem;
  margin-top: 1.15rem;
}

.v2-form-card--portrait .v2-field input {
  min-height: 3.45rem;
}

.v2-form-card--portrait .v2-button--wide {
  min-height: 62px;
  font-size: .84rem;
  letter-spacing: .05em;
}

.v2-portrait-assurances {
  justify-content: center;
}

.v2-offer-page--alliance {
  padding-block: clamp(46px, 5vw, 70px);
  background: #fffdf8;
}

.v2-offer-grid--alliance {
  grid-template-columns: minmax(0, .88fr) minmax(450px, 1.12fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.v2-offer-grid--alliance .v2-editorial-card--open {
  display: block;
  padding-top: .35rem;
}

.v2-alliance-reading-heading h2 {
  max-width: 12ch;
  margin-top: .42rem;
  font-size: clamp(2.25rem, 3.4vw, 3.05rem);
  letter-spacing: 0;
  line-height: .98;
}

.v2-alliance-reading-heading h2 em {
  color: var(--v2-burgundy);
  font-weight: 400;
}

.v2-alliance-reading-heading > p:last-child {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: #5e5146;
  font-family: var(--v2-serif);
  font-size: 1.05rem;
  line-height: 1.55;
}

.v2-alliance-benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 1.7rem 0 0;
  padding: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-alliance-benefits li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: .75rem;
  min-width: 0;
  padding: 1.05rem 0;
  border-top: 1px solid var(--v2-line);
  border-left: 0;
}

.v2-alliance-benefits li:first-child {
  border-top: 0;
}

.v2-alliance-benefits li:nth-child(odd) {
  border-left: 0;
}

.v2-alliance-benefits li > span {
  color: var(--v2-gold);
  font-family: var(--v2-serif);
  font-size: 1.75rem;
  line-height: 1;
}

.v2-alliance-benefits strong {
  display: block;
  font-family: var(--v2-serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.18;
}

.v2-alliance-benefits p {
  margin: .45rem 0 0;
  color: #675c52;
  font-size: .84rem;
  line-height: 1.5;
}

.v2-alliance-ethics {
  margin: 1rem 0 0;
  color: #74685d;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.5;
}

.v2-form-card--alliance {
  scroll-margin-top: 86px;
  border-top: 3px solid var(--v2-burgundy);
  background: #f0e4d0;
}

.v2-form-card--alliance h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: 0;
}

.v2-form-card--alliance > p:not(.v2-overline) {
  max-width: 55ch;
  margin: 1rem 0 0;
  color: #5e5146;
  line-height: 1.55;
}

.v2-reading-input-form--alliance {
  grid-template-areas:
    "primary-label secondary-label"
    "primary-name secondary-name"
    "primary-date secondary-date"
    "relationship relationship"
    "action action"
    "assurances assurances";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem 1.15rem;
  margin-top: 1.2rem;
}

.v2-alliance-person-label {
  margin: 0;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(116, 34, 55, .35);
  color: var(--v2-burgundy);
  font-family: var(--v2-serif);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
}

.v2-alliance-person-label--primary {
  grid-area: primary-label;
}

.v2-alliance-person-label--secondary {
  grid-area: secondary-label;
}

.v2-alliance-field--primary-name {
  grid-area: primary-name;
}

.v2-alliance-field--primary-date {
  grid-area: primary-date;
}

.v2-alliance-field--secondary-name {
  grid-area: secondary-name;
}

.v2-alliance-field--secondary-date {
  grid-area: secondary-date;
}

.v2-alliance-field--relationship {
  grid-area: relationship;
  margin-top: .2rem;
}

.v2-form-card--alliance .v2-field {
  min-width: 0;
}

.v2-form-card--alliance .v2-field input {
  min-height: 3.45rem;
}

.v2-form-card--alliance .v2-button--wide {
  grid-area: action;
  min-height: 62px;
  font-size: .84rem;
  letter-spacing: .05em;
}

.v2-alliance-assurances {
  grid-area: assurances;
  justify-content: center;
}

.v2-alliance-journey strong {
  white-space: nowrap;
}

.v2-offer-grid--daily .v2-daily-reading-heading h2 {
  max-width: none;
  margin-top: .42rem;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  letter-spacing: 0;
  line-height: .98;
}

.v2-offer-facts {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
}

.v2-offer-facts div {
  border-top: 1px solid var(--v2-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(100px, .65fr) 1.35fr;
  padding: 1rem 0;
}

.v2-offer-facts dt {
  color: var(--v2-gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.v2-offer-facts dd {
  margin: 0;
}

.v2-offer-outcomes {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--v2-line);
  list-style: none;
}

.v2-offer-outcomes li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: baseline;
  gap: .8rem;
  padding: .82rem 0;
  border-bottom: 1px solid var(--v2-line);
}

.v2-offer-outcomes span {
  color: var(--v2-burgundy);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: 0;
}

.v2-offer-outcomes strong {
  font-family: var(--v2-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

.v2-position-details {
  border-top: 1px solid var(--v2-line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.v2-position-details summary {
  cursor: pointer;
  font-weight: 700;
  padding-block: .25rem;
}

.v2-position-details ol {
  display: grid;
  gap: .55rem;
  padding-left: 1.4rem;
}

.v2-reading-input-form,
.v2-field {
  display: grid;
  gap: .55rem;
}

.v2-reading-input-form {
  gap: 1.05rem;
  margin-top: 1.2rem;
}

.v2-offer-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 1.25rem;
  padding: 0 0 .8rem;
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-offer-journey li {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  padding-inline: .8rem;
  border-left: 1px solid var(--v2-line);
}

.v2-offer-journey li:first-child {
  padding-left: 0;
  border-left: 0;
}

.v2-offer-journey span {
  color: #877a6f;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 0;
}

.v2-offer-journey strong {
  color: #74685d;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.v2-offer-journey li[aria-current="step"] span,
.v2-offer-journey li[aria-current="step"] strong {
  color: var(--v2-burgundy);
}

.v2-field label {
  color: var(--v2-ink-soft);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.v2-field label small {
  color: var(--v2-gold);
  font-weight: 500;
}

.v2-field-privacy {
  margin: 0;
  color: #71665c;
  font-size: .78rem;
  line-height: 1.5;
}

.v2-field-privacy {
  display: block;
}

.v2-field-privacy strong {
  color: var(--v2-burgundy);
}

.v2-field input,
.v2-field textarea,
.v2-field select {
  width: 100%;
  border: 1px solid rgba(24, 19, 15, .28);
  border-radius: 0;
  background: #fffdf8;
  color: var(--v2-ink);
  min-height: 3.25rem;
  padding: .8rem 1rem;
}

.v2-date-format {
  color: #74685d;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0;
}

.v2-field textarea {
  line-height: 1.6;
  resize: vertical;
}

.v2-field textarea::placeholder {
  color: #93877c;
  opacity: 1;
}

.v2-question-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin-top: .15rem;
}

.v2-question-examples > span {
  width: 100%;
  color: #74685d;
  font-size: .7rem;
  font-weight: 700;
}

.v2-question-examples button {
  min-height: 34px;
  padding: .42rem .75rem;
  border: 1px solid rgba(169, 121, 37, .48);
  border-radius: 0;
  background: transparent;
  color: #5e5146;
  cursor: pointer;
  font: 700 .72rem/1 var(--v2-sans);
}

.v2-question-examples button:hover,
.v2-question-examples button[aria-pressed="true"] {
  border-color: var(--v2-burgundy);
  background: var(--v2-burgundy);
  color: #fffdf8;
}

.v2-field input:focus,
.v2-field textarea:focus,
.v2-field select:focus {
  border-color: var(--v2-gold);
  outline: 2px solid rgba(169, 121, 37, .18);
}

.v2-button--wide {
  justify-content: center;
  width: 100%;
}

.v2-selection-promise {
  margin: 0;
  padding-top: .1rem;
  color: #675c52;
  font-family: var(--v2-serif);
  font-size: .84rem;
  line-height: 1.48;
}

.v2-selection-promise strong {
  color: var(--v2-ink);
}

.v2-offer-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .55rem;
  margin: 0;
  padding: .75rem 0 0;
  border-top: 1px solid var(--v2-line);
  color: #74685d;
  font-size: .7rem;
  font-weight: 700;
  list-style: none;
}

.v2-offer-assurances li {
  padding: .2rem 0;
}

.v2-offer-assurances li + li::before {
  margin-right: .55rem;
  color: var(--v2-gold);
  content: "·";
}

.v2-button--secondary {
  border: 1px solid var(--v2-ink);
  background: transparent;
  color: var(--v2-ink);
}

.v2-button--secondary:hover {
  background: var(--v2-ink);
  color: var(--v2-cream-light);
}

.v2-form-disclaimer {
  border-top: 1px solid var(--v2-line);
  color: var(--v2-ink-soft);
  font-size: .82rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
}

.v2-reading-workspace {
  min-height: 0;
  padding-block: clamp(28px, 4vw, 58px);
}

.v2-input-summary {
  border: 1px solid var(--v2-line);
  background: var(--v2-paper);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr) auto;
  margin-bottom: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.v2-input-summary h2 {
  font-family: var(--v2-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  line-height: 1.15;
  margin: .2rem 0 0;
}

.v2-input-summary dl {
  display: grid;
  gap: .8rem;
  margin: 0;
}

.v2-input-summary dl div {
  display: grid;
  gap: .25rem;
}

.v2-input-summary dt {
  color: var(--v2-gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-input-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.v2-state-card {
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
}

.v2-state-card--error {
  border-color: rgba(111, 39, 52, .5);
}

.v2-loader {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid rgba(169, 121, 37, .22);
  border-top-color: var(--v2-gold);
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  animation: v2-spin .9s linear infinite;
}

@keyframes v2-spin {
  to { transform: rotate(360deg); }
}

.v2-deck-toolbar,
.v2-picked-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.v2-deck-toolbar {
  flex-wrap: wrap;
}

.v2-shuffle-button {
  min-height: 44px;
  padding: .7rem 1rem;
  font-size: .72rem;
  letter-spacing: .04em;
}

.v2-shuffle-button > span {
  color: var(--v2-gold);
  font-size: 1.05rem;
  line-height: 1;
}

.v2-picker-methods {
  min-width: 0;
  border: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: .55rem 0;
}

.v2-picker-methods-label {
  flex: 0 0 auto;
  color: var(--v2-ink-soft);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.v2-picker-method-options {
  border: 1px solid var(--v2-line);
  background: rgba(244, 237, 225, .54);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 3px;
}

.v2-picker-method {
  position: relative;
  cursor: pointer;
}

.v2-picker-method input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.v2-picker-method > span {
  min-width: clamp(128px, 14vw, 180px);
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .45rem .8rem;
  color: var(--v2-ink-soft);
  text-align: center;
  transition: background-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.v2-picker-method strong {
  color: inherit;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v2-picker-method small {
  color: inherit;
  font-size: .65rem;
  opacity: .72;
}

.v2-picker-method input:checked + span {
  background: var(--v2-ink);
  box-shadow: 0 4px 14px rgba(24, 19, 15, .13);
  color: var(--v2-cream-light);
}

.v2-picker-method input:focus-visible + span {
  outline: 2px solid var(--v2-gold);
  outline-offset: 2px;
}

.v2-picker-method input:disabled + span {
  cursor: not-allowed;
  opacity: .46;
}

.v2-deck-toolbar h2,
.v2-picked-heading h2 {
  font-family: var(--v2-serif);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  margin: .25rem 0 0;
}

.v2-draw-stage {
  margin-top: 1rem;
}

.v2-picker-host {
  min-width: 0;
  max-width: 100%;
}

.v2-cut-picker {
  min-width: 0;
}

.v2-cut-intro {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.v2-cut-stage {
  --cut-card-width: clamp(138px, 12vw, 165px);
  --cut-spread: clamp(76px, 9vw, 104px);
  --cut-lower-depth: 13px;
  --cut-upper-depth: 13px;
  position: relative;
  min-width: 0;
  min-height: clamp(300px, 25vw, 350px);
  border-top: 1px solid rgba(169, 121, 37, .28);
  border-bottom: 1px solid rgba(169, 121, 37, .28);
  background:
    radial-gradient(circle at 30% 45%, rgba(169, 121, 37, .12), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, .72), rgba(244, 237, 225, .45));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .82fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  margin-top: .65rem;
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  isolation: isolate;
}

.v2-cut-stage::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(169, 121, 37, .16) .65px, transparent .65px);
  background-size: 9px 9px;
  content: "";
  opacity: .28;
  pointer-events: none;
}

.v2-cut-scene {
  position: relative;
  min-width: 0;
  height: clamp(245px, 21vw, 300px);
  perspective: 1100px;
}

.v2-cut-scene::before {
  position: absolute;
  z-index: 5;
  top: 18%;
  bottom: 17%;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(169, 121, 37, .72) 18%, rgba(169, 121, 37, .72) 82%, transparent);
  content: "";
  opacity: .72;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity .16s ease;
}

.v2-cut-scene::after {
  position: absolute;
  z-index: 0;
  right: 12%;
  bottom: 4%;
  left: 12%;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(24, 19, 15, .27), transparent 70%);
  content: "";
  filter: blur(10px);
  pointer-events: none;
}

.v2-cut-stage.is-cutting .v2-cut-scene::before,
.v2-cut-stage.is-revealed .v2-cut-scene::before,
.v2-cut-stage.is-shuffling .v2-cut-scene::before {
  opacity: 0;
}

.v2-cut-packet,
.v2-cut-card {
  position: absolute;
  width: var(--cut-card-width);
  aspect-ratio: 2 / 3;
  border: 1px solid var(--v2-gold-light);
  border-radius: 9px;
  background: var(--deck-back-image, linear-gradient(145deg, #16121c, #2c2432)) center / cover no-repeat var(--v2-ink);
  box-shadow: 0 20px 32px rgba(24, 19, 15, .25);
  backface-visibility: hidden;
}

.v2-cut-packet {
  --packet-depth: 13px;
  top: 50%;
  left: 50%;
  isolation: isolate;
  transform-origin: 50% 90%;
  transition: filter .16s ease, opacity .16s ease;
}

.v2-cut-packet::before {
  position: absolute;
  z-index: -1;
  top: calc(100% - 3px);
  right: 5px;
  left: 5px;
  height: var(--packet-depth);
  border: 1px solid rgba(209, 173, 103, .7);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  background: repeating-linear-gradient(
    to bottom,
    #2a2327 0 2px,
    rgba(209, 173, 103, .88) 2px 3px,
    #17131a 3px 5px
  );
  box-shadow: 0 10px 18px rgba(24, 19, 15, .2);
  content: "";
  transition: height .08s linear;
}

.v2-cut-packet::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(231, 204, 139, .46);
  border-radius: 5px;
  content: "";
}

.v2-cut-packet--lower {
  --packet-depth: var(--cut-lower-depth);
  z-index: 1;
  transform: translate(calc(-50% - var(--cut-spread)), calc(-50% - var(--packet-depth))) rotate(-3deg);
}

.v2-cut-packet--upper {
  --packet-depth: var(--cut-upper-depth);
  z-index: 3;
  transform: translate(calc(-50% + var(--cut-spread)), calc(-50% - var(--packet-depth))) rotate(3deg);
}

.v2-cut-packet.is-empty {
  opacity: .14;
}

.v2-cut-card {
  z-index: 2;
  top: 50%;
  left: 50%;
  background: var(--v2-ink);
  box-shadow: 0 14px 32px rgba(24, 19, 15, .24);
  opacity: 0;
  transform: translate(-50%, -39%) scale(.92);
  transition: opacity .24s ease, transform .46s cubic-bezier(.2, .75, .25, 1);
}

.v2-cut-card .v2-deck-card-inner::before {
  background: var(--deck-back-image, linear-gradient(145deg, #16121c, #2c2432)) center / cover no-repeat var(--v2-ink);
}

.v2-cut-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  backface-visibility: hidden;
  object-fit: cover;
}

.v2-cut-card.is-selected .v2-deck-card-inner,
.v2-cut-stage.is-revealed .v2-cut-card .v2-deck-card-inner {
  transform: rotateY(180deg);
}

.v2-cut-stage.is-cutting .v2-cut-packet,
.v2-cut-stage.is-revealed .v2-cut-packet {
  transition: transform .42s cubic-bezier(.2, .75, .25, 1), filter .2s ease, opacity .16s ease;
}

.v2-cut-stage.is-cutting .v2-cut-packet--lower {
  transform: translate(calc(-50% - var(--cut-spread) - 42px), calc(-50% - var(--packet-depth) + 7px)) rotate(-7deg);
}

.v2-cut-stage.is-cutting .v2-cut-packet--upper {
  transform: translate(calc(-50% + var(--cut-spread) + 42px), calc(-50% - var(--packet-depth) - 7px)) rotate(7deg);
}

.v2-cut-stage.is-revealed .v2-cut-packet--lower {
  transform: translate(calc(-50% - var(--cut-spread) - 80px), calc(-50% - var(--packet-depth) + 9px)) rotate(-8deg);
}

.v2-cut-stage.is-revealed .v2-cut-packet--upper {
  transform: translate(calc(-50% + var(--cut-spread) + 80px), calc(-50% - var(--packet-depth) - 9px)) rotate(8deg);
}

.v2-cut-stage.is-cutting .v2-cut-card,
.v2-cut-stage.is-revealed .v2-cut-card {
  opacity: 1;
  transform: translate(-50%, -58%) scale(1.025);
}

.v2-cut-stage.is-shuffling .v2-cut-packet--lower {
  animation: v2-cut-shuffle-lower .48s cubic-bezier(.2, .75, .25, 1);
}

.v2-cut-stage.is-shuffling .v2-cut-packet--upper {
  animation: v2-cut-shuffle-upper .48s cubic-bezier(.2, .75, .25, 1);
}

@keyframes v2-cut-shuffle-lower {
  50% { transform: translate(-88%, -51%) rotate(-9deg); }
}

@keyframes v2-cut-shuffle-upper {
  50% { transform: translate(-12%, -49%) rotate(9deg); }
}

.v2-cut-controls {
  position: relative;
  z-index: 5;
  min-width: 0;
  border-left: 1px solid var(--v2-line);
  display: grid;
  gap: 1.1rem;
  padding: .5rem 0 .5rem clamp(1.1rem, 2.5vw, 2rem);
}

.v2-cut-control-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.v2-cut-control-heading label {
  font-family: var(--v2-serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.v2-cut-control-heading span {
  color: var(--v2-gold);
  font-size: .85rem;
}

.v2-cut-position {
  color: var(--v2-burgundy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-cut-range {
  width: 100%;
  height: 44px;
  margin: 0;
  background: transparent;
  cursor: ew-resize;
  accent-color: var(--v2-gold);
  -webkit-appearance: none;
}

.v2-cut-range::-webkit-slider-runnable-track {
  height: 3px;
  background: linear-gradient(90deg, var(--v2-gold), rgba(169, 121, 37, .2));
}

.v2-cut-range::-webkit-slider-thumb {
  width: 23px;
  height: 23px;
  border: 2px solid var(--v2-cream-light);
  border-radius: 2px;
  background: var(--v2-gold);
  box-shadow: 0 0 0 1px var(--v2-gold), 0 3px 9px rgba(24, 19, 15, .18);
  margin-top: -10px;
  transform: rotate(45deg);
  -webkit-appearance: none;
}

.v2-cut-range::-moz-range-track {
  height: 3px;
  background: linear-gradient(90deg, var(--v2-gold), rgba(169, 121, 37, .2));
}

.v2-cut-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 2px solid var(--v2-cream-light);
  border-radius: 2px;
  background: var(--v2-gold);
  box-shadow: 0 0 0 1px var(--v2-gold), 0 3px 9px rgba(24, 19, 15, .18);
  transform: rotate(45deg);
}

.v2-cut-range:focus-visible {
  outline: 2px solid rgba(169, 121, 37, .55);
  outline-offset: 4px;
}

.v2-cut-range:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.v2-cut-confirm {
  width: 100%;
  justify-content: center;
}

.v2-cut-confirm:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.v2-card-hand {
  min-width: 0;
}

.v2-hand-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.v2-hand-hint {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  color: #75685c;
  font-size: .78rem;
}

.v2-hand-hint > span[aria-hidden="true"] {
  color: var(--v2-gold);
}

.v2-hand-count {
  flex: 0 0 auto;
  color: var(--v2-ink-soft);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.v2-card-ribbon {
  position: relative;
  height: clamp(325px, 25vw, 365px);
  margin: .55rem 0 0;
  overflow: hidden;
  perspective: 1200px;
  touch-action: manipulation;
  isolation: isolate;
}

.v2-card-ribbon::after {
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: 12px;
  left: 5%;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(24, 19, 15, .22), transparent 70%);
  content: "";
  filter: blur(9px);
  pointer-events: none;
}

.v2-deck-card {
  --fan-left: 50%;
  --fan-depth: 0px;
  --fan-rotation: 0deg;
  --fan-mobile-rotation: 0deg;
  position: absolute;
  z-index: var(--fan-z, 1);
  top: calc(40px + var(--fan-depth));
  left: var(--fan-left);
  width: clamp(140px, 11.5vw, 170px);
  aspect-ratio: 2 / 3;
  border: 1px solid var(--v2-gold-light);
  border-radius: 7px;
  background: var(--v2-ink);
  box-shadow: 0 1px 2px rgba(24, 19, 15, .16);
  cursor: pointer;
  opacity: 0;
  padding: 0;
  transform: translateX(-50%) translateY(42px) rotate(0deg) scale(.96);
  transform-origin: 50% 115%;
  transition: transform .22s cubic-bezier(.2, .78, .25, 1), box-shadow .16s ease, opacity .2s ease;
  transition-delay: 0ms;
  backface-visibility: hidden;
}

.v2-card-ribbon.is-opening .v2-deck-card {
  transition-delay: var(--fan-delay, 0ms);
}

.v2-card-ribbon.is-open .v2-deck-card {
  opacity: 1;
  transform: translateX(-50%) rotate(var(--fan-rotation));
}

.v2-deck-card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform .48s cubic-bezier(.2, .75, .25, 1);
}

.v2-deck-card-inner::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--deck-back-image) center / cover no-repeat;
  backface-visibility: hidden;
  content: "";
}

.v2-deck-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  backface-visibility: hidden;
  object-fit: cover;
}

.v2-deck-card-face {
  transform: rotateY(180deg);
}

.v2-deck-card.is-selected .v2-deck-card-inner {
  transform: rotateY(180deg);
}

.v2-deck-preview {
  position: absolute;
  z-index: 600;
  top: calc(40px + var(--preview-depth, 0px));
  left: var(--preview-left, 50%);
  width: clamp(140px, 11.5vw, 170px);
  aspect-ratio: 2 / 3;
  border: 1px solid var(--v2-gold-light);
  border-radius: 7px;
  background: var(--deck-back-image) center / cover no-repeat var(--v2-ink);
  box-shadow: 0 18px 34px rgba(24, 19, 15, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px) scale(.985);
  transform-origin: 50% 115%;
  transition: opacity .1s ease, transform .13s cubic-bezier(.2, .78, .25, 1);
  will-change: transform, opacity;
}

.v2-deck-preview.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-28px) scale(1.04);
}

.v2-card-ribbon.is-open .v2-deck-card.is-selected {
  z-index: 400;
  border: 3px solid var(--v2-gold);
  cursor: default;
  box-shadow: 0 18px 36px rgba(24, 19, 15, .25);
  transform: translateX(-50%) translateY(-25px) rotate(0deg) scale(1.05);
  will-change: transform;
}

.v2-deck-card.is-selected.can-repeat {
  cursor: pointer;
}

.v2-card-ribbon.is-selection-complete .v2-deck-card {
  cursor: default;
}

.v2-picked-panel {
  border-top: 1px solid var(--v2-line);
  margin-top: 1rem;
  padding-top: 1.25rem;
}

.v2-text-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--v2-ink-soft);
  cursor: pointer;
  padding: .2rem 0;
}

.v2-picked-cards {
  display: flex;
  gap: .8rem;
  list-style: none;
  margin: 1rem 0 0;
  overflow-x: auto;
  padding: 0 0 .75rem;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--v2-gold) rgba(169, 121, 37, .12);
}

.v2-picked-card {
  display: flex;
  min-width: 0;
  flex: 0 0 145px;
  align-items: stretch;
  border: 1px solid var(--v2-line);
  background: var(--v2-cream-light);
  flex-direction: column;
  gap: .55rem;
  padding: .55rem;
  scroll-snap-align: start;
}

.v2-picked-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.v2-picked-card.is-reversed img {
  transform: rotate(180deg);
}

.v2-picked-card span {
  display: grid;
  gap: .18rem;
  padding-inline: .15rem;
}

.v2-picked-card small {
  color: var(--v2-gold);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.v2-picked-card strong {
  line-height: 1.25;
}

.v2-picked-card .v2-text-button {
  align-self: flex-start;
  margin-inline: .15rem;
}

.v2-reading-app--single:not(.v2-reading-app--daily) .v2-deck-workspace.has-selection .v2-draw-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.v2-reading-app--single:not(.v2-reading-app--daily) .v2-deck-workspace.has-selection .v2-picked-panel {
  border-top: 0;
  border-left: 1px solid var(--v2-line);
  margin-top: 0;
  padding: 0 0 0 clamp(1.2rem, 2.5vw, 2rem);
}

.v2-reading-app--single:not(.v2-reading-app--daily) .v2-picked-card {
  flex-basis: 100%;
}

.v2-generate-button {
  display: flex;
  width: max-content;
  margin: 1.25rem 0 0 auto;
}

.v2-generate-button:not(:disabled) {
  position: sticky;
  z-index: 20;
  bottom: 16px;
  box-shadow: 7px 7px 0 rgba(169, 121, 37, .22), 0 8px 30px rgba(24, 19, 15, .16);
}

.v2-generate-button:disabled,
.v2-deck-toolbar button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.v2-reading-app--daily .v2-daily-reveal {
  grid-row: 1;
  grid-column: 2;
  align-content: center;
  justify-items: start;
  min-width: 0;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.75rem);
  animation: v2-daily-reveal-in .42s .08s both cubic-bezier(.2, .75, .25, 1);
}

.v2-daily-reveal h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--v2-serif);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: .98;
}

.v2-daily-reveal-copy {
  max-width: 35ch;
  display: grid;
  gap: .35rem;
  margin: .3rem 0 .45rem;
  color: var(--v2-ink-soft);
  font-size: .98rem;
  line-height: 1.55;
}

.v2-daily-reveal-copy strong {
  color: var(--v2-ink);
  font-family: var(--v2-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.v2-reading-app--daily .v2-daily-reveal .v2-generate-button,
.v2-reading-app--daily .v2-daily-reveal .v2-generate-button:not(:disabled) {
  position: static;
  width: min(100%, 360px);
  min-height: 60px;
  bottom: auto;
  margin: .25rem 0 0;
}

.v2-daily-reveal-reset {
  justify-self: start;
  margin-top: .2rem;
}

.v2-reading-app--daily .v2-cut-controls {
  grid-row: 1;
  grid-column: 2;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-deck-toolbar,
.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-intro {
  display: none;
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-draw-stage {
  display: block;
  margin-top: 0;
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-stage {
  --cut-card-width: clamp(230px, 19vw, 255px);
  min-height: 460px;
  grid-template-columns: minmax(280px, .78fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  overflow: clip;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  scroll-margin-top: 68px;
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-scene {
  height: 400px;
  overflow: clip;
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-controls {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-stage.is-revealed .v2-cut-packet {
  opacity: 0;
  filter: blur(2px);
  pointer-events: none;
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-stage.is-revealed .v2-cut-packet--lower {
  transform: translate(calc(-50% - 28px), calc(-50% - var(--packet-depth))) rotate(-1deg) scale(.94);
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-stage.is-revealed .v2-cut-packet--upper {
  transform: translate(calc(-50% + 28px), calc(-50% - var(--packet-depth))) rotate(1deg) scale(.94);
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-stage.is-revealed .v2-cut-card {
  opacity: 1;
  transform: translate(-50%, -54%) scale(1);
}

.v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-scene::after {
  right: 22%;
  left: 22%;
  height: 26px;
  opacity: .72;
}

@keyframes v2-daily-reveal-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .v2-offer-hero--compact .v2-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .v2-celtic-hero-title h1 {
    max-width: 12ch;
  }
}

@media (max-width: 980px) {
  .v2-offer-hero--daily .v2-page-hero-grid,
  .v2-offer-hero--portrait .v2-page-hero-grid,
  .v2-offer-hero--alliance .v2-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .v2-offer-hero--portrait h1,
  .v2-offer-hero--alliance h1 {
    max-width: none;
  }
}

@media (max-width: 800px) {
  .v2-offer-grid {
    grid-template-columns: 1fr;
  }

  .v2-offer-page--direct {
    padding-block: 26px 42px;
  }

  .v2-offer-page--direct .v2-offer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }

  .v2-offer-page--direct .v2-editorial-card {
    padding-top: .3rem;
  }

  .v2-direct-offer-heading h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.3rem);
  }

  .v2-direct-offer-heading > p:not(.v2-overline) {
    margin-top: .9rem;
    font-size: 1rem;
  }

  .v2-direct-offer-heading > strong {
    margin-top: .9rem;
  }

  .v2-direct-offer-result {
    margin-top: 1.35rem;
  }

  .v2-direct-card-preview {
    width: 300px;
    height: 190px;
  }

  .v2-direct-card-preview img {
    top: 10px;
    left: 100px;
    width: 100px;
    height: 160px;
  }

  .v2-direct-card-preview img:first-child {
    left: 12px;
  }

  .v2-direct-card-preview img:nth-child(2) {
    top: 2px;
  }

  .v2-direct-card-preview img:nth-child(3) {
    left: 188px;
  }

  .v2-offer-page--celtic {
    padding-block: 30px 44px;
  }

  .v2-offer-purchase-column {
    order: -1;
    gap: 1.3rem;
  }

  .v2-direct-offer-heading {
    display: none;
  }

  .v2-direct-mobile-summary {
    display: grid;
    gap: .65rem;
    padding-bottom: .25rem;
  }

  .v2-direct-mobile-summary .v2-direct-price {
    justify-self: start;
    min-height: 34px;
    margin: 0;
    padding: .42rem .68rem;
    border: 1px solid rgba(116, 34, 55, .3);
    background: rgba(116, 34, 55, .04);
    color: var(--v2-burgundy);
    font-size: .86rem;
  }

  .v2-direct-mobile-summary h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(2.35rem, 10vw, 3.3rem);
    font-weight: 400;
    line-height: .98;
    overflow-wrap: anywhere;
  }

  .v2-direct-mobile-summary > p:last-child {
    margin: 0;
    color: #51483f;
    font-family: var(--v2-serif);
    font-size: 1rem;
    line-height: 1.5;
  }

  .v2-direct-pdf-pages {
    height: 300px;
  }

  .v2-direct-pdf-page {
    top: 26px;
    width: 164px;
    height: 232px;
  }

  .v2-direct-pdf-page--1 {
    top: 4px;
    width: 190px;
    height: 269px;
  }

  .v2-editorial-card--open {
    padding: 1rem 0 0;
  }

  .v2-offer-grid--daily .v2-editorial-card--open {
    padding-top: 0;
  }

  .v2-offer-page--daily {
    padding-block: 38px 44px;
  }

  .v2-daily-reading-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .v2-daily-reading-heading h2 {
    font-size: clamp(2.3rem, 7vw, 3.2rem);
  }

  .v2-daily-reading-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .v2-daily-space-note {
    max-width: none;
    padding: 1.2rem 0 0;
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

  .v2-offer-page--portrait {
    padding-block: 38px 44px;
  }

  .v2-offer-grid--portrait .v2-editorial-card--open {
    padding-top: 0;
  }

  .v2-portrait-reading-heading h2 {
    font-size: clamp(2.2rem, 6.5vw, 2.9rem);
  }

  .v2-offer-page--alliance {
    padding-block: 38px 44px;
  }

  .v2-offer-grid--alliance .v2-editorial-card--open {
    padding-top: 0;
  }

  .v2-alliance-reading-heading h2 {
    font-size: clamp(2.2rem, 6.5vw, 2.9rem);
  }

  .v2-picked-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-input-summary {
    display: flex;
    flex-direction: column;
  }

  .v2-picker-method > span {
    min-width: 120px;
  }

  .v2-cut-stage {
    --cut-card-width: clamp(138px, 25vw, 160px);
    --cut-spread: clamp(68px, 17vw, 94px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: .5rem;
    padding: 1rem clamp(.75rem, 3vw, 1.25rem) 1.25rem;
  }

  .v2-cut-scene {
    height: 250px;
  }

  .v2-cut-packet {
    top: 56%;
  }

  .v2-cut-controls {
    border-top: 1px solid var(--v2-line);
    border-left: 0;
    gap: .85rem;
    padding: 1rem .25rem .1rem;
  }

  .v2-cut-control-heading label {
    font-size: 1.2rem;
  }

  .v2-card-ribbon {
    height: 290px;
  }

  .v2-deck-card {
    top: calc(36px + var(--fan-depth));
    left: var(--fan-mobile-left);
    width: clamp(104px, 27vw, 130px);
    transform: translateX(-50%) translateY(34px) rotate(0deg) scale(.96);
  }

  .v2-card-ribbon.is-open .v2-deck-card {
    opacity: 1;
    transform: translateX(-50%) rotate(var(--fan-mobile-rotation));
  }

  .v2-deck-preview {
    top: calc(36px + var(--preview-depth, 0px));
    left: var(--preview-mobile-left, 50%);
    width: clamp(104px, 27vw, 130px);
  }

  .v2-deck-preview.is-visible {
    transform: translateX(-50%) translateY(-20px) scale(1.035);
  }

  .v2-card-ribbon.is-open .v2-deck-card.is-selected {
    transform: translateX(-50%) translateY(-16px) rotate(0deg) scale(1.04);
  }

  .v2-reading-app--single:not(.v2-reading-app--daily) .v2-deck-workspace.has-selection .v2-draw-stage {
    display: block;
  }

  .v2-reading-app--single:not(.v2-reading-app--daily) .v2-deck-workspace.has-selection .v2-picked-panel {
    border-top: 1px solid var(--v2-line);
    border-left: 0;
    margin-top: .75rem;
    padding: 1.1rem 0 5.75rem;
  }

  .v2-reading-app--single:not(.v2-reading-app--daily) .v2-picked-cards {
    justify-content: center;
  }

  .v2-reading-app--single:not(.v2-reading-app--daily) .v2-picked-card {
    flex-basis: min(220px, 80vw);
  }

  .v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-stage {
    --cut-card-width: clamp(176px, 47vw, 184px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: .25rem;
    padding: .85rem clamp(.8rem, 4vw, 1.25rem) 1rem;
  }

  .v2-reading-app--daily .v2-deck-workspace.has-selection .v2-cut-scene {
    grid-row: 1;
    grid-column: 1;
    height: 285px;
  }

  .v2-reading-app--daily .v2-cut-controls,
  .v2-reading-app--daily .v2-daily-reveal {
    grid-row: 2;
    grid-column: 1;
  }

  .v2-reading-app--daily .v2-daily-reveal {
    width: 100%;
    justify-items: center;
    gap: .55rem;
    padding: .15rem 0 0;
    text-align: center;
  }

  .v2-daily-reveal h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9vw, 2.65rem);
  }

  .v2-daily-reveal-copy {
    max-width: 30ch;
    margin-block: 0 .2rem;
    font-size: .92rem;
    line-height: 1.42;
  }

  .v2-daily-reveal-copy strong {
    font-size: 1.08rem;
  }

  .v2-reading-app--daily .v2-daily-reveal .v2-generate-button,
  .v2-reading-app--daily .v2-daily-reveal .v2-generate-button:not(:disabled) {
    width: min(100%, 360px);
  }

  .v2-daily-reveal-reset {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .v2-offer-gateway {
    grid-template-areas:
      "copy"
      "cards"
      "action"
      "note";
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }

  .v2-offer-gateway-copy {
    align-items: center;
    text-align: center;
  }

  .v2-offer-gateway .v2-offer-card-fan {
    justify-self: center;
    width: 300px;
    height: 220px;
  }

  .v2-offer-gateway .v2-offer-card--0,
  .v2-offer-gateway .v2-offer-card--2 {
    top: 28px;
    width: 110px;
  }

  .v2-offer-gateway .v2-offer-card--1 {
    left: 85px;
    width: 130px;
  }

  .v2-offer-gateway-note {
    text-align: center;
  }

  .v2-daily-benefits {
    grid-template-columns: 1fr;
  }

  .v2-daily-benefits li {
    padding: 1.25rem 0;
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

  .v2-daily-benefits li:first-child {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .v2-offer-hero {
    padding-block: 34px 30px;
  }

  .v2-selection-hero h1 {
    font-size: 2.35rem;
  }

  .v2-offer-hero--compact {
    padding-block: 27px 29px;
  }

  .v2-offer-hero--compact .v2-page-hero-grid {
    gap: 18px;
  }

  .v2-offer-hero--compact h1 {
    font-size: 2.75rem;
    letter-spacing: 0;
    line-height: .98;
  }

  .v2-offer-hero--celtic {
    padding-block: 24px 27px;
  }

  .v2-offer-hero--celtic .v2-page-hero-grid {
    gap: 16px;
  }

  .v2-celtic-hero-title h1 {
    max-width: 10ch;
    font-size: 2.7rem;
  }

  .v2-offer-hero--celtic .v2-page-intro--with-cards {
    grid-template-columns: minmax(0, 1fr) 138px;
    gap: .8rem .9rem;
  }

  .v2-offer-hero--celtic .v2-offer-card-fan {
    width: 138px;
    height: 124px;
  }

  .v2-offer-hero--celtic .v2-offer-card {
    width: 65px;
  }

  .v2-offer-hero--celtic .v2-offer-card:nth-child(1),
  .v2-offer-hero--celtic .v2-offer-card:nth-child(3) {
    top: 20px;
  }

  .v2-offer-hero--celtic .v2-offer-card:nth-child(2) {
    left: 36px;
  }

  .v2-offer-hero--celtic .v2-offer-card:nth-child(3) {
    left: 72px;
  }

  .v2-offer-hero--daily {
    padding-block: 24px 30px;
  }

  .v2-offer-hero--portrait,
  .v2-offer-hero--alliance {
    padding-block: 24px 30px;
  }

  .v2-offer-hero--alliance {
    padding-bottom: 8px;
  }

  .v2-offer-hero--daily h1,
  .v2-offer-hero--portrait h1,
  .v2-offer-hero--alliance h1 {
    max-width: none;
  }

  .v2-offer-hero--compact .v2-page-intro > p:first-child {
    font-size: 1rem;
    line-height: 1.55;
  }

  .v2-page-intro--with-cards {
    grid-template-areas:
      "copy cards"
      "action action";
    grid-template-columns: minmax(0, 1fr) 144px;
    gap: .85rem 1rem;
  }

  .v2-offer-card-fan {
    width: 144px;
    height: 128px;
  }

  .v2-offer-card {
    width: 68px;
    border-width: 2px;
  }

  .v2-offer-card--0 {
    top: 22px;
  }

  .v2-offer-card--1 {
    left: 38px;
  }

  .v2-offer-card--2 {
    top: 22px;
    left: 76px;
  }

  .v2-offer-gateway {
    grid-template-areas:
      "copy"
      "cards"
      "action"
      "note";
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    min-height: 0;
    padding: 21px;
  }

  .v2-offer-gateway > *,
  .v2-offer-grid--portrait > *,
  .v2-offer-grid--alliance > *,
  .v2-form-card--portrait .v2-reading-input-form,
  .v2-form-card--portrait .v2-field,
  .v2-form-card--portrait input,
  .v2-form-card--alliance .v2-reading-input-form,
  .v2-form-card--alliance .v2-field,
  .v2-form-card--alliance input {
    min-width: 0;
    max-width: 100%;
  }

  .v2-offer-gateway-copy > strong,
  .v2-offer-gateway-copy > h1,
  .v2-offer-gateway-copy > span:last-child {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .v2-offer-gateway-copy {
    width: 100%;
    gap: .58rem;
    text-align: center;
  }

  .v2-offer-gateway-copy > strong,
  .v2-offer-gateway-copy > h1 {
    font-size: 1.52rem;
  }

  .v2-offer-gateway-copy > span:last-child {
    width: min(100%, 31ch);
    margin-inline: auto;
    font-size: .94rem;
    line-height: 1.48;
  }

  .v2-offer-gateway .v2-offer-card-fan {
    justify-self: center;
    width: min(260px, calc(100% - 16px));
    height: min(190px, 54vw);
  }

  .v2-offer-gateway .v2-offer-card--0,
  .v2-offer-gateway .v2-offer-card--2 {
    top: 12%;
    width: 35.7%;
  }

  .v2-offer-gateway .v2-offer-card--1 {
    left: 29%;
    width: 42.1%;
  }

  .v2-offer-gateway-action {
    width: calc(100% - 6px);
    min-width: 0;
    max-width: 100%;
    min-height: 62px;
    justify-self: center;
    gap: .5rem;
    padding-inline: 14px;
    font-size: .8rem;
  }

  .v2-offer-gateway-note {
    font-size: .8rem;
    overflow-wrap: anywhere;
  }

  .v2-offer-page--daily {
    padding-block: 34px 40px;
  }

  .v2-daily-reading-heading h2 {
    font-size: 2.25rem;
  }

  .v2-daily-reading-heading > p {
    font-size: 1rem;
  }

  .v2-daily-benefits {
    margin-top: 1.6rem;
  }

  .v2-daily-benefits li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: .8rem;
  }

  .v2-daily-benefits li > span {
    font-size: 2rem;
  }

  .v2-daily-benefits strong {
    font-size: 1.2rem;
  }

  .v2-daily-reading-action {
    width: 100%;
    min-width: 0;
  }

  .v2-offer-page--portrait {
    padding-block: 34px 40px;
  }

  .v2-form-card--portrait {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.15rem;
  }

  .v2-offer-grid--portrait {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    grid-template-columns: minmax(0, 1fr);
  }

  .v2-form-card--portrait h2 {
    font-size: 2rem;
  }

  .v2-portrait-benefits {
    grid-template-columns: 1fr;
  }

  .v2-portrait-benefits li,
  .v2-portrait-benefits li:nth-child(-n + 2),
  .v2-portrait-benefits li:nth-child(odd) {
    padding: 1.15rem 0;
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

  .v2-portrait-benefits li:first-child {
    border-top: 0;
  }

  .v2-offer-page--alliance {
    padding-block: 34px 40px;
  }

  .v2-form-card--alliance {
    padding-inline: 1.15rem;
  }

  .v2-form-card--alliance h2 {
    font-size: 2rem;
  }

  .v2-reading-input-form--alliance {
    grid-template-areas:
      "primary-label"
      "primary-name"
      "primary-date"
      "secondary-label"
      "secondary-name"
      "secondary-date"
      "relationship"
      "action"
      "assurances";
    grid-template-columns: 1fr;
  }

  .v2-alliance-benefits {
    grid-template-columns: 1fr;
  }

  .v2-alliance-benefits li,
  .v2-alliance-benefits li:nth-child(-n + 2),
  .v2-alliance-benefits li:nth-child(odd) {
    padding: 1.15rem 0;
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

  .v2-alliance-benefits li:first-child {
    border-top: 0;
  }

  .v2-alliance-reading-action {
    width: 100%;
  }

  .v2-offer-hero-action {
    width: 100%;
    justify-content: center;
    margin-top: .9rem;
  }

  .v2-form-card--celtic,
  .v2-form-card--intuitive {
    padding-inline: 1.15rem;
  }

  .v2-form-card--celtic h2,
  .v2-form-card--intuitive h2 {
    max-width: 14ch;
    font-size: 2rem;
  }

  .v2-form-card--celtic textarea,
  .v2-form-card--intuitive textarea {
    min-height: 150px;
  }

  .v2-offer-journey {
    margin-bottom: 1.35rem;
  }

  .v2-offer-journey li {
    padding-inline: .5rem;
  }

  .v2-offer-journey strong {
    font-size: .68rem;
  }

  .v2-offer-assurances {
    gap: .2rem .45rem;
  }

  .v2-offer-assurances li + li::before {
    margin-right: .45rem;
  }

  .v2-selection-hero {
    padding-block: 18px 16px;
  }

  .v2-selection-hero .v2-page-intro {
    font-size: .92rem;
  }

  .v2-deck-workspace {
    padding: 1.15rem;
  }

  .v2-deck-toolbar .v2-button {
    min-height: 42px;
    padding-inline: 13px;
    font-size: .64rem;
  }

  .v2-picker-methods {
    align-items: stretch;
    flex-direction: column;
    gap: .45rem;
    padding-block: .5rem;
  }

  .v2-picker-methods-label {
    text-align: center;
  }

  .v2-picker-method-options {
    width: 100%;
  }

  .v2-picker-method > span {
    min-width: 0;
    min-height: 40px;
    padding: .4rem .35rem;
  }

  .v2-picker-method small {
    display: none;
  }

  .v2-cut-intro {
    align-items: flex-start;
    gap: .65rem;
  }

  .v2-cut-stage {
    --cut-card-width: clamp(124px, 36vw, 145px);
    --cut-spread: clamp(62px, 18vw, 76px);
    gap: .75rem;
    padding: .85rem .65rem;
  }

  .v2-cut-scene {
    height: 220px;
  }

  .v2-cut-controls {
    padding-inline: .2rem;
  }

  .v2-cut-stage.has-cut-intent:not(.is-cutting):not(.is-revealed) .v2-cut-confirm {
    position: fixed;
    z-index: 120;
    right: 17px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 17px;
    width: auto;
    min-height: 54px;
    box-shadow: 0 12px 30px rgba(24, 19, 15, .28), 7px 7px 0 rgba(212, 180, 131, .42);
  }

  .v2-hand-hint {
    align-items: flex-start;
    font-size: .74rem;
    line-height: 1.45;
  }

  .v2-hand-intro {
    align-items: flex-start;
    gap: .65rem;
  }

  .v2-hand-count {
    padding-top: .12rem;
    text-align: right;
  }

  .v2-card-ribbon {
    height: 290px;
    margin-inline: 0;
  }

  .v2-generate-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .v2-selection-hero,
  .v2-result-hero {
    overflow-x: clip;
  }

  .v2-selection-hero h1,
  .v2-result-hero h1,
  .v2-state-card h2,
  .v2-state-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .v2-state-card {
    width: 100%;
    min-width: 0;
    padding-inline: 20px;
  }

  .v2-state-card .v2-button,
  .v2-result-state-actions .v2-button,
  .v2-result-state-actions .v2-text-link {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .v2-result-state-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-form-card,
  .v2-offer-purchase-column,
  .v2-reading-input-form,
  .v2-field,
  .v2-field input,
  .v2-field textarea,
  .v2-field select {
    min-width: 0;
    max-width: 100%;
  }

  .v2-direct-card-preview--below-form {
    width: min(100%, 320px);
  }

  .v2-direct-pdf-pages {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 560px) and (max-height: 720px) {
  .v2-offer-hero--portrait,
  .v2-offer-hero--alliance {
    padding-bottom: 14px;
  }

  .v2-offer-hero--portrait .v2-page-hero-grid,
  .v2-offer-hero--alliance .v2-page-hero-grid {
    gap: 14px;
  }

  .v2-offer-gateway--portrait,
  .v2-offer-gateway--alliance {
    gap: 14px;
  }

  .v2-offer-gateway--portrait .v2-offer-gateway-copy > span:last-child,
  .v2-offer-gateway--portrait .v2-offer-gateway-note,
  .v2-offer-gateway--alliance .v2-offer-gateway-copy > span:last-child,
  .v2-offer-gateway--alliance .v2-offer-gateway-note {
    display: none;
  }

  .v2-offer-gateway--portrait .v2-offer-card-fan,
  .v2-offer-gateway--alliance .v2-offer-card-fan {
    height: 180px;
  }

  .v2-offer-hero--alliance {
    padding-bottom: 0;
  }

  .v2-offer-gateway--alliance {
    gap: 12px;
  }

  .v2-offer-gateway--alliance .v2-offer-card-fan {
    height: 170px;
  }
}

.v2-prelaunch-checkout {
  max-width: 820px;
  margin: 0 auto;
  scroll-margin-top: 88px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(137, 93, 24, .32);
  border-top: 4px solid var(--v2-burgundy);
  background: #fdfbf7;
  box-shadow: var(--v2-shadow);
}

.v2-prelaunch-checkout h2 {
  max-width: 620px;
  margin: 10px 0 14px;
  font-family: var(--v2-serif);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: .98;
}

.v2-prelaunch-lead {
  max-width: 620px;
  margin: 0;
  color: var(--v2-ink-soft);
  font-family: var(--v2-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.v2-prelaunch-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  margin: 30px 0;
  padding: 20px 0;
  border-block: 1px solid var(--v2-line);
}

.v2-prelaunch-promo {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(212, 180, 131, 0.72);
  background: #fdfbf7;
}

.v2-prelaunch-promo label {
  display: block;
  margin-top: 5px;
  font-family: var(--v2-serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.v2-prelaunch-promo p:not(.v2-overline):not(.v2-prelaunch-status) {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--v2-ink-soft);
}

.v2-prelaunch-promo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.v2-prelaunch-promo-row input {
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(34, 34, 34, 0.35);
  border-radius: 0;
  background: #fff;
  color: var(--v2-ink);
  font: inherit;
  text-transform: uppercase;
}

.v2-prelaunch-promo-row input:focus-visible {
  outline: 2px solid var(--v2-burgundy);
  outline-offset: 2px;
}

@media (max-width: 680px) {
  .v2-prelaunch-promo {
    padding: 20px;
  }

  .v2-prelaunch-promo-row {
    grid-template-columns: 1fr;
  }

  .v2-prelaunch-promo-row .v2-button {
    width: 100%;
  }
}

.v2-prelaunch-summary span {
  display: grid;
  gap: 3px;
}

.v2-prelaunch-summary span:last-child {
  text-align: right;
}

.v2-prelaunch-summary small,
.v2-prelaunch-form > label:first-child {
  color: var(--v2-gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.v2-prelaunch-summary strong {
  font-family: var(--v2-serif);
  font-size: 1.35rem;
}

.v2-prelaunch-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 8px;
}

.v2-prelaunch-email-row input {
  min-width: 0;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid var(--v2-line);
  border-right: 0;
  border-radius: 0;
  background: #fff;
  color: var(--v2-ink);
}

.v2-prelaunch-email-row .v2-button {
  min-height: 58px;
  white-space: nowrap;
}

.v2-prelaunch-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  color: var(--v2-ink-soft);
  font-size: .84rem;
  line-height: 1.45;
  text-align: left;
}

.v2-prelaunch-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--v2-burgundy);
}

.v2-prelaunch-status {
  min-height: 1.5em;
  margin: 8px 0 0;
  color: var(--v2-burgundy);
  font-size: .85rem;
  font-weight: 700;
}

.v2-prelaunch-success {
  margin-top: 28px;
  padding: 22px;
  border-left: 3px solid var(--v2-gold);
  background: var(--v2-cream);
}

.v2-prelaunch-success strong {
  font-family: var(--v2-serif);
  font-size: 1.35rem;
}

.v2-prelaunch-success p {
  margin: 4px 0 0;
}

.v2-prelaunch-back {
  margin-top: 22px;
}

.v2-prelaunch-privacy {
  margin: 18px 0 0;
  color: rgba(50, 40, 32, .78);
  font-size: .78rem;
}

@media (max-width: 620px) {
  .v2-prelaunch-checkout {
    padding: 26px 20px;
  }

  .v2-prelaunch-summary {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-prelaunch-summary span:last-child {
    text-align: left;
  }

  .v2-prelaunch-email-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .v2-prelaunch-email-row input {
    border-right: 1px solid var(--v2-line);
  }

  .v2-prelaunch-email-row .v2-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-loader {
    animation-duration: 1.8s;
  }

  .v2-deck-card {
    transition: none;
  }

  .v2-reading-app--daily .v2-daily-reveal {
    animation: none;
  }

  .v2-reading-app--daily .v2-cut-controls,
  .v2-reading-app--daily .v2-cut-packet,
  .v2-reading-app--daily .v2-cut-card {
    transition: none;
  }

  .v2-offer-card {
    transition: none;
  }

  .v2-offer-gateway,
  .v2-offer-gateway-action > span {
    transition: none;
  }

  .v2-offer-gateway:hover {
    transform: none;
  }

  .v2-offer-gateway:hover .v2-offer-card--0 {
    transform: rotate(-10deg);
  }

  .v2-offer-gateway:hover .v2-offer-card--1 {
    transform: none;
  }

  .v2-offer-gateway:hover .v2-offer-card--2 {
    transform: rotate(10deg);
  }

  .v2-offer-gateway:hover .v2-offer-gateway-action > span {
    transform: none;
  }

  .v2-deck-card-inner {
    transition: none;
  }

  .v2-deck-preview {
    transition: none;
  }

  .v2-picker-method > span,
  .v2-cut-packet,
  .v2-cut-card {
    transition: none;
  }

  .v2-cut-stage.is-shuffling .v2-cut-packet--lower,
  .v2-cut-stage.is-shuffling .v2-cut-packet--upper {
    animation: none;
  }
}
