.shop-page {
  background: #09070c;
}

.shop-header {
  background: rgba(8, 7, 12, 0.86);
}

.shop-loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  background: #050407;
  overflow: hidden;
  transition: opacity 0.7s var(--ease), visibility 0s 0.7s;
}

.shop-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.shop-loader-core {
  position: relative;
  z-index: 2;
  width: min(320px, 75vw);
  text-align: center;
}

.shop-loader-core canvas {
  width: 180px;
  height: 180px;
  filter: drop-shadow(0 0 35px rgba(240, 0, 212, 0.45));
}

.shop-loader-core > span {
  display: block;
  margin-top: -15px;
  color: #aaa3ae;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.shop-loader-line {
  height: 2px;
  margin-top: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.shop-loader-line i {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--gold));
  animation: shopLoad 1.2s ease-in-out infinite;
}

@keyframes shopLoad {
  from { transform: translateX(-110%); }
  to { transform: translateX(330%); }
}

.shop-hero {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 380px;
  align-items: center;
  gap: 80px;
  padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 95px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 73% 38%, rgba(183, 0, 255, 0.16), transparent 25%),
    linear-gradient(135deg, #08070c, #100816 58%, #08070c);
}

.shop-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.shop-hero-beam {
  position: absolute;
  z-index: -2;
  width: 800px;
  height: 180px;
  right: -190px;
  top: 39%;
  background: linear-gradient(90deg, transparent, rgba(240, 0, 212, 0.2), transparent);
  filter: blur(18px);
  transform: rotate(-24deg);
}

.shop-watermark {
  position: absolute;
  z-index: -1;
  right: 10%;
  width: min(600px, 48vw);
  height: min(600px, 48vw);
  opacity: 0.085;
  filter: blur(0.5px);
  animation: shopMark 8s ease-in-out infinite alternate;
}

@keyframes shopMark {
  to { transform: translateY(-22px) rotate(2deg); }
}

.shop-hero-copy {
  position: relative;
  z-index: 2;
}

.shop-hero h1 {
  font: clamp(4.2rem, 8vw, 8.4rem)/0.82 var(--font-display);
  letter-spacing: -0.085em;
}

.shop-hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--pink);
}

.shop-hero-copy > p {
  max-width: 620px;
  margin-top: 34px;
  color: #b6afba;
  font-size: 1.02rem;
  line-height: 1.75;
}

.shop-trust-row {
  display: flex;
  gap: 28px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.shop-trust-row span {
  color: #aaa3ae;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-trust-row i {
  margin-right: 9px;
  color: var(--pink);
  font: 0.58rem var(--font-mono);
  font-style: normal;
}

.secure-panel {
  position: relative;
  z-index: 2;
  padding: 28px;
  transform: rotate(1.5deg);
}

.secure-panel-top {
  display: flex;
  justify-content: space-between;
  color: #89828d;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
}

.secure-lock {
  color: #57f287;
  font-family: var(--font-mono);
}

.secure-shield {
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  margin: 48px auto 35px;
  border: 1px solid rgba(240, 0, 212, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 0, 212, 0.12), transparent 68%);
  box-shadow: 0 0 60px rgba(183, 0, 255, 0.13);
}

.secure-shield svg {
  width: 52px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.4;
}

.secure-panel strong {
  display: block;
  text-align: center;
  font-size: 1.15rem;
}

.secure-panel p {
  margin-top: 13px;
  color: #918a95;
  font-size: 0.79rem;
  line-height: 1.65;
  text-align: center;
}

.secure-signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: #7f7883;
  font: 0.5rem var(--font-mono);
  letter-spacing: 0.1em;
}

.secure-signal i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #57f287;
  box-shadow: 0 0 12px #57f287;
}

.shop-products {
  background:
    radial-gradient(circle at 20% 30%, rgba(183, 0, 255, 0.08), transparent 26%),
    #0b090e;
}

.shop-section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 65px;
}

.shop-section-heading h2,
.order-form-panel h2 {
  font: clamp(3.4rem, 7vw, 7rem)/0.86 var(--font-display);
  letter-spacing: -0.08em;
}

.shop-section-heading p {
  color: var(--muted);
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.shop-product {
  position: relative;
  min-height: 510px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 50%),
    #100d13;
  transition: transform 0.55s var(--ease), border-color 0.4s;
}

