:root {
  --tsn-ink: #071735;
  --tsn-navy: #062452;
  --tsn-navy-2: #02142f;
  --tsn-blue: #075ef2;
  --tsn-blue-2: #27a7ff;
  --tsn-cyan: #34c3ff;
  --tsn-gold: #f6b21a;
  --tsn-bg: #f4f7fb;
  --tsn-soft: #eef5ff;
  --tsn-white: #ffffff;
  --tsn-muted: #5c6b82;
  --tsn-border: #d9e3f1;
  --tsn-shadow: 0 24px 70px rgba(3, 20, 47, .18);
  --tsn-shadow-soft: 0 16px 42px rgba(3, 20, 47, .1);
  --tsn-radius: 8px;
  --tsn-container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.tsn-blue-theme {
  margin: 0;
  color: var(--tsn-ink);
  background: var(--tsn-bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
svg { display: block; }
body.tsn-menu-open { overflow: hidden; }
.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 9999;
  left: 16px;
  top: 16px;
  color: var(--tsn-navy);
  background: var(--tsn-white);
  padding: 10px 14px;
  border-radius: 6px;
}
.tsn-container {
  width: min(var(--tsn-container), calc(100% - 40px));
  margin-inline: auto;
}

.tsn-trustbar {
  color: #eaf4ff;
  background: linear-gradient(90deg, #071f49, #063f87);
  font-size: 13px;
  font-weight: 800;
}
.tsn-trustbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  white-space: nowrap;
}
.tsn-trustbar span,
.tsn-trustbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.tsn-trustbar span::before {
  content: "\2713";
  color: #ffffff;
  font-weight: 900;
}
.tsn-trustbar span:nth-of-type(4) { margin-right: auto; }
.tsn-trustbar a:first-of-type::before { content: "\25CF"; font-size: 9px; }
.tsn-trustbar a:last-of-type::before { content: "\260E"; }
.tsn-trustbar a:hover { color: #ffffff; }
.tsn-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 28px rgba(3, 20, 47, .08);
  backdrop-filter: blur(14px);
}
.tsn-nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.tsn-logo { flex: 0 0 auto; }
.tsn-brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--tsn-navy);
  text-decoration: none;
}
.tsn-brand-mark img {
  display: block;
  width: min(315px, 31vw);
  max-height: 68px;
  object-fit: contain;
}
.tsn-primary-nav { flex: 1; }
.tsn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tsn-menu a {
  color: var(--tsn-ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .01em;
  text-decoration: none;
  text-transform: uppercase;
}
.tsn-menu a:hover,
.tsn-menu a:focus-visible,
.tsn-header-link:hover,
.tsn-header-link:focus-visible { color: var(--tsn-blue); }
.tsn-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tsn-header-link {
  color: var(--tsn-navy);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.tsn-button,
button.tsn-button,
.tsn-blue-theme .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--tsn-blue);
  box-shadow: 0 14px 28px rgba(7, 94, 242, .24);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.tsn-button:hover,
.tsn-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(7, 94, 242, .28);
}
.tsn-button-primary { background: linear-gradient(135deg, #0b70ff, #0750d6); }
.tsn-button-dark { background: linear-gradient(135deg, #092b63, #03142f); }
.tsn-button-light {
  color: var(--tsn-blue);
  background: #fff;
  box-shadow: 0 16px 34px rgba(255, 255, 255, .16);
}
.tsn-button-outline {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 2px solid rgba(255, 255, 255, .76);
  box-shadow: none;
}
.tsn-button-ghost {
  color: var(--tsn-blue);
  background: #fff;
  border: 2px solid var(--tsn-blue);
  box-shadow: none;
}
.tsn-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tsn-border);
  border-radius: 8px;
  background: #fff;
}
.tsn-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--tsn-navy);
}

