/* ============================================================
   AI Ops Sprint — landing page styles
   Built on the TechConcepts design system (tokens.css)
   ============================================================ */

/* ---------- BASE ---------- */
body {
  font-family: var(--tc-font-sans);
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  color: var(--tc-fg-muted);
  background: var(--tc-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--tc-fg); color: #fff; }

/* ---------- NAV ---------- */
.tcsp-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--tc-border);
}
.tcsp-nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.tcsp-brand {
  font-weight: 700; font-size: 17px; color: var(--tc-fg);
  text-decoration: none; letter-spacing: -0.3px;
}
.tcsp-brand b { color: var(--tc-accent); font-weight: 700; }
.tcsp-brand .tcsp-brand-divider { color: var(--tc-border); margin: 0 10px; font-weight: 400; }
.tcsp-brand-section { color: var(--tc-fg-muted); font-weight: 500; font-size: 14px; }
.tcsp-nav-spacer { flex: 1; }
.tcsp-nav-back {
  font-size: 13px; color: var(--tc-fg-subtle); text-decoration: none;
  font-family: var(--tc-font-mono); transition: color 0.15s;
}
.tcsp-nav-back:hover { color: var(--tc-accent); }

/* ---------- HERO ---------- */
.tcsp-hero { padding: 96px 0 120px; position: relative; }
.tcsp-hero-eyebrows {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.tcsp-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--tc-fg-subtle);
  font-family: var(--tc-font-mono);
}
.tcsp-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; background: var(--tc-surface);
  border: 1px solid var(--tc-border); border-radius: var(--tc-radius-pill);
  font-size: 12px; color: var(--tc-fg-muted); font-family: var(--tc-font-mono);
}
.tcsp-pulse { width: 7px; height: 7px; border-radius: 100px; background: var(--tc-success-deep, #059669); animation: tcsp-pulse 2s infinite; }
@keyframes tcsp-pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.tcsp-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700; letter-spacing: -1.4px; line-height: 1.04;
  color: var(--tc-fg);
  max-width: 920px;
  text-wrap: balance;
}
.tcsp-hero h1 .tcsp-h1-accent { color: var(--tc-accent); }
.tcsp-hero-sub {
  margin-top: 28px; max-width: 640px;
  font-size: 19px; line-height: 1.55; color: var(--tc-fg-muted);
}
.tcsp-hero-sub strong { color: var(--tc-fg); font-weight: 600; }

.tcsp-hero-cta { margin-top: 40px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.tcsp-linkedin-hint {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--tc-fg-subtle);
  font-family: var(--tc-font-mono);
}
.tcsp-linkedin-hint .tcsp-arrow { color: var(--tc-accent); }

/* Hero terminal variant */
.tcsp-hero-terminal {
  margin-top: 48px;
  background: #0a0a0b; border-radius: var(--tc-radius-lg);
  border: 1px solid #1f1f23;
  box-shadow: var(--tc-shadow-pop);
  overflow: hidden;
  font-family: var(--tc-font-mono);
  max-width: 720px;
}
.tcsp-term-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #111114; border-bottom: 1px solid #1f1f23;
}
.tcsp-term-dot { width: 11px; height: 11px; border-radius: 100px; }
.tcsp-term-dot.r { background: #ff5f56; }
.tcsp-term-dot.y { background: #ffbd2e; }
.tcsp-term-dot.g { background: #27c93f; }
.tcsp-term-title {
  margin-left: 12px; font-size: 11px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.05em;
}
.tcsp-term-body {
  padding: 18px 20px; font-size: 13px; line-height: 1.7;
  color: #e5e7eb;
  min-height: 156px;
}
.tcsp-term-line { display: block; }
.tcsp-term-prompt { color: var(--tc-success); margin-right: 10px; user-select: none; }
.tcsp-term-comment { color: rgba(255,255,255,0.4); }
.tcsp-term-out { color: rgba(255,255,255,0.7); }
.tcsp-term-key { color: var(--tc-accent); }
.tcsp-term-num { color: #a5f3a8; }
.tcsp-term-str { color: #f4cf80; }
.tcsp-term-cursor {
  display: inline-block; width: 7px; height: 14px;
  background: var(--tc-success); margin-left: 2px; vertical-align: -2px;
  animation: tcsp-blink 1s steps(2) infinite;
}
@keyframes tcsp-blink { 50% { opacity: 0; } }

/* ---------- BUTTONS ---------- */
.tcsp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--tc-radius);
  font-weight: 600; font-size: 14px;
  font-family: inherit; cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.2s var(--tc-ease);
  white-space: nowrap;
}
.tcsp-btn-lg { padding: 16px 28px; font-size: 15px; }
.tcsp-btn-primary { background: var(--tc-fg); color: #fff; }
.tcsp-btn-primary:hover { background: #1f1f23; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.tcsp-btn-ghost { background: transparent; color: var(--tc-fg); border-color: var(--tc-border); }
.tcsp-btn-ghost:hover { border-color: var(--tc-fg); }
.tcsp-btn .tcsp-btn-arrow { transition: transform 0.2s var(--tc-ease); }
.tcsp-btn:hover .tcsp-btn-arrow { transform: translateX(3px); }

/* ---------- SECTION SCAFFOLDING ---------- */
.tcsp-section { padding: 88px 0; border-top: 1px solid var(--tc-border); }
.tcsp-section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--tc-fg-subtle);
  font-family: var(--tc-font-mono);
  margin-bottom: 20px;
}
.tcsp-section h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700; color: var(--tc-fg);
  letter-spacing: -0.6px; line-height: 1.15;
  max-width: 720px; text-wrap: balance;
}
.tcsp-section-lead {
  margin-top: 16px; max-width: 640px;
  font-size: 17px; color: var(--tc-fg-muted); line-height: 1.55;
}

/* ---------- PROBLEM ---------- */
.tcsp-problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-top: 56px;
}
.tcsp-problem-list { display: flex; flex-direction: column; gap: 28px; max-width: 560px; }
.tcsp-problem-item p {
  font-size: 17px; line-height: 1.55; color: var(--tc-fg);
  margin: 0;
}
.tcsp-problem-item p .tcsp-em {
  font-style: italic; color: var(--tc-fg-muted);
}

/* ---------- WHAT YOU GET (timeline) ---------- */
.tcsp-timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 32px;
  max-width: 760px;
}
.tcsp-timeline::before {
  content: ""; position: absolute; left: 0; top: 14px; bottom: 14px;
  width: 1px; background: var(--tc-border);
}
.tcsp-tl-item { position: relative; padding-bottom: 36px; }
.tcsp-tl-item:last-child { padding-bottom: 0; }
.tcsp-tl-item::before {
  content: ""; position: absolute; left: -36px; top: 7px;
  width: 9px; height: 9px; border-radius: 100px;
  background: var(--tc-bg); border: 2px solid var(--tc-fg);
}
.tcsp-tl-item.tcsp-tl-current::before {
  background: var(--tc-accent); border-color: var(--tc-accent);
  box-shadow: 0 0 0 4px rgba(13,148,136,0.15);
}
.tcsp-tl-day {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--tc-fg-subtle);
  font-family: var(--tc-font-mono); margin-bottom: 6px;
}
.tcsp-tl-title {
  font-size: 19px; font-weight: 600; color: var(--tc-fg);
  letter-spacing: -0.2px; margin-bottom: 6px; line-height: 1.35;
}
.tcsp-tl-body { font-size: 15px; color: var(--tc-fg-muted); line-height: 1.55; max-width: 520px; }

