/* ==========================================================================
   VAAS · Trust Center
   Página portada para a stack React do site. Reusa tokens de
   colors_and_type.css e o Header/Footer/Modal/FinalCTA de Shared/FooterCTA.
   ========================================================================== */

.tc-page { background: var(--bg); }

@keyframes tc-pulse {
  0%   { transform: scale(.6); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.tc-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* ---------- Eyebrow ---------- */
.tc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--vaas-blue);
}
.tc-eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}

.tc-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: var(--tr-tight);
  line-height: 1.1;
  margin: 16px 0 0;
  color: var(--fg);
}
.tc-sec__desc {
  color: var(--fg-muted);
  font-size: 16px;
  margin: 13px 0 0;
  line-height: 1.6;
  max-width: 700px;
}

/* ---------- Section rhythm ---------- */
.tc-sec {
  padding: 78px 0;
  border-bottom: 1px solid #ededf1;
}
.tc-sec--gray { background: var(--vaas-gray-50); }
.tc-sec__head { max-width: 700px; margin-bottom: 38px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.tc-hero {
  position: relative;
  overflow: hidden;
  background: var(--vaas-blue-deep);
  color: #fff;
  background-image:
    radial-gradient(620px 420px at 80% -10%, rgba(4,52,244,.55), transparent 68%),
    radial-gradient(520px 380px at 8% 118%, rgba(125,147,255,.18), transparent 70%);
}
.tc-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 50% 28%, #000, transparent 76%);
  mask-image: radial-gradient(circle at 50% 28%, #000, transparent 76%);
}
.tc-hero__inner {
  position: relative;
  padding: calc(86px + 64px) 0 78px;
  max-width: 840px;
}
.tc-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: #dfe3f7;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 13px 6px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}
.tc-status__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vaas-lime);
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}
.tc-status__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--vaas-lime);
  opacity: .4;
  animation: tc-pulse 2.4s ease-out infinite;
}
.tc-status a {
  color: var(--vaas-lime);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(205,255,41,.45);
  padding-bottom: 1px;
  transition: border-color .14s;
}
.tc-status a:hover { border-bottom-color: var(--vaas-lime); }

.tc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.8vw, 62px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.04;
  margin: 0;
}
.tc-hero__title em { color: #7d93ff; font-style: normal; }
.tc-hero__lede {
  font-size: clamp(16px, 2.1vw, 19px);
  color: #c4c9e6;
  margin: 22px 0 0;
  max-width: 620px;
  line-height: 1.6;
}
.tc-hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: transform .16s, background .16s, border-color .16s;
}
.tc-btn--lime { background: var(--vaas-lime); color: var(--vaas-black); }
.tc-btn--lime:hover { background: #d7ff52; transform: translateY(-1px); }
.tc-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.20);
}
.tc-btn--ghost:hover { border-color: rgba(255,255,255,.45); }
.tc-btn--blue { background: var(--vaas-blue); color: #fff; }
.tc-btn--blue:hover { background: var(--vaas-blue-hover); transform: translateY(-1px); }

.tc-btn--status { gap: 9px; }
.tc-btn__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1f9d57;
  box-shadow: 0 0 0 0 rgba(31,157,87,.5);
}
@media (prefers-reduced-motion: no-preference) {
  .tc-btn__dot { animation: tc-btn-pulse 2.4s ease-out infinite; }
  @keyframes tc-btn-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(31,157,87,.5); }
    70%  { box-shadow: 0 0 0 7px rgba(31,157,87,0); }
    100% { box-shadow: 0 0 0 0 rgba(31,157,87,0); }
  }
}

.tc-hero__metrics {
  display: flex;
  gap: 48px;
  margin-top: 54px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.tc-metric__n {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 26px;
  color: #fff;
  letter-spacing: -.02em;
}
.tc-metric__l {
  font-size: 12px;
  color: #9ea7d6;
  margin-top: 4px;
}

/* ==========================================================================
   Overview
   ========================================================================== */
.tc-overview__body {
  font-size: clamp(17px, 2.3vw, 21px);
  line-height: 1.6;
  color: var(--vaas-gray-700);
  max-width: 820px;
  margin: 22px 0 0;
}

/* ==========================================================================
   Compliance / Certifications
   ========================================================================== */
.tc-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.tc-cert {
  background: #fff;
  border: 1px solid #e6e7ec;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.tc-cert:hover {
  border-color: var(--vaas-blue-20);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tc-cert__icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--vaas-blue-10);
  color: var(--vaas-blue);
  flex-shrink: 0;
}
.tc-cert__icon svg { width: 22px; height: 22px; display: block; }
.tc-cert__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: var(--tr-snug);
}
.tc-cert__desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.5;
}
.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  width: fit-content;
  background: var(--vaas-lime);
  color: #33420a;
}
.tc-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: #5c7a00; }

