
:root {
  --tap-black: #050505;
  --tap-panel: #111113;
  --tap-panel-soft: #171719;
  --tap-yellow: #ffd500;
  --tap-white: #ffffff;
  --tap-muted: #b3b3ba;
  --tap-border: rgba(255, 255, 255, 0.10);
  --tap-radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--tap-black);
  color: var(--tap-white);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

main {
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tap-yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}


/* HERO — MOBILE FIRST */

.trust-hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 48px 16px 42px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 213, 0, 0.08), transparent 22rem),
    var(--tap-black);
}

.trust-hero__content {
  max-width: 680px;
}

.trust-hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.trust-hero h1 span {
  color: var(--tap-yellow);
}

.trust-hero__copy {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--tap-muted);
  font-size: 16px;
  line-height: 1.65;
}

.trust-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--tap-yellow);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.trust-hero__link:hover,
.trust-hero__link:focus-visible {
  text-decoration: underline;
}

.trust-hero__image {
  overflow: hidden;
  border: 1px solid var(--tap-border);
  border-radius: var(--tap-radius);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
}

.trust-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* SECURITY BANNER */

.trust-banner {
  padding: 0 16px 56px;
}

.trust-banner img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--tap-border);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.40);
}


/* STATEMENT */

.trust-statement {
  padding: 62px 16px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 213, 0, 0.07), transparent 26rem),
    #090909;
}

.trust-statement__inner {
  max-width: 900px;
  margin: 0 auto;
}

.trust-statement h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.trust-statement h2 span {
  color: var(--tap-yellow);
}

.trust-statement p:last-child {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--tap-muted);
  font-size: 16px;
  line-height: 1.7;
}


/* CARDS */

.trust-cards {
  padding: 66px 16px 76px;
}

.trust-cards__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.trust-cards__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.trust-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
}

.trust-card {
  overflow: hidden;
  border: 1px solid var(--tap-border);
  border-radius: var(--tap-radius);
  background: var(--tap-panel);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

.trust-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trust-card__content {
  padding: 24px 22px 28px;
}

.trust-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.trust-card h3 span {
  color: var(--tap-yellow);
}

.trust-card p {
  margin: 16px 0 0;
  color: var(--tap-muted);
  font-size: 15px;
  line-height: 1.65;
}


/* COMPLIANCE */

.compliance-centre {
  padding: 72px 16px 86px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 213, 0, 0.09), transparent 24rem),
    #090909;
}

.compliance-centre__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.compliance-centre h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.compliance-centre p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--tap-muted);
  font-size: 16px;
  line-height: 1.65;
}

.compliance-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 30px;
}

.compliance-links a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--tap-border);
  border-radius: 16px;
  background: var(--tap-panel);
  color: var(--tap-white);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.compliance-links a:hover,
.compliance-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--tap-yellow);
  background: var(--tap-panel-soft);
  outline: none;
}


/* TABLET */

@media (min-width: 700px) {
  .trust-hero {
    padding: 68px 28px 58px;
  }

  .trust-banner {
    padding: 0 28px 68px;
  }

  .trust-statement,
  .trust-cards,
  .compliance-centre {
    padding-left: 28px;
    padding-right: 28px;
  }

  .trust-cards__grid {
    gap: 26px;
  }

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


/* DESKTOP */

@media (min-width: 1020px) {
  .trust-hero {
    display: block;
    min-height: 0;
    padding: 96px max(36px, calc((100vw - 1320px) / 2)) 70px;
    text-align: center;
  }
  .trust-hero__content { max-width: 860px; margin: 0 auto; }
  .trust-hero__copy { margin-left: auto; margin-right: auto; }

  .trust-hero__copy {
    font-size: 18px;
  }

  .trust-banner {
    padding: 0 max(36px, calc((100vw - 1320px) / 2)) 82px;
  }

  .trust-statement {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .trust-cards {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .trust-cards__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-card img {
    aspect-ratio: 1 / 1;
  }

  .compliance-centre {
    padding-top: 98px;
    padding-bottom: 110px;
  }

  .compliance-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


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

  * {
    transition: none !important;
  }
}
