/*
 * TapContact marketing surfaces
 * Shared mobile-first layout for / and /business. The product and checkout
 * templates keep their own functional styles; this file owns presentation.
 */

:root {
  --tc-red: #e5232b;
  --tc-red-dark: #bc1720;
  --tc-ink: #171b26;
  --tc-muted: #596174;
  --tc-line: #e7e7e4;
  --tc-paper: #ffffff;
  --tc-soft: #f7f7f5;
  --tc-red-soft: #fff2f2;
  --tc-radius-sm: 0.875rem;
  --tc-radius: 1.375rem;
  --tc-radius-lg: 2rem;
  --tc-shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.04), 0 8px 24px rgba(17, 24, 39, 0.05);
  --tc-shadow: 0 20px 50px rgba(17, 24, 39, 0.09);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.25rem;
}

body.tapcontact-site,
body.tc-business-page {
  overflow-x: clip;
  background: var(--tc-paper);
  color: var(--tc-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.tapcontact-site button,
body.tapcontact-site a,
body.tc-business-page button,
body.tc-business-page a {
  -webkit-tap-highlight-color: transparent;
}

body.tapcontact-site :focus-visible,
body.tc-business-page :focus-visible {
  outline: 3px solid rgba(229, 35, 43, 0.28);
  outline-offset: 3px;
}

.tapcontact-site #tc-language-selector-btn,
.tc-business-page .tapcontact-header > a:first-child {
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  min-height: 2.75rem;
}

.tapcontact-site .lang-item {
  min-height: 2.75rem;
}

.tapcontact-site .lang-modal {
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  background: rgba(20, 24, 34, 0.5);
  backdrop-filter: blur(10px);
}

.tapcontact-site .lang-content {
  width: 100%;
  max-width: 25rem;
  max-height: calc(100dvh - 2rem);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.24);
}

.tapcontact-site #lang-modal-title {
  padding-inline: 0.35rem;
  color: var(--tc-ink);
}

.tapcontact-site #lang-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.tapcontact-site .lang-item {
  margin: 0;
  padding: 0.7rem 0.75rem;
  border: 1px solid transparent;
  color: #343b4b;
  background: var(--tc-soft);
  font-size: 0.9rem;
}

.tapcontact-site .lang-item:hover,
.tapcontact-site .lang-item:active {
  border-color: #f2cfd1;
  color: var(--tc-red-dark);
  background: var(--tc-red-soft);
}

/* Shared masthead */
body.tapcontact-site .tapcontact-header,
body.tc-business-page .tapcontact-header {
  padding: max(1.25rem, env(safe-area-inset-top)) 1.25rem 0.75rem;
  background: var(--tc-red);
}

body.tapcontact-site .logo-frame,
body.tc-business-page .logo-frame {
  width: 6.5rem;
  height: 6.5rem;
  border: 3px solid rgba(255, 255, 255, 0.58);
  border-radius: 1.35rem;
  box-shadow: 0 14px 34px rgba(122, 18, 23, 0.2);
}

body.tapcontact-site .logo-frame img,
body.tc-business-page .logo-frame img {
  width: 4.8rem;
  border-radius: 0.75rem;
}

body.tapcontact-site .tapcontact-sticky-bar,
body.tc-business-page .tapcontact-sticky-bar {
  position: relative;
  top: auto;
  z-index: 2;
  padding: 0.7rem 1.25rem 1.65rem;
  background: var(--tc-red);
  box-shadow: none;
}

