/* ================================================================
   Time Tracking Automation Cloud â CRM Frontend v3.0.0
   Palette: #022F40 / #38AECC
   ================================================================ */

/* ---------- Foundation ---------- */
.ttac-site-shell,
.ttac-site-shell *,
.ttac-site-shell *::before,
.ttac-site-shell *::after {
  box-sizing: border-box;
}

.ttac-site-shell {
  --ttac-primary: #022f40;
  --ttac-primary-rgb: 2, 47, 64;
  --ttac-secondary: #061d26;
  --ttac-secondary-rgb: 6, 29, 38;
  --ttac-accent: #38aecc;
  --ttac-accent-rgb: 56, 174, 204;
  --ttac-soft: #f3fbfd;
  --ttac-card-radius: 20px;
  --ttac-button-radius: 12px;
  --ttac-font: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ttac-ink: #082a36;
  --ttac-copy: #3c5660;
  --ttac-muted: #6a7f87;
  --ttac-line: rgba(2, 47, 64, 0.13);
  --ttac-line-strong: rgba(2, 47, 64, 0.23);
  --ttac-white: #ffffff;
  --ttac-paper: #fbfefe;
  --ttac-aqua-soft: #e5f6fa;
  --ttac-aqua-pale: #f0fafc;
  --ttac-success: #14745a;
  --ttac-danger: #a64148;
  --ttac-shadow-sm: 0 14px 38px rgba(2, 47, 64, 0.08);
  --ttac-shadow-md: 0 28px 72px rgba(2, 47, 64, 0.13);
  --ttac-shadow-dark: 0 36px 90px rgba(0, 16, 22, 0.3);

  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  overflow-x: hidden;
  color: var(--ttac-copy);
  background: var(--ttac-paper);
  font-family: var(--ttac-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  isolation: isolate;
}

@supports (overflow: clip) {
  .ttac-site-shell {
    overflow-x: clip;
  }
}

.ttac-site-shell a {
  color: inherit;
  text-decoration: none;
}

.ttac-site-shell img,
.ttac-site-shell svg {
  display: block;
  max-width: 100%;
}

.ttac-site-shell svg {
  width: 1em;
  height: 1em;
}

.ttac-site-shell button,
.ttac-site-shell input,
.ttac-site-shell textarea,
.ttac-site-shell select {
  font: inherit;
}

.ttac-site-shell button,
.ttac-site-shell summary {
  -webkit-tap-highlight-color: transparent;
}

.ttac-site-shell h1,
.ttac-site-shell h2,
.ttac-site-shell h3,
.ttac-site-shell p,
.ttac-site-shell blockquote {
  margin-top: 0;
}

.ttac-site-shell h1,
.ttac-site-shell h2,
.ttac-site-shell h3 {
  color: var(--ttac-ink);
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.ttac-site-shell p:last-child {
  margin-bottom: 0;
}

.ttac-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.ttac-section {
  position: relative;
  padding: 112px 0;
}

.ttac-skip-link {
  position: fixed;
  z-index: 999999;
  top: 12px;
  left: 12px;
  padding: 11px 17px;
  border-radius: 9px;
  color: #fff !important;
  background: var(--ttac-primary);
  box-shadow: var(--ttac-shadow-md);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.ttac-skip-link:focus {
  transform: translateY(0);
}

.ttac-site-shell :focus-visible {
  outline: 3px solid rgba(var(--ttac-accent-rgb), 0.78);
  outline-offset: 3px;
}

.ttac-site-shell #ttac-main:focus {
  outline: 0;
}

.ttac-section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ttac-primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ttac-section-index::before {
  width: 28px;
  height: 1px;
  background: var(--ttac-accent);
  content: "";
}

.ttac-section-index-light {
  color: rgba(255, 255, 255, 0.67);
}

/* ---------- Buttons and links ---------- */
.ttac-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: var(--ttac-button-radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.ttac-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 0.2s ease;
}

.ttac-button:hover {
  transform: translateY(-2px);
}

.ttac-button:hover svg {
  transform: translateX(3px);
}

.ttac-button:active {
  transform: translateY(0);
}

.ttac-button-accent {
  color: var(--ttac-primary) !important;
  background: var(--ttac-accent);
  box-shadow: 0 16px 38px rgba(var(--ttac-accent-rgb), 0.2);
}

.ttac-button-accent:hover {
  color: white !important;
  background: #69c7dd;
  box-shadow: 0 20px 44px rgba(var(--ttac-accent-rgb), 0.3);
}

.ttac-button-dark {
  color: #fff !important;
  background: var(--ttac-primary);
  box-shadow: 0 16px 36px rgba(var(--ttac-primary-rgb), 0.2);
}

.ttac-button-dark:hover {
  color: #fff !important;
  background: var(--ttac-secondary);
  box-shadow: 0 20px 44px rgba(var(--ttac-secondary-rgb), 0.27);
}

.ttac-button-outline {
  color: var(--ttac-primary) !important;
  border-color: var(--ttac-line-strong);
  background: #fff;
}

.ttac-button-outline:hover {
  color: #fff !important;
  border-color: var(--ttac-primary);
  background: var(--ttac-primary);
}

.ttac-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 14px;
  font-weight: 760;
}

.ttac-text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.ttac-text-link {
  position: relative;
}

.ttac-text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ttac-text-link svg {
  width: 17px;
  height: 17px;
}

.ttac-text-link-dark {
  color: var(--ttac-primary) !important;
}

/* ---------- Header ---------- */
.ttac-header {
  position: sticky;
  z-index: 10000;
  top: 0;
  border-bottom: 1px solid rgba(2, 47, 64, 0.09);
  background: rgba(251, 254, 254, 0.92);
  box-shadow: 0 8px 30px rgba(2, 47, 64, 0.04);
  backdrop-filter: blur(18px);
}

.admin-bar .ttac-header {
  top: 32px;
}

.ttac-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ttac-brand {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
}

.ttac-brand > img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.ttac-brand-mark,
.ttac-footer-mark {
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  color: #fff;
  background: var(--ttac-primary);
  box-shadow: 0 10px 24px rgba(var(--ttac-primary-rgb), 0.16);
}

.ttac-brand-mark i,
.ttac-footer-mark i {
  position: absolute;
  width: 34px;
  height: 34px;
  right: -11px;
  bottom: -9px;
  border-radius: 50%;
  background: var(--ttac-accent);
}

.ttac-brand-mark b,
.ttac-footer-mark b {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ttac-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ttac-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--ttac-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.ttac-nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  color: #29454f;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.ttac-nav-links a:hover {
  color: var(--ttac-primary);
  background: var(--ttac-aqua-soft);
}

.ttac-nav-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff !important;
  background: var(--ttac-primary);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(var(--ttac-primary-rgb), 0.17);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.ttac-nav-action:hover {
  color: #fff !important;
  background: var(--ttac-secondary);
  transform: translateY(-2px);
}

.ttac-nav-action svg {
  width: 16px;
  height: 16px;
}

.ttac-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--ttac-line-strong);
  border-radius: 11px;
  color: var(--ttac-primary);
  background: #fff;
  cursor: pointer;
}