.tsn-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--tsn-navy-2);
}
.tsn-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 14%, rgba(39, 167, 255, .22), transparent 28%),
    linear-gradient(90deg, rgba(2, 13, 32, .98) 0%, rgba(5, 36, 82, .96) 46%, rgba(2, 13, 32, .86) 100%),
    url("../branding/backgrounds/dark-saas.svg") center / cover no-repeat;
}
.tsn-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 32, .05), rgba(2, 13, 32, .36));
}
.tsn-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: 62px 0 56px;
}
.tsn-kicker {
  margin: 0 0 14px;
  color: var(--tsn-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tsn-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}
.tsn-hero h1 span {
  color: var(--tsn-blue-2);
  text-decoration: underline;
  text-decoration-color: var(--tsn-blue);
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}
.tsn-hero-copy > p:not(.tsn-kicker):not(.tsn-launch-note) {
  max-width: 620px;
  margin: 28px 0 0;
  color: #eaf4ff;
  font-size: 21px;
  font-weight: 600;
}
.tsn-hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  max-width: 650px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.tsn-hero-checks li,
.tsn-check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}
.tsn-hero-checks li::before,
.tsn-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #40bfff, #075ef2);
  font-size: 12px;
  font-weight: 900;
}
.tsn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 34px 0 0;
}
.tsn-launch-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #eaf4ff;
  font-weight: 800;
}
.tsn-launch-note::before {
  content: "\26A1";
  color: var(--tsn-cyan);
}
.tsn-hero-visual {
  position: relative;
  min-height: 540px;
}
.tsn-hero-device {
  position: absolute;
  inset: 28px 0 auto auto;
  width: min(610px, 100%);
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  box-shadow: var(--tsn-shadow);
  backdrop-filter: blur(14px);
}
.tsn-device-img {
  display: block;
  width: 100%;
  border-radius: 12px;
}
.tsn-floating-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  color: #fff;
  background: rgba(2, 20, 47, .78);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.tsn-floating-card img {
  display: block;
  width: 100%;
}
.tsn-floating-card-proposal {
  left: 0;
  top: 40px;
  width: 230px;
}
.tsn-floating-card-proposal strong {
  display: block;
  padding: 10px 12px 12px;
  font-size: 13px;
}
.tsn-floating-card-lead {
  left: 28px;
  bottom: 98px;
  width: 270px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}
.tsn-floating-card-lead img {
  width: 50px;
  height: 50px;
}
.tsn-floating-card-lead strong,
.tsn-floating-card-lead span {
  display: block;
}
.tsn-floating-card-lead span {
  color: #d6e8ff;
  font-size: 13px;
}
.tsn-floating-card-analytics {
  right: 16px;
  bottom: 34px;
  width: 255px;
}
.tsn-verified-badge-img {
  position: absolute;
  right: 295px;
  bottom: 18px;
  width: 142px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
}
.tsn-verified-badge-img img {
  display: block;
  width: 100%;
}

.tsn-proof-band {
  color: var(--tsn-ink);
  background: #fff;
  box-shadow: 0 12px 32px rgba(3, 20, 47, .06);
}
.tsn-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 28px 0;
}
.tsn-proof-grid div {
  position: relative;
  min-height: 62px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-content: center;
  gap: 3px;
  padding-left: 0;
}
.tsn-proof-grid div::before { content: none; }
.tsn-proof-grid img {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  align-self: center;
}
.tsn-proof-grid strong {
  color: var(--tsn-navy);
  font-size: 15px;
  line-height: 1.1;
}
.tsn-proof-grid span {
  color: var(--tsn-muted);
  font-size: 13px;
  line-height: 1.35;
}

