@font-face {
  font-family: "ABCSans";
  src: local("ABCSans"), local("ABC Sans");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #3026d8;
  --green: #36c978;
  --magenta: #ed008f;
  --text: #050505;
  --muted: #2d2d2d;
  --font-heading: "Raleway", "ABCSans", Arial, sans-serif;
  --font-body: "ABCSans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 6%, rgba(0, 0, 0, 0.055) 1.15px, transparent 1.35px) 0 0 / 18px 18px,
    linear-gradient(118deg, transparent 72%, rgba(244, 244, 244, 0.88) 72.2%, rgba(244, 244, 244, 0.88) 80.5%, transparent 80.7%),
    linear-gradient(129deg, transparent 79%, rgba(246, 246, 246, 0.9) 79.2%, rgba(246, 246, 246, 0.9) 88.5%, transparent 88.7%),
    #fff;
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 15px;
}

.brand {
  display: block;
  width: clamp(270px, 25.6vw, 491px);
}

.brand img,
.anniversary,
.devices img,
.trusted img {
  display: block;
  max-width: 100%;
  height: auto;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1vw, 19px);
  padding-top: 1px;
}

.signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(126px, 7.7vw, 148px);
  height: auto;
  padding: 9px 0px;
  border-radius: 6px;
  background: linear-gradient(100deg, #3424df 0%, #6225d7 40%, #ed008f 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(53, 36, 223, 0.12);
}

.anniversary {
  width: clamp(145px, 9.32vw, 179px);
  border-radius: 6px;
  width: 100px;
}

.content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 164px);
  padding: 45px;
}

.copy {
  position: relative;
  z-index: 2;
  width: min(50.7vw, 974px);
}

.eyebrow {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.9vw, 30px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.tm-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;          /* Adjust size as needed */
  height: 20px;
  border: 1px solid #000; /* The circle border */
  border-radius: 50%;   /* Makes it a circle */
  font-size: 10px;      /* Smaller text size */
  font-weight: bold;
  vertical-align: middle;
  margin: -19px 0px 0px 0px;
}

h1 {
  margin: 0 0 clamp(30px, 2.86vw, 50px);
  font-family: var(--font-heading);
  font-size: clamp(42px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  background: #015496;
background: linear-gradient(43deg, rgba(1, 84, 150, 1) 0%, rgba(247, 2, 149, 1) 52%, rgba(0, 166, 80, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 4px;
  color: var(--magenta);
  font-family: var(--font-heading);
  font-size: clamp(30px, 2.35vw, 40px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
}

.sublead {
  margin: 0 0 22px;
  color: #455A64;
  font-size: clamp(20px, 1.56vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.statement {
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.82vw, 23px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.statement strong {
  font-weight: 900;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: clamp(38px, 2.92vw, 56px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(218px, 13vw, 250px);
  height: clamp(54px, 3.13vw, 60px);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.04vw, 20px);
  font-weight: 900;
  letter-spacing: 0;
}

.btn-primary {
  background: linear-gradient(100deg, #3424df 0%, #6a24d6 45%, #ed008f 100%);
}

.btn-secondary {
  background: linear-gradient(100deg, #38c775 0%, #2f8f95 50%, #3424df 100%);
}

.trusted {
  margin-top: clamp(136px, 3vw, 57px);
  max-width: 73vw;
}

.trusted-title {
  display: flex;
  align-items: center;
  gap: clamp(24px, 1.35vw, 26px);
  margin-bottom: 20px;
}

.trusted-title span {
  width: 8px;
  height: 64px;
  background: #42d080;
  flex: 0 0 auto;
}

.trusted-title p {
  margin: 0;
  font-size: clamp(28px, 2.03vw, 39px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.trusted-title strong {
  color: var(--magenta);
  font-weight: 900;
  font-family: var(--font-heading);
  text-shadow: 0 0 0 var(--magenta);
}

.logo-marquee {
  width: min(70.5vw, 1353px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
  will-change: transform;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  display: block;
  width: 100px;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.devices {
  position: absolute;
  right: 0;
  top: clamp(44px, 2.3vw, 44px);
  z-index: 1;
  width: min(50.21vw, 964px);
  pointer-events: none;
}

.copyright {
  position: absolute;
  right: clamp(24px, 1.66vw, 32px);
  bottom: clamp(55px, 5.8vw, 58px);
  z-index: 4;
  color: #050505;
  text-align: right;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.1vw, 21px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.copyright p {
  margin: 0;
}

.whatsapp-link {
  position: fixed;
  left: 24px;
  bottom: 50px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
}

.whatsapp-link:focus-visible {
  outline: 3px solid rgba(48, 38, 216, 0.35);
  outline-offset: 4px;
}

.whatsapp-link svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 1240px) {
  .content {
    padding-top: 44px;
  }

  .copy {
    width: min(55vw, 680px);
  }

  .devices {
    width: 48vw;
    top: 120px;
  }

  .trusted {
    max-width: 96vw;
  }

  .logo-marquee,
  .logo-track img {
    width: min(86vw, 980px);
  }

  .copyright {
    bottom: 28px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .topbar {
    align-items: center;
  }

  .content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 160px;
  }

  .copy {
    width: 100%;
  }

  .devices {
    position: relative;
    top: auto;
    right: auto;
    align-self: flex-end;
    width: min(92vw, 760px);
    order: 2;
    margin-top: -8px;
  }

  .trusted {
    max-width: 100%;
  }

  .logo-marquee,
  .logo-track img {
    width: 100%;
  }

  .copyright {
    right: 24px;
    bottom: 26px;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .top-actions {
    width: 100%;
    justify-content: space-between;
  }

  .content {
    padding-top: 38px;
    padding-bottom: 150px;
  }

  .buttons {
    gap: 14px;
  }

  .btn {
    width: min(100%, 250px);
  }

  .trusted-title {
    gap: 16px;
  }

  .trusted-title span {
    height: 52px;
  }

  .trusted-title p {
    white-space: normal;
    line-height: 1.15;
  }
}

@media (max-width: 520px) {
  .topbar,
  .content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    width: min(100%, 320px);
  }

  .top-actions {
    align-items: stretch;
  }

  .signin {
    width: 132px;
  }

  .anniversary {
    width: 138px;
    object-fit: contain;
  }

  .eyebrow {
    font-size: 33px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 34px;
  }

  .lead {
    font-size: 31px;
  }

  .sublead {
    font-size: 20px;
  }

  .statement {
    font-size: 23px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .devices {
    width: 118vw;
    margin-right: -34vw;
  }

  .logo-marquee,
  .logo-track img {
    width: 180vw;
    max-width: none;
  }

  .copyright {
    left: 18px;
    right: 18px;
    text-align: right;
    font-size: 16px;
  }

  .whatsapp-link {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-link svg {
    width: 30px;
    height: 30px;
  }
}
