.nfc-support-page {
  min-height: 100vh;
  background: var(--bg);
}

.nfc-support-page [hidden] {
  display: none !important;
}

.nfc-support-header {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nfc-support-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 850;
}

.nfc-support-nav a {
  color: var(--ink-soft);
}

.nfc-support-nav a:hover {
  color: var(--pink-deep);
}

.nfc-hero {
  width: min(1080px, calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
  align-items: start;
  gap: clamp(22px, 5vw, 58px);
  padding: clamp(18px, 4vw, 46px) 0 24px;
  isolation: isolate;
  background: transparent;
}

.nfc-hero::after {
  display: none;
}

.nfc-support-sample {
  position: relative;
  z-index: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: min(100%, 340px);
  min-height: 250px;
  justify-self: center;
  margin: 10px 0 0;
}

.nfc-sample {
  position: relative;
  min-height: 230px;
}

.nfc-sample::before {
  content: "";
  position: absolute;
  inset: 18% 10% 12%;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(204, 230, 255, 0.52), rgba(255, 179, 204, 0.4));
  filter: blur(32px);
}

.sample-sticker {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 32, 58, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(24, 34, 64, 0.14);
  will-change: transform;
}

.sample-sticker img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
}

.sample-sticker-pvc {
  left: 3%;
  top: 8px;
  width: min(48vw, 178px);
  aspect-ratio: 1;
  border-radius: 999px;
  transform: rotate(-7deg);
  animation: float-tag-pvc 13s ease-in-out infinite;
}

.sample-sticker-standard {
  right: 10%;
  top: 58px;
  width: min(42vw, 152px);
  aspect-ratio: 1;
  border-radius: 999px;
  transform: rotate(8deg);
  animation: float-tag-standard 14.5s ease-in-out infinite;
}

@keyframes float-tag-pvc {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  50% { transform: translate3d(12px, -16px, 0) rotate(-4deg); }
}

@keyframes float-tag-standard {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); }
  50% { transform: translate3d(-12px, 14px, 0) rotate(5deg); }
}

.nfc-hero-copy {
  grid-column: 1;
  width: min(600px, 100%);
}

