:root {
  --tt-navy: #0B0B5C;
  --tt-navy-deep: #07073E;
  --tt-green: #2EE673;
  --tt-green-deep: #17B559;
  --tt-ink: #0F1420;
  --tt-muted: #5B6472;
  --tt-bg: #FFFFFF;
  --tt-bg-tint: #F3FBF6;
  --tt-line: #E3E9E4;
}

@font-face {
  font-family: 'Bebas Neue';
  src: local('Bebas Neue');
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--tt-ink);
  background: var(--tt-bg);
}

.font-display {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

/* Signature element: the broken-ring motif from the logo, used as a
   recurring structural device (dividers, hero backdrop, hover accents) */
.tt-ring {
  position: relative;
}

.tt-arc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

@keyframes tt-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes tt-spin-slow-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.tt-arc-outer {
  animation: tt-spin-slow 60s linear infinite;
  transform-origin: center;
}

.tt-arc-inner {
  animation: tt-spin-slow-reverse 80s linear infinite;
  transform-origin: center;
}

@media (prefers-reduced-motion: reduce) {
  .tt-arc-outer, .tt-arc-inner {
    animation: none;
  }
}

.tt-card {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.tt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11, 11, 92, 0.25);
  border-color: var(--tt-green);
}

.tt-step-line {
  background: repeating-linear-gradient(
    to bottom,
    var(--tt-green) 0,
    var(--tt-green) 6px,
    transparent 6px,
    transparent 14px
  );
}

.tt-focus:focus-visible {
  outline: 3px solid var(--tt-green);
  outline-offset: 3px;
  border-radius: 4px;
}