.shop-product:hover,
.shop-product.selected {
  transform: translateY(-7px);
  border-color: rgba(240, 0, 212, 0.6);
}

.shop-product[data-accent="gold"]:hover,
.shop-product[data-accent="gold"].selected {
  border-color: rgba(255, 195, 41, 0.65);
}

.product-code {
  color: #69626d;
  font: 0.56rem var(--font-mono);
  letter-spacing: 0.14em;
}

.product-orbit {
  position: absolute;
  top: -125px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(240, 0, 212, 0.16);
  border-radius: 50%;
}

.shop-product[data-accent="gold"] .product-orbit {
  border-color: rgba(255, 195, 41, 0.16);
}

.product-orbit::before,
.product-orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: inherit;
  border-radius: inherit;
}

.product-orbit::after {
  inset: 36%;
  background: rgba(240, 0, 212, 0.06);
}

.shop-product[data-accent="gold"] .product-orbit::after {
  background: rgba(255, 195, 41, 0.05);
}

.product-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.product-eyebrow {
  color: var(--pink);
  font: 0.58rem var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-product[data-accent="gold"] .product-eyebrow {
  color: var(--gold);
}

.shop-product h3 {
  margin-top: 15px;
  font: clamp(3.1rem, 5.7vw, 5.8rem)/0.85 var(--font-display);
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.shop-product p {
  max-width: 520px;
  margin-top: 22px;
  color: #9e97a2;
  line-height: 1.7;
  font-size: 0.86rem;
}

.product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-price span {
  display: block;
  margin-bottom: 8px;
  color: #706a74;
  font: 0.52rem var(--font-mono);
  letter-spacing: 0.11em;
}

.product-price strong {
  font-size: 1.1rem;
}

.select-product {
  min-width: 165px;
  min-height: 46px;
}

.order-section {
  background: #efecf1;
  color: #0b090e;
}

.order-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.order-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.order-progress div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8c8690;
}

.order-progress div.active {
  color: #0b090e;
}

.order-progress div span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #c9c4cc;
  border-radius: 50%;
  font: 0.52rem var(--font-mono);
}

.order-progress div.active span {
  border-color: #b500ce;
  color: #a100b8;
  box-shadow: 0 0 0 5px rgba(181, 0, 206, 0.08);
}

.order-progress strong {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.order-progress > i {
  width: 80px;
  height: 1px;
  margin: 0 18px;
  background: #ccc7cf;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  background: white;
  border: 1px solid #d8d3da;
  box-shadow: 0 35px 90px rgba(34, 15, 39, 0.12);
}

.order-form-panel {
  padding: 58px;
}

.order-form-panel .section-index {
  color: #a400bd;
}

.order-form-panel h2 em {
  -webkit-text-stroke-color: #b500ce;
}

.order-intro {
  max-width: 650px;
  margin-top: 25px;
  color: #6f6874;
  line-height: 1.75;
}

#checkoutForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 42px;
}

.field {
  display: grid;
  gap: 9px;
}

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

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field label {
  color: #343037;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #d5d0d8;
  border-radius: 0;
  outline: 0;
  background: #f8f6f9;
  color: #17131a;
  font: 0.86rem var(--font-body);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.field textarea {
  min-height: 125px;
  padding-block: 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #b500ce;
  background: white;
  box-shadow: 0 0 0 4px rgba(181, 0, 206, 0.08);
}

.field small {
  color: #8a838e;
  font-size: 0.66rem;
}

.policy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #69636d;
  font-size: 0.72rem;
  line-height: 1.55;
}

.policy-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #b500ce;
}

.policy-check a {
  color: #8d00a5;
  font-weight: 800;
  text-decoration: underline;
}

.checkout-button {
  width: 100%;
  border: 0;
}

.checkout-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.checkout-message {
  min-height: 20px;
  color: #9b1634;
  font-size: 0.76rem;
  font-weight: 700;
}

.order-summary {
  position: relative;
  padding: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(240, 0, 212, 0.17), transparent 30%),
    #0c0910;
  color: white;
}

.summary-kicker {
  color: #766f7a;
  font-size: 0.54rem;
  letter-spacing: 0.14em;
}

.summary-art {
  position: relative;
  height: 250px;
  display: grid;
  place-items: center;
  margin: 25px 0 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.summary-art canvas {
  width: 210px;
  height: 210px;
  filter: drop-shadow(0 0 30px rgba(240, 0, 212, 0.28));
}

.summary-art > span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #69626d;
  font: 0.5rem var(--font-mono);
}

