@font-face {
  font-family: "Borsok";
  src: url("fonts/boorsok.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Tap 2 Distract brand palette */
  --brand-blue: #50bae7;
  --brand-yellow: #e4be4a;
  --brand-cyan: #e597e1;
  --brand-gold: #f28180;
  --brand-indigo: #a39ee3;
  --brand-navy: #283679;
  --page-bg: #f6f2ee;
  --white: #ffffff;
  --ink: #283679;
  --muted: #625f6c;
  --soft: #f6f2ee;
  --line: rgba(40, 54, 121, 0.14);
  --shadow: 0 24px 70px rgba(40, 54, 121, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: 1180px;
  --body-font: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: "Borsok", "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--page-bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container,
.topbar-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(40, 54, 121, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-lockup img { height: auto; }
.brand-lockup .tap2-lockup { width: 138px; }
.brand-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}
.nav-actions { display: flex; align-items: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(40, 54, 121, 0.2); }
.button-primary { background: var(--brand-yellow); color: var(--brand-navy); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); }
.button-secondary { background: var(--brand-navy); color: var(--white); border-color: var(--brand-navy); }
.button-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.56); }
.button-outline:hover { background: rgba(255, 255, 255, 0.08); }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #283679 0%, #50bae7 56%, #a39ee3 100%);
  color: var(--white);
  padding: 74px 0 66px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(228, 190, 74, 0.18);
  color: var(--brand-yellow);
  border: 1px solid rgba(228, 190, 74, 0.48);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.eyebrow-dark {
  background: rgba(80, 186, 231, 0.12);
  color: var(--brand-indigo);
  border-color: rgba(80, 186, 231, 0.28);
}
.hero h1 {
  margin: 22px 0 18px;
  font-family: var(--display-font);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0.025em;
  max-width: 760px;
  text-wrap: balance;
  font-weight: 800;
}
.hero h1 .hero-highlight {
  color: var(--brand-navy);
  display: inline-block;
  white-space: nowrap;
  -webkit-text-stroke: 6px #ffffff;
  paint-order: stroke fill;
  text-shadow:
    2px 2px 0 #ffffff,
    -2px 2px 0 #ffffff,
    2px -2px 0 #ffffff,
    -2px -2px 0 #ffffff,
    0 2px 0 #ffffff,
    0 -2px 0 #ffffff,
    2px 0 0 #ffffff,
    -2px 0 0 #ffffff;
}
.hero-copy {
  max-width: 690px;
  margin: 0 0 14px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}
.hero-copy-small { font-size: 1.03rem; color: rgba(255, 255, 255, 0.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px; }
.hero-image-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hero-sticker {
  position: absolute;
  top: -30px;
  right: -16px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: var(--white);
  padding: 10px;
  box-shadow: 0 18px 38px rgba(40, 54, 121, 0.18);
}
.hero-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 25px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.hero-proof div {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-proof strong {
  display: block;
  color: var(--brand-yellow);
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 800;
}
.hero-proof span { display: block; margin-top: 5px; font-size: 0.88rem; font-weight: 600; color: rgba(255, 255, 255, 0.84); }

.section { padding: 84px 0; }
.section-soft { background: var(--page-bg); }
.section-header { max-width: 860px; margin: 0 auto 40px; text-align: center; }
.section-header .eyebrow { margin-bottom: 18px; }
.section-header h2,
.content-card h2,
.widget-copy h2,
.trust-card h2,
.final-cta h2 {
  margin: 0 0 14px;
  color: var(--brand-navy);
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
  font-weight: 800;
}
.section-header p,
.content-card p,
.widget-copy p,
.trust-card p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  text-wrap: pretty;
}

.widget-section {
  padding: 82px 0 96px;
  background: var(--page-bg);
  overflow-anchor: none;
}
.widget-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  align-items: start;
  min-width: 0;
}
.widget-copy {
  position: sticky;
  top: 104px;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}
.widget-copy h2,
.widget-copy p { color: var(--white); }
.widget-copy p { color: rgba(255, 255, 255, 0.86); }
.widget-points { display: grid; gap: 14px; margin: 26px 0 0; }
.point { display: flex; gap: 12px; align-items: flex-start; color: rgba(255, 255, 255, 0.9); font-weight: 700; text-wrap: pretty; }
.tick {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-weight: 800;
  line-height: 1;
  margin-top: 1px;
}
.widget-frame-wrap { min-width: 0; overflow-anchor: none; }
#tlc-widget-tap2giveback { max-width: 100%; overscroll-behavior: contain; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 14px 34px rgba(40, 54, 121, 0.07);
}
.benefit-card:nth-child(1) .benefit-number { background: var(--brand-blue); }
.benefit-card:nth-child(2) .benefit-number { background: var(--brand-gold); }
.benefit-card:nth-child(3) .benefit-number { background: var(--brand-cyan); }

