/* =============================================================
   TRYTRACK MARKETING.CSS — v3
   World-class public site. Built to convert paying clients.
   ============================================================= */

/* ── Body ──────────────────────────────────────────────────── */
.tt-body {
  overflow-x: hidden;
  background: #040c18;
}

/* ── Smooth reveal animation ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); }
  50%       { box-shadow: 0 0 0 8px rgba(56,189,248,0.12); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.animate-fade-up  { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.animate-fade-in  { animation: fadeIn 0.6s ease both; }
.animate-scale-in { animation: scaleIn 0.55s cubic-bezier(0.22,1,0.36,1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ── Navigation ─────────────────────────────────────────────── */
.tt-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9000;
  transition: top 0.3s ease;
}

.tt-nav-container {
  width: min(1320px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(4,12,24,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.40);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.tt-nav-container.scrolled {
  background: rgba(4,12,24,0.96);
  box-shadow: 0 4px 60px rgba(0,0,0,0.55);
}

.tt-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.tt-logo { width: 130px; height: auto; }

.tt-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tt-nav a {
  padding: 8px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.tt-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.tt-nav a.active { color: #fff; background: rgba(56,189,248,0.10); }

.tt-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Marketing buttons — cleaner than app buttons */
.tt-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 6px 24px rgba(37,99,235,0.30);
  white-space: nowrap;
}
.tt-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.40);
  opacity: 0.95;
}

.tt-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.tt-btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.26);
}

/* Mobile hamburger */
.tt-mobile-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.tt-mobile-toggle:hover { background: rgba(255,255,255,0.10); color: #fff; }

/* Mobile drawer */
.tt-mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
  margin-top: 8px;
}
.tt-mobile-drawer.open { display: flex; }

.tt-mobile-drawer a {
  padding: 12px 14px;
  border-radius: 11px;
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.tt-mobile-drawer a:hover { background: rgba(255,255,255,0.07); color: #fff; }

.tt-mobile-drawer-actions {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.tt-mobile-drawer-actions > * { width: 100%; justify-content: center; text-align: center; }

/* ── Badge pill ──────────────────────────────────────────────── */
.tt-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.28);
  background: rgba(56,189,248,0.10);
  color: #7dd3fc;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tt-badge .badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  animation: live-pulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.tt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tt-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Multi-layer overlay — darkens photo, adds depth gradient */
.tt-hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(4,12,24,0.97) 0%,
      rgba(4,12,24,0.90) 38%,
      rgba(4,12,24,0.55) 65%,
      rgba(4,12,24,0.85) 100%),
    linear-gradient(180deg, rgba(4,12,24,0.0) 60%, rgba(4,12,24,1) 100%);
}

.tt-hero-content {
  position: relative; z-index: 2;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

.tt-hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}

.tt-hero-left h1 {
  color: #fff;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0 0 22px;
}

/* Gradient text on key word */
.tt-hero-left h1 .gradient-word {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-hero-left p {
  max-width: 580px;
  color: rgba(255,255,255,0.66);
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 36px;
}

.tt-hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Social proof strip under CTAs */
.tt-hero-proof {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}

.tt-hero-proof-avatars {
  display: flex; align-items: center;
}

.tt-hero-proof-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(4,12,24,0.95);
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.tt-hero-proof-avatars span:first-child { margin-left: 0; }

.tt-hero-proof p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.4;
}
.tt-hero-proof strong { color: rgba(255,255,255,0.85); }

/* ── Hero live dashboard card ────────────────────────────────── */
.tt-hero-card {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,20,40,0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 32px 88px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(255,255,255,0.05);
  animation: float 6s ease-in-out infinite;
}

.tt-hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(56,189,248,0.20), rgba(129,140,248,0.12), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.tt-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}

.tt-card-title { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }

.tt-live-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.24);
}
.tt-live-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: live-pulse 2s ease-in-out infinite; }
.tt-live-badge span { font-size: 10px; font-weight: 800; color: #4ade80; text-transform: uppercase; letter-spacing: 0.08em; }

.tt-readiness-ring {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 20px;
}

.tt-ring-svg { width: 120px; height: 120px; }
.tt-ring-track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 10; }
.tt-ring-progress {
  fill: none; stroke: url(#ringGradient); stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 40;
  transform: rotate(-90deg); transform-origin: 60px 60px;
}

.tt-ring-label { text-align: center; margin-top: -8px; }
.tt-ring-label strong { display: block; font-size: 28px; font-weight: 950; color: #fff; letter-spacing: -0.04em; }
.tt-ring-label span { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

.tt-mini-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 18px;
}

.tt-mini-stat {
  padding: 12px 10px;
  border-radius: 13px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.tt-mini-stat span { display: block; font-size: 9px; font-weight: 800; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.tt-mini-stat strong { font-size: 20px; font-weight: 950; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.tt-mini-stat.green strong { color: #4ade80; }
.tt-mini-stat.amber strong { color: #fbbf24; }
.tt-mini-stat.red strong   { color: #f87171; }

/* Player risk row inside card */
.tt-risk-list { display: flex; flex-direction: column; gap: 8px; }

.tt-risk-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 11px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.tt-risk-avatar {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.tt-risk-name { flex: 1; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); }
.tt-risk-bar-wrap { flex: 1; }
.tt-risk-bar {
  height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.tt-risk-bar-fill { height: 100%; border-radius: 999px; }
.tt-risk-bar-fill.low  { width: 28%; background: #4ade80; }
.tt-risk-bar-fill.mid  { width: 58%; background: #fbbf24; }
.tt-risk-bar-fill.high { width: 82%; background: #f87171; }
.tt-risk-score { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.55); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   LOGO / TRUST BAR
   ══════════════════════════════════════════════════════════════ */
.tt-trust-bar {
  width: min(1320px, calc(100% - 40px));
  margin: 60px auto 100px;
  padding: 24px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.tt-trust-label {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.12em;
  flex-shrink: 0;
}

.tt-trust-items {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; flex: 1; justify-content: center;
}

.tt-trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  font-size: 13px; font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.tt-trust-item:hover { border-color: rgba(56,189,248,0.22); color: #fff; background: rgba(56,189,248,0.06); }
.tt-trust-item i { color: #38bdf8; font-size: 15px; }

/* ══════════════════════════════════════════════════════════════
   SECTION WRAPPER
   ══════════════════════════════════════════════════════════════ */
.tt-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 120px;
}

.tt-section-header { max-width: 720px; margin-bottom: 52px; }
.tt-section-header .tt-badge { margin-bottom: 20px; }
.tt-section-header h2 {
  color: #fff;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 950;
  line-height: 0.97;
  letter-spacing: -0.05em;
  margin: 0 0 16px;
}
.tt-section-header p { color: rgba(255,255,255,0.60); font-size: 17px; line-height: 1.8; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   PLATFORM SHOWCASE
   ══════════════════════════════════════════════════════════════ */
.tt-showcase {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tt-showcase-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 40px 100px rgba(0,0,0,0.50);
}
.tt-showcase-image::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(56,189,248,0.06), transparent 60%);
  pointer-events: none;
}
.tt-showcase-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.tt-showcase-content .tt-badge { margin-bottom: 20px; }
.tt-showcase-content h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 950;
  line-height: 0.97;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
}
.tt-showcase-content p { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.85; margin: 0 0 28px; }

.tt-feature-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.tt-feature-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.78);
  transition: border-color 0.18s, color 0.18s;
}
.tt-feature-pill i { color: #38bdf8; font-size: 13px; }
.tt-feature-pill:hover { border-color: rgba(56,189,248,0.28); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════════════════ */
.tt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tt-feature-card {
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}
.tt-feature-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at top right, rgba(56,189,248,0.08), transparent 70%);
  pointer-events: none;
}
.tt-feature-card:hover {
  border-color: rgba(56,189,248,0.20);
  background: rgba(56,189,248,0.04);
  transform: translateY(-4px);
}

.tt-feature-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.20);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 19px; color: #38bdf8;
}

.tt-feature-card h3 { color: #fff; font-size: 17px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.02em; }
.tt-feature-card p  { color: rgba(255,255,255,0.58); font-size: 14px; line-height: 1.75; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   STATS BAND
   ══════════════════════════════════════════════════════════════ */
.tt-stats-band {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 120px;
  padding: 60px;
  border-radius: 28px;
  border: 1px solid rgba(56,189,248,0.14);
  background:
    radial-gradient(ellipse at top left, rgba(56,189,248,0.10), transparent 45%),
    radial-gradient(ellipse at bottom right, rgba(129,140,248,0.08), transparent 45%),
    rgba(10,20,42,0.80);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.tt-stats-band::before {
  content: '';
  position: absolute; top: -2px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.5), transparent);
}

.tt-stat-item { text-align: center; }
.tt-stat-item strong {
  display: block;
  font-size: clamp(36px,4vw,56px);
  font-weight: 950;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.70));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tt-stat-item span { font-size: 14px; color: rgba(255,255,255,0.50); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   ROLES SECTION
   ══════════════════════════════════════════════════════════════ */
.tt-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tt-role-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.22s, transform 0.22s;
  text-align: center;
}
.tt-role-card:hover { border-color: rgba(56,189,248,0.22); transform: translateY(-4px); }

.tt-role-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}
.tt-role-card:nth-child(1) .tt-role-icon { background: rgba(56,189,248,0.12); color: #38bdf8; }
.tt-role-card:nth-child(2) .tt-role-icon { background: rgba(34,197,94,0.12);  color: #4ade80; }
.tt-role-card:nth-child(3) .tt-role-icon { background: rgba(245,158,11,0.12); color: #fbbf24; }
.tt-role-card:nth-child(4) .tt-role-icon { background: rgba(167,139,250,0.12);color: #a78bfa; }

.tt-role-card h3 { color: #fff; font-size: 16px; font-weight: 800; margin: 0 0 10px; }
.tt-role-card p  { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   MOBILE SHOWCASE
   ══════════════════════════════════════════════════════════════ */
.tt-mobile-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════ */
.tt-cta {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 100px;
  padding: 80px 60px;
  border-radius: 32px;
  border: 1px solid rgba(56,189,248,0.18);
  background:
    radial-gradient(ellipse at top center, rgba(56,189,248,0.14), transparent 50%),
    rgba(8,18,38,0.85);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tt-cta::before {
  content: '';
  position: absolute; top: -1px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.6), transparent);
}
.tt-cta h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 950;
  letter-spacing: -0.05em;
  margin: 20px 0 16px;
  line-height: 0.97;
}
.tt-cta p { max-width: 640px; margin: 0 auto 36px; color: rgba(255,255,255,0.62); font-size: 17px; line-height: 1.8; }
.tt-cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════════ */
.tt-page-hero {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
}
.tt-page-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4,12,24,0.97) 0%, rgba(4,12,24,0.80) 50%, rgba(4,12,24,0.60) 100%),
    url("../assets/rugby-hero.jpeg") center/cover no-repeat;
  z-index: 0;
}
.tt-page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, #040c18);
  z-index: 1;
}
.tt-page-hero-content {
  position: relative; z-index: 2;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}
.tt-page-hero-content .tt-badge { margin-bottom: 20px; }
.tt-page-hero-content h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0 0 20px;
}
.tt-page-hero-content p { max-width: 640px; color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.85; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════ */
.tt-pricing-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 100px;
}

/* Toggle monthly/annual */
.tt-billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 48px;
}
.tt-billing-toggle span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); }
.tt-billing-toggle span.active { color: #fff; }

.tt-toggle-switch {
  position: relative;
  width: 52px; height: 28px;
  border-radius: 999px;
  background: rgba(56,189,248,0.20);
  border: 1px solid rgba(56,189,248,0.30);
  cursor: pointer;
  transition: background 0.2s;
}
.tt-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #38bdf8;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.tt-toggle-switch.annual::after { transform: translateX(24px); }
.tt-toggle-switch.annual { background: rgba(56,189,248,0.28); }

.tt-save-badge {
  padding: 3px 10px; border-radius: 999px;
  background: rgba(34,197,94,0.14); border: 1px solid rgba(34,197,94,0.24);
  color: #4ade80; font-size: 11px; font-weight: 800;
}

.tt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.tt-pricing-card {
  padding: 36px 30px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(10,20,40,0.60);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}
.tt-pricing-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.16); box-shadow: 0 30px 70px rgba(0,0,0,0.35); }

.tt-pricing-card.featured {
  border: 1.5px solid rgba(56,189,248,0.40);
  background:
    radial-gradient(ellipse at top, rgba(56,189,248,0.10), transparent 55%),
    rgba(10,20,40,0.80);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28), 0 0 0 1px rgba(56,189,248,0.08);
  transform: translateY(-10px);
}
.tt-pricing-card.featured:hover { transform: translateY(-16px); }

.tt-pricing-card::before {
  content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.tt-pricing-card.featured::before {
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.5), transparent);
}