body.tapcontact-site .tapcontact-sticky-bar .headline,
body.tc-business-page .tapcontact-sticky-bar .headline {
  max-width: 48rem;
  margin-inline: auto;
  font-size: clamp(1.7rem, 8vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body.tapcontact-site .tapcontact-sticky-bar .subtext,
body.tc-business-page .tapcontact-sticky-bar .subtext {
  max-width: 39rem;
  line-height: 1.55;
  text-wrap: pretty;
}

/* Homepage product hero */
.tapcontact-site .nfc-section {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 2.35rem 1rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(229, 35, 43, 0.08), transparent 36%),
    linear-gradient(180deg, #fff 0%, #fff 72%, var(--tc-soft) 100%);
}

.tapcontact-site .nfc-section-inner {
  width: 100%;
  max-width: 68rem;
  margin-inline: auto;
}

.tapcontact-site .nfc-copy {
  position: relative;
  z-index: 5;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.tapcontact-site #tc-headline-part2 {
  position: relative;
  inset: auto;
  width: auto;
  padding-inline: 0.25rem;
  color: var(--tc-ink);
  font-size: clamp(1.65rem, 7.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.tapcontact-site #tc-action-tagline {
  position: relative;
  inset: auto;
  width: auto;
  margin-top: 0.65rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--tc-red);
  font-family: inherit;
  font-size: clamp(0.9rem, 3.8vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease;
}

.tapcontact-site #tc-action-tagline:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tapcontact-site #tc-action-tagline:active {
  transform: scale(0.96);
}

.tapcontact-site .nfc-showcase {
  position: relative;
  width: 100%;
  max-width: 27rem;
  height: 31rem;
  margin: 1.35rem auto 0;
  isolation: isolate;
}

.tapcontact-site .nfc-showcase::before {
  position: absolute;
  inset: 4% -6% 0;
  z-index: -1;
  background: radial-gradient(closest-side at 50% 46%, rgba(229, 35, 43, 0.09), rgba(229, 35, 43, 0.04) 55%, transparent 100%);
  content: "";
}

.tapcontact-site .nfc-keychain {
  position: absolute;
  top: 1.1rem;
  left: 48%;
  z-index: 3;
  width: 8.65rem;
  max-width: none;
  height: auto;
  translate: 0 0;
  rotate: 0deg;
  transform: translateX(-88%) rotate(-5deg);
  filter: drop-shadow(0 18px 22px rgba(70, 25, 25, 0.14));
  transition: translate 0.55s cubic-bezier(0.5, 0, 0.3, 1), rotate 0.55s cubic-bezier(0.5, 0, 0.3, 1);
}

.tapcontact-site .nfc-phone {
  position: absolute;
  top: 7.8rem;
  bottom: auto;
  left: 50%;
  z-index: 2;
  width: 13.25rem;
  max-width: none;
  height: auto;
  transform: translateX(-18%) rotate(2deg);
  filter: drop-shadow(0 22px 28px rgba(17, 24, 39, 0.16));
  will-change: auto;
}

.tapcontact-site .nfc-phone.tc-bump {
  animation: tc-phone-bump 0.55s ease-out;
  filter: drop-shadow(0 22px 28px rgba(17, 24, 39, 0.16)) drop-shadow(0 0 22px rgba(229, 35, 43, 0.4));
}

@keyframes tc-phone-bump {
  0% { translate: 0 0; }
  35% { translate: 3px 5px; }
  100% { translate: 0 0; }
}

/* Tap-to-demo affordances: the showcase is clickable, the target pulses at the
   NFC contact point (positioned by JS), and .is-contact plays the ripple. */
.tapcontact-site .nfc-showcase {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.tapcontact-site .nfc-tap-target {
  position: absolute;
  top: 32%;
  left: 62%;
  z-index: 4;
  width: 3.6rem;
  height: 3.6rem;
  margin: -1.8rem;
  pointer-events: none;
}

.tapcontact-site .nfc-tap-target span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(229, 35, 43, 0.55);
  border-radius: 999px;
  opacity: 0;
  animation: tc-nfc-pulse 2.8s ease-out infinite;
}

.tapcontact-site .nfc-tap-target span:nth-child(2) { animation-delay: 0.4s; }
.tapcontact-site .nfc-tap-target span:nth-child(3) { animation-delay: 0.8s; }

@keyframes tc-nfc-pulse {
  0% { opacity: 0; transform: scale(0.3); }
  14% { opacity: 0.55; }
  55% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}

.tapcontact-site .nfc-showcase.is-contact .nfc-tap-target span {
  border-color: rgba(229, 35, 43, 0.85);
  animation: tc-nfc-ripple 0.8s ease-out;
}

.tapcontact-site .nfc-showcase.is-contact .nfc-tap-target span:nth-child(2) { animation-delay: 0.12s; }
.tapcontact-site .nfc-showcase.is-contact .nfc-tap-target span:nth-child(3) { animation-delay: 0.24s; }

@keyframes tc-nfc-ripple {
  0% { opacity: 0.9; transform: scale(0.25); }
  100% { opacity: 0; transform: scale(1.7); }
}

@media (prefers-reduced-motion: reduce) {
  .tapcontact-site .nfc-tap-target span { animation: none; opacity: 0.3; transform: scale(0.75); }
  .tapcontact-site .nfc-keychain { transition: none; }
  .tapcontact-site .nfc-phone.tc-bump { animation: none; }
}

/* Homepage value and process sections */
.tapcontact-site .tc-features,
.tapcontact-site .tc-how {
  position: relative;
  z-index: 1;
  padding: 3.75rem 1rem;
}

.tapcontact-site .tc-features {
  background: var(--tc-paper);
}

.tapcontact-site .tc-how {
  background: var(--tc-soft);
}

.tapcontact-site .tc-section-title {
  margin-bottom: 1.75rem;
  color: var(--tc-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 7vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.tapcontact-site .tc-feature-grid,
.tapcontact-site .tc-step-grid {
  gap: 0.75rem;
}

.tapcontact-site .tc-feature-card {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  column-gap: 1rem;
  align-items: center;
  padding: 1.15rem;
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius);
  background: var(--tc-paper);
  text-align: left;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
}

.tapcontact-site .tc-feature-card > div:first-child {
  grid-row: 1 / span 2;
  margin: 0;
  font-size: 2rem;
  text-align: center;
}

.tapcontact-site .tc-feature-card h3,
.tapcontact-site .tc-feature-card p {
  margin: 0;
}

.tapcontact-site .tc-feature-card h3 {
  align-self: end;
  line-height: 1.3;
}

.tapcontact-site .tc-feature-card p {
  align-self: start;
  margin-top: 0.2rem;
  color: var(--tc-muted);
}

.tapcontact-site .tc-step-grid {
  position: relative;
  max-width: 34rem;
  margin-inline: auto;
}

.tapcontact-site .tc-step-card {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.65rem 0;
  text-align: left;
}

.tapcontact-site .tc-step-card > div {
  width: 3rem;
  height: 3rem;
  margin: 0;
  background: var(--tc-red);
  box-shadow: 0 0 0 0.35rem #fff;
}

.tapcontact-site .tc-step-card p {
  color: #41495a;
  line-height: 1.55;
}

.tapcontact-site .tc-bulk-band {
  position: relative;
  z-index: 1;
  padding: 0 1rem 3.75rem;
  background: var(--tc-soft);
}

.tapcontact-site .tc-bulk-cta {
  min-height: 6rem;
  padding: 0.8rem 0.9rem;
  border-color: var(--tc-line);
  border-radius: var(--tc-radius);
  box-shadow: var(--tc-shadow-sm);
}

.tapcontact-site .tc-bulk-art {
  width: 3.7rem;
  max-height: 5rem;
  object-fit: contain;
}

/* Homepage purchase area */
.tapcontact-site #invite-request-container.tc-purchase-zone {
  max-width: 48rem;
  margin-top: 0;
  padding: 3.5rem 1rem 0;
}

.tapcontact-site .tc-tiktok-trophy {
  min-height: 3.25rem;
  border-color: #f2d4d6;
  box-shadow: var(--tc-shadow-sm);
}

.tapcontact-site .tc-tiktok-trophy img {
  width: 4.25rem;
  height: 4.25rem;
}

.tapcontact-site .tc-scarcity {
  margin-block: 0.4rem 1.25rem;
}

.tapcontact-site #tc-free-limited-text {
  color: var(--tc-red);
  font-size: clamp(1.4rem, 6vw, 1.8rem);
  line-height: 1.2;
  text-wrap: balance;
}

.tapcontact-site .tapcontact-invite-card.tc-purchase-card {
  padding: 1.1rem;
  border: 1px solid #ece4e4;
  border-radius: 1.65rem;
  background: #fff;
  box-shadow: var(--tc-shadow);
}

.tapcontact-site .tc-promo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.75rem;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 1rem;
  border: 1px solid #f1d9d4;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, #fff8f4, #fff3f3);
}