.summary-eyebrow {
  color: var(--pink);
  font: 0.55rem var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-summary h3 {
  margin-top: 10px;
  font: clamp(2.4rem, 4vw, 4rem)/0.9 var(--font-display);
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.order-summary > p {
  margin-top: 18px;
  color: #97909c;
  font-size: 0.77rem;
  line-height: 1.65;
}

.summary-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}

.summary-price span {
  color: #7e7782;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.summary-price strong {
  color: white;
  font-size: 1rem;
}

.order-summary ul {
  display: grid;
  gap: 12px;
  margin-top: 25px;
  list-style: none;
}

.order-summary li {
  color: #b6afba;
  font-size: 0.75rem;
}

.order-summary li::before {
  content: "/";
  margin-right: 10px;
  color: var(--pink);
  font-weight: 900;
}

.summary-secure {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #837c87;
  font: 0.52rem var(--font-mono);
  letter-spacing: 0.08em;
}

.shop-faq {
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 0, 255, 0.08), transparent 25%),
    #09070c;
}

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

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

.faq-list summary {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-list summary span {
  color: var(--pink);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

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

.faq-list details p {
  max-width: 720px;
  padding: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.purchase-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.55fr);
  align-items: center;
  gap: 90px;
  padding: 145px max(28px, calc((100vw - var(--max)) / 2)) 90px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 38%, rgba(183, 0, 255, 0.18), transparent 27%),
    linear-gradient(135deg, #08070c, #120819 60%, #08070c);
}

.purchase-gold .purchase-hero {
  background:
    radial-gradient(circle at 75% 38%, rgba(255, 195, 41, 0.13), transparent 27%),
    linear-gradient(135deg, #08070c, #15100a 60%, #08070c);
}

.purchase-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, black, transparent);
}

.purchase-glow {
  position: absolute;
  z-index: -2;
  top: 22%;
  right: -180px;
  width: 650px;
  height: 300px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(150px);
  opacity: 0.18;
}

.purchase-gold .purchase-glow {
  background: var(--gold);
  opacity: 0.12;
}

.purchase-copy {
  position: relative;
  z-index: 2;
}

.product-breadcrumb {
  display: inline-block;
  margin-bottom: 35px;
  color: #78717c;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.purchase-copy h1 {
  margin-top: 16px;
  font: clamp(4.4rem, 8vw, 8.4rem)/0.8 var(--font-display);
  letter-spacing: -0.085em;
}

.purchase-copy h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--pink);
}

.purchase-gold .purchase-copy h1 em {
  -webkit-text-stroke-color: var(--gold);
}

.purchase-copy > p {
  max-width: 620px;
  margin-top: 30px;
  color: #aca5b0;
  line-height: 1.75;
}

.purchase-copy > .button {
  margin-top: 34px;
}

.purchase-card {
  position: relative;
  z-index: 2;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  transform: rotate(1.5deg);
}

.purchase-card > span {
  color: #77707b;
  font-size: 0.53rem;
  letter-spacing: 0.12em;
}

.purchase-card canvas {
  display: block;
  width: min(260px, 100%);
  height: 260px;
  margin: 10px auto;
  filter: drop-shadow(0 0 30px rgba(240, 0, 212, 0.26));
}

.purchase-gold .purchase-card canvas {
  filter: drop-shadow(0 0 30px rgba(255, 195, 41, 0.2));
}

.purchase-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-block: 1px solid var(--line);
}

.purchase-price span {
  color: #77707b;
  font: 0.51rem var(--font-mono);
  letter-spacing: 0.1em;
}

.purchase-price strong {
  font-size: 0.95rem;
  text-align: right;
}

.purchase-card ul {
  display: grid;
  gap: 11px;
  margin-top: 22px;
  list-style: none;
}

.purchase-card li {
  color: #aaa3ae;
  font-size: 0.72rem;
}

.purchase-card li::before {
  content: "/";
  margin-right: 9px;
  color: var(--pink);
  font-weight: 900;
}

.purchase-gold .purchase-card li::before,
.purchase-gold .summary-eyebrow,
.purchase-gold .order-summary li::before {
  color: var(--gold);
}

.purchase-gold .order-form-panel .section-index {
  color: #9b7200;
}

.purchase-gold .order-form-panel h2 em {
  -webkit-text-stroke-color: #b27d00;
}