.benefit-number {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 20px;
}
.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: 1.38rem;
  line-height: 1.12;
  font-weight: 800;
}
.benefit-card p { margin: 0; color: var(--muted); font-weight: 600; text-wrap: pretty; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: 0 16px 42px rgba(40, 54, 121, 0.09);
}
.content-card .eyebrow { margin-bottom: 18px; }
.content-card p + p { margin-top: 16px; }
.content-action { margin-top: 24px !important; }
.image-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 16px 42px rgba(40, 54, 121, 0.14); }
.image-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.image-card-light { background: var(--white); padding: 10px; }
.image-card-light img { border-radius: 25px; }
.image-card-dark { background: var(--brand-navy); padding: 26px 0; }
.image-card-dark img { min-height: 330px; object-fit: contain; }

.app-flow-section { background: var(--page-bg); }
.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}
.process-card img { width: 100%; border-radius: 18px; }

.context-list { display: grid; gap: 14px; margin-top: 24px; }
.context-item { padding: 18px 20px; border-radius: 18px; background: rgba(163, 158, 227, 0.14); border: 1px solid rgba(163, 158, 227, 0.30); }
.context-item strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1.05rem;
  font-weight: 700;
}
.context-item span { display: block; margin-top: 5px; color: var(--muted); font-weight: 600; }

.testimonial-section { background: var(--brand-navy); color: var(--white); overflow: hidden; }
.testimonial-card { position: relative; text-align: center; max-width: 920px; }
.quote-mark { font-size: 8rem; line-height: 0.7; color: var(--brand-yellow); font-weight: 900; margin-bottom: 18px; }
.testimonial-card blockquote {
  margin: 0 auto;
  max-width: 840px;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}
.testimonial-card cite { display: block; margin-top: 22px; font-style: normal; font-weight: 800; color: var(--brand-yellow); }

.trust-section { background: var(--page-bg); }
.trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}
.trust-card img { width: 112px; background: var(--white); border-radius: 18px; padding: 12px; }
.trust-card h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3.2rem); }
.trust-card p { color: rgba(255, 255, 255, 0.86); }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; max-width: 1120px; margin: 0 auto; }
.faq-column { display: grid; gap: 18px; align-content: start; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(40, 54, 121, 0.06);
}
summary { cursor: pointer; color: var(--brand-navy); font-weight: 800; font-size: 1.04rem; }
details p { margin: 14px 0 0; color: var(--muted); font-weight: 600; text-wrap: pretty; }

.final-cta { background: var(--brand-yellow); color: var(--brand-navy); text-align: center; padding: 72px 0; }
.final-cta .eyebrow { margin-bottom: 18px; background: rgba(40, 54, 121, 0.09); color: var(--brand-navy); border-color: rgba(40, 54, 121, 0.22); }
.final-cta h2 { max-width: 940px; margin-left: auto; margin-right: auto; color: var(--brand-navy); }
.final-cta p { max-width: 760px; margin: 0 auto 26px; color: var(--brand-navy); font-weight: 700; }

footer { background: var(--brand-navy); color: rgba(255, 255, 255, 0.84); padding: 34px 0; font-size: 0.95rem; }
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-tap2 { width: 118px; }
.footer-copy { display: grid; gap: 8px; }
.footer-copy p { margin: 0; }
.footer-copy strong { color: var(--white); }
.footer-tlc {
  width: 116px;
  filter: brightness(0) invert(1);
}
.mobile-sticky-cta { display: none; }


.app-download-section {
  background: var(--page-bg);
  padding: 76px 0;
}

.app-download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}

.app-download-copy .eyebrow {
  margin-bottom: 18px;
}

.app-download-copy h2 {
  margin: 0 0 14px;
  color: var(--brand-navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}

.app-download-copy p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.app-download-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 14px;
  min-width: 520px;
}

.store-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--brand-navy);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(40, 54, 121, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(40, 54, 121, 0.22);
}

.store-button span {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.82;
}

.store-button strong {
  margin-top: 2px;
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: 900;
}

.store-button-light {
  background: var(--brand-blue);
  color: var(--brand-navy);
}






/* Tap it forward share section */
.share-section {
  background: var(--page-bg);
  padding: 0 0 76px;
}

.share-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}

.share-copy .eyebrow {
  margin-bottom: 18px;
}

.share-copy h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}

.share-copy p,
.share-small-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
  font-weight: 600;
}

.share-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.share-main-button {
  width: fit-content;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border-color: var(--brand-yellow);
}

.share-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--brand-yellow);
  font-weight: 800;
  font-size: 0.92rem;
}
/* End tap it forward share section */


