/* Tony for Students — landing styles.
   Ported from the standalone marketing build. The :root block below bakes the
   theme that <ThemeStyle> injected at runtime (accent="roxo", density="padrao");
   the rest of this file is the original tony-styles.css verbatim. */
:root {
  --t-grad: linear-gradient(135deg, #6D35F5 0%, #1F5BFF 100%);
  --t-accent: #6D35F5;
  --t-soft: #F6F2FF;
  --t-border: #E4D8FF;
  --t-deep: #3C1D8F;
  --t-glow: 0 18px 40px -16px rgba(109,53,245,.55);
  --t-radial: rgba(109,53,245,0.18);
  --t-radial2: rgba(31,91,255,0.08);
  --t-section-pad: 104px;
  --t-gap: 30px;
  --t-text: #171726;
  --t-text-secondary: #525260;
  --t-text-muted: #6F6F7A;
  --t-text-faint: #9A98A8;
  --t-border-default: #E6E3EF;
  --t-bg: #FAFAFC;
  --t-surface: #FFFFFF;
  --t-surface-2: #F7F7FA;
}

/* Tony — Landing styles (token vars are set inline via <ThemeStyle>) */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--t-bg, #FAFAFC);
  color: var(--t-text, #171726);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: rgba(109,53,245,.22); color: #171726; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- layout primitives ---- */
.t-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .t-container { padding: 0 18px; } }

.t-section { padding: var(--t-section-pad) 0; }
.t-section--tight { padding: calc(var(--t-section-pad) * 0.65) 0; }

.t-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-text-secondary);
  background: var(--t-surface);
  border: 1px solid var(--t-border-default);
  padding: 8px 14px;
  border-radius: 999px;
}
.t-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--t-accent);
  box-shadow: 0 0 0 3px var(--t-soft);
}

.t-h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 18px 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.t-h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin: 0 0 14px;
  text-wrap: balance;
}
.t-h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 650;
  letter-spacing: -0.012em;
  line-height: 1.18;
  margin: 0 0 10px;
}
.t-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--t-text-secondary);
  max-width: 56ch;
  margin: 0;
}
.t-body { font-size: 16px; line-height: 1.6; color: var(--t-text-secondary); }
.t-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t-text-muted);
}

.t-grad-text {
  background: var(--t-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---- buttons ---- */
.t-cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 52px; padding: 0 26px;
  border-radius: 999px;
  background: var(--t-grad);
  color: #fff !important;
  font-weight: 600; font-size: 15.5px;
  box-shadow: var(--t-glow);
  transition: transform 160ms, filter 160ms;
  border: 0; cursor: pointer; white-space: nowrap;
}
.t-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.t-cta:active { transform: scale(0.985); }
.t-cta:focus-visible { outline: none; box-shadow: var(--t-glow), 0 0 0 4px rgba(109,53,245,.22); }
.t-cta-invert {
  background: #fff !important;
  color: var(--t-deep) !important;
  box-shadow: none !important;
}
.t-cta-invert:hover { filter: brightness(0.97); }
.t-cta-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.t-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  height: 52px; padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--t-border-default);
  color: var(--t-text) !important;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: background 160ms, border-color 160ms;
}
.t-cta-secondary:hover { background: var(--t-surface-2); border-color: #D9D5E6; }

/* ---- cards ---- */
.t-card {
  background: var(--t-surface);
  border: 1px solid var(--t-border-default);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 1px 2px rgba(23,23,38,.04);
  transition: transform 220ms cubic-bezier(0.22,0.61,0.36,1), box-shadow 220ms, border-color 200ms;
}
.t-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -18px rgba(23,23,38,.18);
}
.t-card--brand {
  background: var(--t-soft);
  border-color: var(--t-border);
}