.ttac-menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 9px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ttac-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ttac-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.ttac-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Homepage hero ---------- */
.ttac-hero {
  position: relative;
  min-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 76% 22%, rgba(var(--ttac-accent-rgb), 0.2), transparent 30%),
    linear-gradient(118deg, var(--ttac-primary) 0%, var(--ttac-primary) 50%, var(--ttac-secondary) 100%);
}

.ttac-hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -315px;
  left: -150px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 86px rgba(255, 255, 255, 0.02), 0 0 0 172px rgba(255, 255, 255, 0.015);
  content: "";
}

.ttac-hero-grid,
.ttac-inner-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 50%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 50%, #000 100%);
}

.ttac-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 62px;
  padding-top: 88px;
  padding-bottom: 100px;
}

.ttac-hero-copy {
  position: relative;
  z-index: 3;
}

.ttac-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ttac-eyebrow i {
  width: 8px;
  height: 8px;
  border: 2px solid var(--ttac-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(var(--ttac-accent-rgb), 0.12);
}

.ttac-hero h1 {
  max-width: 620px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(56px, 5.8vw, 52px);
  font-weight: 690;
  line-height: 0.98;
  letter-spacing: -0.066em;
}

.ttac-hero h1 em {
  display: block;
  color: var(--ttac-accent);
  font-style: normal;
  font-weight: 520;
}

.ttac-hero-copy > p {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.71);
  font-size: 17px;
  line-height: 1.76;
}

.ttac-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.ttac-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.ttac-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 680;
}

.ttac-hero-meta svg {
  width: 14px;
  height: 14px;
  padding: 2px;
  border-radius: 50%;
  color: var(--ttac-primary);
  background: var(--ttac-accent);
}

/* ---------- CRM dashboard visual ---------- */
.ttac-crm-stage {
  position: relative;
  width: 700px;
  max-width: 100%;
  min-width: 0;
  padding: 28px 0 56px;
}

.ttac-stage-glow {
  position: absolute;
  width: 520px;
  height: 420px;
  top: 72px;
  left: 55px;
  border-radius: 50%;
  background: rgba(var(--ttac-accent-rgb), 0.2);
  filter: blur(85px);
}

.ttac-crm-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #f8fcfd;
  box-shadow: var(--ttac-shadow-dark);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center center;
}

.ttac-window-bar {
  min-height: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #d8e7eb;
  color: #526b74;
  background: #fff;
}

.ttac-window-bar > div {
  display: flex;
  gap: 5px;
}

.ttac-window-bar > div i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c3d4da;
}

.ttac-window-bar > div i:nth-child(2) {
  background: #91cddd;
}

.ttac-window-bar strong {
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.ttac-window-bar > span {
  justify-self: end;
  padding: 4px 8px;
  border-radius: 999px;
  color: #14745a;
  background: #e5f5ef;
  font-size: 8px;
  font-weight: 820;
  text-transform: uppercase;
}

.ttac-window-body {
  min-height: 420px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
}

.ttac-app-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 15px 8px;
  border-right: 1px solid #dbe9ed;
  background: #eef6f8;
}

.ttac-app-rail b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--ttac-primary);
  font-size: 8px;
  letter-spacing: -0.04em;
}

.ttac-app-rail span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #6c838b;
}

.ttac-app-rail span.is-active {
  color: var(--ttac-primary);
  background: #fff;
  box-shadow: 0 6px 18px rgba(2, 47, 64, 0.09);
}

.ttac-app-rail svg {
  width: 16px;
  height: 16px;
}

.ttac-board {
  min-width: 0;
  padding: 20px;
  color: #415b64;
}

.ttac-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.ttac-board-head small {
  display: block;
  margin-bottom: 2px;
  color: #7a8f96;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ttac-board-head h2 {
  margin: 0;
  color: #163945;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.ttac-board-head button {
  padding: 7px 10px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--ttac-primary);
  font-size: 9px;
  font-weight: 740;
}

.ttac-board-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 16px;
}

.ttac-board-stats div {
  min-width: 0;
  padding: 10px;
  border: 1px solid #dce9ec;
  border-radius: 10px;
  background: #fff;
}

.ttac-board-stats small,
.ttac-board-stats strong,
.ttac-board-stats span {
  display: block;
}

.ttac-board-stats small {
  margin-bottom: 3px;
  color: #809299;
  font-size: 7px;
  text-transform: uppercase;
}

.ttac-board-stats strong {
  color: #163945;
  font-size: 15px;
  line-height: 1.1;
}

.ttac-board-stats span {
  margin-top: 3px;
  color: #1c8065;
  font-size: 7px;
  font-weight: 760;
}

.ttac-pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.ttac-pipe-column {
  min-width: 0;
  padding: 9px;
  border-radius: 11px;
  background: #edf4f6;
}

.ttac-pipe-column > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 8px;
  color: #536e77;
  font-size: 8px;
  font-weight: 760;
  text-transform: uppercase;
}

.ttac-pipe-column > header b {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #4e6972;
  background: #dce9ed;
  font-size: 7px;
}

.ttac-pipe-column article {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  padding: 9px;
  border: 1px solid #dce8eb;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(2, 47, 64, 0.035);
}

.ttac-pipe-column article:last-child {
  margin-bottom: 0;
}

.ttac-pipe-column article.is-highlighted {
  border-color: rgba(var(--ttac-accent-rgb), 0.62);
  box-shadow: 0 8px 18px rgba(var(--ttac-accent-rgb), 0.12);
}

.ttac-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #21434d;
  background: #d9eef3;
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
}

.ttac-avatar-two { background: #eae8f8; }
.ttac-avatar-three { background: #dcf0e9; }
.ttac-avatar-four { background: #f4e9dc; }
.ttac-avatar-five { background: #e1eaf7; }

.ttac-pipe-column article p {
  min-width: 0;
  margin: 0;
}

.ttac-pipe-column article p strong,
.ttac-pipe-column article p small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ttac-pipe-column article p strong {
  color: #24424c;
  font-size: 8px;
  line-height: 1.25;
}

.ttac-pipe-column article p small {
  margin-top: 2px;
  color: #83949a;
  font-size: 6px;
}

.ttac-pipe-column article > b {
  color: #1e4651;
  font-size: 7px;
}

.ttac-pipe-column article footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid #edf2f4;
  color: #799097;
  font-size: 6px;
}

.ttac-pipe-column article footer em {
  color: var(--ttac-primary);
  font-style: normal;
  font-weight: 760;
}

.ttac-floating-timer {
  position: absolute;
  z-index: 4;
  right: -24px;
  bottom: 10px;
  min-width: 318px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 8px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 15px;
  color: #38515a;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 54px rgba(0, 20, 27, 0.25);
  backdrop-filter: blur(14px);
}

.ttac-floating-timer > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ttac-primary);
  background: var(--ttac-aqua-soft);
}

.ttac-floating-timer svg {
  width: 20px;
  height: 20px;
}

.ttac-floating-timer small,
.ttac-floating-timer strong {
  display: block;
}

.ttac-floating-timer small {
  color: #809198;
  font-size: 8px;
  text-transform: uppercase;
}

.ttac-floating-timer strong {
  color: #1a3d48;
  font-size: 11px;
}

.ttac-floating-timer > b {
  color: var(--ttac-primary);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.ttac-floating-timer > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #26a477;
  box-shadow: 0 0 0 5px rgba(38, 164, 119, 0.12);
}

.ttac-floating-note {
  position: absolute;
  z-index: 4;
  top: 4px;
  right: 14px;
  width: 198px;
  padding: 13px 14px;
  border: 1px solid rgba(56, 174, 204, 0.34);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(2, 47, 64, 0.88);
  box-shadow: 0 18px 42px rgba(0, 18, 24, 0.25);
  backdrop-filter: blur(16px);
}

.ttac-floating-note span,
.ttac-floating-note strong,
.ttac-floating-note small {
  display: block;
}

.ttac-floating-note span {
  margin-bottom: 5px;
  color: var(--ttac-accent);
  font-size: 7px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ttac-floating-note strong {
  color: #fff;
  font-size: 10px;
}

.ttac-floating-note small {
  margin-top: 3px;
  font-size: 8px;
}

/* ---------- Capability strip ---------- */
.ttac-signal-strip {
  border-bottom: 1px solid var(--ttac-line);
  background: #fff;
}

.ttac-signal-strip .ttac-container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ttac-signal-strip span {
  color: #526b74;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.ttac-signal-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ttac-accent);
}

/* ---------- Platform ledger ---------- */
.ttac-platform-section {
  background: var(--ttac-paper);
}

.ttac-platform-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 100px;
}

.ttac-platform-intro {
  align-self: center;
  position: sticky;
  top: 120px;
}

.ttac-platform-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.3vw, 50px);
}