.tapcontact-site .tc-promo-panel > div,
.tapcontact-site .tc-promo-panel img {
  min-width: 0;
}

.tapcontact-site .tc-promo-panel img {
  width: auto;
  height: 5.25rem;
}

.tapcontact-site .tc-form-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.35rem;
  margin: 0 0 1.35rem;
  padding: 0.3rem;
  overflow: visible;
  border: 0;
  border-radius: 0.9rem;
  background: #f2f2f0;
}

.tapcontact-site .tc-form-tabs > button,
.tapcontact-site .tc-form-tabs > a {
  min-width: 0;
  min-height: 3rem;
  padding: 0.65rem 0.55rem;
  border: 0;
  border-radius: 0.68rem;
  white-space: normal;
  line-height: 1.25;
}

.tapcontact-site .tc-form-tabs > button {
  background: #fff;
  color: var(--tc-red);
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.1);
}

.tapcontact-site .form-input-field,
.tapcontact-site input,
.tapcontact-site select,
.tapcontact-site textarea {
  font-size: 1rem;
}

.tapcontact-site .form-input-field {
  min-height: 3.1rem;
  border-color: #d9d9d6;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: none;
}

.tapcontact-site .form-input-field:focus {
  border-color: var(--tc-red);
  box-shadow: 0 0 0 3px rgba(229, 35, 43, 0.12);
}