/* ---- reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
}
[data-reveal][data-reveal-on="1"] {
  opacity: 1;
  transform: translateY(0);
}

/* ---- header ---- */
.t-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(230,227,239,0.7);
}
.t-header-inner {
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.t-logo-wrap { display: flex; align-items: center; gap: 10px; }
.t-logo-img { height: 26px; width: auto; display: block; }
.t-nav { display: flex; align-items: center; gap: 28px; }
.t-nav a {
  font-size: 14.5px; font-weight: 500;
  color: var(--t-text-secondary);
  transition: color 160ms;
  position: relative;
}
.t-nav a:hover { color: var(--t-text); }
.t-actions { display: flex; align-items: center; gap: 10px; }
/* Language toggle — segmented pill matching the design system: surface fill,
   default border, JetBrains Mono labels, active segment filled with ink (accent
   stays reserved for the primary CTA). Height aligns with .t-cta-sm. */
.t-lang {
  display: inline-flex; align-items: center;
  height: 40px;
  padding: 3px;
  background: var(--t-surface);
  border: 1px solid var(--t-border-default);
  border-radius: 999px;
}
.t-lang a {
  display: inline-flex; align-items: center;
  height: 100%;
  padding: 0 12px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--t-text-muted);
  transition: color 160ms, background 160ms;
}
.t-lang a:hover { color: var(--t-text); }
.t-lang a.is-on { color: #fff; background: var(--t-text); }
.t-lang a.is-on:hover { color: #fff; }
@media (max-width: 880px) {
  .t-nav { display: none; }
}

/* ---- hero ---- */
.t-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: var(--t-section-pad);
  overflow: hidden;
}
.t-hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 8%, var(--t-radial), transparent 55%),
    radial-gradient(circle at 90% 35%, var(--t-radial2), transparent 60%),
    linear-gradient(135deg, #F6F2FF 0%, #EEF3FF 48%, #FFFFFF 100%);
  z-index: 0;
}
.t-hero-inner { position: relative; z-index: 1; }

.t-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}
.t-hero-grid > div { min-width: 0; }
@media (max-width: 980px) {
  .t-hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.t-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.t-hero-support {
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--t-text-muted);
}
.t-uc-module {
  margin-top: 28px;
}
.t-uc-module-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--t-text-muted);
  margin-bottom: 12px;
}
.t-uc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.t-uc-chip {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--t-text-secondary);
  background: var(--t-surface);
  border: 1px solid var(--t-border-default);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 240ms, border-color 240ms, box-shadow 240ms, transform 240ms, background 240ms;
}
.t-uc-chip:hover { border-color: var(--t-border); color: var(--t-deep); }
.t-uc-chip.is-active {
  color: #fff;
  background: var(--t-grad);
  border-color: transparent;
  box-shadow: var(--t-glow);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .t-uc-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .t-uc-chips::-webkit-scrollbar { display: none; }
  .t-uc-chip { flex: 0 0 auto; }
}

/* ---- live counter ---- */
.t-live-row {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: var(--t-surface);
  border: 1px solid var(--t-border-default);
  box-shadow: 0 1px 2px rgba(23,23,38,.04);
  font-size: 14px; color: var(--t-text-secondary);
  margin-top: 30px;
}
.t-live-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: #21B36B;
  position: relative;
}
.t-live-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 999px;
  background: rgba(33,179,107,.35);
  animation: tony-pulse 2.4s ease-out infinite;
}
@keyframes tony-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}
.t-live-num {
  font-variant-numeric: tabular-nums;
  font-weight: 700; color: var(--t-text);
  transition: color 220ms;
}
.t-live-num.bumped { color: #21B36B; }
.t-avatars { display: inline-flex; align-items: center; }
.t-avatars span {
  width: 22px; height: 22px; border-radius: 999px;
  display: inline-block;
  border: 2px solid #fff;
  margin-left: -6px;
}
.t-avatars span:first-child { margin-left: 0; }

/* ---- hero mock (product preview) ---- */
.t-mock {
  position: relative;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 80px -30px rgba(23,23,38,.32), 0 2px 6px rgba(23,23,38,.06);
  border: 1px solid #ECE8F5;
  overflow: hidden;
}
.t-mock-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #F0EDF7;
  background: #FBFAFE;
}
.t-mock-bar .t-mock-dots { display: inline-flex; gap: 6px; }
.t-mock-bar .t-mock-dots i {
  width: 9px; height: 9px; border-radius: 999px;
  background: #E2DEEC;
}
.t-mock-bar .t-mock-tab {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--t-text-muted);
  background: #fff;
  border: 1px solid #ECE8F5;
  padding: 4px 10px;
  border-radius: 999px;
}
.t-mock-body { padding: 22px; }
.t-mock-q-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--t-text-muted);
  text-transform: uppercase;
}
.t-mock-q {
  font-size: 18px; font-weight: 650;
  letter-spacing: -0.012em;
  color: var(--t-text);
  margin: 6px 0 14px;
  line-height: 1.3;
}
.t-mock-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px solid #ECE8F5;
  border-radius: 14px;
  margin-bottom: 8px;
  background: #fff;
  transition: background 200ms, border-color 200ms;
  font-size: 14.5px;
}
.t-mock-option .check {
  width: 18px; height: 18px; border-radius: 999px;
  border: 1.5px solid #D2CCE2;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-mock-option.is-selected {
  background: var(--t-soft);
  border-color: var(--t-border);
  color: var(--t-deep);
}
.t-mock-option.is-selected .check {
  background: var(--t-grad);
  border-color: transparent;
  color: #fff;
}
.t-mock-option.is-selected .check::after {
  content: ""; width: 8px; height: 8px;
  border-radius: 999px; background: #fff;
}
.t-mock-bar-meter {
  height: 6px; border-radius: 999px; background: #F0ECFA;
  overflow: hidden; margin-top: 10px;
}
.t-mock-bar-meter > i {
  display: block; height: 100%;
  background: var(--t-grad);
  border-radius: 999px;
  transition: width 600ms cubic-bezier(0.22,0.61,0.36,1);
}
.t-mock-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--t-text-muted);
  margin-top: 14px;
  font-variant-numeric: tabular-nums;
}