.ttac-platform-intro > p {
  margin-bottom: 30px;
  color: var(--ttac-muted);
  font-size: 17px;
  line-height: 1.78;
}

.ttac-feature-ledger {
  border-top: 1px solid var(--ttac-line-strong);
}

.ttac-feature-ledger article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 62px;
  align-items: center;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--ttac-line-strong);
}

.ttac-feature-ledger article > span {
  padding-top: 7px;
  color: var(--ttac-accent);
  font-size: 11px;
  font-weight: 850;
}

.ttac-feature-ledger h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.ttac-feature-ledger p {
  max-width: 540px;
  margin: 0;
  color: var(--ttac-muted);
  line-height: 1.75;
}

.ttac-feature-ledger article > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ttac-line);
  border-radius: 16px;
  color: var(--ttac-primary);
  background: var(--ttac-aqua-pale);
  font-style: normal;
}

.ttac-feature-ledger article > i svg {
  width: 24px;
  height: 24px;
}

/* ---------- Intelligence section ---------- */
.ttac-intelligence-section {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ttac-secondary);
}

.ttac-intelligence-section::before {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  bottom: -420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.018), 0 0 0 200px rgba(255, 255, 255, 0.012);
  content: "";
}

.ttac-split-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 100px;
  margin-bottom: 58px;
}

.ttac-split-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
}

.ttac-split-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.ttac-intelligence-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 20px;
}

.ttac-chart-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ttac-card-radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ttac-chart-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.ttac-chart-panel > header span,
.ttac-chart-panel > header strong {
  display: block;
}

.ttac-chart-panel > header span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ttac-chart-panel > header strong {
  margin-top: 4px;
  color: #fff;
  font-size: 20px;
}

.ttac-chart-panel > header > b {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ttac-accent);
  background: rgba(var(--ttac-accent-rgb), 0.12);
  font-size: 11px;
}

.ttac-chart {
  position: relative;
  height: 290px;
  padding: 12px 0 24px 48px;
}

.ttac-chart-grid {
  position: absolute;
  inset: 12px 0 24px 48px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 33.333%, 16.666% 100%;
}

.ttac-chart svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--ttac-accent);
}

.ttac-chart .ttac-area {
  fill: url(#ttacArea);
  stroke: none;
}

.ttac-chart .ttac-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.ttac-chart circle {
  fill: var(--ttac-secondary);
  stroke: currentColor;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.ttac-chart-label {
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.39);
  font-size: 9px;
}

.ttac-label-a { top: 4px; }
.ttac-label-b { top: 35%; }
.ttac-label-c { top: 68%; }

.ttac-chart-panel > footer {
  display: flex;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ttac-chart-panel > footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.ttac-chart-panel > footer i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ttac-accent);
}

.ttac-chart-panel > footer span:last-child i {
  border: 1px solid var(--ttac-accent);
  background: transparent;
}

.ttac-insight-stack {
  display: grid;
  gap: 12px;
}

.ttac-insight-stack > article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.ttac-insight-stack > article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ttac-accent);
  background: rgba(var(--ttac-accent-rgb), 0.1);
}

.ttac-insight-stack > article svg {
  width: 22px;
  height: 22px;
}

.ttac-insight-stack small,
.ttac-insight-stack strong,
.ttac-insight-stack em {
  display: block;
}

.ttac-insight-stack small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.ttac-insight-stack strong {
  margin-top: 2px;
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
}

.ttac-insight-stack em {
  margin-top: 3px;
  color: var(--ttac-accent);
  font-size: 8px;
  font-style: normal;
  font-weight: 780;
}

.ttac-insight-quote {
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  min-height: 144px;
  padding: 22px;
  border-radius: 16px;
  color: var(--ttac-primary);
  background: var(--ttac-accent);
}

.ttac-insight-quote span {
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ttac-insight-quote p {
  margin: 0;
  color: var(--ttac-primary);
  font-size: 15px;
  font-weight: 660;
  line-height: 1.52;
}

/* ---------- Workflow ---------- */
.ttac-workflow-section {
  background: var(--ttac-soft);
}

.ttac-workflow-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.ttac-workflow-heading h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.7vw, 64px);
}

.ttac-workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ttac-line-strong);
  border-bottom: 1px solid var(--ttac-line-strong);
}

.ttac-workflow-track::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ttac-accent);
  content: "";
}

.ttac-workflow-track article {
  position: relative;
  min-height: 350px;
  padding: 34px 28px 30px;
  border-right: 1px solid var(--ttac-line-strong);
  background: rgba(255, 255, 255, 0.24);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.ttac-workflow-track article:last-child {
  border-right: 0;
}

.ttac-workflow-track article:hover {
  z-index: 1;
  background: #fff;
  box-shadow: var(--ttac-shadow-sm);
  transform: translateY(-6px);
}

.ttac-step-number {
  margin-bottom: 42px;
  color: var(--ttac-accent);
  font-size: 11px;
  font-weight: 850;
}

.ttac-workflow-track article > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 15px;
  color: var(--ttac-primary);
  background: var(--ttac-aqua-soft);
  font-style: normal;
}

.ttac-workflow-track article > i svg {
  width: 23px;
  height: 23px;
}

.ttac-workflow-track h3 {
  margin-bottom: 13px;
  font-size: 23px;
}