.tsn-pricing-section,
.tsn-benefits-section,
.tsn-how-section,
.tsn-faq-section,
.tsn-page-content,
.tsn-contractor-recruit {
  padding: 68px 0;
  background: #fff;
}
.tsn-section-heading {
  max-width: 780px;
  text-align: center;
}
.tsn-section-heading h2 {
  margin: 0;
  color: var(--tsn-navy);
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.08;
}
.tsn-section-heading > p:not(.tsn-kicker) {
  margin: 12px auto 0;
  color: var(--tsn-muted);
  font-size: 17px;
}
.tsn-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
  align-items: stretch;
}
.tsn-price-card,
.tsn-partnership-card,
.tsn-benefit-cards article,
.tsn-member-card,
.tsn-content-card,
.tsn-plugin-frame,
.tsn-faq-grid details {
  border: 1px solid var(--tsn-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--tsn-shadow-soft);
}
.tsn-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px;
  text-align: center;
}
.tsn-price-card.is-popular {
  border-color: rgba(7, 94, 242, .42);
  transform: translateY(-10px);
}
.tsn-plan-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px;
  border-radius: 8px 8px 0 0;
  color: #fff;
  background: linear-gradient(135deg, #063fbe, #075ef2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.tsn-price-card.is-popular h3 { margin-top: 18px; }
.tsn-price-card h3 {
  margin: 0 0 5px;
  color: var(--tsn-blue);
  font-size: 20px;
  text-transform: uppercase;
}
.tsn-price-card p {
  min-height: 42px;
  margin: 0;
  color: var(--tsn-muted);
  font-size: 13px;
  font-weight: 700;
}
.tsn-price {
  margin-top: 22px;
  color: var(--tsn-navy);
}
.tsn-price strong {
  font-size: 42px;
  line-height: 1;
}
.tsn-price span { font-weight: 800; }
.tsn-price-card small {
  color: var(--tsn-muted);
  font-weight: 700;
}
.tsn-check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--tsn-border);
  list-style: none;
  text-align: left;
}
.tsn-check-list li {
  color: var(--tsn-ink);
  font-size: 14px;
}
.tsn-price-card .tsn-button,
.tsn-partnership-card .tsn-button { margin-top: auto; width: 100%; }
.tsn-partnership-card {
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(39, 167, 255, .3), transparent 30%),
    linear-gradient(145deg, #062452, #02142f);
}
.tsn-partnership-card .tsn-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--tsn-blue);
}
.tsn-partnership-card h3 {
  margin: 22px 0 12px;
  font-size: 25px;
  line-height: 1.13;
}
.tsn-partnership-card p { color: #dbeafe; }
.tsn-partnership-card .tsn-check-list { border-color: rgba(255, 255, 255, .16); }
.tsn-partnership-card .tsn-check-list li { color: #eaf4ff; }

.tsn-benefits-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(7, 94, 242, .08), transparent 28%),
    linear-gradient(180deg, #f8fbff, #fff);
}
.tsn-split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.tsn-split-grid h2 {
  margin: 0;
  color: var(--tsn-navy);
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.04;
}
.tsn-split-grid p {
  color: var(--tsn-muted);
  font-size: 18px;
}
.tsn-benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.tsn-benefit-cards article {
  padding: 24px;
}
.tsn-benefit-cards img {
  display: block;
  width: 42px;
  height: 42px;
}
.tsn-benefit-cards h3 {
  margin: 18px 0 8px;
  color: var(--tsn-navy);
}
.tsn-benefit-cards p {
  margin: 0;
  color: var(--tsn-muted);
  font-size: 15px;
}

.tsn-featured-section {
  padding: 58px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 30%, rgba(39, 167, 255, .18), transparent 28%),
    linear-gradient(135deg, #02142f, #062452 54%, #043c89);
}
.tsn-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: center;
}
.tsn-featured-main h2,
.tsn-directory-cta h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.08;
}
.tsn-contractor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tsn-member-card {
  overflow: hidden;
  color: var(--tsn-ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}
.tsn-member-photo {
  aspect-ratio: 16 / 10;
  min-height: 128px;
  overflow: hidden;
  background: #eef5ff;
}
.tsn-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tsn-member-logo {
  width: max-content;
  margin: -22px 16px 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--tsn-blue);
  background: #fff;
  box-shadow: 0 10px 18px rgba(3, 20, 47, .12);
  font-size: 12px;
  font-weight: 900;
}
.tsn-member-card h3,
.tsn-member-card p,
.tsn-member-card strong,
.tsn-stars {
  margin-inline: 16px;
}
.tsn-member-card h3 {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 15px;
}
.tsn-member-card p {
  margin-top: 0;
  margin-bottom: 4px;
  color: var(--tsn-muted);
  font-size: 13px;
  font-weight: 800;
}
.tsn-stars {
  color: var(--tsn-gold);
  font-size: 13px;
  letter-spacing: 1px;
}
.tsn-member-card strong {
  display: block;
  margin-top: 6px;
  margin-bottom: 18px;
  color: var(--tsn-navy);
  font-size: 13px;
}
.tsn-directory-cta p {
  color: #dbeafe;
  font-weight: 700;
}