.t-mock-float {
  position: absolute;
  background: #fff;
  border: 1px solid #ECE8F5;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px -20px rgba(23,23,38,.28);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  animation: tony-float 6s ease-in-out infinite;
}
@keyframes tony-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.t-mock-float--bossa {
  right: -24px; bottom: 60px;
  background: linear-gradient(135deg, #6D35F5 0%, #F05C9B 100%);
  color: #fff;
  border: 0;
  animation-delay: -3s;
}
.t-mock-float--live {
  left: -24px; top: 80px;
}
.t-mock-float--live .live-dot {
  width: 8px; height: 8px; border-radius: 999px; background: #21B36B;
  box-shadow: 0 0 0 3px rgba(33,179,107,.18);
}
@media (max-width: 980px) {
  .t-mock-float--bossa { right: 10px; bottom: -18px; }
  .t-mock-float--live { left: 10px; top: -18px; }
}

/* ---- hero variants ---- */
.t-hero[data-variant="clean"] .t-mock-wrap { display: none; }
.t-hero[data-variant="clean"] .t-hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
}
.t-hero[data-variant="clean"] .t-hero-actions { justify-content: center; }
.t-hero[data-variant="clean"] .t-lead { margin-left: auto; margin-right: auto; }
.t-hero[data-variant="clean"] .t-live-row { margin-left: auto; margin-right: auto; }

.t-hero[data-variant="bold"] {
  color: #fff;
}
.t-hero[data-variant="bold"] .t-hero-bg {
  background:
    radial-gradient(circle at 12% 15%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(240,92,155,0.45), transparent 55%),
    var(--t-grad);
}
.t-hero[data-variant="bold"] .t-eyebrow {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.95);
}
.t-hero[data-variant="bold"] .t-eyebrow .dot { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }
.t-hero[data-variant="bold"] .t-grad-text { background: linear-gradient(135deg, #FFE9C7, #FFC0DD); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.t-hero[data-variant="bold"] .t-hero-support { color: rgba(255,255,255,0.72); }
.t-hero[data-variant="bold"] .t-lead { color: rgba(255,255,255,0.85); }
.t-hero[data-variant="bold"] .t-cta { background: #fff; color: var(--t-deep) !important; box-shadow: 0 18px 40px -16px rgba(0,0,0,.35); }
.t-hero[data-variant="bold"] .t-cta-secondary { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.32); color: #fff !important; }
.t-hero[data-variant="bold"] .t-cta-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.t-hero[data-variant="bold"] .t-live-row { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.92); }
.t-hero[data-variant="bold"] .t-live-num { color: #fff; }

.t-chips-wrap {
  position: relative;
  height: 480px;
  display: flex; flex-wrap: wrap;
  align-content: center; justify-content: center;
  gap: 12px;
  padding: 20px;
}
.t-chip {
  background: #fff;
  border: 1px solid var(--t-border-default);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--t-text);
  box-shadow: 0 10px 24px -16px rgba(23,23,38,.18);
  display: flex; align-items: center; gap: 10px;
  animation: tony-float 7s ease-in-out infinite;
  max-width: 280px;
}
.t-chip .avatar {
  width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0;
}
.t-chip .meta { font-size: 11px; color: var(--t-text-muted); margin-top: 2px; }

/* ---- grids ---- */
.t-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--t-gap);
}
.t-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--t-gap);
}
.t-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--t-gap);
}
@media (max-width: 980px) {
  .t-grid-3, .t-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .t-grid-3, .t-grid-4, .t-grid-2 { grid-template-columns: 1fr; }
}