.ttac-workflow-track p {
  margin-bottom: 28px;
  color: var(--ttac-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ttac-workflow-track article > span {
  position: absolute;
  bottom: 26px;
  color: var(--ttac-primary);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Plan previews ---------- */
.ttac-plan-preview-section {
  background: #fff;
}

.ttac-plan-preview-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.ttac-plan-preview-head h2 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 64px);
}

.ttac-plan-preview-head > p {
  margin: 0 0 7px;
  color: var(--ttac-muted);
  line-height: 1.75;
}

.ttac-plan-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ttac-plan-preview {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--ttac-line);
  border-radius: var(--ttac-card-radius);
  background: var(--ttac-paper);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ttac-plan-preview:hover {
  border-color: var(--ttac-line-strong);
  box-shadow: var(--ttac-shadow-sm);
  transform: translateY(-6px);
}

.ttac-plan-preview.is-featured {
  color: rgba(255, 255, 255, 0.7);
  border-color: var(--ttac-primary);
  background: var(--ttac-primary);
  box-shadow: var(--ttac-shadow-md);
}

.ttac-plan-preview-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.ttac-plan-preview-top > span {
  color: var(--ttac-accent);
  font-size: 10px;
  font-weight: 850;
}

.ttac-plan-preview-top > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 12px;
  color: var(--ttac-primary);
  background: var(--ttac-aqua-soft);
  font-style: normal;
}

.ttac-plan-preview-top > i svg {
  width: 20px;
  height: 20px;
}

.ttac-plan-preview-top > b {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 6px 10px;
  border-radius: 0 0 8px 8px;
  color: var(--ttac-primary);
  background: var(--ttac-accent);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ttac-plan-preview h3 {
  margin-bottom: 13px;
  font-size: 27px;
}

.ttac-plan-preview.is-featured h3 {
  color: #fff;
}

.ttac-plan-preview > p {
  margin-bottom: 25px;
  color: var(--ttac-muted);
  font-size: 14px;
  line-height: 1.72;
}

.ttac-plan-preview.is-featured > p {
  color: rgba(255, 255, 255, 0.61);
}

.ttac-plan-preview-price {
  margin-top: auto;
  padding: 20px 0;
  border-top: 1px solid var(--ttac-line);
  border-bottom: 1px solid var(--ttac-line);
}

.ttac-plan-preview.is-featured .ttac-plan-preview-price {
  border-color: rgba(255, 255, 255, 0.13);
}

.ttac-plan-preview-price small,
.ttac-plan-preview-price strong {
  display: block;
}

.ttac-plan-preview-price small {
  color: var(--ttac-muted);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ttac-plan-preview-price strong {
  margin-top: 4px;
  color: var(--ttac-primary);
  font-size: 32px;
  letter-spacing: -0.045em;
}

.ttac-plan-preview.is-featured .ttac-plan-preview-price small {
  color: rgba(255, 255, 255, 0.48);
}

.ttac-plan-preview.is-featured .ttac-plan-preview-price strong {
  color: var(--ttac-accent);
}

.ttac-plan-preview > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 21px;
  color: var(--ttac-primary);
  font-size: 13px;
  font-weight: 820;
}

.ttac-plan-preview.is-featured > a {
  color: #fff;
}

.ttac-plan-preview > a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.ttac-plan-preview > a:hover svg {
  transform: translateX(4px);
}

.ttac-plans-bar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 17px 18px 17px 26px;
  border: 1px solid var(--ttac-line);
  border-radius: 16px;
  background: var(--ttac-soft);
}

.ttac-plans-bar > span {
  color: var(--ttac-muted);
  font-size: 13px;
  font-weight: 650;
}

.ttac-plans-bar > span strong {
  color: var(--ttac-primary);
}

/* ---------- FAQ ---------- */
.ttac-faq-section {
  background: var(--ttac-aqua-pale);
}

.ttac-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.ttac-faq-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.5vw, 58px);
}

.ttac-faq-intro > p {
  margin-bottom: 26px;
  color: var(--ttac-muted);
  font-size: 16px;
  line-height: 1.75;
}

.ttac-faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ttac-primary);
  font-size: 13px;
  font-weight: 820;
}

.ttac-faq-intro > a svg {
  width: 17px;
  height: 17px;
}

.ttac-faq-list {
  border-top: 1px solid var(--ttac-line-strong);
}

.ttac-faq-item {
  border-bottom: 1px solid var(--ttac-line-strong);
}

.ttac-faq-item summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  color: var(--ttac-ink);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.ttac-faq-item summary::-webkit-details-marker {
  display: none;
}

.ttac-faq-item summary i {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid var(--ttac-line-strong);
  border-radius: 50%;
}

.ttac-faq-item summary i::before,
.ttac-faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--ttac-primary);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.ttac-faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ttac-faq-item[open] summary i {
  border-color: var(--ttac-accent);
  background: var(--ttac-accent);
}

.ttac-faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.ttac-faq-item > p {
  max-width: 680px;
  margin: -7px 54px 0 0;
  padding: 0 0 27px;
  color: var(--ttac-muted);
  line-height: 1.76;
}

/* ---------- Inner-page hero ---------- */
.ttac-inner-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(118deg, var(--ttac-primary), var(--ttac-secondary));
}

.ttac-inner-hero::after {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -140px;
  bottom: -310px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.025), 0 0 0 144px rgba(255, 255, 255, 0.015);
  content: "";
}

.ttac-inner-grid {
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000);
  mask-image: linear-gradient(to bottom, transparent, #000);
}

.ttac-inner-hero .ttac-container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 74px;
}

.ttac-inner-hero .ttac-container > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ttac-accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.ttac-inner-hero .ttac-container > span::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.ttac-inner-hero h1 {
  max-width: 940px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(50px, 6vw, 78px);
}

.ttac-inner-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.72;
}

/* ---------- About ---------- */
.ttac-about-story-section {
  background: #fff;
}

.ttac-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.ttac-about-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(40px, 4.6vw, 62px);
}

.ttac-about-copy p {
  margin-bottom: 19px;
  color: var(--ttac-muted);
  font-size: 16px;
  line-height: 1.82;
}

.ttac-about-copy .ttac-button {
  margin-top: 12px;
}

.ttac-about-manifesto {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--ttac-card-radius);
  color: rgba(255, 255, 255, 0.66);
  background: var(--ttac-primary);
  box-shadow: var(--ttac-shadow-md);
}

.ttac-about-manifesto::after {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: var(--ttac-accent);
  content: "";
  opacity: 0.3;
}

.ttac-about-manifesto > span {
  display: block;
  margin-bottom: 24px;
  color: var(--ttac-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ttac-about-manifesto blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  color: #fff;
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 610;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.ttac-manifesto-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ttac-manifesto-metrics p {
  margin: 0;
}

.ttac-manifesto-metrics strong,
.ttac-manifesto-metrics small {
  display: block;
}

.ttac-manifesto-metrics strong {
  color: #fff;
  font-size: 11px;
}

.ttac-manifesto-metrics small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 8px;
  line-height: 1.45;
}

.ttac-principles-section {
  background: var(--ttac-secondary);
}

.ttac-principles-head {
  margin-bottom: 50px;
}

.ttac-principles-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 66px);
}

.ttac-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.ttac-principles-grid article {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
}

.ttac-principles-grid article > span {
  color: var(--ttac-accent);
  font-size: 10px;
  font-weight: 850;
}

.ttac-principles-grid article > i {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--ttac-accent);
  background: rgba(var(--ttac-accent-rgb), 0.1);
  font-style: normal;
}

.ttac-principles-grid article > i svg {
  width: 24px;
  height: 24px;
}

.ttac-principles-grid h3 {
  max-width: 340px;
  margin: 82px 0 15px;
  color: #fff;
  font-size: 28px;
}