.nfc-label {
  margin: 0 0 10px;
  color: var(--pink-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nfc-hero h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.nfc-hero h1 span {
  display: block;
}

.nfc-hero-lede {
  max-width: 52ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.55;
}

.nfc-hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nfc-hero-facts {
  grid-column: 1 / -1;
  width: 100%;
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.nfc-hero-facts div {
  min-height: 82px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.nfc-hero-facts dt {
  color: var(--pink-deep);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nfc-hero-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.25;
}

.nfc-thankyou-band {
  width: min(1080px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(38px, 8vw, 92px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.nfc-thankyou-band:focus {
  outline: none;
}

.nfc-thankyou-copy {
  max-width: 660px;
}

.nfc-thankyou-copy h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.nfc-thankyou-copy > p {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.nfc-thankyou-details {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.nfc-thankyou-details div {
  min-height: 96px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.nfc-thankyou-details dt {
  color: var(--pink-deep);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nfc-thankyou-details dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.nfc-thankyou-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nfc-thankyou-tags {
  position: relative;
  width: min(100%, 340px);
  min-height: 270px;
  justify-self: center;
}

.nfc-pack-band,
.nfc-checkout-band,
.nfc-why-band,
.nfc-terms-band {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
}

.nfc-section-head {
  max-width: 760px;
}

.nfc-section-head h2,
.nfc-order-summary h2,
.nfc-checkout-form h2,
.nfc-why-band h2,
.nfc-terms-band h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.06;
}

.nfc-section-head p,
.nfc-order-summary p,
.nfc-why-band p,
.terms-list p {
  max-width: 62ch;
  color: var(--ink-soft);
}

.nfc-tier-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}

.nfc-tier-card {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.nfc-tier-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.nfc-tier-card:focus-visible {
  outline: 3px solid rgba(79, 143, 220, 0.28);
  outline-offset: 2px;
}

.nfc-tier-card.is-selected {
  border-color: rgba(79, 143, 220, 0.26);
  background:
    linear-gradient(120deg, rgba(204, 230, 255, 0.38), rgba(255, 179, 204, 0.26));
}

.tier-kicker {
  color: var(--pink-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nfc-tier-card strong {
  color: var(--ink);
  font-size: clamp(2.05rem, 4vw, 2.9rem);
  line-height: 1;
}

.tier-name {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.tier-detail {
  color: var(--ink);
  font-weight: 850;
}

.tier-note {
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.45;
}

.nfc-checkout-band {
  background: transparent;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
}

.nfc-checkout-band .nfc-label {
  color: var(--pink-deep);
}

.nfc-order-summary,
.nfc-checkout-form {
  min-width: 0;
}

.nfc-order-summary {
  position: sticky;
  top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.nfc-order-summary h2,
.nfc-order-summary p {
  color: var(--ink);
}

.summary-price-row {
  margin: 24px 0 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.summary-price-row strong {
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1;
}

.summary-price-row span {
  color: var(--ink-faint);
  font-size: 0.96rem;
  font-weight: 800;
}

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

.summary-list li {
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-weight: 750;
}

.nfc-checkout-form {
  padding: clamp(20px, 4vw, 30px);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.form-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.nfc-checkout-form h2 {
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

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

.field-grid-three {
  grid-template-columns: minmax(0, 1fr) 86px 128px;
}

.nfc-checkout-form .field {
  margin-top: 14px;
  display: grid;
  gap: 7px;
}

.nfc-checkout-form .field span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.email-note {
  margin: 8px 0 0;
  color: var(--ink-faint);
  font-size: 0.86rem;
  line-height: 1.4;
}

.nfc-checkout-form input[type="text"],
.nfc-checkout-form input[type="email"],
.nfc-checkout-form input:not([type]) {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfcff;
  font: inherit;
  font-size: 0.98rem;
}

.nfc-checkout-form input:focus-visible {
  outline: 3px solid rgba(79, 143, 220, 0.28);
  outline-offset: 2px;
}

.nfc-checkout-form input[aria-invalid="true"] {
  border-color: #c64646;
  background: #fff7f7;
}

.check-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.42;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.check-row-optional {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.check-row strong,
.check-row small {
  display: block;
}

.check-row small {
  margin-top: 5px;
  color: var(--ink-faint);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.38;
}

.nfc-checkout-button {
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
}

.nfc-checkout-button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.checkout-footnote {
  margin: 12px 0 0;
  color: #697385;
  font-size: 0.86rem;
  line-height: 1.45;
}

.checkout-message,
.checkout-success {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.4;
}

.checkout-message {
  border: 1px solid rgba(198, 70, 70, 0.25);
  background: #fff7f7;
  color: #8b2f2f;
}

.checkout-message[data-tone="good"],
.checkout-success {
  border: 1px solid rgba(79, 143, 220, 0.22);
  background: #f0fbf5;
  color: #155d46;
}

.checkout-success {
  display: grid;
  gap: 2px;
}

.nfc-why-band {
  background: transparent;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
}

.nfc-use-grid,
.terms-list {
  display: grid;
  gap: 14px;
}

.nfc-use-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nfc-use-grid article,
.terms-list article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.nfc-use-grid h3,
.terms-list h3 {
  color: #111827;
  font-size: 1.05rem;
}

.nfc-use-grid p,
.terms-list p {
  margin: 8px 0 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.nfc-community-note {
  grid-column: 2;
  margin: -2px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.nfc-terms-band {
  background: transparent;
}

.terms-list {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .nfc-hero {
    grid-template-columns: 1fr;
  }

  .nfc-support-sample {
    grid-column: 1;
    grid-row: auto;
    width: min(76vw, 320px);
    min-height: 230px;
    margin: 0 auto;
  }

  .nfc-thankyou-band {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .nfc-thankyou-tags {
    width: min(76vw, 320px);
    min-height: 230px;
    margin: 0 auto;
    order: -1;
  }

  .nfc-hero h1 {
    max-width: 12ch;
  }

  .nfc-tier-grid,
  .nfc-thankyou-details,
  .nfc-checkout-band,
  .nfc-why-band,
  .nfc-use-grid,
  .terms-list {
    grid-template-columns: 1fr;
  }

  .nfc-community-note {
    grid-column: 1;
  }

  .nfc-order-summary {
    position: static;
  }

}

@media (max-width: 640px) {
  .nfc-support-header {
    width: min(100% - 24px, 1160px);
    padding: 14px 0 8px;
  }

  .nfc-support-nav {
    gap: 10px;
    font-size: 0.84rem;
  }

  .nfc-hero {
    width: min(100% - 24px, 1080px);
    padding: 24px 0 22px;
  }

  .nfc-support-sample {
    width: min(86vw, 300px);
    min-height: 220px;
  }

  .nfc-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .nfc-hero-facts,
  .field-grid,
  .field-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nfc-pack-band,
  .nfc-checkout-band,
  .nfc-why-band,
  .nfc-terms-band {
    width: min(100% - 24px, 1080px);
    padding: 24px 0;
  }

  .nfc-tier-card {
    min-height: 260px;
  }

  .field-grid,
  .field-grid-three {
    grid-template-columns: 1fr;
  }

  .field-short {
    max-width: none;
  }
}