/* ---------- RECEIPTS (cinematic black) ---------- */
.tcsp-receipts {
  background: #050505; color: #fff;
  border-top: 1px solid #050505;
  padding: 96px 0; position: relative; overflow: hidden;
}
.tcsp-receipts::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(16,185,129,0.16), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(13,148,136,0.10), transparent 50%);
  pointer-events: none;
}
.tcsp-receipts::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.03; pointer-events: none;
}
.tcsp-receipts .tc-container { position: relative; z-index: 1; }
.tcsp-receipts-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  font-family: var(--tc-font-mono);
  margin-bottom: 16px;
}
.tcsp-receipts h2 {
  color: #fff; font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700; letter-spacing: -0.6px; max-width: 720px;
}
.tcsp-receipts-sub {
  margin-top: 14px; color: rgba(255,255,255,0.55);
  font-size: 16px; max-width: 580px; line-height: 1.55;
}
.tcsp-receipts-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.tcsp-receipt {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--tc-radius-xl);
  padding: 32px 28px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s var(--tc-ease);
  opacity: 1; transform: translateY(0);
}
.tcsp-receipts .tcsp-receipt {
  animation: tcsp-receipt-in 0.7s var(--tc-ease) both;
}
.tcsp-receipts .tcsp-receipt:nth-child(1) { animation-delay: 0.05s; }
.tcsp-receipts .tcsp-receipt:nth-child(2) { animation-delay: 0.18s; }
.tcsp-receipts .tcsp-receipt:nth-child(3) { animation-delay: 0.30s; }
@keyframes tcsp-receipt-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .tcsp-receipts .tcsp-receipt { animation: none; }
}
.tcsp-receipt:hover {
  border-color: rgba(16,185,129,0.25);
  transform: translateY(-4px);
}
.tcsp-receipt-num {
  display: flex; align-items: baseline; gap: 2px;
  font-size: 56px; font-weight: 700; letter-spacing: -2px;
  color: var(--tc-success); line-height: 1;
  text-shadow: 0 0 40px rgba(16,185,129,0.4);
}
.tcsp-receipt-num .tcsp-receipt-unit { font-size: 28px; }
.tcsp-receipt-label {
  margin-top: 16px;
  font-size: 11px; font-family: var(--tc-font-mono);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7); font-weight: 700;
}
.tcsp-receipt-context {
  margin-top: 8px; font-size: 14px;
  color: rgba(255,255,255,0.6); line-height: 1.5;
}

