/* ===== TROVO SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Instrument+Sans:wght@400;500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: #f7f5f0;
  color: #1a1a18;
  width: 100%;
}

/* NAV */
.t-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,24,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
.t-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; color: #1a1a18; letter-spacing: -0.5px; text-decoration: none; }
.t-logo span { color: #3b5bdb; }
.t-nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.t-nav-links a { font-size: 13px; font-weight: 500; color: rgba(26,26,24,0.45); text-decoration: none; transition: color 0.15s; }
.t-nav-links a:hover, .t-nav-links a.active { color: #1a1a18; }
.t-btn-nav {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  background: #1a1a18; color: #f7f5f0;
  border: none; padding: 0.55rem 1.25rem;
  border-radius: 100px; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none; display: inline-block;
}
.t-btn-nav:hover { background: #3b5bdb; transform: translateY(-1px); }

/* BUTTONS */
.t-btn-primary {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  background: #3b5bdb; color: #fff;
  border: none; padding: 0.8rem 1.75rem;
  border-radius: 100px; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none; display: inline-block;
}
.t-btn-primary:hover { background: #2f4ac7; transform: translateY(-1px); }

.t-btn-outline {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  background: transparent; color: #3b5bdb;
  border: 1.5px solid #3b5bdb; padding: 0.75rem 1.75rem;
  border-radius: 100px; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none; display: inline-block;
}
.t-btn-outline:hover { background: #eef1ff; transform: translateY(-1px); }

.t-btn-white {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  background: #fff; color: #1a1a18;
  border: none; padding: 0.8rem 1.75rem;
  border-radius: 100px; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none; display: inline-block;
}
.t-btn-white:hover { background: #f0f2ff; transform: translateY(-1px); }

/* SECTION LABELS */
.t-section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #3b5bdb; margin-bottom: 0.6rem; }
.t-section-h2 { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; letter-spacing: -0.75px; color: #1a1a18; margin-bottom: 1rem; line-height: 1.15; }
.t-section-sub { font-size: 15px; line-height: 1.7; color: rgba(26,26,24,0.5); margin-bottom: 2.5rem; max-width: 520px; }

/* PILL BADGE */
.t-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #eef1ff; border: 1px solid #c5cfff;
  color: #3b5bdb; font-size: 11px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.t-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #3b5bdb; }

/* FORM ELEMENTS */
.t-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(26,26,24,0.38); margin-bottom: 0.3rem; margin-top: 0.85rem; }
.t-label:first-of-type { margin-top: 0; }
.t-input, .t-select, .t-textarea {
  width: 100%; background: #f7f5f0;
  border: 1px solid rgba(26,26,24,0.1); border-radius: 10px;
  color: #1a1a18; font-family: 'Instrument Sans', sans-serif;
  font-size: 13px; padding: 0.65rem 0.85rem; outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.t-input:focus, .t-select:focus, .t-textarea:focus { border-color: #3b5bdb; background: #fff; }
.t-select option { background: #fff; }
.t-textarea { resize: vertical; min-height: 100px; }

/* DARK STATS BAND */
.t-stats-wrap { background: #1a1a18; }
.t-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 960px; margin: 0 auto; }
.t-stat { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.t-stat:last-child { border-right: none; }
.t-stat-num { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 0.5rem; }
.t-stat-num span { color: #818cf8; }
.t-stat-label { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* PAGE HERO (interior pages) */
.t-page-hero {
  position: relative; overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(26,26,24,0.07);
  padding: 5rem 2.5rem 4rem;
  text-align: center;
}
.t-page-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(59,91,219,0.1) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 80%);
  pointer-events: none;
}
.t-page-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.t-page-h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 44px; line-height: 1.1; letter-spacing: -1px; color: #1a1a18; margin-bottom: 1.25rem; }
.t-page-h1 span { color: #3b5bdb; }
.t-page-sub { font-size: 16px; line-height: 1.7; color: rgba(26,26,24,0.5); }

/* CTA BAND */
.t-cta-band {
  position: relative; overflow: hidden;
  background: #3b5bdb; padding: 4rem 2.5rem;
  text-align: center;
}
.t-cta-band-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 24px 24px; pointer-events: none;
}
.t-cta-band h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -1px; color: #fff; margin-bottom: 0.75rem; position: relative; }
.t-cta-band p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 2rem; position: relative; }
.t-cta-band-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }

/* AREAS BAND */
.t-areas { background: #1a1a18; padding: 1.75rem 2.5rem; position: relative; overflow: hidden; }
.t-areas::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 24px); pointer-events: none; }
.t-areas-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; position: relative; }
.t-areas-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.3); white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; }
.t-area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.t-area-tag { font-size: 11px; font-weight: 500; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); padding: 0.3rem 0.75rem; border-radius: 100px; }

/* FOOTER */
.t-footer { border-top: 1px solid rgba(26,26,24,0.07); background: #f7f5f0; }
.t-footer-inner { max-width: 960px; margin: 0 auto; padding: 2.5rem 2.5rem 2rem; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; }
.t-footer-brand .t-logo { display: block; margin-bottom: 0.75rem; }
.t-footer-brand p { font-size: 12px; color: rgba(26,26,24,0.4); line-height: 1.6; max-width: 180px; }
.t-footer-col h4 { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: #1a1a18; margin-bottom: 0.85rem; letter-spacing: 0.02em; }
.t-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.t-footer-col ul a { font-size: 13px; color: rgba(26,26,24,0.45); text-decoration: none; transition: color 0.15s; }
.t-footer-col ul a:hover { color: #1a1a18; }
.t-footer-bottom { border-top: 1px solid rgba(26,26,24,0.06); padding: 1.25rem 2.5rem; display: flex; justify-content: space-between; align-items: center; max-width: 960px; margin: 0 auto; }
.t-footer-copy { font-size: 11px; color: rgba(26,26,24,0.3); }
.t-footer-email { font-size: 12px; color: #3b5bdb; text-decoration: none; }
.t-footer-email:hover { text-decoration: underline; }

/* CONTENT CONTAINER */
.t-content { max-width: 960px; margin: 0 auto; padding: 4rem 2.5rem; }

/* CARD */
.t-card {
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(26,26,24,0.07); padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(26,26,24,0.05);
}

/* RESPONSIVE */
@media (max-width: 720px) {
  .t-nav-links { display: none; }
  .t-page-h1 { font-size: 36px; }
  .t-section-h2 { font-size: 28px; }
  .t-footer-inner { grid-template-columns: 1fr 1fr; }
  .t-stats { grid-template-columns: 1fr; }
  .t-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .t-stat:last-child { border-bottom: none; }
}

/* Font rendering */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* Nav action group — keeps Sign in + Get matched together */
.t-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.t-nav-signin {
  font-size: 13px;
  font-weight: 500;
  color: rgba(26,26,24,0.45);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 100px;
  transition: color 0.15s, background 0.15s;
}
.t-nav-signin:hover { color: #1a1a18; background: rgba(26,26,24,0.05); }