.purchase-gold .field input:focus,
.purchase-gold .field select:focus,
.purchase-gold .field textarea:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

.purchase-gold .policy-check input {
  accent-color: #b8860b;
}

.purchase-gold .policy-check a {
  color: #8b6508;
}

@media (max-width: 980px) {
  .shop-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 60px;
  }

  .secure-panel {
    width: min(430px, 100%);
  }

  .shop-section-heading,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .shop-section-heading {
    gap: 30px;
  }

  .order-summary {
    min-height: 600px;
  }

  .purchase-hero {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .purchase-card {
    width: min(450px, 100%);
  }
}

@media (max-width: 720px) {
  .shop-hero {
    padding: 125px 20px 75px;
  }

  .shop-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .shop-trust-row {
    flex-direction: column;
    gap: 14px;
  }

  .shop-watermark {
    width: 95vw;
    height: 95vw;
    right: -35%;
  }

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

  .shop-product {
    min-height: 470px;
    padding: 28px;
  }

  .shop-product h3 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .product-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .order-progress strong {
    display: none;
  }

  .order-progress > i {
    width: 36px;
    margin-inline: 9px;
  }

  .order-form-panel {
    padding: 38px 22px;
  }

  #checkoutForm,
  .field-group {
    grid-template-columns: 1fr;
  }

  .field {
    grid-column: 1 / -1;
  }

  .order-summary {
    min-height: auto;
    padding: 28px 22px;
  }

  .purchase-hero {
    min-height: auto;
    padding: 125px 20px 75px;
  }

  .purchase-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .purchase-card canvas {
    height: 220px;
  }
}

.status-main {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 130px 24px 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(183, 0, 255, 0.16), transparent 42%),
    #08070c;
}

.status-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.status-watermark {
  position: absolute;
  width: min(650px, 85vw);
  height: min(650px, 85vw);
  opacity: 0.045;
}

.status-card {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
}

.status-card h1 {
  font: clamp(3.7rem, 8vw, 7rem)/0.84 var(--font-display);
  letter-spacing: -0.08em;
}

.status-card h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--pink);
}

.status-card > p {
  max-width: 550px;
  margin: 28px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.status-loader {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 28px;
}

.status-loader i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: statusBounce 0.8s ease-in-out infinite alternate;
}

.status-loader i:nth-child(2) { animation-delay: 0.15s; }
.status-loader i:nth-child(3) { animation-delay: 0.3s; }

@keyframes statusBounce {
  to { opacity: 0.25; transform: translateY(-8px); }
}

.status-receipt {
  margin-top: 35px;
  border: 1px solid var(--line);
}

.status-receipt div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.status-receipt div:last-child {
  border: 0;
}

.status-receipt span {
  color: #817a85;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.status-receipt strong {
  font-size: 0.78rem;
  text-align: right;
}

.status-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
}

.policy-main {
  min-height: 100vh;
  padding: 170px max(28px, calc((100vw - var(--max)) / 2)) 120px;
  background:
    radial-gradient(circle at 80% 5%, rgba(183, 0, 255, 0.12), transparent 24%),
    #09070c;
}

.policy-hero {
  max-width: 900px;
  padding-bottom: 70px;
}

.policy-hero h1 {
  font: clamp(4rem, 9vw, 8.5rem)/0.83 var(--font-display);
  letter-spacing: -0.085em;
}

.policy-hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--pink);
}

.policy-hero p {
  max-width: 680px;
  margin-top: 30px;
  color: var(--muted);
  line-height: 1.8;
}

.policy-warning {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 195, 41, 0.32);
  color: var(--gold);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 90px;
  padding-top: 65px;
  border-top: 1px solid var(--line);
}

.policy-nav {
  position: sticky;
  top: 110px;
  height: max-content;
  display: grid;
}

.policy-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #918a95;
  font: 0.58rem var(--font-mono);
  letter-spacing: 0.09em;
}

.policy-content {
  display: grid;
  gap: 75px;
}

.policy-content section > span {
  color: var(--pink);
  font-size: 0.6rem;
}

.policy-content h2 {
  margin: 10px 0 25px;
  font: clamp(2.3rem, 4vw, 4rem) var(--font-display);
  letter-spacing: -0.06em;
}

.policy-content p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.85;
}

@media (max-width: 760px) {
  .status-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .policy-main {
    padding: 130px 20px 90px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .policy-nav {
    position: static;
  }
}