.tapcontact-site #b2c-verify-phone-btn,
.tapcontact-site #b2c-verify-otp-btn,
.tapcontact-site #team-submit-btn,
.tapcontact-site .tapcontact-submit-btn {
  min-height: 3.1rem;
  border-radius: 0.75rem;
}

.tapcontact-site #keychain-models-list {
  gap: 0.65rem;
}

.tapcontact-site .faq-item {
  border-color: var(--tc-line);
  border-radius: 0.9rem;
  background: #fff;
}

.tapcontact-site .faq-question {
  min-height: 3.6rem;
  padding: 0.9rem 1rem;
  background: #fafaf9;
  line-height: 1.4;
}

.tapcontact-site #tab-faq-for-me,
.tapcontact-site #tab-faq-for-team {
  padding-bottom: 0;
}

.tapcontact-site #home-footer {
  position: relative;
  inset: auto;
  margin-top: 2.5rem;
  padding-block: 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  background: var(--tc-soft);
  border-top: 1px solid var(--tc-line);
}

/* /business */
.tc-business-page .header-sale-flag {
  top: max(0.85rem, env(safe-area-inset-top));
  max-width: 8.7rem;
  padding: 0.52rem 0.65rem;
  border-radius: 0.75rem 0 0 0.75rem;
  box-shadow: 0 8px 24px rgba(90, 14, 19, 0.2);
}

.tc-business-page .header-sale-flag strong {
  font-size: 0.65rem;
}

.tc-business-page .header-sale-flag small {
  overflow: hidden;
  font-size: 0.55rem;
  text-overflow: ellipsis;
}

.tc-business-page .bulk-hero {
  padding: 3.25rem 1rem 4rem;
}

.tc-business-page .bulk-hero-grid {
  gap: 1.75rem;
}

.tc-business-page .bulk-hero-copy {
  order: 1;
}

.tc-business-page .bulk-hero-art {
  order: 2;
}

.tc-business-page .bulk-hero-copy h2 {
  font-size: clamp(1.85rem, 7vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.tc-business-page .bulk-hero-copy p {
  color: var(--tc-muted);
  line-height: 1.7;
}

.tc-business-page .bulk-hero-copy li {
  line-height: 1.55;
}

.tc-business-page .bulk-hero-copy > a {
  min-height: 3rem;
  background: var(--tc-red);
  box-shadow: 0 10px 24px rgba(229, 35, 43, 0.2);
}

.tc-business-page .bulk-hero-art {
  position: relative;
  min-height: 20rem;
  border: 1px solid #f0dedf;
  border-radius: var(--tc-radius-lg);
  background: radial-gradient(circle at 50% 52%, #fff 0%, #fff4f4 54%, #faf8f7 100%);
  overflow: hidden;
}

.tc-business-page .bulk-hero-art::after {
  position: absolute;
  right: 10%;
  bottom: 8%;
  left: 10%;
  height: 2rem;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.11);
  filter: blur(14px);
  content: "";
}

.tc-business-page .bulk-hero-art img {
  position: relative;
  z-index: 1;
  width: 10.8rem;
}

.tc-business-page .bulk-tap-section,
.tc-business-page .bulk-section {
  padding: 3.75rem 1rem;
}

.tc-business-page .bulk-tap-section {
  padding-top: 0;
}

.tc-business-page .bulk-section-muted,
.tc-business-page #preview,
.tc-business-page #order {
  background: var(--tc-soft);
}

.tc-business-page .bulk-tap-grid,
.tc-business-page .bulk-next-grid {
  position: relative;
  gap: 0;
  max-width: 38rem;
  margin-inline: auto;
}

.tc-business-page .bulk-tap-step,
.tc-business-page .bulk-next-step {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  column-gap: 1rem;
  padding: 0.7rem 0;
  text-align: left;
}

.tc-business-page .bulk-tap-step > div,
.tc-business-page .bulk-next-step > div {
  grid-row: 1 / span 2;
  width: 3rem;
  height: 3rem;
  margin: 0;
  background: var(--tc-red);
}

.tc-business-page .bulk-tap-step h3,
.tc-business-page .bulk-next-step h3 {
  align-self: end;
  margin: 0;
  line-height: 1.35;
}

.tc-business-page .bulk-tap-step p,
.tc-business-page .bulk-next-step p {
  align-self: start;
  margin-top: 0.2rem;
  color: var(--tc-muted);
}

.tc-business-page .bulk-tap-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-color: var(--tc-line);
  border-radius: var(--tc-radius);
  background: #fff;
}

