/* ============================================================
   CARGOTEER — TERMS OF USE PAGE
   ============================================================ */

.terms-page {
  background: var(--white);
}

.terms-page .navbar,
.terms-page .feature-btn {
  opacity: 1;
  animation: none;
}

/* ── Hero ─────────────────────────────────────────────────── */
.tou-hero {
  position: relative;
  padding: clamp(140px, 18vw, 180px) 24px clamp(64px, 8vw, 88px);
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.tou-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tou-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 80% 75%, rgba(253, 82, 2, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 15% 25%, rgba(253, 82, 2, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #000a07 0%, var(--black) 100%);
}

.tou-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
}

.tou-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.tou-hero-eyebrow {
  color: var(--orange);
  margin-bottom: 20px;
}

.tou-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.tou-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Content ──────────────────────────────────────────────── */
.tou-content {
  padding: clamp(64px, 8vw, 96px) 24px clamp(72px, 9vw, 100px);
  background: var(--white);
}

.tou-content-inner {
  max-width: 760px;
  margin: 0 auto;
}

.tou-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-dark);
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 15, 10, 0.08);
}

.tou-section {
  margin-bottom: 40px;
}

.tou-section:last-of-type {
  margin-bottom: 0;
}

.tou-section-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.tou-section-num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.tou-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tou-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

.tou-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.tou-list a {
  color: var(--orange);
  text-decoration: underline;
}

/* ── CTA ──────────────────────────────────────────────────── */
.tou-cta {
  padding: clamp(64px, 8vw, 88px) 24px;
  background: var(--gray-light);
  text-align: center;
}

.tou-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.tou-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 640px) {
  .tou-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tou-cta-actions .feature-btn {
    justify-content: center;
  }
}