.tsn-how-section { background: #fff; }
.tsn-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.tsn-steps article,
.tsn-steps div {
  padding: 28px;
  border: 1px solid var(--tsn-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--tsn-shadow-soft);
  text-align: center;
}
.tsn-steps b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--tsn-blue);
}
.tsn-steps strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--tsn-navy);
  font-size: 18px;
}
.tsn-steps p {
  margin: 0;
  color: var(--tsn-muted);
}
.tsn-faq-section { background: linear-gradient(180deg, #f8fbff, #fff); }
.tsn-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.tsn-faq-grid details { padding: 22px; }
.tsn-faq-grid summary {
  cursor: pointer;
  color: var(--tsn-navy);
  font-size: 17px;
  font-weight: 900;
}
.tsn-faq-grid p {
  margin-bottom: 0;
  color: var(--tsn-muted);
}
.tsn-final-cta {
  padding: 34px 0;
  color: #fff;
  background: linear-gradient(135deg, #0b70ff, #053eb0);
}
.tsn-final-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.tsn-final-cta-grid > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.tsn-rocket {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 34px;
}
.tsn-final-cta h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
}
.tsn-final-cta p { margin: 4px 0 0; color: #eaf4ff; }

.tsn-page-hero {
  padding: 82px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 13, 32, .96), rgba(5, 49, 112, .82)),
    url("../images/tampa-skyline-hero.svg") center / cover no-repeat;
}
.tsn-page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.06;
}
.tsn-page-hero p:not(.tsn-kicker) {
  max-width: 720px;
  color: #e5efff;
  font-size: 19px;
}
.tsn-content-card,
.tsn-plugin-frame {
  padding: clamp(22px, 4vw, 36px);
}
.tsn-archive-grid {
  display: grid;
  gap: 24px;
}
.tsn-archive-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--tsn-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--tsn-shadow-soft);
}
.tsn-archive-thumb {
  min-height: 220px;
  background: var(--tsn-soft);
}
.tsn-archive-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tsn-archive-card-body {
  padding: clamp(22px, 3vw, 32px);
}
.tsn-archive-card-body h2 {
  margin: 0 0 10px;
  color: var(--tsn-navy);
}
.tsn-archive-card-body h2 a {
  text-decoration: none;
}
.tsn-archive-card-body p {
  color: var(--tsn-muted);
}
.tsn-pagination {
  display: flex;
  justify-content: center;
}
.tsn-contractor-profile {
  display: grid;
  gap: 24px;
}
.tsn-contractor-profile-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--tsn-soft);
}
.tsn-contractor-profile-media img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.tsn-contractor-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.tsn-narrow { max-width: 880px; }
.tsn-shortcode-notice {
  padding: 24px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #7c2d12;
  background: #fff7ed;
}
.tsn-two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.tsn-blue-theme label {
  display: grid;
  gap: 7px;
  color: var(--tsn-ink);
  font-weight: 800;
}
.tsn-blue-theme input,
.tsn-blue-theme select,
.tsn-blue-theme textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--tsn-border);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  font: inherit;
}
.tsn-blue-theme textarea { min-height: 130px; }
.tsn-blue-theme .tsn-spe,
.tsn-blue-theme .tsn-contractor-dashboard,
.tsn-blue-theme .tsn-contractor-directory,
.tsn-blue-theme .tsn-contractor-application-form,
.tsn-blue-theme .tsn-cip-directory,
.tsn-blue-theme .tsn-cip-application,
.tsn-blue-theme .tsn-spe-status,
.tsn-blue-theme .tsn-spe-support { font-family: inherit; }
.tsn-blue-theme .tsn-spe,
.tsn-blue-theme .tsn-contractor-dashboard,
.tsn-blue-theme .tsn-contractor-directory,
.tsn-blue-theme .tsn-cip-directory,
.tsn-blue-theme .tsn-cip-application { color: var(--tsn-ink); }
.tsn-blue-theme .tsn-spe-card,
.tsn-blue-theme .tsn-spe-admin-card,
.tsn-blue-theme .tsn-contractor-card,
.tsn-blue-theme .tsn-cip-card {
  border-color: var(--tsn-border);
  border-radius: 8px;
  box-shadow: var(--tsn-shadow-soft);
}
.tsn-blue-theme .tsn-spe-button,
.tsn-blue-theme .tsn-spe-match,
.tsn-blue-theme .tsn-contractor-dashboard button,
.tsn-blue-theme .tsn-contractor-application-form button,
.tsn-blue-theme .tsn-plugin-frame input[type="submit"],
.tsn-blue-theme .tsn-plugin-frame button[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0b70ff, #0750d6);
  font-weight: 900;
}
.tsn-blue-theme .tsn-plugin-frame form {
  display: grid;
  gap: 16px;
}