.tc-business-page .step-badge {
  background: var(--tc-red);
}

.tc-business-page .preview-stage {
  min-height: 22rem;
  border-color: var(--tc-line);
  border-radius: var(--tc-radius);
  background: #fff;
}

.tc-business-page .preview-stage img {
  width: auto;
  height: 20rem;
}

.tc-business-page .dropzone {
  min-height: 10rem;
  border-color: #d7d7d3;
  border-radius: var(--tc-radius);
}

.tc-business-page .field {
  min-height: 3.1rem;
  border-color: #d7d7d3;
  border-radius: 0.75rem;
  font-size: 1rem;
}

.tc-business-page .qty-card {
  min-height: 12rem;
  border-color: var(--tc-line);
  border-radius: var(--tc-radius);
}

.tc-business-page .qty-card[aria-pressed="true"] {
  border-color: var(--tc-red);
  box-shadow: 0 12px 28px rgba(229, 35, 43, 0.12);
}

.tc-business-page #bulk-form {
  padding: 1.25rem;
  border-color: var(--tc-line);
  border-radius: var(--tc-radius);
  box-shadow: var(--tc-shadow-sm);
}

.tc-business-page .faq-item {
  border-color: var(--tc-line);
  border-radius: var(--tc-radius-sm);
}

.tc-business-page .faq-q {
  min-height: 3.75rem;
  padding: 1rem;
  line-height: 1.45;
}

.tc-business-page footer {
  padding-block: 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  background: var(--tc-paper);
}