/* ---- use-case card ---- */
.t-uc { text-align: left; }
.t-uc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--t-soft);
  color: var(--t-accent);
}
.t-uc-icon svg { width: 22px; height: 22px; }
.t-uc h3 { font-size: 18px; font-weight: 650; margin: 0 0 6px; letter-spacing: -0.01em; }
.t-uc p { font-size: 14.5px; color: var(--t-text-muted); margin: 0; line-height: 1.5; }

/* ---- how it works ---- */
.t-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  color: var(--t-accent);
  background: var(--t-soft);
  border: 1px solid var(--t-border);
  padding: 4px 10px;
  border-radius: 999px;
}
.t-step h3 { margin-top: 18px; }

/* how it works — header + mock layout */
.t-hiw-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .t-hiw-top { grid-template-columns: 1fr; gap: 40px; }
}
.t-deadline-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 13.5px; font-weight: 600;
  color: var(--t-deep);
  background: var(--t-soft);
  border: 1px solid var(--t-border);
  padding: 8px 14px;
  border-radius: 999px;
}

/* collection mock (progress module) */
.t-collect {
  background: #fff;
  border: 1px solid var(--t-border-default);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 50px -34px rgba(23,23,38,.24), 0 2px 6px rgba(23,23,38,.04);
  max-width: 380px;
  margin-left: auto;
}
@media (max-width: 900px) { .t-collect { margin: 0 auto; } }
.t-collect-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.t-collect-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--t-text);
}
.t-collect-status .dot {
  width: 9px; height: 9px; border-radius: 999px; background: #21B36B;
  position: relative;
}
.t-collect-status .dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 999px;
  background: rgba(33,179,107,.32);
  animation: tony-pulse 2.4s ease-out infinite;
}
.t-collect-slug {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; color: var(--t-text-muted);
  background: var(--t-surface-2);
  border: 1px solid var(--t-border-default);
  padding: 4px 9px; border-radius: 999px;
}
.t-collect-num {
  letter-spacing: -0.01em;
  color: var(--t-text-muted);
  font-size: 15px;
  display: flex; align-items: baseline; gap: 8px;
}
.t-collect-num strong {
  font-size: 34px; font-weight: 700; color: var(--t-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.t-collect-bar {
  height: 8px; border-radius: 999px; background: var(--t-surface-2);
  overflow: hidden; margin: 14px 0;
  border: 1px solid var(--t-border-default);
}
.t-collect-bar > i {
  display: block; height: 100%;
  background: var(--t-grad);
  border-radius: 999px;
  transition: width 700ms cubic-bezier(0.22,0.61,0.36,1);
}
.t-collect-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--t-text-secondary);
  padding: 12px 0;
  border-top: 1px solid var(--t-border-default);
}
.t-collect-row strong { color: var(--t-text); }
.t-collect-icon { color: var(--t-accent); display: inline-flex; }
.t-collect-export {
  width: 100%; margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; border-radius: 12px;
  border: 1px solid var(--t-border);
  background: var(--t-soft);
  color: var(--t-deep);
  font-weight: 600; font-size: 14px;
  cursor: default;
}