/* ---------- WHO THIS IS FOR ---------- */
.tcsp-fit-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.tcsp-fit-col {
  border: 1px solid var(--tc-border);
  border-radius: var(--tc-radius-xl);
  padding: 32px;
  background: var(--tc-bg);
}
.tcsp-fit-col.tcsp-fit-yes { border-color: var(--tc-fg); }
.tcsp-fit-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.tcsp-fit-mark {
  width: 28px; height: 28px; border-radius: 100px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.tcsp-fit-yes .tcsp-fit-mark { background: var(--tc-fg); color: #fff; }
.tcsp-fit-no .tcsp-fit-mark { background: var(--tc-light-gray, #f3f4f6); color: var(--tc-fg-subtle); }
.tcsp-fit-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--tc-font-mono);
}
.tcsp-fit-yes .tcsp-fit-label { color: var(--tc-fg); }
.tcsp-fit-no .tcsp-fit-label { color: var(--tc-fg-subtle); }
.tcsp-fit-list { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.tcsp-fit-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.5; color: var(--tc-fg);
}
.tcsp-fit-no .tcsp-fit-list li { color: var(--tc-fg-muted); }
.tcsp-fit-list li::before {
  content: ""; flex-shrink: 0;
  width: 16px; height: 16px; margin-top: 4px;
  border-radius: 100px;
  display: inline-block;
  background-repeat: no-repeat; background-position: center;
}
.tcsp-fit-yes .tcsp-fit-list li::before {
  background: var(--tc-fg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5,6 5,8.5 9.5,3.5'/></svg>");
}
.tcsp-fit-no .tcsp-fit-list li::before {
  background: transparent;
  border: 1px solid var(--tc-border);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%239ca3af' stroke-width='1.6' stroke-linecap='round'><line x1='3.5' y1='6' x2='8.5' y2='6'/></svg>");
}

/* ---------- PRICING + BOOKING ---------- */
.tcsp-booking {
  background: var(--tc-fg); color: #fff;
  padding: 96px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--tc-fg);
}
.tcsp-booking::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(13,148,136,0.18), transparent 60%);
  pointer-events: none;
}
.tcsp-booking .tc-container { position: relative; z-index: 1; }
.tcsp-booking-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 56px; align-items: stretch;
}
.tcsp-booking-info { padding-top: 8px; }
.tcsp-booking-eyebrow {
  font-size: 11px; font-family: var(--tc-font-mono);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--tc-accent); font-weight: 700;
  margin-bottom: 18px;
}
.tcsp-booking h2 {
  color: #fff; font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700; letter-spacing: -0.8px; line-height: 1.1;
  max-width: 480px;
}
.tcsp-booking-sub {
  margin-top: 18px; color: rgba(255,255,255,0.65);
  font-size: 17px; line-height: 1.55; max-width: 460px;
}
.tcsp-booking-stats {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tcsp-bs {
  padding: 20px 0; padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.tcsp-bs:last-child { border-right: 0; padding-right: 0; padding-left: 24px; }
.tcsp-bs-num {
  font-size: 32px; font-weight: 700; letter-spacing: -1px; color: #fff;
  line-height: 1;
}
.tcsp-bs-num .tcsp-bs-unit { color: rgba(255,255,255,0.4); font-weight: 500; }
.tcsp-bs-label {
  margin-top: 8px;
  font-size: 11px; font-family: var(--tc-font-mono);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5); font-weight: 700;
}
.tcsp-booking-foot {
  margin-top: 32px;
  font-size: 13px; color: rgba(255,255,255,0.4);
  font-family: var(--tc-font-mono);
}

/* booking card */
.tcsp-booking-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--tc-radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column;
}
.tcsp-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.tcsp-card-title {
  font-size: 11px; font-family: var(--tc-font-mono);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55); font-weight: 700;
}
.tcsp-card-link {
  font-size: 11px; font-family: var(--tc-font-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--tc-accent); text-decoration: none; font-weight: 700;
}
.tcsp-card-link:hover { color: #14b8a6; }

.tcsp-cal-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--tc-radius);
  padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.tcsp-cal-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--tc-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tcsp-cal-text h4 { font-size: 15px; font-weight: 600; color: #fff; margin: 0 0 4px; }
.tcsp-cal-text p { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }

.tcsp-cal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 16px;
}
.tcsp-cal-day {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--tc-radius);
  padding: 12px 8px; text-align: center;
  font-family: var(--tc-font-mono);
  cursor: pointer;
  transition: all 0.15s var(--tc-ease);
}
.tcsp-cal-day:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); }
.tcsp-cal-day.is-selected { border-color: var(--tc-accent); background: rgba(13,148,136,0.12); }
.tcsp-cal-day.is-disabled { opacity: 0.3; cursor: not-allowed; }
.tcsp-cal-day-name { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.tcsp-cal-day-num { font-size: 18px; font-weight: 600; color: #fff; margin-top: 4px; }
.tcsp-cal-day-slots { font-size: 10px; color: var(--tc-success); margin-top: 4px; }
.tcsp-cal-day.is-disabled .tcsp-cal-day-slots { color: rgba(255,255,255,0.3); }

.tcsp-cal-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; }
.tcsp-cal-time {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--tc-radius);
  padding: 10px 0; text-align: center;
  font-family: var(--tc-font-mono); font-size: 13px; color: rgba(255,255,255,0.85);
  cursor: pointer; transition: all 0.15s;
}
.tcsp-cal-time:hover { border-color: var(--tc-accent); color: #fff; }
.tcsp-cal-time.is-selected { background: var(--tc-accent); border-color: var(--tc-accent); color: #fff; }

.tcsp-card-cta {
  background: #fff; color: #000; border: 0;
  padding: 14px 18px; border-radius: var(--tc-radius);
  font-weight: 600; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s var(--tc-ease);
  font-family: inherit;
}
.tcsp-card-cta:hover:not(:disabled) { background: #e5e7eb; transform: translateY(-1px); }
.tcsp-card-cta:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- ABOUT ---------- */
.tcsp-about-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: start;
}
.tcsp-about-portrait {
  width: 200px; height: 200px; border-radius: 100px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; font-weight: 700; color: rgba(255,255,255,0.9);
  font-family: var(--tc-font-sans); letter-spacing: -2px;
  border: 1px solid var(--tc-border);
}
.tcsp-about-body p {
  font-size: 17px; line-height: 1.65; color: var(--tc-fg-muted);
  margin: 0 0 16px;
}
.tcsp-about-body p strong { color: var(--tc-fg); font-weight: 600; }
.tcsp-about-links {
  margin-top: 24px; display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--tc-font-mono); font-size: 13px;
}
.tcsp-about-links a {
  color: var(--tc-fg); text-decoration: none;
  border-bottom: 1px solid var(--tc-border);
  padding-bottom: 1px;
  transition: all 0.15s;
}
.tcsp-about-links a:hover { color: var(--tc-accent); border-color: var(--tc-accent); }
.tcsp-about-links a .tcsp-arr { color: var(--tc-fg-subtle); margin-left: 4px; }
.tcsp-about-links a:hover .tcsp-arr { color: var(--tc-accent); }

/* ---------- FOOTER ---------- */
.tcsp-footer {
  border-top: 1px solid var(--tc-border);
  padding: 40px 0 32px;
}
.tcsp-footer-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--tc-fg-subtle);
  font-family: var(--tc-font-mono);
}
.tcsp-footer-row a {
  color: var(--tc-fg-subtle); text-decoration: none;
  transition: color 0.15s;
}
.tcsp-footer-row a:hover { color: var(--tc-accent); }
.tcsp-footer-links { display: flex; gap: 18px; }
.tcsp-footer-brand b { color: var(--tc-accent); font-weight: 700; }

