/* TERMS PAGE */

.terms-page{
  background:#fff;
  color:#0b1a37;
}

/* offset under sticky header */
:root{
  --legal-sticky-top: 96px;
}

/* ---------- HERO ---------- */
.terms-hero{
  padding: 84px 0 34px;
}

.terms-hero__grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items:start;
}

.terms-hero__title{
  margin:0;
  color:#0b1a37;
}

.terms-hero__subtitle{
  margin: 14px 0 0;
  max-width: 520px;
}

.terms-hero__actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* mock */
.terms-mock{
  max-width: 760px;
  margin-left:auto;
}

.terms-mock__frame{
  border: 3px solid rgba(12,22,48,0.14);
  border-radius: 20px;
  overflow:hidden;
  background:#fff;
}

.terms-mock__img{
  width:100%;
  height:auto;
  display:block;
}

.terms-mock__ph{
  width:100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(45deg, rgba(12,22,48,0.06) 25%, transparent 25%, transparent 75%, rgba(12,22,48,0.06) 75%, rgba(12,22,48,0.06)),
    linear-gradient(45deg, rgba(12,22,48,0.06) 25%, transparent 25%, transparent 75%, rgba(12,22,48,0.06) 75%, rgba(12,22,48,0.06));
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

.terms-mock__controls{
  display:flex;
  justify-content:center;
  margin-top: 14px;
}

.terms-mock__pill{
  display:inline-flex;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246,248,252,1);
  border: 1px solid rgba(12,22,48,0.12);
}

.terms-mock__dot{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(12,22,48,0.16);
  background:#fff;
}

.terms-mock__dot--blue{
  background:#1A83D4;
  border-color:#1A83D4;
}

/* hero foot note */
.terms-hero__foot{
  margin-top: 28px;
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items:start;
}

/* ---------- LAYOUT ---------- */
.terms-layout{
  padding: 26px 0 86px;
}

/* ---------- CONTENT ---------- */
.terms-section{
  padding: 44px 0;
  scroll-margin-top: 110px;
}

@media (min-width: 981px){
  .terms-content .terms-section .terms-h2{
    text-align: left;
  }
}


.terms-p{
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.55;
  max-width: 760px;
}

.terms-link{
  color:#1A83D4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* bullets (acceptable use) */
.terms-bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(11,26,55,0.68);
  font-size: 12px;
  line-height: 1.55;
  max-width: 760px;
}

.terms-bullets li{
  margin: 6px 0;
}

.terms-bullets li::marker{
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  :root{ --legal-sticky-top: 84px; }

  .terms-hero{
    padding: 62px 0 26px;
  }

  .terms-hero__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .terms-mock{
    margin-left: 0;
    max-width: 100%;
  }

  .terms-hero__foot{
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 16px;
  }

  .terms-layout{
    padding: 16px 0 70px;
  }

  .terms-section{
    padding: 32px 0;
  }
}

body { background: #fff; }