/* timeline — compact, centered process flow */
.t-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin: 0 auto;
}
.t-tl-line {
  position: absolute;
  top: 15px; left: 0; right: 0;
  height: 1px;
  background: var(--t-border-default);
  z-index: 0;
}
.t-tl-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.t-tl-marker { margin-bottom: 16px; }
.t-tl-pill {
  width: 30px; height: 30px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--t-grad);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 10px -4px rgba(109,53,245,.45);
}
.t-tl-content { max-width: 200px; }
.t-tl-icon {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--t-accent);
  margin-bottom: 10px;
  opacity: 0.85;
}
.t-tl-content h3 {
  font-size: 15.5px; font-weight: 650; margin: 0 0 6px;
  letter-spacing: -0.01em; line-height: 1.25;
  text-wrap: balance;
}
.t-tl-content p { font-size: 13.5px; color: var(--t-text-muted); margin: 0; line-height: 1.5; }

@media (max-width: 860px) {
  .t-timeline { grid-template-columns: 1fr; gap: 0; max-width: 460px; }
  .t-tl-line { display: none; }
  .t-tl-step {
    flex-direction: row; align-items: flex-start; text-align: left;
    gap: 16px; padding-bottom: 28px;
  }
  .t-tl-step:not(:last-child)::before {
    content: ""; position: absolute;
    left: 15px; top: 30px; bottom: -2px;
    width: 1px; background: var(--t-border-default);
    z-index: 0;
  }
  .t-tl-marker { margin-bottom: 0; flex-shrink: 0; }
  .t-tl-content { max-width: none; padding-top: 3px; }
  .t-tl-icon { display: none; }
}

/* ---- differentiator ---- */
.t-diff {
  background:
    radial-gradient(circle at 0% 0%, var(--t-radial), transparent 55%),
    #11111A;
  border-radius: 32px;
  padding: 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.t-diff h2 { color: #fff; }
.t-diff ::selection { background: rgba(196,181,253,0.85); color: #1b1530; }
.t-diff ::-moz-selection { background: rgba(196,181,253,0.85); color: #1b1530; }
.t-diff .t-eyebrow { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.85); }
.t-diff .t-lead { color: rgba(255,255,255,0.78); }
.t-diff-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 44px;
}
@media (max-width: 980px) { .t-diff { padding: 40px 26px; } .t-diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .t-diff-grid { grid-template-columns: 1fr; } }
.t-diff-item { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; }
.t-diff-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.t-diff-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.t-diff-item h4 {
  font-size: 16px; font-weight: 650; margin: 0 0 8px;
  letter-spacing: -0.01em; text-wrap: balance;
}
.t-diff-item p { font-size: 14px; color: rgba(255,255,255,0.70); margin: 0; line-height: 1.55; }
.t-diff-icon { color: var(--t-accent); display: inline-flex; opacity: 0.9; }
.t-diff-microcopy {
  margin: 40px 0 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ---- pricing ---- */
.t-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1024px) { .t-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .t-pricing-grid { grid-template-columns: 1fr; } }
.t-plan {
  background: var(--t-surface);
  border: 1px solid var(--t-border-default);
  border-radius: 22px;
  padding: 24px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 220ms, border-color 200ms, box-shadow 220ms;
}
.t-plan:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(23,23,38,.22); }
.t-plan--featured {
  background: var(--t-soft);
  border-color: var(--t-border);
  box-shadow: 0 18px 50px -28px rgba(109,53,245,.35);
}
.t-plan--dark { background: #11111A; border-color: transparent; color: #fff; }
.t-plan-name { font-size: 15px; font-weight: 650; letter-spacing: -0.005em; }
.t-plan-sub { font-size: 13.5px; color: var(--t-text-muted); margin-top: 4px; }
.t-plan-price {
  font-size: 34px; font-weight: 700;
  letter-spacing: -0.025em;
  margin: 14px 0 2px;
  font-variant-numeric: tabular-nums;
}
.t-plan-pay { font-size: 12.5px; color: var(--t-text-muted); margin-bottom: 6px; }
.t-plan--dark .t-plan-pay { color: rgba(255,255,255,0.6); }
.t-plan-unit { font-size: 13px; color: var(--t-text-muted); }
.t-plan ul { list-style: none; padding: 0; margin: 16px 0 16px; }
.t-plan li {
  font-size: 14px; padding: 5px 0 5px 24px;
  position: relative; color: var(--t-text-secondary);
}
.t-plan li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236D35F5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
}
.t-plan-dark-list { list-style: none; padding: 0; margin: 16px 0; }
.t-plan-dark-list li {
  font-size: 14px; padding: 6px 0 6px 24px;
  position: relative; color: rgba(255,255,255,0.82); line-height: 1.4;
}
.t-plan-dark-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B9A8FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
}
.t-plan-trial {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--t-grad);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
}
.t-plan-uni-link {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--t-accent);
  line-height: 1.35;
  padding: 10px 0;
  margin-bottom: 12px;
  border-top: 1px dashed var(--t-border);
  cursor: pointer;
  transition: color 160ms;
}
.t-plan-uni-link svg { flex-shrink: 0; margin-top: 1px; }
.t-plan-uni-link:hover { color: var(--t-deep); text-decoration: underline; }
.t-plan-trial-callout {
  background: linear-gradient(135deg, #F05C9B 0%, #6D35F5 100%);
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 22px;
  display: flex; gap: 16px; align-items: center;
  font-size: 14.5px;
}
.t-plan-trial-callout strong { display: block; font-size: 15px; margin-bottom: 2px; }

/* waitlist / early-access banner */
.t-waitlist-banner {
  display: flex; align-items: center; gap: 20px;
  background: var(--t-grad);
  color: #fff;
  border-radius: 20px;
  padding: 22px 26px;
  margin-bottom: 28px;
  box-shadow: 0 18px 44px -26px rgba(109,53,245,.5);
}
.t-waitlist-banner-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-waitlist-banner-text { flex: 1; min-width: 0; }
.t-waitlist-banner-text strong { display: block; font-size: 16px; font-weight: 650; margin-bottom: 3px; letter-spacing: -0.01em; }
.t-waitlist-banner-text span { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.5; }
@media (max-width: 720px) {
  .t-waitlist-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px; }
}