.tt-plan-label {
  display: inline-block; margin-bottom: 14px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(56,189,248,0.10); border: 1px solid rgba(56,189,248,0.20);
  color: #7dd3fc; font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase;
}

.tt-pricing-card h3 { color: #fff; font-size: 22px; font-weight: 900; margin: 0 0 6px; letter-spacing: -0.02em; }

.tt-pricing-card .tt-price {
  font-size: 44px; font-weight: 950; color: #fff; letter-spacing: -0.05em;
  margin: 20px 0 4px; line-height: 1;
}
.tt-pricing-card .tt-price span { font-size: 16px; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 0; }

.tt-pricing-card .tt-annual-note { font-size: 13px; color: rgba(255,255,255,0.40); margin: 0 0 20px; font-weight: 600; }

.tt-pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 22px 0; }

.tt-pricing-card ul { display: flex; flex-direction: column; gap: 11px; margin: 0 0 30px; }
.tt-pricing-card li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 600; line-height: 1.4;
}
.tt-pricing-card li i { color: #4ade80; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.tt-pricing-card li.muted { color: rgba(255,255,255,0.35); }
.tt-pricing-card li.muted i { color: rgba(255,255,255,0.20); }

.tt-pricing-card .tt-btn-primary,
.tt-pricing-card .tt-btn-ghost { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.tt-contact-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 100px;
}
.tt-contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 44px;
  align-items: start;
}
.tt-contact-form { display: flex; flex-direction: column; }