.tc-fw {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.tc-fw__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.tc-chip {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--vaas-gray-700);
  background: #fff;
  border: 1px solid #e6e7ec;
  padding: 5px 11px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Documents (under NDA)
   ========================================================================== */
.tc-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.tc-doc {
  background: #fff;
  border: 1px solid #e6e7ec;
  border-radius: var(--radius-md);
  padding: 24px;
}
.tc-doc__h {
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ededf1;
  margin: 0 0 4px;
}
.tc-doc__h svg { width: 17px; height: 17px; color: var(--vaas-blue); flex-shrink: 0; display: block; }
.tc-doc__list { list-style: none; margin: 0; padding: 0; }
.tc-doc__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #ededf1;
  font-size: 13.5px;
}
.tc-doc__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.tc-restricted {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.tc-restricted svg { width: 12px; height: 12px; display: block; }

/* ==========================================================================
   Controls
   ========================================================================== */
.tc-ctl-count {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.tc-ctl-count__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 76px);
  line-height: .85;
  color: var(--vaas-blue-deep);
  letter-spacing: -.04em;
}
.tc-ctl-count__l {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 320px;
  line-height: 1.4;
}
.tc-ctl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: #e6e7ec;
  border: 1px solid #e6e7ec;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.tc-ctl {
  background: #fff;
  padding: 24px 24px 26px;
}
.tc-ctl__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 10px;
}
.tc-ctl__title {
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
}
.tc-ctl__n {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--vaas-blue);
  background: var(--vaas-blue-10);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.tc-ctl__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.tc-ctl__list li {
  font-size: 13.5px;
  color: var(--vaas-gray-700);
  line-height: 1.45;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tc-ctl__list svg {
  width: 15px; height: 15px;
  color: var(--vaas-blue);
  flex-shrink: 0;
  margin-top: 2px;
  display: block;
}

/* ==========================================================================
   Updates / Timeline
   ========================================================================== */
.tc-timeline {
  position: relative;
  max-width: 760px;
  padding-left: 30px;
  border-left: 2px solid #e6e7ec;
  margin-left: 5px;
}
.tc-tl {
  position: relative;
  padding-bottom: 30px;
}
.tc-tl:last-child { padding-bottom: 0; }
.tc-tl__dot {
  position: absolute;
  left: -37px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--vaas-gray-50);
  border: 2.5px solid #7d93ff;
}
.tc-tl--now .tc-tl__dot { background: var(--vaas-blue); border-color: var(--vaas-blue); }
.tc-tl__date {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--vaas-blue);
  text-transform: uppercase;
}
.tc-tl__t {
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  margin: 5px 0 0;
}
.tc-tl__b {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 5px 0 0;
  line-height: 1.55;
}

/* ==========================================================================
   Request access
   ========================================================================== */
.tc-request { padding: 78px 0; background: var(--bg); border-bottom: 1px solid #ededf1; }
.tc-request__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}
.tc-request__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: var(--tr-tight);
  line-height: 1.1;
  margin: 16px 0 0;
  color: var(--fg);
}
.tc-request__lede {
  color: var(--fg-muted);
  font-size: 16px;
  margin: 16px 0 0;
  line-height: 1.6;
  max-width: 440px;
}
.tc-request__assur {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tc-assur {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--vaas-gray-700);
}
.tc-assur svg { width: 17px; height: 17px; color: var(--vaas-blue); flex-shrink: 0; display: block; }

.tc-form {
  background: #fff;
  border: 1px solid #e6e7ec;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.tc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tc-field { margin-bottom: 16px; }
.tc-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--fg-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.tc-field input,
.tc-field select,
.tc-field textarea {
  width: 100%;
  background: var(--vaas-gray-50);
  border: 1px solid #e6e7ec;
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 14px;
}
.tc-field input:focus,
.tc-field select:focus,
.tc-field textarea:focus {
  outline: none;
  border-color: var(--vaas-blue);
  box-shadow: var(--shadow-focus);
}
.tc-field textarea { resize: vertical; min-height: 74px; }
.tc-form__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 0;
  background: var(--vaas-blue);
  color: #fff;
  margin-top: 6px;
  transition: background .16s, transform .16s;
}
.tc-form__submit:hover { background: var(--vaas-blue-hover); transform: translateY(-1px); }
.tc-form__note {
  font-size: 11.5px;
  color: var(--fg-muted);
  margin: 14px 0 0;
  text-align: center;
  line-height: 1.5;
}
.tc-form__ok { text-align: center; padding: 40px 16px; }
.tc-form__ok svg { width: 46px; height: 46px; color: var(--vaas-blue); margin: 0 auto 14px; display: block; }
.tc-form__ok h3 {
  font-size: 19px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}
.tc-form__ok p { color: var(--fg-muted); font-size: 14px; margin: 10px 0 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .tc-request__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .tc-sec, .tc-request { padding: 56px 0; }
  .tc-hero__inner { padding: calc(64px + 56px) 0 56px; }
  .tc-hero__metrics { gap: 28px; }
  .tc-form__row { grid-template-columns: 1fr; }
}