/* ---- universities ---- */
.t-uni {
  background:
    radial-gradient(circle at 90% 0%, rgba(240,92,155,.22), transparent 55%),
    var(--t-grad);
  border-radius: 36px;
  padding: 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) { .t-uni { padding: 40px 26px; border-radius: 28px; } }
.t-uni-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .t-uni-inner { grid-template-columns: 1fr; gap: 36px; } }
.t-uni h2 { color: #fff; }
.t-uni .t-eyebrow { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.95); }
.t-uni .t-eyebrow .dot { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }
.t-uni .t-lead { color: rgba(255,255,255,0.86); max-width: 46ch; }
.t-uni-sub { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.78); max-width: 44ch; }
.t-uni-highlight {
  margin-top: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
}
.t-uni-highlight strong { color: #fff; font-weight: 700; }

/* ---- universities benefit board (tabbed editorial panel) ---- */
.t-uni-board {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 10px 28px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.t-uni-tabs {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.t-uni-tab {
  background: none; border: 0; cursor: pointer;
  padding: 16px 2px;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6);
  position: relative;
  transition: color 200ms;
}
.t-uni-tab:hover { color: rgba(255,255,255,0.85); }
.t-uni-tab.is-active { color: #fff; }
.t-uni-tab.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; border-radius: 2px;
  background: #fff;
}
.t-uni-rows {
  animation: tony-uni-fade 360ms cubic-bezier(0.16,1,0.3,1);
}
@keyframes tony-uni-fade {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.t-uni-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.t-uni-row:last-child { border-bottom: 0; }
.t-uni-row-n {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  padding-top: 2px;
  flex-shrink: 0;
}
.t-uni-row-body { display: flex; flex-direction: column; gap: 4px; }
.t-uni-row-body strong {
  font-size: 17px; font-weight: 650; color: #fff;
  letter-spacing: -0.01em;
}
.t-uni-row-body span {
  font-size: 14.5px; line-height: 1.5;
  color: rgba(255,255,255,0.76);
  max-width: 44ch;
}
.t-uni-cta { margin-top: 30px; }
.t-uni .t-cta { background: #fff; color: var(--t-deep) !important; box-shadow: 0 18px 40px -16px rgba(0,0,0,.35); }

/* ---- waitlist form ---- */
.t-form-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .t-form-wrap { grid-template-columns: 1fr; gap: 32px; } }
.t-form-card {
  background: var(--t-surface);
  border: 1px solid var(--t-border-default);
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 18px 50px -32px rgba(23,23,38,.2);
}
@media (max-width: 640px) { .t-form-card { padding: 26px; border-radius: 20px; } }
.t-field { display: block; margin-bottom: 18px; }
.t-field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--t-text);
  margin-bottom: 6px;
}
.t-field .req { color: var(--t-accent); margin-left: 2px; }
.t-field .help { font-size: 12.5px; color: var(--t-text-muted); margin-top: 6px; }
.t-input, .t-select, .t-textarea {
  width: 100%;
  height: 46px;
  border: 1px solid var(--t-border-default);
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  background: #fff;
  font-family: inherit;
  color: var(--t-text);
  transition: border-color 160ms, box-shadow 160ms;
}
.t-textarea { height: auto; min-height: 92px; padding: 12px 14px; line-height: 1.5; resize: vertical; }
.t-input:focus, .t-select:focus, .t-textarea:focus {
  outline: none;
  border-color: var(--t-accent);
  box-shadow: 0 0 0 4px rgba(109,53,245,.18);
}
.t-input.is-error, .t-select.is-error { border-color: #E64242; }
.t-error {
  display: block; font-size: 12.5px; color: #E64242; margin-top: 6px;
}
.t-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--t-text-secondary);
  line-height: 1.45;
  margin: 4px 0 22px;
  cursor: pointer;
}
.t-checkbox input { margin-top: 3px; accent-color: var(--t-accent); }
.t-form-success {
  text-align: center;
  padding: 28px 16px;
}
.t-form-success .badge {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--t-grad);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--t-glow);
  color: #fff;
}
.t-form-side h2 { margin-bottom: 14px; }
.t-form-trust {
  margin-top: 28px;
  display: grid; gap: 14px;
}
.t-form-trust li {
  display: flex; gap: 12px; align-items: flex-start;
  list-style: none;
  font-size: 14.5px; color: var(--t-text-secondary);
  line-height: 1.5;
}
.t-form-trust .icon { color: var(--t-accent); flex-shrink: 0; margin-top: 2px; }
.t-form-trust .t-trust-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: var(--t-accent);
  background: var(--t-soft);
  border: 1px solid var(--t-border);
  border-radius: 8px;
  min-width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-form-trust strong { color: var(--t-text); }