.ttac-principles-grid p {
  max-width: 470px;
  margin: 0;
  line-height: 1.75;
}

.ttac-scope-section {
  background: var(--ttac-soft);
}

.ttac-scope-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 95px;
}

.ttac-scope-layout h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.8vw, 62px);
}

.ttac-scope-layout > div:first-child p {
  color: var(--ttac-muted);
  font-size: 16px;
  line-height: 1.78;
}

.ttac-scope-list {
  border-top: 1px solid var(--ttac-line-strong);
}

.ttac-scope-list > span {
  display: grid;
  grid-template-columns: 30px minmax(0, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ttac-line-strong);
}

.ttac-scope-list svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  color: white;
  background: var(--ttac-accent);
}

.ttac-scope-list b {
  color: var(--ttac-ink);
  font-size: 14px;
}

.ttac-scope-list small {
  color: var(--ttac-muted);
  font-size: 13px;
}

/* ---------- Contact ---------- */
.ttac-contact-section {
  background: var(--ttac-soft);
}

.ttac-contact-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--ttac-line);
  border-radius: var(--ttac-card-radius);
  background: #fff;
  box-shadow: var(--ttac-shadow-md);
}

.ttac-contact-aside {
  padding: 48px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--ttac-primary);
}

.ttac-contact-aside h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(35px, 3.8vw, 50px);
}

.ttac-contact-aside > p {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.74;
}

.ttac-contact-points {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ttac-contact-points > span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ttac-contact-points i {
  color: var(--ttac-accent);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}

.ttac-contact-points b {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 680;
}

.ttac-response-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  margin-top: 34px;
  padding: 16px;
  border: 1px solid rgba(56, 174, 204, 0.25);
  border-radius: 14px;
  background: rgba(var(--ttac-accent-rgb), 0.08);
}

.ttac-response-note > svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 12px;
  color: var(--ttac-accent);
  background: rgba(var(--ttac-accent-rgb), 0.1);
}

.ttac-response-note p {
  margin: 0;
}

.ttac-response-note strong,
.ttac-response-note span {
  display: block;
}

.ttac-response-note strong {
  color: #fff;
  font-size: 12px;
}

.ttac-response-note span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.45;
}

.ttac-form-card {
  padding: 48px;
}

.ttac-form-card h2 {
  margin-bottom: 13px;
  font-size: clamp(35px, 3.8vw, 50px);
}

.ttac-form-card > p {
  margin-bottom: 30px;
  color: var(--ttac-muted);
}

.ttac-alert {
  margin-bottom: 22px;
  padding: 13px 15px;
  border: 1px solid;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.ttac-alert-success {
  color: #0d654d;
  border-color: rgba(20, 116, 90, 0.26);
  background: #eaf7f2;
}

.ttac-alert-error {
  color: #8a3038;
  border-color: rgba(166, 65, 72, 0.24);
  background: #fff0f1;
}

.ttac-contact-form {
  display: grid;
  gap: 18px;
}

.ttac-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ttac-field label {
  display: block;
  margin-bottom: 7px;
  color: #294751;
  font-size: 11px;
  font-weight: 760;
}

.ttac-field label span {
  color: var(--ttac-danger);
}

.ttac-field input,
.ttac-field select,
.ttac-field textarea {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--ttac-line-strong);
  border-radius: 10px;
  outline: 0;
  color: var(--ttac-ink);
  background: var(--ttac-paper);
  box-shadow: none;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ttac-field textarea {
  min-height: 140px;
  resize: vertical;
}

.ttac-field input::placeholder,
.ttac-field textarea::placeholder {
  color: #91a1a6;
}

.ttac-field input:focus,
.ttac-field select:focus,
.ttac-field textarea:focus {
  border-color: var(--ttac-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--ttac-accent-rgb), 0.12);
}

.ttac-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ttac-muted);
  font-size: 11px;
  line-height: 1.55;
}

.ttac-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--ttac-primary);
}

.ttac-consent a {
  color: var(--ttac-primary);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ttac-submit-button {
  justify-self: start;
  border: 0;
}

.ttac-hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.ttac-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.ttac-contact-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--ttac-line);
  border-radius: 15px;
  background: #fff;
}

.ttac-contact-card > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ttac-primary);
  background: var(--ttac-aqua-soft);
  font-style: normal;
}

.ttac-contact-card > i svg {
  width: 21px;
  height: 21px;
}

.ttac-contact-card small {
  display: block;
  color: var(--ttac-muted);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ttac-contact-card p {
  margin: 4px 0 0;
  color: var(--ttac-ink);
  font-size: 12px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.ttac-contact-card p a:hover {
  color: var(--ttac-accent);
}

/* ---------- Pricing ---------- */
.ttac-pricing-section {
  background: var(--ttac-soft);
}

.ttac-pricing-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 17px 20px;
  border: 1px solid rgba(var(--ttac-accent-rgb), 0.32);
  border-radius: 14px;
  color: #4e6972;
  background: #fff;
  font-size: 12px;
  line-height: 1.6;
}

.ttac-pricing-note > svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 12px;
  color: var(--ttac-primary);
  background: var(--ttac-aqua-soft);
}

.ttac-pricing-note strong {
  color: var(--ttac-primary);
}

.ttac-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.ttac-price-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ttac-line);
  border-radius: var(--ttac-card-radius);
  background: #fff;
  box-shadow: 0 8px 26px rgba(2, 47, 64, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ttac-price-card:hover {
  border-color: var(--ttac-line-strong);
  box-shadow: var(--ttac-shadow-sm);
  transform: translateY(-6px);
}

.ttac-price-card.is-featured {
  color: rgba(255, 255, 255, 0.67);
  border-color: var(--ttac-primary);
  background: var(--ttac-primary);
  box-shadow: var(--ttac-shadow-md);
}

.ttac-price-card-head {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.ttac-plan-number {
  color: var(--ttac-accent);
  font-size: 10px;
  font-weight: 880;
}

.ttac-price-card-head > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 13px;
  color: var(--ttac-primary);
  background: var(--ttac-aqua-soft);
  font-style: normal;
}

.ttac-price-card-head > i svg {
  width: 21px;
  height: 21px;
}

.ttac-price-card-head > b {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 6px 10px;
  border-radius: 0 0 8px 8px;
  color: var(--ttac-primary);
  background: var(--ttac-accent);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ttac-price-title > small {
  display: block;
  margin-bottom: 6px;
  color: var(--ttac-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ttac-price-card.is-featured .ttac-price-title > small {
  color: rgba(255, 255, 255, 0.46);
}

.ttac-price-title h2 {
  min-height: 62px;
  margin-bottom: 13px;
  font-size: 27px;
}

.ttac-price-card.is-featured h2 {
  color: #fff;
}

.ttac-price-title p {
  min-height: 72px;
  margin-bottom: 22px;
  color: var(--ttac-muted);
  font-size: 13px;
  line-height: 1.68;
}

.ttac-price-card.is-featured .ttac-price-title p {
  color: rgba(255, 255, 255, 0.58);
}

.ttac-price-value {
  padding: 18px 0;
  border-top: 1px solid var(--ttac-line);
  border-bottom: 1px solid var(--ttac-line);
}

.ttac-price-card.is-featured .ttac-price-value {
  border-color: rgba(255, 255, 255, 0.13);
}

.ttac-price-value span,
.ttac-price-value strong {
  display: block;
}

.ttac-price-value span {
  color: var(--ttac-muted);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ttac-price-value strong {
  margin-top: 3px;
  color: var(--ttac-primary);
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.ttac-price-card.is-featured .ttac-price-value span {
  color: rgba(255, 255, 255, 0.45);
}

.ttac-price-card.is-featured .ttac-price-value strong {
  color: var(--ttac-accent);
}

.ttac-price-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 27px;
  padding: 0;
  list-style: none;
}

.ttac-price-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: #536c75;
  font-size: 12px;
  line-height: 1.5;
}

.ttac-price-card.is-featured li {
  color: rgba(255, 255, 255, 0.65);
}

.ttac-price-card li > svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  color: white;
  background: var(--ttac-accent);
}

.ttac-price-button {
  width: 100%;
  margin-top: auto;
}

.ttac-price-card.is-featured .ttac-button-accent {
  box-shadow: none;
}

@media (min-width: 1041px) {
  .ttac-price-card:last-child {
    grid-column: 2;
  }
}

.ttac-plan-foundation {
  color: rgba(255, 255, 255, 0.65);
  background: var(--ttac-secondary);
}

.ttac-plan-foundation-head {
  max-width: 800px;
  margin-bottom: 45px;
}

.ttac-plan-foundation-head h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(40px, 4.6vw, 62px);
}

.ttac-plan-foundation-head p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.57);
  line-height: 1.75;
}