/* ---------- BOOKING MODAL ---------- */
.tcsp-modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s var(--tc-ease);
}
.tcsp-modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.tcsp-modal {
  background: #0a0a0b; color: #fff;
  border: 1px solid #1f1f23;
  border-radius: var(--tc-radius-xl);
  width: 100%; max-width: 540px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(8px) scale(0.98);
  transition: transform 0.2s var(--tc-ease);
  overflow: hidden;
}
.tcsp-modal-backdrop.is-open .tcsp-modal { transform: translateY(0) scale(1); }
.tcsp-modal-head {
  padding: 22px 28px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tcsp-modal-title {
  font-size: 11px; font-family: var(--tc-font-mono);
  text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55);
  font-weight: 700;
}
.tcsp-modal-close {
  background: transparent; border: 1px solid rgba(255,255,255,0.1);
  width: 30px; height: 30px; border-radius: 8px; cursor: pointer;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.tcsp-modal-close:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.tcsp-modal-body { padding: 28px; }
.tcsp-modal-step {
  font-size: 11px; font-family: var(--tc-font-mono);
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--tc-accent);
  font-weight: 700; margin-bottom: 8px;
}
.tcsp-modal-h {
  font-size: 22px; font-weight: 600; color: #fff; margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.tcsp-modal-p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; margin: 0 0 24px; }

.tcsp-modal-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--tc-radius);
  padding: 14px 18px;
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 24px;
}
.tcsp-modal-summary-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--tc-accent); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tcsp-modal-summary-text { font-size: 13px; color: rgba(255,255,255,0.85); font-family: var(--tc-font-mono); }
.tcsp-modal-summary-text strong { color: #fff; font-weight: 600; }

.tcsp-form { display: flex; flex-direction: column; gap: 14px; }
.tcsp-field { display: flex; flex-direction: column; gap: 6px; }
.tcsp-field label {
  font-size: 12px; font-family: var(--tc-font-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65); font-weight: 700;
}
.tcsp-field input, .tcsp-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--tc-radius);
  padding: 12px 14px;
  color: #fff; font-family: inherit; font-size: 14px;
  transition: all 0.15s; resize: vertical;
}
.tcsp-field input::placeholder, .tcsp-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.tcsp-field input:focus, .tcsp-field textarea:focus {
  outline: none; border-color: var(--tc-accent);
  background: rgba(255,255,255,0.06);
}
.tcsp-field-error {
  font-size: 11px; color: #f87171; font-family: var(--tc-font-mono);
}
.tcsp-modal-actions {
  margin-top: 8px; display: flex; gap: 10px; align-items: center;
}
.tcsp-modal-btn {
  background: #fff; color: #000; border: 0;
  padding: 12px 22px; border-radius: var(--tc-radius);
  font-weight: 600; font-size: 14px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
  transition: all 0.2s var(--tc-ease);
}
.tcsp-modal-btn:hover:not(:disabled) { background: #e5e7eb; }
.tcsp-modal-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.tcsp-modal-back {
  background: transparent; color: rgba(255,255,255,0.65); border: 0;
  padding: 12px 0; font-size: 13px; cursor: pointer;
  font-family: var(--tc-font-mono);
}
.tcsp-modal-back:hover { color: #fff; }
.tcsp-modal-fineprint {
  font-size: 11px; color: rgba(255,255,255,0.4); font-family: var(--tc-font-mono);
  margin-top: 6px;
}

/* success state */
.tcsp-success {
  text-align: center; padding: 16px 8px 8px;
}
.tcsp-success-check {
  width: 56px; height: 56px; border-radius: 100px;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
  color: var(--tc-success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.tcsp-success h3 { color: #fff; font-size: 22px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.3px; }
.tcsp-success p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0 0 6px; }
.tcsp-success-meta {
  margin-top: 22px; padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--tc-radius);
  font-family: var(--tc-font-mono); font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.tcsp-success-meta div { padding: 4px 0; display: flex; justify-content: space-between; gap: 12px; }
.tcsp-success-meta div span:first-child { color: rgba(255,255,255,0.5); }
.tcsp-success-actions { margin-top: 22px; display: flex; gap: 10px; justify-content: center; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .tcsp-hero { padding: 64px 0 80px; }
  .tcsp-hero h1 { font-size: clamp(34px, 8vw, 48px); }
  .tcsp-section { padding: 64px 0; }
  .tcsp-problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .tcsp-receipts-grid { grid-template-columns: 1fr; }
  .tcsp-fit-grid { grid-template-columns: 1fr; }
  .tcsp-booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .tcsp-about-grid { grid-template-columns: 1fr; gap: 24px; }
  .tcsp-about-portrait { width: 140px; height: 140px; font-size: 48px; }
  .tcsp-cal-grid { grid-template-columns: repeat(2, 1fr); }
  .tcsp-receipts { padding: 64px 0; }
  .tcsp-booking { padding: 64px 0; }
  .tcsp-hero-terminal { font-size: 12px; }
  .tcsp-footer-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 480px) {
  .tcsp-cal-grid { grid-template-columns: 1fr 1fr; }
  .tcsp-cal-times { grid-template-columns: 1fr 1fr; }
  .tcsp-booking-stats { grid-template-columns: 1fr; }
  .tcsp-bs { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tcsp-bs:last-child { padding-left: 0; border-bottom: 0; }
}