.t-form-trust ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }

/* ---- FAQ ---- */
.t-faq-item {
  border-bottom: 1px solid var(--t-border-default);
}
.t-faq-q {
  width: 100%;
  background: none; border: 0; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  font-size: 17px; font-weight: 600; color: var(--t-text);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.t-faq-q .chev {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--t-soft);
  color: var(--t-accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 240ms;
}
.t-faq-item.is-open .t-faq-q .chev { transform: rotate(180deg); }
.t-faq-a {
  font-size: 15.5px; line-height: 1.6; color: var(--t-text-secondary);
  max-width: 72ch;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.22,0.61,0.36,1);
  overflow: hidden;
}
.t-faq-a > div { overflow: hidden; min-height: 0; }
.t-faq-a p { margin: 0 0 14px; }
.t-faq-a p:last-child { margin-bottom: 0; }
.t-faq-item.is-open .t-faq-a { grid-template-rows: 1fr; }
.t-faq-item.is-open .t-faq-a > div { padding-bottom: 24px; }

/* ---- footer ---- */
.t-footer {
  background: #0E0E16;
  color: rgba(255,255,255,0.78);
  padding: 80px 0 48px;
}
.t-footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 880px) { .t-footer-grid { grid-template-columns: 1fr 1fr; } }
.t-footer-logo { height: 26px; width: auto; display: block; }
.t-footer h5 {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin: 0 0 16px;
}
.t-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.t-footer a { color: rgba(255,255,255,0.78); font-size: 14.5px; transition: color 160ms; }
.t-footer a:hover { color: #fff; }
.t-footer-cta {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 22px;
  margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.t-footer-fine {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.t-bossa-mark { display: inline-flex; align-items: center; gap: 8px; }
.t-bossa-mark .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(240,92,155,0.16);
  color: #F870AC;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---- accessibility ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