@media (max-width: 980px) {
  .hero-grid,
  .widget-layout,
  .split { grid-template-columns: 1fr; }
  .widget-copy { position: static; }
  .hero-image-card { transform: none; max-width: 720px; margin: 0 auto; }
  .hero-sticker { width: 92px; height: 92px; top: -22px; right: -8px; }
  .benefit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {

  .share-section {
    padding: 0 0 56px;
  }

  .share-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .share-actions {
    justify-items: stretch;
  }

  .share-main-button {
    width: 100%;
  }

  .share-fallbacks {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .share-pill {
    width: 100%;
  }


  .app-download-section {
    padding: 56px 0;
  }

  .app-download-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .app-download-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .container,
  .topbar-inner { width: min(100% - 28px, var(--container)); }
  .topbar-inner { min-height: 68px; }
  .brand-lockup { gap: 10px; }
  .brand-lockup .tap2-lockup { width: 102px; }
  .brand-subtitle { display: none; }
  .nav-actions .button { min-height: 44px; padding: 10px 16px; font-size: 0.9rem; }
  .hero { padding: 54px 0 48px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .hero-proof { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .widget-section { padding: 64px 0 78px; }
  .widget-copy,
  .content-card { padding: 26px; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-card { grid-template-columns: 1fr; text-align: center; }
  .trust-card img { margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-branding {
    flex-direction: column;
    text-align: center;
  }
  .footer-tap2,
  .footer-tlc { margin: 0 auto; }
  .split-reverse-mobile .image-card { order: 2; }
  .split-reverse-mobile .content-card { order: 1; }
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(40, 54, 121, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .mobile-sticky-cta .button { width: 100%; }
  body { padding-bottom: 76px; }
}


/* App download real badge buttons */
.app-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  min-width: 520px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  min-height: 0;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: none;
}

.store-badge-image {
  display: block;
  width: auto;
  height: 64px;
  border-radius: 16px;
}

@media (max-width: 720px) {
  .app-download-actions {
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
  }

  .store-button {
    width: 100%;
  }

  .store-badge-image {
    width: 100%;
    max-width: 360px;
    height: auto;
  }
}


/* Share button prominence override */
.share-actions {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.share-main-button {
  width: auto;
  min-width: 320px;
  min-height: 76px;
  padding: 18px 34px;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border: 2px solid rgba(255, 255, 255, 0.28);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 14px 34px rgba(228, 190, 74, 0.34),
    0 0 0 8px rgba(228, 190, 74, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.share-main-button:hover,
.share-main-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 18px 40px rgba(228, 190, 74, 0.42),
    0 0 0 12px rgba(228, 190, 74, 0.16);
}

.share-small-text,
.share-status {
  text-align: center;
  max-width: 560px;
}

@media (max-width: 720px) {
  .share-actions {
    justify-items: center;
    text-align: center;
  }

  .share-main-button {
    width: 100%;
    min-width: 0;
    max-width: 360px;
  }

  .share-small-text,
  .share-status {
    max-width: 100%;
  }
}
/* End share button prominence override */


/* Share button centre polish override */
.share-card {
  align-items: center;
}

.share-actions {
  align-self: center;
  justify-self: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.share-main-button {
  width: auto;
  min-width: 320px;
  min-height: 76px;
  padding: 18px 34px;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border: 2px solid rgba(255, 255, 255, 0.28);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 14px 34px rgba(228, 190, 74, 0.34),
    0 0 0 8px rgba(228, 190, 74, 0.12);
}

.share-main-button:hover,
.share-main-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 18px 40px rgba(228, 190, 74, 0.42),
    0 0 0 12px rgba(228, 190, 74, 0.16);
}

.share-small-text {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.share-status {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .share-actions {
    justify-self: stretch;
    justify-items: center;
    align-content: center;
    text-align: center;
  }

  .share-main-button {
    width: 100%;
    min-width: 0;
    max-width: 360px;
  }

  .share-small-text,
  .share-status {
    max-width: 100%;
  }
}
/* End share button centre polish override */


/* Share button final alignment override */
.share-card {
  align-items: stretch;
}

.share-actions {
  align-self: stretch;
  justify-self: stretch;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.share-main-button {
  width: auto;
  min-width: 320px;
  min-height: 76px;
  padding: 18px 34px;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border: 2px solid rgba(255, 255, 255, 0.28);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 14px 34px rgba(228, 190, 74, 0.34),
    0 0 0 8px rgba(228, 190, 74, 0.12);
}

.share-main-button:hover,
.share-main-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 18px 40px rgba(228, 190, 74, 0.42),
    0 0 0 12px rgba(228, 190, 74, 0.16);
}

.share-small-text {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
}

.share-status {
  max-width: 500px;
  min-height: 1.4em;
  margin: 0 auto;
  text-align: center;
  font-size: 0.86rem;
}

@media (max-width: 720px) {
  .share-card {
    align-items: center;
  }

  .share-actions {
    align-self: auto;
    justify-self: stretch;
    min-height: auto;
    align-content: center;
    justify-items: center;
    gap: 20px;
    text-align: center;
  }

  .share-main-button {
    width: 100%;
    min-width: 0;
    max-width: 360px;
  }

  .share-small-text,
  .share-status {
    max-width: 100%;
  }
}
/* End share button final alignment override */