/* Content is useful even if enhancement JavaScript fails to start. */
.tapcontact-site .tc-reveal,
.tc-business-page .tc-reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 48rem) {
  body.tapcontact-site .tapcontact-header,
  body.tc-business-page .tapcontact-header {
    padding: 2.5rem 1.5rem 1rem;
  }

  body.tapcontact-site .logo-frame,
  body.tc-business-page .logo-frame {
    width: 8rem;
    height: 8rem;
  }

  body.tapcontact-site .logo-frame img,
  body.tc-business-page .logo-frame img {
    width: 5.9rem;
  }

  body.tapcontact-site .tapcontact-sticky-bar,
  body.tc-business-page .tapcontact-sticky-bar {
    padding: 0.8rem 1.5rem 2.35rem;
  }

  body.tapcontact-site .tapcontact-sticky-bar .headline,
  body.tc-business-page .tapcontact-sticky-bar .headline {
    font-size: clamp(2.2rem, 4vw, 3.15rem);
  }

  .tapcontact-site .nfc-section {
    padding-top: 3.75rem;
  }

  .tapcontact-site .nfc-showcase {
    max-width: 43rem;
    height: 35rem;
    margin-top: 2rem;
  }

  .tapcontact-site .nfc-keychain {
    top: 3.5rem;
    left: 48%;
    width: 11rem;
    transform: translateX(-112%) rotate(-5deg);
  }

  .tapcontact-site .nfc-phone {
    top: 2.3rem;
    left: 51%;
    width: 16.5rem;
    transform: translateX(4%) rotate(2deg);
  }

  .tapcontact-site .tc-features,
  .tapcontact-site .tc-how {
    padding: 5.25rem 1.5rem;
  }

  .tapcontact-site .tc-feature-grid,
  .tapcontact-site .tc-step-grid {
    gap: 1rem;
  }

  .tapcontact-site .tc-feature-card {
    display: block;
    padding: 1.65rem;
    text-align: center;
  }

  .tapcontact-site .tc-feature-card > div:first-child {
    margin-bottom: 0.8rem;
    font-size: 2.35rem;
  }

  .tapcontact-site .tc-feature-card p {
    margin-top: 0.45rem;
  }

  .tapcontact-site .tc-step-grid {
    max-width: none;
  }

  .tapcontact-site .tc-step-card {
    display: block;
    padding: 1.25rem;
    text-align: center;
  }

  .tapcontact-site .tc-step-card > div {
    margin: 0 auto 0.8rem;
  }

  .tapcontact-site .tc-bulk-band {
    padding-bottom: 5rem;
  }

  .tapcontact-site #invite-request-container.tc-purchase-zone {
    padding-top: 5rem;
  }

  .tapcontact-site .tapcontact-invite-card.tc-purchase-card {
    padding: 2rem;
  }

  .tapcontact-site .tc-promo-panel {
    grid-template-columns: minmax(0, 1fr) 8rem;
    padding: 1.25rem;
  }

  .tapcontact-site .tc-promo-panel img {
    height: 7rem;
  }

  .tc-business-page .header-sale-flag {
    top: 1.5rem;
    max-width: none;
    padding: 0.65rem 1rem 0.6rem 1.1rem;
  }

  .tc-business-page .header-sale-flag strong {
    font-size: 0.8rem;
  }

  .tc-business-page .header-sale-flag small {
    font-size: 0.64rem;
  }

  .tc-business-page .bulk-hero {
    padding: 5rem 1.5rem 6rem;
  }

  .tc-business-page .bulk-hero-grid {
    gap: 4rem;
  }

  .tc-business-page .bulk-hero-copy {
    order: 1;
  }

  .tc-business-page .bulk-hero-art {
    order: 2;
    min-height: 34rem;
  }

  .tc-business-page .bulk-hero-art img {
    width: 15.5rem;
  }

  .tc-business-page .bulk-tap-section,
  .tc-business-page .bulk-section {
    padding: 5.5rem 1.5rem;
  }

  .tc-business-page .bulk-tap-section {
    padding-top: 0;
  }

  .tc-business-page .bulk-tap-grid,
  .tc-business-page .bulk-next-grid {
    max-width: none;
    gap: 1.5rem;
  }

  .tc-business-page .bulk-tap-step,
  .tc-business-page .bulk-next-step {
    display: block;
    padding: 1rem;
    text-align: center;
  }

  .tc-business-page .bulk-tap-step > div,
  .tc-business-page .bulk-next-step > div {
    margin: 0 auto 0.8rem;
  }

  .tc-business-page .bulk-tap-note {
    margin-top: 2.5rem;
    padding: 1.75rem;
  }

  .tc-business-page .preview-stage {
    min-height: 29rem;
  }

  .tc-business-page .preview-stage img {
    height: 26.25rem;
  }

  .tc-business-page #bulk-form {
    padding: 2rem;
  }
}

@media (min-width: 64rem) {
  .tapcontact-site .nfc-section-inner {
    display: grid;
    grid-template-columns: minmax(20rem, 0.82fr) minmax(31rem, 1.18fr);
    align-items: center;
    min-height: 37rem;
  }

  .tapcontact-site .nfc-copy {
    text-align: left;
  }

  .tapcontact-site #tc-headline-part2,
  .tapcontact-site #tc-action-tagline {
    text-align: left;
  }

  .tapcontact-site .nfc-showcase {
    margin-top: 0;
  }
}

@media (max-width: 23rem) {
  .tc-business-page .header-sale-flag {
    position: relative;
    top: auto;
    right: auto;
    width: max-content;
    max-width: calc(100% - 2rem);
    margin: 0.75rem auto 0;
    border-right: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 0.75rem;
    text-align: center;
  }

  body.tapcontact-site .tapcontact-sticky-bar .headline,
  body.tc-business-page .tapcontact-sticky-bar .headline {
    font-size: 1.55rem;
  }

  .tapcontact-site .nfc-showcase {
    height: 28rem;
  }

  .tapcontact-site .nfc-keychain {
    width: 7.75rem;
  }

  .tapcontact-site .nfc-phone {
    width: 11.75rem;
  }

  .tapcontact-site .tc-form-tabs > button,
  .tapcontact-site .tc-form-tabs > a {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  body.tapcontact-site *,
  body.tc-business-page * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