.ttac-foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ttac-foundation-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.ttac-foundation-grid article > svg {
  width: 44px;
  height: 44px;
  margin-bottom: 35px;
  padding: 11px;
  border-radius: 13px;
  color: var(--ttac-accent);
  background: rgba(var(--ttac-accent-rgb), 0.1);
}

.ttac-foundation-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
}

.ttac-foundation-grid p {
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- Legal ---------- */
.ttac-legal-section {
  background: var(--ttac-soft);
}

.ttac-legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 44px;
}

.ttac-legal-layout > aside {
  position: sticky;
  top: 118px;
  padding: 22px;
  border: 1px solid var(--ttac-line);
  border-radius: 14px;
  background: #fff;
}

.ttac-legal-layout > aside span,
.ttac-legal-layout > aside strong {
  display: block;
}

.ttac-legal-layout > aside span {
  margin-bottom: 7px;
  color: var(--ttac-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ttac-legal-layout > aside strong {
  color: var(--ttac-ink);
  font-size: 14px;
  line-height: 1.45;
}

.ttac-legal-layout > aside p {
  margin: 14px 0 0;
  color: var(--ttac-muted);
  font-size: 11px;
  line-height: 1.65;
}

.ttac-legal-card {
  overflow: hidden;
  border: 1px solid var(--ttac-line);
  border-radius: var(--ttac-card-radius);
  background: #fff;
  box-shadow: var(--ttac-shadow-sm);
}

.ttac-legal-card > section {
  padding: 34px 40px;
  border-bottom: 1px solid var(--ttac-line);
}

.ttac-legal-card > section:last-child {
  border-bottom: 0;
}

.ttac-legal-card h2 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.ttac-legal-card p {
  margin: 0;
  color: #536b74;
  font-size: 14px;
  line-height: 1.82;
}

.ttac-terms-products > p {
  margin-bottom: 18px;
}

.ttac-terms-product-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.ttac-terms-product-list li {
  padding-left: 5px;
  color: #526b74;
  font-size: 13px;
}

.ttac-terms-product-list strong {
  color: var(--ttac-ink);
}

.ttac-terms-product-list span {
  padding: 0 5px;
  color: var(--ttac-muted);
}

.ttac-terms-product-list b {
  color: var(--ttac-primary);
}

/* ---------- Final CTA ---------- */
.ttac-final-section {
  padding: 90px 0;
  background: #fff;
}

.ttac-final-cta {
  position: relative;
  min-height: 280px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  padding: 54px;
  border-radius: calc(var(--ttac-card-radius) + 4px);
  color: rgba(255, 255, 255, 0.65);
  background: var(--ttac-primary);
  box-shadow: var(--ttac-shadow-md);
}

.ttac-final-cta::after {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -180px;
  bottom: -240px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.015);
  content: "";
}

.ttac-final-code {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--ttac-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.ttac-final-cta > div {
  position: relative;
  z-index: 1;
}

.ttac-final-cta small {
  display: block;
  margin-bottom: 12px;
  color: var(--ttac-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.ttac-final-cta h2 {
  max-width: 650px;
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(35px, 4vw, 50px);
}

.ttac-final-cta p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.ttac-final-cta > .ttac-button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.ttac-footer {
  color: rgba(255, 255, 255, 0.57);
  background: var(--ttac-secondary);
}

.ttac-footer-callout {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding-top: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ttac-footer-callout span {
  display: block;
  margin-bottom: 9px;
  color: var(--ttac-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ttac-footer-callout h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(33px, 4vw, 49px);
}

.ttac-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(145px, 0.55fr));
  gap: 54px;
  padding-top: 68px;
  padding-bottom: 58px;
}

.ttac-footer-brand > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.ttac-footer-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.ttac-footer-brand > a strong {
  max-width: 210px;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.ttac-footer-brand > p {
  max-width: 420px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.75;
}

.ttac-footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ttac-footer-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 760;
}

.ttac-footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.ttac-footer-column h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.ttac-footer-column a,
.ttac-footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.ttac-footer-column a:hover {
  color: var(--ttac-accent);
}

.ttac-footer-column p strong {
  color: rgba(255, 255, 255, 0.75);
}

.ttac-footer-contact a {
  overflow-wrap: anywhere;
}

.ttac-footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.ttac-back-top {
  position: fixed;
  z-index: 9998;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  background: var(--ttac-primary);
  box-shadow: 0 15px 34px rgba(var(--ttac-primary-rgb), 0.24);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.ttac-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ttac-back-top:hover {
  background: var(--ttac-secondary);
}

.ttac-back-top svg {
  width: 19px;
  height: 19px;
}

/* ---------- WordPress theme isolation ---------- */
body.ttac-page {
  overflow-x: hidden;
}

body.ttac-page #masthead,
body.ttac-page header.site-header:not(.ttac-header),
body.ttac-page #colophon,
body.ttac-page footer.site-footer:not(.ttac-footer) {
  display: none !important;
}

body.ttac-page .site,
body.ttac-page .site-content,
body.ttac-page .content-area,
body.ttac-page .site-main,
body.ttac-page article.page,
body.ttac-page .entry-content,
body.ttac-page .wp-site-blocks,
body.ttac-page main.wp-block-group {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.ttac-page .entry-header,
body.ttac-page .entry-title,
body.ttac-page .post-thumbnail,
body.ttac-page .comments-area,
body.ttac-page .post-navigation {
  display: none !important;
}

body.ttac-page .entry-content > .ttac-site-shell,
body.ttac-page .wp-block-post-content > .ttac-site-shell {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ---------- WooCommerce ---------- */
.ttac-woo-header-shell,
.ttac-woo-footer-shell {
  left: auto;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

body.ttac-woo-page {
  color: #3c5660;
  background: #f3fbfd;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.ttac-woo-page .woocommerce,
body.ttac-woo-page .woocommerce-page main,
body.ttac-woo-page main.site-main {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 72px 0 90px !important;
}

body.ttac-woo-page .woocommerce-breadcrumb {
  margin-bottom: 24px;
  color: #71878f;
  font-size: 12px;
}

body.ttac-woo-page .woocommerce h1,
body.ttac-woo-page .woocommerce h2,
body.ttac-woo-page .woocommerce h3,
body.ttac-woo-page .product_title {
  color: #082a36;
  font-weight: 720;
  letter-spacing: -0.035em;
}

body.ttac-woo-page .woocommerce .price,
body.ttac-woo-page .woocommerce div.product p.price,
body.ttac-woo-page .woocommerce div.product span.price {
  color: #022f40;
  font-weight: 800;
}

body.ttac-woo-page .woocommerce button.button,
body.ttac-woo-page .woocommerce a.button,
body.ttac-woo-page .woocommerce input.button,
body.ttac-woo-page .woocommerce #respond input#submit {
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 12px;
  color: #fff !important;
  background: #022f40 !important;
  font-weight: 800;
}

body.ttac-woo-page .woocommerce button.button:hover,
body.ttac-woo-page .woocommerce a.button:hover,
body.ttac-woo-page .woocommerce input.button:hover,
body.ttac-woo-page .woocommerce #respond input#submit:hover {
  color: #fff !important;
  background: #061d26 !important;
}

body.ttac-woo-page .woocommerce .checkout-button,
body.ttac-woo-page .woocommerce button.button.alt,
body.ttac-woo-page .woocommerce a.button.alt {
  color: #022f40 !important;
  background: #38aecc !important;
}

body.ttac-woo-page .woocommerce .checkout-button:hover,
body.ttac-woo-page .woocommerce button.button.alt:hover,
body.ttac-woo-page .woocommerce a.button.alt:hover {
  color: #022f40 !important;
  background: #69c7dd !important;
}

body.ttac-woo-page .woocommerce input.input-text,
body.ttac-woo-page .woocommerce textarea,
body.ttac-woo-page .woocommerce select,
body.ttac-woo-page .select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(2, 47, 64, 0.22);
  border-radius: 10px;
  color: #082a36;
  background: #fff;
  box-shadow: none;
}

body.ttac-woo-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 24px;
}

body.ttac-woo-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 8px;
}

body.ttac-woo-page .woocommerce table.shop_table,
body.ttac-woo-page .woocommerce form.checkout_coupon,
body.ttac-woo-page .woocommerce form.login,
body.ttac-woo-page .woocommerce form.register,
body.ttac-woo-page .woocommerce-checkout-review-order,
body.ttac-woo-page .cart_totals,
body.ttac-woo-page .woocommerce-MyAccount-navigation,
body.ttac-woo-page .woocommerce-MyAccount-content {
  border: 1px solid rgba(2, 47, 64, 0.13);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(2, 47, 64, 0.06);
}

body.ttac-woo-page .woocommerce table.shop_table {
  overflow: hidden;
  border-collapse: separate;
}

body.ttac-woo-page .woocommerce-message,
body.ttac-woo-page .woocommerce-info,
body.ttac-woo-page .woocommerce-error {
  border-top-color: #38aecc;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(2, 47, 64, 0.05);
}

body.ttac-woo-page .woocommerce-message::before,
body.ttac-woo-page .woocommerce-info::before {
  color: #022f40;
}

body.ttac-woo-page ul.products li.product {
  padding: 20px;
  border: 1px solid rgba(2, 47, 64, 0.13);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(2, 47, 64, 0.05);
}

body.ttac-woo-page div.product div.images img {
  border-radius: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1220px) {
  .ttac-hero-layout {
    grid-template-columns: minmax(0, 0.83fr) minmax(510px, 1.17fr);
    gap: 38px;
  }

  .ttac-crm-stage {
    width: 640px;
  }

  .ttac-floating-timer {
    right: 0;
  }

  .ttac-pipe-column article {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .ttac-pipe-column article > b {
    display: none;
  }
}

@media (max-width: 1040px) {
  .ttac-section {
    padding: 94px 0;
  }

  .ttac-hero {
    min-height: 0;
  }

  .ttac-hero-layout {
    grid-template-columns: 1fr;
    gap: 62px;
    padding-top: 88px;
    padding-bottom: 110px;
  }

  .ttac-hero-copy {
    max-width: 780px;
  }

  .ttac-hero h1 {
    max-width: 760px;
  }

  .ttac-crm-stage {
    width: min(760px, 92%);
    margin: 0 auto;
  }

  .ttac-crm-window {
    transform: none;
  }

  .ttac-platform-layout,
  .ttac-faq-layout,
  .ttac-scope-layout {
    gap: 62px;
  }

  .ttac-intelligence-grid {
    grid-template-columns: 1fr;
  }

  .ttac-insight-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ttac-insight-quote {
    grid-column: 1 / -1;
  }

  .ttac-workflow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttac-workflow-track article:nth-child(2) {
    border-right: 0;
  }

  .ttac-workflow-track article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ttac-line-strong);
  }

  .ttac-price-card {
    padding: 24px;
  }

  .ttac-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttac-price-title h2,
  .ttac-price-title p {
    min-height: 0;
  }

  .ttac-contact-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  }

  .ttac-contact-aside,
  .ttac-form-card {
    padding: 38px;
  }

  .ttac-footer-grid {
    grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(150px, 0.6fr));
  }

  .ttac-footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  .admin-bar .ttac-header {
    top: 46px;
  }

  .ttac-header-inner {
    min-height: 72px;
  }

  .ttac-brand,
  .ttac-brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .ttac-menu-toggle {
    display: flex;
  }

  .ttac-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--ttac-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--ttac-shadow-md);
    backdrop-filter: blur(18px);
  }

  .ttac-nav.is-open {
    display: flex;
  }

  .ttac-nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .ttac-nav-links a {
    padding: 12px 13px;
    border-radius: 9px;
    font-size: 14px;
  }

  .ttac-nav-action {
    justify-content: space-between;
    padding: 13px 15px;
  }

  .ttac-signal-strip .ttac-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 14px 0;
  }

  .ttac-signal-strip span {
    padding: 10px;
  }

  .ttac-signal-strip span:nth-of-type(4),
  .ttac-signal-strip span:nth-of-type(5) {
    grid-column: span 1;
  }

  .ttac-signal-strip i {
    display: none;
  }

  .ttac-platform-layout,
  .ttac-faq-layout,
  .ttac-scope-layout,
  .ttac-about-story,
  .ttac-contact-layout,
  .ttac-legal-layout {
    grid-template-columns: 1fr;
  }

  .ttac-platform-intro,
  .ttac-legal-layout > aside {
    position: static;
  }

  .ttac-split-heading,
  .ttac-plan-preview-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ttac-plan-preview-grid {
    grid-template-columns: 1fr;
  }

  .ttac-plan-preview {
    min-height: 0;
  }

  .ttac-plans-bar {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .ttac-plans-bar .ttac-button {
    width: 100%;
  }

  .ttac-contact-layout {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .ttac-contact-aside,
  .ttac-form-card {
    border-radius: var(--ttac-card-radius);
  }

  .ttac-form-card {
    border: 1px solid var(--ttac-line);
    background: #fff;
    box-shadow: var(--ttac-shadow-sm);
  }

  .ttac-contact-cards {
    grid-template-columns: 1fr;
  }

  .ttac-footer-callout {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ttac-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttac-footer-brand {
    grid-column: 1 / -1;
  }

  .ttac-footer-contact {
    grid-column: auto;
  }

  .ttac-final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ttac-final-code {
    display: none;
  }
}

@media (max-width: 680px) {
  .ttac-container {
    width: min(100% - 32px, 1180px);
  }

  .ttac-section {
    padding: 76px 0;
  }

  .ttac-hero-layout {
    gap: 50px;
    padding-top: 68px;
    padding-bottom: 88px;
  }

  .ttac-hero h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  .ttac-hero-copy > p {
    font-size: 15px;
  }

  .ttac-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .ttac-hero-actions .ttac-button {
    width: 100%;
  }

  .ttac-hero-actions .ttac-text-link {
    align-self: center;
  }

  .ttac-hero-meta {
    display: grid;
    gap: 9px;
  }

  .ttac-crm-stage {
    width: 100%;
    padding-bottom: 70px;
  }

  .ttac-window-body {
    grid-template-columns: 1fr;
    min-height: 360px;
  }

  .ttac-app-rail {
    display: none;
  }

  .ttac-board {
    padding: 15px;
  }

  .ttac-board-stats div {
    padding: 8px;
  }

  .ttac-board-stats strong {
    font-size: 12px;
  }

  .ttac-pipe-column {
    padding: 7px;
  }

  .ttac-pipe-column article {
    grid-template-columns: minmax(0, 1fr);
    padding: 7px;
  }

  .ttac-pipe-column article .ttac-avatar,
  .ttac-pipe-column article footer {
    display: none;
  }

  .ttac-pipe-column article p strong {
    font-size: 7px;
  }

  .ttac-floating-note {
    display: none;
  }

  .ttac-floating-timer {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-width: 0;
  }

  .ttac-signal-strip .ttac-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttac-signal-strip span:last-child {
    grid-column: 1 / -1;
  }

  .ttac-feature-ledger article {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 18px;
  }

  .ttac-feature-ledger article > i {
    display: none;
  }

  .ttac-feature-ledger h3 {
    font-size: 23px;
  }

  .ttac-chart-panel {
    padding: 20px;
  }

  .ttac-chart {
    height: 235px;
    padding-left: 36px;
  }

  .ttac-chart-grid {
    left: 36px;
  }

  .ttac-insight-stack {
    grid-template-columns: 1fr;
  }

  .ttac-insight-quote {
    grid-column: auto;
  }

  .ttac-workflow-track {
    grid-template-columns: 1fr;
  }

  .ttac-workflow-track article,
  .ttac-workflow-track article:nth-child(2) {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--ttac-line-strong);
  }

  .ttac-workflow-track article:last-child {
    border-bottom: 0;
  }

  .ttac-inner-hero {
    min-height: 390px;
  }

  .ttac-inner-hero .ttac-container {
    padding-top: 76px;
    padding-bottom: 58px;
  }

  .ttac-inner-hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .ttac-inner-hero p {
    font-size: 15px;
  }

  .ttac-about-manifesto {
    padding: 30px;
  }

  .ttac-manifesto-metrics {
    grid-template-columns: 1fr;
  }

  .ttac-principles-grid {
    grid-template-columns: 1fr;
  }

  .ttac-principles-grid article {
    min-height: 290px;
  }

  .ttac-scope-list > span {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .ttac-scope-list small {
    grid-column: 2;
  }

  .ttac-field-row {
    grid-template-columns: 1fr;
  }

  .ttac-contact-aside,
  .ttac-form-card {
    padding: 28px;
  }

  .ttac-submit-button {
    width: 100%;
  }

  .ttac-pricing-grid,
  .ttac-foundation-grid {
    grid-template-columns: 1fr;
  }

  .ttac-price-card {
    padding: 26px;
  }

  .ttac-legal-layout {
    gap: 20px;
  }

  .ttac-legal-card > section {
    padding: 26px 24px;
  }

  .ttac-final-section {
    padding: 68px 0;
  }

  .ttac-final-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 30px;
  }

  .ttac-final-cta > .ttac-button {
    width: 100%;
  }

  .ttac-footer-callout .ttac-button {
    width: 100%;
  }

  .ttac-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ttac-footer-brand,
  .ttac-footer-contact {
    grid-column: auto;
  }

  .ttac-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 18px 0;
  }

  body.ttac-woo-page .woocommerce,
  body.ttac-woo-page .woocommerce-page main,
  body.ttac-woo-page main.site-main {
    width: min(100% - 32px, 1180px) !important;
    padding: 48px 0 68px !important;
  }
}