.tsn-site-footer {
  color: #dbeafe;
  background:
    radial-gradient(circle at 15% 0%, rgba(7, 94, 242, .18), transparent 28%),
    #02142f;
}
.tsn-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
  padding: 52px 0;
}
.tsn-site-footer .tsn-brand-mark img {
  filter: brightness(0) invert(1);
  opacity: .96;
}
.tsn-footer-grid p {
  max-width: 330px;
  color: #dbeafe;
}
.tsn-footer-badges {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.tsn-footer-badges img {
  width: 70px;
  height: auto;
}
.tsn-footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}
.tsn-footer-grid a,
.tsn-footer-grid span {
  display: block;
  margin: 8px 0;
  color: #dbeafe;
  text-decoration: none;
}
.tsn-footer-grid a:hover { color: #fff; }
.tsn-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.tsn-footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 900;
}
.tsn-footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}
.tsn-footer-bottom .tsn-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.tsn-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1120px) {
  .tsn-trustbar-inner { justify-content: flex-start; overflow-x: auto; }
  .tsn-header-link { display: none; }
  .tsn-hero-grid,
  .tsn-split-grid,
  .tsn-featured-grid,
  .tsn-two-col { grid-template-columns: 1fr; }
  .tsn-hero-visual { max-width: 760px; }
  .tsn-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .tsn-price-card.is-popular { transform: none; }
  .tsn-contractor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .tsn-container { width: min(100% - 28px, var(--tsn-container)); }
  .tsn-nav {
    min-height: 76px;
    justify-content: space-between;
  }
  .tsn-brand-mark img { width: 230px; }
  .tsn-menu-toggle { display: block; }
  .tsn-primary-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 118px;
    padding: 18px;
    border: 1px solid var(--tsn-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--tsn-shadow);
  }
  .tsn-menu-open .tsn-primary-nav { display: block; }
  .tsn-menu {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }
  .tsn-menu a {
    display: block;
    padding: 12px;
    border-radius: 6px;
    background: var(--tsn-soft);
  }
  .tsn-header-actions { display: none; }
  .tsn-hero-grid {
    min-height: auto;
    padding: 44px 0;
  }
  .tsn-hero h1 { font-size: 42px; }
  .tsn-hero-copy > p:not(.tsn-kicker):not(.tsn-launch-note) { font-size: 18px; }
  .tsn-hero-checks,
  .tsn-proof-grid,
  .tsn-benefit-cards,
  .tsn-faq-grid,
  .tsn-steps,
  .tsn-footer-grid { grid-template-columns: 1fr; }
  .tsn-hero-visual {
    min-height: 560px;
  }
  .tsn-hero-device { left: 0; right: 0; width: 100%; }
  .tsn-floating-card-proposal { top: 8px; width: 200px; }
  .tsn-floating-card-lead { left: 0; bottom: 120px; }
  .tsn-floating-card-analytics { right: 0; bottom: 18px; }
  .tsn-verified-badge-img { right: 18px; bottom: 200px; width: 112px; }
  .tsn-pricing-grid { grid-template-columns: 1fr; }
  .tsn-archive-card { grid-template-columns: 1fr; }
  .tsn-final-cta-grid {
    display: grid;
    text-align: left;
  }
  .tsn-final-cta-grid > div {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .tsn-rocket {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }
}

@media (max-width: 560px) {
  .tsn-brand-mark img { width: 200px; }
  .tsn-button { width: 100%; padding-inline: 18px; }
  .tsn-hero h1 { font-size: 36px; }
  .tsn-hero-actions { gap: 12px; }
  .tsn-hero-visual { min-height: 470px; }
  .tsn-floating-card-proposal { display: none; }
  .tsn-floating-card-lead { width: 235px; bottom: 92px; }
  .tsn-floating-card-analytics { width: 210px; }
  .tsn-verified-badge-img { width: 86px; bottom: 188px; }
  .tsn-contractor-grid { grid-template-columns: 1fr; }
  .tsn-footer-bottom .tsn-container { display: grid; }
}