.tt-form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.tt-form-row label { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 700; }

.tt-contact-form input,
.tt-contact-form select,
.tt-contact-form textarea {
  background: rgba(12,22,42,0.80);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff; border-radius: 13px; padding: 13px 16px;
  font-size: 14px; width: 100%;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.tt-contact-form input::placeholder,
.tt-contact-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.tt-contact-form input:focus,
.tt-contact-form select:focus,
.tt-contact-form textarea:focus {
  outline: none;
  border-color: rgba(56,189,248,0.50);
  background: rgba(12,22,42,0.95);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.10);
}
select { appearance: none; cursor: pointer; }
.tt-contact-form textarea { resize: vertical; min-height: 110px; }
.tt-contact-form .tt-btn-primary { align-self: flex-start; padding: 14px 32px; font-size: 15px; }

.tt-contact-aside {
  position: sticky; top: 110px;
  padding: 36px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(10,20,40,0.70);
}
.tt-contact-aside .tt-badge { margin-bottom: 18px; }
.tt-contact-aside h2 { color: #fff; font-size: 22px; font-weight: 900; margin: 0 0 14px; letter-spacing: -0.02em; }
.tt-contact-aside p  { color: rgba(255,255,255,0.60); font-size: 15px; line-height: 1.85; margin: 0 0 28px; }

.tt-contact-details { display: flex; flex-direction: column; gap: 16px; }
.tt-contact-detail { display: flex; flex-direction: column; gap: 4px; }
.tt-contact-detail strong { font-size: 10px; font-weight: 900; color: rgba(255,255,255,0.40); text-transform: uppercase; letter-spacing: 0.10em; }
.tt-contact-detail a, .tt-contact-detail span { color: #fff; font-size: 15px; font-weight: 600; }
.tt-contact-detail a:hover { color: #38bdf8; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.tt-footer {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 28px;
}
.tt-footer-inner {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
.tt-footer-brand {}
.tt-footer-logo { width: 130px; margin-bottom: 16px; }
.tt-footer-tagline { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; max-width: 280px; }
.tt-footer-socials { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.tt-footer-social {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.70); font-size: 15px;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.tt-footer-social:hover { border-color: rgba(56,189,248,0.30); color: #38bdf8; background: rgba(56,189,248,0.07); }

.tt-footer-col h5 { color: #fff; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.10em; margin: 0 0 18px; }
.tt-footer-col a { display: block; margin-bottom: 11px; color: rgba(255,255,255,0.52); font-size: 14px; font-weight: 500; text-decoration: none; transition: color 0.16s; }
.tt-footer-col a:hover { color: #fff; }

.tt-footer-bottom {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.30);
}
.tt-footer-bottom a { color: rgba(255,255,255,0.40); text-decoration: none; }
.tt-footer-bottom a:hover { color: rgba(255,255,255,0.70); }

/* ══════════════════════════════════════════════════════════════
   AUTH PAGES
   ══════════════════════════════════════════════════════════════ */
.auth-body {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse at top left, rgba(56,189,248,0.12), transparent 35%),
    radial-gradient(ellipse at bottom right, rgba(129,140,248,0.08), transparent 35%),
    #040c18;
}
.auth-container { width: 100%; max-width: 460px; margin: 0 auto; }

.auth-card {
  padding: 42px 38px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(8,18,38,0.95);
  box-shadow:
    0 32px 88px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.auth-brand { display: flex; justify-content: center; margin-bottom: 30px; }
.auth-logo  { width: 150px; height: auto; }

.auth-card h1 { font-size: 24px; font-weight: 900; text-align: center; margin-bottom: 8px; color: #fff; }
.auth-card > p { text-align: center; color: rgba(255,255,255,0.50); font-size: 14px; line-height: 1.65; margin-bottom: 28px; }

.auth-form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.auth-form-group label { color: rgba(255,255,255,0.70); font-size: 13px; font-weight: 700; }

.auth-card input,
.auth-card select {
  background: rgba(4,12,24,0.80);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff; border-radius: 13px; padding: 13px 16px;
  font-size: 14px; width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.auth-card input::placeholder { color: rgba(255,255,255,0.28); }
.auth-card input:focus,
.auth-card select:focus {
  outline: none;
  border-color: rgba(56,189,248,0.50);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.10);
}

.auth-submit-btn {
  width: 100%; padding: 14px; margin-top: 4px;
  border-radius: 13px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff; font-size: 15px; font-weight: 800;
  box-shadow: 0 8px 26px rgba(37,99,235,0.30);
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
}
.auth-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,99,235,0.40); }
.auth-submit-btn:disabled { opacity: 0.55; transform: none; }

.auth-divider { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); }
.auth-links-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.auth-link { font-size: 13px; font-weight: 600; text-decoration: none; transition: color 0.16s; }
.auth-link-muted   { color: rgba(255,255,255,0.40); }
.auth-link-primary { color: #38bdf8; }
.auth-link-muted:hover   { color: rgba(255,255,255,0.75); }
.auth-link-primary:hover { color: #7dd3fc; }

.invite-only-notice {
  margin-bottom: 16px; padding: 13px 16px; border-radius: 13px;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.20);
  color: #fcd34d; font-size: 13px; line-height: 1.6;
}
.director-fields { /* shown/hidden via JS */ }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .tt-hero-content,
  .tt-showcase,
  .tt-mobile-section { grid-template-columns: 1fr; }

  .tt-hero-card { max-width: 480px; }
  .tt-features-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-roles-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-stats-band { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .tt-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tt-pricing-card.featured { transform: none; }
  .tt-contact-layout { grid-template-columns: 1fr; }
  .tt-contact-aside { position: static; }
  .tt-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .tt-nav, .tt-nav-actions { display: none; }
  .tt-mobile-toggle { display: flex; }
  .tt-features-grid { grid-template-columns: 1fr; }
  .tt-roles-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-stats-band { padding: 36px 28px; }
  .tt-cta { padding: 48px 28px; }
  .tt-footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .tt-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 580px) {
  .tt-nav-container { width: calc(100% - 20px); padding: 10px 14px; }
  .tt-hero-left h1 { font-size: 40px; }
  .tt-roles-grid { grid-template-columns: 1fr; }
  .tt-stats-band { grid-template-columns: 1fr 1fr; padding: 28px 20px; }
  .tt-cta { padding: 36px 20px; }
  .auth-card { padding: 30px 22px; }
  .tt-contact-form .tt-btn-primary { width: 100%; justify-content: center; }
  .tt-hero-proof { flex-direction: column; align-items: flex-start; gap: 10px; }
}