@media (max-width: 420px) {
  .ttac-container {
    width: min(100% - 24px, 1180px);
  }

  .ttac-nav {
    right: 12px;
    left: 12px;
  }

  .ttac-eyebrow {
    align-items: flex-start;
    font-size: 9px;
  }

  .ttac-hero h1 {
    font-size: 42px;
  }

  .ttac-window-bar {
    padding: 0 10px;
  }

  .ttac-board-head button {
    display: none;
  }

  .ttac-board-stats small {
    font-size: 6px;
  }

  .ttac-pipe-column article:nth-of-type(3) {
    display: none;
  }

  .ttac-floating-timer {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 11px;
  }

  .ttac-floating-timer > span {
    width: 38px;
    height: 38px;
  }

  .ttac-floating-timer > i {
    display: none;
  }

  .ttac-floating-timer > b {
    font-size: 11px;
  }

  .ttac-chart-panel > footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ttac-plan-preview,
  .ttac-price-card,
  .ttac-contact-aside,
  .ttac-form-card,
  .ttac-about-manifesto {
    padding: 23px;
  }

  .ttac-principles-grid article {
    padding: 26px;
  }

  .ttac-principles-grid article > i {
    top: 24px;
    right: 24px;
  }

  .ttac-footer-callout h2 {
    font-size: 32px;
  }

  .ttac-back-top {
    right: 13px;
    bottom: 13px;
    width: 43px;
    height: 43px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ttac-site-shell *,
  .ttac-site-shell *::before,
  .ttac-site-shell *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .ttac-header,
  .ttac-footer,
  .ttac-back-top,
  .ttac-final-section,
  .ttac-contact-aside,
  .ttac-button {
    display: none !important;
  }

  .ttac-site-shell {
    left: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: #111;
    background: #fff;
  }

  .ttac-inner-hero {
    min-height: 0;
    color: #111;
    background: #fff;
  }

  .ttac-inner-hero .ttac-container {
    padding: 24px 0;
  }

  .ttac-inner-hero h1,
  .ttac-inner-hero p,
  .ttac-inner-hero .ttac-container > span {
    color: #111;
  }

  .ttac-legal-section {
    padding: 16px 0;
    background: #fff;
  }

  .ttac-legal-layout {
    display: block;
  }

  .ttac-legal-layout > aside {
    display: none;
  }

  .ttac-legal-card {
    border: 0;
    box-shadow: none;
  }

  .ttac-legal-card > section {
    break-inside: avoid;
  }
}